]> git.saurik.com Git - bison.git/blame - ChangeLog
Bench the use of Boost.Variants.
[bison.git] / ChangeLog
CommitLineData
7109a18d
AD
12008-11-03 Akim Demaille <demaille@gostai.com>
2
3 Bench the use of Boost.Variants.
4 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
5 New.
6 (&compile): Be ready to compile C++ parsers.
7 (&bench_push_parser): Move debug information to the outermost
8 level.
9 * THANKS: Add Michiel De Wilde.
10
922730fe
AD
112008-11-03 Akim Demaille <demaille@gostai.com>
12
13 bench.pl: Pass directives as a list instead of as a string.
14 * etc/bench.pl.in (&directives): New.
15 (&triangular_grammar, &calc_grammar): Use it to format the Bison
16 directives.
17 (&triangular_grammar): Do use the directives (were ignored).
18 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
19 directives.
20
7484f1d4
AD
212008-11-03 Akim Demaille <demaille@gostai.com>
22
23 Improve genericity of bench.pl.
24 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
25 argument.
26 (&bench_push_parser): New.
27 Call it.
28
15129f25
AD
292008-11-03 Akim Demaille <demaille@gostai.com>
30
31 Add documentation to bench.pl.
32 * etc/bench.pl.in: Comment changes.
33
0e0ed236
AD
342008-11-03 Akim Demaille <demaille@gostai.com>
35
36 Fuse the three stacks into a single one.
37 In order to make it easy to perform benchmarks to ensure that there are no
38 performance loss, lalr1.cc is forked into lalr1-fusion.cc. Eventually,
39 lalr1-fusion.cc will replace lalr1.cc.
40
41 Meanwhile, to make sure that lalr1-fusion.cc is correctly exercized by the
42 test suite, the user must install a symbolic link from lalr1.cc to it.
43
44 Instead of having three stacks (state, value, location), use a stack
45 of triples. This considerably simplifies the code (and it will be
46 easier not to require locations as currently does the C++ parser),
47 and also gives a 10% speedup according to etc/bench (probably mainly since
48 memory allocation is done once instead of three times).
49
50 Another motivation is to make it easier to destruct properly
51 semantic values: now that they are bound to their state (hence
52 symbol type) it will be easier to call the appropriate destructor.
53
54 These changes should probably benefit the C parser too.
55
56 * data/lalr1.cc: Copy as... * data/lalr1-fusion.cc: this new
57 file.
58 (b4_rhs_value, b4_rhs_location): New definitions overriding those
59 from c++.m4.
60 (state_stack_type, semantic_stack_type, location_stack_type)
61 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
62 (data_type, stack_type, yystack_): New.
63 (YYLLOC_DEFAULT, yypush_): Adjust.
64 (yyerror_range): Now based on data_type, not location_type.
65
7dedf26e
AD
662008-11-03 Akim Demaille <demaille@gostai.com>
67
68 Push the state, value, and location at the same time.
69 This is needed to prepare a forthcoming patch that fuses the three
70 stacks into one.
71
72 * data/lalr1.cc (parser::yypush_): New.
73 (parser::yynewstate): Change the semantics: instead of arriving to
74 this label when value and location have been pushed, but yystate
75 is to be pushed on the state stack, now the three of them must
76 have been pushed before. yystate still must be the new state.
77 This allows to use yypush_ everywhere instead of individual
78 handling of the stacks.
79
c4585f1e
AD
802008-11-03 Akim Demaille <demaille@gostai.com>
81
82 Prefer references to pointers.
83 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
84 definition to use references instead of pointers.
85 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
86 Take the value and location as references.
87 Adjust callers.
88
56017c17
AD
892008-11-03 Akim Demaille <demaille@gostai.com>
90
91 stack::size instead of stack::height.
92 * data/lalr1.cc (stack::height): Rename as...
93 (stack::size): this.
94 Fix the output type.
95 Comment changes.
96
5ab8c47b
AD
972008-11-03 Akim Demaille <demaille@gostai.com>
98
99 Use variants to support objects as semantic values.
100 This patch was inspired by work by Michiel De Wilde. But he used Boost
101 variants which (i) requires Boost on the user side, (ii) is slow, and
102 (iii) has useless overhead (the parser knows the type of the semantic value
103 there is no reason to duplicate this information as Boost.Variants do).
104
105 This implementation reserves a buffer large enough to store the largest
106 objects. yy::variant implements this buffer. It was implemented with
107 Quentin Hocquet.
108
109 * src/output.c (type_names_output): New.
110 (output_skeleton): Invoke it.
111 * data/c++.m4 (b4_variant_if): New.
112 (b4_symbol_value): If needed, provide a definition for variants.
113 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
114 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
115 (b4_char_sizeof, yy::variant): New.
116 (parser::parse): If variants are requested, define
117 parser::union_type, parser::variant, change the definition of
118 semantic_type, construct $$ before running the user action instead
119 of performing a default $$ = $1.
120 * examples/variant.yy: New.
121 Based on an example by Michiel De Wilde.
122
1fa5d8bb
AD
1232008-11-03 Akim Demaille <demaille@gostai.com>
124
125 Parameterize the extraction of semantic values.
126 To make future changes easier, no longer rely on ".TYPE" being the
127 way to get a semantic value.
128
129 * data/c.m4 (b4_symbol_value): New.
130 Use it.
131 * data/c++.m4, data/yacc.c: Use it.
132 * data/glr.c: Use b4_symbol_value.
133 (b4_rhs_data): New.
134 Use it.
135
91ba8a55
AD
1362008-11-03 Akim Demaille <demaille@gostai.com>
137
138 Prepare easier M4 changes.
139 * data/lalr1.cc: Use escaped [] instead of literals to prepare
140 future changes.
141
c9ba9e59
JD
1422008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
143
144 Initiate further development.
145 * NEWS: Create an empty section for new entries.
146 * gnulib: Update submodule to HEAD.
147
bfb40910
JD
1482008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
149
150 * NEWS: Version 2.4.
151
241fda7a
JD
1522008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
153
154 Prepare for next release.
155 * NEWS: Briefly mention changes since 2.3b.
156 * README: Say GNU m4 1.4.6, which we've been requiring in release
157 announcements already, not 1.4.3, which breaks the build.
158
ed4d67dc
JD
1592008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
160
161 Say %language is experimental.
162 We're thinking of extending it's effect on output file naming. See the
163 thread at
164 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
165 * NEWS: Say it's experimental.
166 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
167 recommend it over %skeleton for now.
168 (Bison Options): Likewise.
169 (C++ Bison Interface): Use %skeleton not %language.
170 (Calc++ Parser): Use %skeleton not %language.
171 * src/getargs.c (usage): Say it's experimental.
172
e254a580
DJ
1732008-11-01 Di-an Jan <dianj@freeshell.org>
174 Paolo Bonzini <bonzini@gnu.org>
175
176 Support all Java parser class modifiers.
177 * data/java.m4 (b4_percent_define_get3): New.
178 (b4_final_if, b4_strictfp_if): New.
179 * data/lalr1.java (final, strictfp, extends, implements): Support.
180 * doc/bison.texinfo (final, strictfp, extends, implements): Add
181 documentation.
182 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
183 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
184 (AT_CHECK_JAVA_GREP): New.
185 (Java parser class modifiers): New test.
186 (Java parser class extends and implements): New test.
187
188 Model exception propagation better with throws and lex_throws.
189 * data/java.m4 (b4_list2): New.
190 (throws): Change default.
191 * data/lalr1.java (yyaction): Add throws.
192 (parse): Add lex_throws in addition to throws.
193 * doc/bison.texinfo (throws, lex_throws): Add documentation.
194 * tests/java.at (Java throws specifications): New test.
195
196 Improve documentation for Java parsers.
197 * doc/bison.texinfo (Java Parsers): Add subsections.
198 Don't quote first argument of %define.
199 (Java Bison Interface): Document output files. Move documentation
200 of parser class and merge into Java Parser Interface. Document
201 features that error out. Document directives with no effect.
202 Move note about Javadoc higher.
203 (Java Semantic Values): Explicitly mention stype.
204 Document that generic types cannot be used.
205 (Java Location Values): Use @deftypeivar. Document constructors.
206 Correct return value for toString.
207 (Java Parser Interface): List undocumented constants/fields.
208 Move documentation of fields added by %parse-param closer to list
209 of members. Document that token names are added as fields.
210 Document constructors accurately. Remove error method.
211 (Java Scanner Interface): Move note on %pure-parser to Java Bison
212 Interface. Describe %code lexer and yylex accutately.
213 Remove documentation that does not match the code.
214 (Java Action Features): New.
215 (Java Differences): Add reference. Add item on semantic values.
216 Add note about @{ ... @}. Clarify %% epilogue placement.
217 (Java Declarations Summary): New.
218
219 Fix Java skeleton.
220 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
221 (b4_remove_comma): Quote test argument.
222 (b4_identification): Remove "bison" field.
223 * tests/java.at (Java parser class and package names): New test.
224 (Java %parse-param and %lex-param): New test.
225 (Java stype, position_class and location_class): New test.
226
f259e4e6
PB
2272008-10-31 Di-an Jan <dianj@freeshell.org>
228
229 * data/lalr1.jave: Update copyright years.
230 (YYParser): Correct name of "generated from" file in Javadoc:
231 use b4_file_name instead of @ofile@.
232 (Location constructor): Correct Javadoc parameter name.
233 (yylloc): Add missing opening m4 quote after b4_location_if.
234 This removes a stray [ in the Javadoc of Lexer.getStartPos.
235 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
236 (YYParser constructor): Correct Javadoc parameter name.
237
cae5057f
JD
2382008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
239
240 Always put auxiliary code files in the same dir as other output files.
241 * src/files.c (compute_file_name_parts): When the user specifies
242 --output but not --file-prefix, extract the directory prefix from the
243 file prefix not from the grammar file name. This affects the location
244 of files like location.hh generated by the C++ skeleton. The includes
245 in the other output files require this fix.
246 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
247 for expected output files.
248 (Output files): Add a test for the above.
249
4af432ba
JD
2502008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
251
252 * gnulib: Update submodule to HEAD.
253
e26d4e43
JD
2542008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
255
256 Update copyright year.
257 * src/files.c: Here.
258
c0ee9e21
DJ
2592008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
260
261 Don't overwrite the input file.
262 * src/files.c (output_file_name_check): Fatal error if using input file
263 for output.
264 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
265 argument.
266 (Conflicting output files): Add test.
267
482dc52f
AD
2682008-10-28 Akim Demaille <demaille@gostai.com>
269
270 Space changes.
271 * data/lalr1.cc: Formatting changes.
272
52cbbe84
AD
2732008-10-28 Akim Demaille <demaille@gostai.com>
274
275 Don't define debugging functions when !YYDEBUG.
276 * data/lalr1.cc (debug_stream, set_debug_stream)
277 (debug_level_type, debug_level, set_debug_level): Don't
278 declare them when YYDEBUG is not defined.
279 The implementation are already YYDEBUG-aware.
280
0925d5bf
AD
2812008-10-28 Akim Demaille <demaille@gostai.com>
282
283 Prefer "continue" for empty loop bodies.
284 * etc/bench.pl.in: Use "continue" instead of {}.
285
cf98343c
AD
2862008-10-28 Akim Demaille <demaille@gostai.com>
287
288 Space and comments changes.
289 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
290 * data/c.m4, data/lalr1.cc: Space changes.
291
9f467b7d
AD
2922008-10-28 Akim Demaille <demaille@gostai.com>
293
294 Make gnulib a submodule.
295 * gnulib: New.
296 * .gitmodules (gnulib): New.
297
0f0e1ace
JD
2982008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
299
300 Fix yyerror_range for user-defined location type in C++. Reported by
301 Georg Sauthoff at
302 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
303 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
304 * THANKS (Georg Sauthoff): Add.
305
548e2104
JD
3062008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
307
308 Update several administrative files mainly to facilitate releasing.
309 * HACKING (Administrivia): Make the git-merge-changelog notes more
310 helpful.
311 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
312 (Release Procedure): Update for git and add numerous details that were
313 previously missing.
314 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
315 * maint.mk (announcement): Don't list bison as a bootstrap tool so
316 that announcements don't claim we bootstrapped with whatever bison
317 happened to be in PATH. Add flex as a bootstrap tool.
318 * Makefile.maint: Remove, previously replaced by maint.mk.
319 * Makefile.cfg: Remove, and migrate settings to...
320 * cfg.mk: ... here for the sake of `make announcement'.
321 * bootstrap.conf (gnulib_modules): Add announce-gen.
322 * README: Say GNU Bison instead of just Bison. Suggested by Karl
323 Berry.
324
ddf17a6e
PB
3252008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
326
327 Small but important bugfixes for the Java skeleton.
328 * data/lalr1.java (yyerror): Change Location to b4_location_type.
329 (yy_symbol_print): Call toString on yyvaluep.
330
e1145ad8
AD
3312008-08-29 Akim Demaille <demaille@gostai.com>
332
333 Clarify UPDATED use.
334 * doc/bison.texinfo: It refers to the last edition of this file,
335 not to the release date of Bison.
336 Reported by Joel E. Denny.
337
0df72d78
AD
3382008-08-29 Akim Demaille <demaille@gostai.com>
339
340 * README: Update FAQ pointer.
341 Reported by Joel E. Denny.
342
9a90b6bb
EB
3432008-08-27 Eric Blake <ebb9@byu.net>
344
345 Resync m4sugar from autoconf.
346 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
347 (m4_init): Adjust to latest m4.git changes.
348 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
349 effects.
350 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
351 (_m4_list_cmp): Reduce side effects.
352
65015668
AD
3532008-08-27 Akim Demaille <demaille@gostai.com>
354
355 Check yyerrok in calc.at.
356 * tests/calc.at (calc.y): Use yyerrok on "( error )".
357 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
358 expected.
359
98e26a92
AD
3602008-08-27 Akim Demaille <demaille@gostai.com>
361
362 Support yyerrok in lalr1.cc.
363 YYBACKUP is still to import back into lalr1.cc.
364 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
365
86c0e784
JD
3662008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
367
368 For maintainer-check*, don't recompile for a $(VERSION) update.
369 * cfg.mk: New file.
370 (_is-dist-target): Override the one in GNUmakefile.
371 * Makefile.am (EXTRA_DIST): Add cfg.mk.
372
88511166
JD
3732008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
374
375 Update for recent change to gnulib.
376 * src/parse-gram.y: Don't include strverscmp.h. It comes from
377 string.h now.
378
6bbb2ed5
EB
3792008-08-15 Eric Blake <ebb9@byu.net>
380
d67c52e8
EB
381 Remaining m4sugar merge from autoconf.
382 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
383 * data/m4sugar/foreach.m4: New file, copied from autoconf.
384 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
385 * src/output.c (output_skeleton): Tell m4 how to find it.
386
6bbb2ed5
EB
387 Partial m4sugar merge from autoconf: m4_map.
388 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
389 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
390 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
391 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
392 for empty list.
393 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
394 Likewise.
395 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
396 declares it.
397
8dce3875
JD
3982008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
399
400 Keep .version and PACKAGE_VERSION in sync.
401 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
402 dependency, and add comments justifying this in more detail. Discussed
403 starting at
404 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
405
882a1fbf
EB
4062008-08-06 Eric Blake <ebb9@byu.net>
407
a3764451
EB
408 Partial m4sugar merge from autoconf: m4_shiftn.
409 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
410 (m4_shift2, m4_shift3): New macros.
411 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
412 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
413 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
414 * data/java.m4 (b4_remove_comma): Likewise.
415
882a1fbf
EB
416 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
417 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
418 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
419 (m4_init): Consolidate wrapped text into single m4_wrap.
420 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
421 in wrapped text.
422
a30e920d
EB
4232008-08-05 Eric Blake <ebb9@byu.net>
424
dfcc5959
EB
425 Partial m4sugar merge from autoconf: builtins, version.m4.
426 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
427 (m4_prepend): Remove, as it is unused and inherently quadratic,
428 whereas m4_append is linear in newer m4.
429 (m4_mkstemp): New builtin.
430 (m4_symbols): Make rename conditional.
431 (m4_version_prereq): Ensure fatal error if used in bison, which
432 intentionally lacks version.m4.
433
a30e920d
EB
434 Fix comments in m4sugar.
435 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
436
445b7470
JD
4372008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
438
439 Update for recent .gitignore fix in Gnulib.
440 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
441 anchored .gitignore entries.
442
a1e50014
JD
4432008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
444
445 Set gnu or gnits strictness.
446 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
447 development and gnits strictness for releases. Based on Eric Blake's
448 suggestion at
449 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
450
d43f77e7
PB
4512008-07-31 Paolo Bonzini <bonzini@gnu.org>
452
453 * NEWS: Clarify documentation of %language.
454
fee2ed87
PB
4552008-07-31 Paolo Bonzini <bonzini@gnu.org>
456
457 Support usage of git-merge-changelog.
458 * .gitattributes: New.
459 * HACKING: Document usage of git-merge-changelog.
460 * bootstrap: Install git-merge-changelog entries in .git/config
461 if appropriate.
462
78029cd5
JD
4632008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
464
465 Remove remaining dependence on CVS Id keyword.
466 * ChangeLog: For the sake of people still using CVS, don't use dollars
467 when mentioning Id.
468 * data/xslt/bison.xsl: Remove Id from header comments, where it was
469 unusual anyway.
470 * data/xslt/xml2dot.xsl: Likewise.
471 * data/xslt/xml2text.xsl: Likewise.
472 * data/xslt/xml2xhtml.xsl: Likewise.
473 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
474 * doc/Makefile.am (neutralize): Remove, no longer needed.
475 (.x.1): Don't use neutralize.
476 (edit): Don't substitute for ID.
477 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
478
c53d18b1
JD
4792008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
480
481 Fix dependence on computed configure variables.
482 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
483 $(top_srcdir)/configure.ac so that changes to computed variables, such
484 as PACKAGE_VERSION, are seen.
485 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
486
5523ac79
JD
4872008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
488
489 Update copyright dates for recent changes.
490 * Makefile.am: Here.
491 * src/Makefile.am: Here.
492 * src/reduce.c: Here.
493 * tests/reduce.at: Here.
494
8fa36911
JD
4952008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
496
497 Use git-version-gen for version names between releases.
498 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
499 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
500 * .prev-version: New.
501 * .version.in: Remove.
78029cd5 502 * ChangeLog: Remove the Id previously used for capturing the CVS
8fa36911
JD
503 revision.
504 * GNUmakefile: Remove, now copied from Gnulib.
505 * Makefile.am: Add code suggested by comments in
506 build-aux/git-version-gen.
507 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
508 .prev-version, and .version.
509 * NEWS (2.3b+): Rename to...
510 (?.?): ... this because we're dropping the "+" version naming scheme,
511 but, in general, we still can't be sure of our next release name.
512 * bootstrap: Add a quick hack to remove from .gitignore the
513 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
514 entry. This should really be fixed in gnulib instead.
515 * bootstrap.conf (gnulib_modules): Add gnumakefile.
516 * configure.ac (AC_INIT): Set version name by invoking
517 build-aux/git-version-gen.
518 (AC_CONFIG_FILES): Remove .version, now generated by
519 build-aux/git-version-gen.
520 * maint.mk: New, copied from coreutils.
521 * doc/.cvsignore (bison.1): Add.
522 * doc/.gitignore (/bison.1): Add.
523 * doc/bison.1: Remove, generated.
524 * src/.cvsignore (revision.c): Remove.
525 * src/.gitignore (/revision.c): Remove.
526 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
527 (BUILT_SOURCES): Remove revision.c.
528 (revision.c): Remove.
529 * src/getargs.c (version): Don't print revision after the VERSION.
530 * src/revision.h: Remove.
531
bcf07cb7
JD
5322008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
533
534 Fix untranslatable composition of sentences. Reported by Goran
535 Uddeborg at
536 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
537 * THANKS (Goran Uddeborg): Add.
538 * src/reduce.c (reduce_print): Report the number of nonterminals and
539 rules useless in the grammar in separate sentences.
540 * tests/reduce.at (Useless Rules): Update output.
541 (Reduced Automaton): Likewise.
542 (Underivable Rules): Likewise.
543 (Empty Language): Likewise.
544
9aacab9a
JD
5452008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
546
547 Fix some .gitignore and .cvsignore problems.
548 * bootstrap (insert_sorted_if_absent): Replace all uses with...
549 (insert_vc_ignore): ... this new function, which prepends `/' to all
550 .gitignore entries before passing them to insert_sorted_if_absent.
551 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
552 .cvsignore files are maintained even though Bison developers run
553 bootstrap while using Git.
554 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
555 unneeded by Bison.
556 (gnulib): Add.
557 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
558 unneeded. Reported by Eric Blake.
559 * lib/.gitignore (/*~): Add.
560 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
561 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
562 Blake.
563 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
564
a9fc7990
JD
5652008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
566
567 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
568 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
569 * bootstrap.conf (gnulib_modules): Add unsetenv.
570 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
571 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
572 (/setenv.m4): Add.
573 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
574 the first argument because it may become position-dependent, and unset
575 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
576 Add comments explaining these issues in more detail.
577
0f1d6f10
JD
5782008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
579
580 Add .gitignore everywhere based on .cvsignore.
581 * .gitignore: New.
582 * build-aux/.gitignore: New.
583 * data/.gitignore: New.
584 * doc/.gitignore: New.
585 * etc/.gitignore: New.
586 * examples/.gitignore: New.
587 * examples/calc++/.gitignore: New.
588 * lib/.gitignore: New.
589 * m4/.gitignore: New.
590 * po/.gitignore: New.
591 * runtime-po/.gitignore: New.
592 * src/.gitignore: New.
593 * tests/.gitignore: New.
594
7bd1665a
JD
5952008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
596
597 * NEWS (2.3b+): New section, empty for now.
598 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
599
72c5b982
JD
6002008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
601
602 * NEWS (2.3b): Update release date since there has been a delay in
603 getting the announcements and tarballs out.
604
bd02cd5d
JD
6052008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
606
607 * NEWS: Version 2.3b.
608 * configure.ac (AC_INIT): Likewise.
609 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
610
9126263e
JD
6112008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
612
613 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
614 been doing it for years.
615 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
616 (Release Procedure): Add FIXME about make alpha being unmaintained.
617
fa6aa7b3
JD
6182008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
619
620 * data/yacc.c: Reformat m4 a little for readability.
621 * src/lalr.c (build_relations): Correct comment.
622
d30b312d
JMG
6232008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
624
625 DJGPP specific issue.
626 * djgpp/config.sed: Fixes required to run configure scripts generated
627 by autoconf 2.62.
628
138d4cd9
JD
6292008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
630
631 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
632 coordinator@translationproject.org.
633
8f7e2e1f
JD
6342008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
635
636 * THANKS: Add Eric Blake.
637
f55efa38
JD
6382008-04-23 Eric Blake <ebb9@byu.net>
639
640 Revert prior patch, by working around autoconf regression.
641 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
642 ("Output file name: ("): Uncomment test.
643 ("Output file name: )"): Likewise.
644 Based on an idea from Noah Misch.
645
096c9f9d
JD
6462008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
647
648 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
649 2.61. Reported by Juan Manuel Guerrero at
650 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
651 * tests/output.at ("Output file name: ("): Comment out test case for
652 now.
653 ("Output file name: )"): Likewise.
654
0f664b89
JD
6552008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
656
657 * GNUmakefile: Update git-version-gen invocation so make dist
658 succeeds.
659
1cfe6375
JD
6602008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
661
662 Update to the current gnulib CVS repository, and fix trigraph handling
663 in Bison.
664 * bootstrap: Update gnulib CVS repository URL.
665 (symlink_to_dir): Encapsulate the code that guarantees the destination
666 directory exists into...
667 (check_dst_dir): ... this new function, and...
668 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
669 fail when copying files into lib/uniwidth/.
670 * src/output.c (prepare_symbols): When writing yytname muscles, where
671 symbol names will be encoded in C-string literals, tell quotearg to
672 escape trigraphs. This used to be the default in gnulib.
673 * tests/regression.at (Token definitions): Because of the change in
674 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
675 escapes trigraphs in symbol names. Thus, yytname no longer has
676 trigraphs unnecessarily doubly escaped. Update test case output.
677 Extend test case to be sure Bison's own error messages will no longer
678 have trigraphs in symbol names unnecessarily escaped once.
679
74c52fc8
JD
6802008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
681
682 Fix make dist infinite loop reported by Juan Manuel Guerrero at
683 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
684 * .cvsignore: Add .version.
685 * .version.in: New.
686 * bootstrap.conf (gnulib_modules): Add git-version-gen.
687 * configure.ac (AC_CONFIG_FILES): Add .version.
688 * build-aux/.cvsignore: Add git-version-gen.
689
8e55b3aa
JD
6902008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
691
692 * NEWS (2.3a+): Mention that -g now takes an argument.
693 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
694 consistency. Update the -g and -x entries now that they take
695 arguments. Use brackets to indicate optional arguments.
696 * src/getargs.c (usage): Explain the relationship between arguments of
697 long and short options more completely. Document --defines and -d
698 separately since the former takes an argument but, for POSIX Yacc, the
699 latter does not.
700 (short_options): Let -W take an optional argument like --warnings.
8452fdd9 701 (getargs): Sort cases.
8e55b3aa 702
59c5ac72
AD
7032008-02-28 Akim Demaille <demaille@gostai.com>
704
705 * doc/bison.texinfo: Fix a few typos.
706
118d4978
AD
7072008-02-28 Akim Demaille <akim@epita.fr>
708
709 * doc/bison.texinfo (Bison Options): Document -W.
710 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
711
7020f1e9
AD
7122008-02-28 Akim Demaille <akim@epita.fr>
713
714 * src/getargs.c (short_options): Split and sort for readability.
715 -g and -x take optional arguments, just like their long options.
716 * build-aux/cross-options.pl: Use /x to make the regexp easier to
717 understand.
718 Fix the handling of $opt which resulted in all the argument to be
719 considered as optional.
720
59da312b
JD
7212008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
722
723 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
724 say its interface is experimental.
725 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
726 Java.
727 (Bison Options): In the -L and --language entry, mention Java.
728 (Java Bison Interface): Say the interface is experimental.
729 * src/getargs.c (usage): Mention -L and --language.
730
731 * NEWS (2.3a+): Say the push parsing interface is experimental.
732 * doc/bison.texinfo (Push Decl): Likewise.
733 (Decl Summary): Likewise in the "%define api.push_pull" entry.
734 (Push Parser Function): Likewise.
735 (Pull Parser Function): Likewise.
736 (Parser Create Function): Likewise.
737 (Parser Delete Function): Likewise.
738 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
739 yypull_parse, and yypush_parse entries.
740
741 * NEWS (2.3a+): Mention XML support, and say the schema is
742 experimental.
743 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
744 * src/getargs.c (usage): Say the XML schema is experimental.
745
746 * NEWS (2.3a+): Say option instead of flag.
747
2bb3ebec
WP
7482008-02-21 Wojciech Polak <polak@gnu.org>
749
750 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
751 text.
752
333e670c
JD
7532008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
754
755 Fix impure push parser compile error reported by Bob Rossi at
756 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
757 * data/yacc.c: Clean up whitespace in the output a little.
758 (yypstate_allocated): Define for impure push parsers regardless of
759 whether the pull interface is also requested.
760 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
761 check impure push parsers without the pull interface.
762
763 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
764 yyerror takes arguments specified by %parse-param while yypstate_new
765 does not.
766 * doc/bison.texinfo (Parser Create Function): Document that
767 yypstate_new returns 0 for multiple impure parser instances.
768 * tests/push.at (Push Parsing: Multiple impure instances): Update
769 expected stderr output.
770
798096e1
JD
7712008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
772
773 * runtime-po/POTFILES.in (push.c): Remove.
774
9ca7f077
JD
7752008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
776
777 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
778 * data/push.c: Rename to...
779 * data/yacc.c: ... this, overwriting it.
780 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
781 `%push-pull-parser' -> `%define api.push_pull "both"'.
782 Remove old yacc.c tests, and update push.c tests to yacc.c.
783
42ee26bb
JD
7842008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
785
786 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
787 `"%code top" blocks' instead of `%code "top" blocks'.
788 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
789 Clean up whitespace in the output a little.
790
b1cc23c4
JD
7912008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
792
793 Fix documentation problems reported by Tim Josling at
794 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
795 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
796 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
797 integers. Explain the effect of literal string aliases on error
798 messages. Copy token 0 documentation from the C++ skeleton
799 documentation.
800
ab7f29f8
JD
8012008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
802
803 Accept a token number in a %left, %right, or %nonassoc for POSIX
804 conformance. Reported by Tim Josling at
805 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
806 * NEWS (2.3a+): Mention.
807 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
808 and code numbers are treated by precedence declarations.
809 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
810 of symbols.1.
811 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
812 of symbol.
813 (symbol.prec): New, just like symbol but allows INT.
814 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
815 longer holds.
816 * tests/regression.at (Token number in precedence declaration): New
817 test case.
818
a924ef36
JMG
8192008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
820
821 DJGPP specific issues.
822 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
823 be changed. Copyright timestamp adjusted.
824 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
825 be changed. Copyright timestamp adjusted.
826 * djgpp/config.site: Copyright timestamp adjusted.
827 * djgpp/config_h.sed: Copyright timestamp adjusted.
828 * djgpp/djunpack.bat: Copyright timestamp adjusted.
829 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
830 filename translation list.
831 * djgpp/subpipe.c (init_subpipe): Check the environment variables
832 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
833 files shall be created. Before trying to use the temp dir where the
834 environment variable points to check that the dir really exists. If
835 not default to the cwd as temp dir. Copyright timestamp adjusted.
836 * djgpp/subpipe.h: Copyright timestamp adjusted.
837 * djgpp/testsuite.sed: Copyright timestamp adjusted.
838
389c8cfd
PE
8392008-01-30 Paul Eggert <eggert@cs.ucla.edu>
840
841 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
842
5d1cfef4
PE
8432008-01-09 Paul Eggert <eggert@cs.ucla.edu>
844
845 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
846 Problem reported by Claudio Saavedra in
847 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
848
e2dcf996
WP
8492008-01-05 Wojciech Polak <polak@gnu.org>
850
851 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
852 document's title with the input grammar file name.
853
da730230
JD
8542007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
855
856 Automate regression testing of the XML/XSLT implementation. Discussed
857 starting at
858 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
859 * configure.ac (XSLTPROC): New substitution.
860 * Makefile.am (maintainer-xml-check): New phony target invoking...
861 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
862 invoking make maintainer-check with BISON_TEST_XML=1.
863 * tests/atlocal.in (XSLTPROC): New.
864 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
865 not to report reachable memory when Bison is expected to have a
866 non-zero exit status and (2) to compare XML/XSLT output with --graph
867 and --report=all output for every working grammar when
868 BISON_TEST_XML=1.
869 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
870 (AT_BISON_CHECK_XML): New.
871 (AT_QUELL_VALGRIND): New.
872 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
873 (AT_CHECK): ... don't redefine this since this was the old way to
874 quell Valgrind.
875 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
876 AT_BISON_CHECK invocations.
877 * tests/c++.at: Likewise.
878 * tests/calc.at: Likewise.
879 * tests/conflicts.at: Likewise.
880 * tests/cxx-type.at: Likewise.
881 * tests/existing.at: Likewise.
882 * tests/glr-regression.at: Likewise.
883 * tests/headers.at: Likewise.
884 * tests/input.at: Likewise.
885 * tests/java.at: Likewise.
886 * tests/output.at: Likewise.
887 * tests/push.at: Likewise.
888 * tests/reduce.at: Likewise.
889 * tests/regression.at: Likewise.
890 * tests/sets.at: Likewise.
891 * tests/skeletons.at: Likewise.
892 * tests/synclines.at: Likewise.
893 * tests/torture.at: Likewise.
894 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
895 tends to hang xsltproc.
896 (Big horizontal): Likewise.
897
408476bc
JD
8982007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
899
900 In XML output, remove redundant class attribute on symbol element.
901 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
902 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
903 look up a symbol to determine whether it's a nonterminal or terminal.
904 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
905 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
906
907 Add prec/assoc information to XML output.
908 * src/gram.c (grammar_rules_print_xml): For each rule that has a
909 %prec, add a percent_prec attribute.
910 * src/print-xml.c (print_grammar): For each terminal that has a
911 precedence or associativity, add a prec or assoc attribute.
912 (xml_indent): New.
913 (xml_puts): Use xml_indent.
914 (xml_printf): Use xml_indent.
915 * src/print-xml.h (xml_indent): Prototype.
916
917 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
918 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
919
d4a26c48
JD
9202007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
921
922 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
923 (bison:ruleByNumber): ... this for clarity.
924 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
925 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
926 (xsl:template match="reduction"): Update.
927 (xsl:template match="item"): Update.
928 (xsl:template match="reduction"): Update.
929
930 In the XML output, don't print the list of rules where symbols appear.
931 Compute it in XSLT instead. Discussed at
932 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
933 * data/xslt/bison.xsl (bison:ruleByLhs): New.
934 (bison:ruleByRhs): New.
935 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
936 bison:ruleByRhs.
937 (xsl:template match="terminal/rule"): Remove.
938 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
939 bison:ruleByRhs.
940 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
941 Remove.
942 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
943 bison:ruleByRhs and mode="number-link" for rule template.
944 (xsl:template match="terminal/rule"): Remove.
945 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
946 bison:ruleByRhs and mode="number-link" for rule template.
947 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
948 Rewrite as...
949 (xsl:template match="rule" mode="number-link"): ... this.
950 * src/print-xml.c (print_grammar): Don't print the list of rules.
951
ef1b4273
JD
9522007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
953
954 Don't let --report affect XML output; always print all information.
955 Discussed at
956 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
957 * src/conflicts.c (log_resolution): Implement.
958 * src/print-xml.c (print_core): Implement.
959 (print_state): Implement.
960 (print_xml): Implement.
961
962 * NEWS (2.3a+): Fix quotes.
963 * src/parse-gram.y (prologue_declaration): For consistency with -v,
964 don't let %verbose clear the list specified by --report.
965
0f6cd9e3
AD
9662007-11-26 Akim Demaille <akim@epita.fr>
967
968 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
969
d80fb37a
JD
9702007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
971
972 In the XML output, list useless and unused symbols and rules with the
973 useful ones and add a "usefulness" attribute. Discussed starting at
974 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
975 * src/gram.c (grammar_rules_partial_print_xml): Remove.
976 (grammar_rules_print_xml): Print all rules instead of just those
977 useful in the grammar, and add a "usefulness" attribute.
978 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
979 * src/print-xml.c (print_rules_useless_in_parser): Remove.
980 (print_grammar): Print all nonterminals instead of just useful ones,
981 and add a "usefulness" attribute to nonterminals and terminals.
982 (print_xml): Don't print a separate "reductions" or
983 "rules-useless-in-parser" element.
984 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
985 (reduce_xml): Remove.
986 (reduce_token_unused_in_grammar): New.
987 (reduce_nonterminal_useless_in_grammar): New.
988 * src/reduce.h (reduce_xml): Remove prototype.
989 (reduce_token_unused_in_grammar): Add prototype.
990 (reduce_nonterminal_useless_in_grammar): Add prototype.
991 * data/xslt/xml2text.xsl: Update for XML changes.
992 * data/xslt/xml2xhtml.xsl: Update for XML changes.
993 * tests/reduce.at (Useless Terminals): Update output.
994 (Useless Rules): Update output.
995 (Reduced Automaton): Update output.
996
997 Say "Terminals unused in grammar" instead of "Unused terminals".
998 * NEWS (2.3a+): Update.
999 * doc/bison.texinfo (Understanding): Update example output.
1000 * src/reduce.c (reduce_output): Implement.
1001 * data/xslt/xml2text.xsl: Implement.
1002 * data/xslt/xml2xhtml.xsl: Implement.
1003
1bb2bd75
JD
10042007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
1005
1006 Accept --report-file=FILE to override the default `.output' filename.
1007 * NEWS (2.3a+): Mention.
1008 * doc/bison.texinfo (Bison Options): Add an entry.
1009 * src/files.c (compute_output_file_names): Don't override
1010 spec_verbose_file if already set.
1011 * src/getargs.c (usage): Document --report-file.
1012 (REPORT_FILE_OPTION): New anonymous enum member.
1013 (long_options): Add entry for it.
1014 (getargs): Add case for it setting spec_verbose_file.
1015
1016 * build-aux/cross-options.pl: Don't record a short option just because
1017 there's an arg.
1018 * doc/.cvsignore: Add yacc.1.
1019
a005a9c4
AD
10202007-11-14 Akim Demaille <akim@epita.fr>
1021
1022 * doc/yacc.1.in: New.
1023 * configure.ac, doc/Makefile.am: Adjust.
1024 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
1025 config.h symbol.
1026 Use AC_SUBST for assignments too.
1027 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
1028
cff03fb2
JD
10292007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
1030
1031 * src/gram.c: Remove comments that duplicate comments in gram.h.
1032
1033 When reporting useless rules and nonterminals, say "useless in grammar"
1034 instead of "useless", and say "useless in parser" instead of "never
1035 reduced". Discussed starting at
1036 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
1037 * NEWS (2.3a+): Mention this change.
1038 * data/xslt/xml2text.xsl: Update output text and expected input XML
1039 element names to match changes below.
1040 * data/xslt/xml2xhtml.xsl: Likewise.
1041 (xsl:template match="bison-xml-report"): Add missing entry in Table of
1042 Contents: "Rules useless in parser due to conflicts".
1043 * doc/bison.texinfo (Decl Summary): Reword a little.
1044 (Understanding): Update example output for changes below.
1045 * src/gram.c: (rule_useful_p): Rename to...
1046 (rule_useful_in_grammar_p): ... this.
1047 (rule_useless_p): Rename to...
1048 (rule_useless_in_grammar_p): ... this.
1049 (rule_never_reduced_p): Rename to...
1050 (rule_useless_in_parser_p): ... this.
1051 (grammar_rules_print): Update for renames.
1052 (grammar_rules_print_xml): Update for renames.
1053 (grammar_rules_never_reduced_report): Rename to...
1054 (grammar_rules_useless_report): ... this since it is used for either
1055 kind of useless rule.
1056 * src/gram.h: Reword comments and update function names in prototypes.
1057 * src/main.c (main): Say "rule useless in parser due to conflicts".
1058 * src/print-xml.c (print_rules_never_reduced): Rename to...
1059 (print_rules_useless_in_parser): ... this, and rename output XML
1060 element "rules-never-reduced" to "rules-useless-in-parser".
1061 (print_xml): Update for rename.
1062 * src/print.c (print_results): Say "Rules useless in parser due to
1063 conflicts".
1064 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
1065 (nonterminals_reduce): Say "nonterminal useless in grammar".
1066 (reduce_output): Say "Nonterminals useless in grammar".
1067 Say "Rules useless in grammar".
1068 (reduce_xml): Rename output XML element "useless" to
1069 "useless-in-grammar".
1070 (reduce_print): Don't report the count of grammatically useless rules
1071 as "rules never reduced" just because %yacc is specified.
1072 In the correct report of this count, say nonterminal(s) and rule(s)
1073 "useless in grammar".
1074 * tests/conflicts.at (S/R in initial): Update expected output.
1075 (Defaulted Conflicted Reduction): Likewise.
1076 (Unreachable States After Conflict Resolution): Likewise.
1077 * tests/existing.at (GNU pic Grammar): Likewise.
1078 * tests/reduce.at (Useless Nonterminals): Likewise.
1079 (Useless Rules): Likewise.
1080 (Reduced Automaton): Likewise.
1081 (Underivable Rules): Likewise.
1082 (Empty Language): Likewise.
1083
66f0441d
JD
10842007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
1085
1086 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
1087 here document and before the EOF so that BSD's implementation of Bourne
1088 shell doesn't parse the delimiter as part of the here document.
1089 * doc/.cvsignore: Add cross-options.texi.
1090 * src/getargs.c (usage): Add a blank line after the warning categories.
1091
d0ee4105
PB
10922007-11-08 Paolo Bonzini <bonzini@gnu.org>
1093
1094 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
1095
e8b1fb9b
AD
10962007-11-05 Akim Demaille <akim@epita.fr>
1097
1098 Remove Id: from bison.1.
1099 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
1100 (perl -0777 -pi -e 's/\.PP\nId): New.
1101 (.x.1): Use it to ignore the version control revision.
1102
2f7a96b5
AD
11032007-11-05 Akim Demaille <demaille@gostai.com>
1104
1105 * build-aux/Makefile.am: Ship cross-options.pl.
1106 * doc/Makefile.am: Always refer to cross-options.texi with
1107 $(srcdir).
1108 (MAINTAINERCLEANFILES): Add it.
1109
f4101aa6
AD
11102007-11-04 Akim Demaille <demaille@gostai.com>
1111
1112 Generate the long/short option cross-table.
1113 * build-aux/cross-options.pl: New.
1114 * doc/Makefile.am (cross-options.texi): New.
1115 * doc/bison.texinfo: Use it.
1116
727a1401
AD
11172007-11-04 Akim Demaille <demaille@gostai.com>
1118
1119 Generate bison.1 using help2man.
1120 * doc/common.x, doc/bison.x: New.
1121 * doc/Makefile.am (bison.1, .x.1): New.
1122 The code is taken from autoconf-2.61/man/Makefile.am.
1123 * configure.ac: Look for help2man.
1124
6aeb9c57
AD
11252007-11-04 Akim Demaille <demaille@gostai.com>
1126
1127 Complete --help.
1128 * src/getargs.c (usage): Document -W, make it clear that -d,
1129 -g and -x have optional arguments.
1130
d7be4085
AD
11312007-11-04 Akim Demaille <demaille@gostai.com>
1132
1133 Find sha1sum when named gsha1sum.
1134 * bootstrap (find_tool): New.
1135 ($SHA1SUM): New.
1136
d9df47b6
JD
11372007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1138
1139 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
1140 at
1141 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
1142 * NEWS (2.3a+): Mention.
1143 * data/bison.m4 (b4_pure_if): Don't define it here.
1144 * data/c.m4 (b4_identification): Depend on individual skeletons to
1145 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
1146 values of the %define variables api.pure or api.push_pull. Define
1147 YYPURE, YYPUSH, and YYPULL accordingly.
1148 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
1149 glr.cc has already defined b4_pure_flag.
1150 * data/push.c: Define b4_pure_if based on `%define api.pure'.
1151 Remove YYPUSH and YYPULL since they're back in b4_identification again.
42ee26bb 1152 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
d9df47b6
JD
1153 * doc/bison.texinfo (Pure Decl): Update.
1154 (Push Decl): Update.
1155 (Decl Summary): Add api.pure to %define entry.
1156 In %pure-parser entry, say it's deprecated and reference %define.
1157 (Pure Calling): Update.
1158 (Error Reporting): Update.
1159 (C++ Scanner Interface): Update.
1160 (How Can I Reset the Parser): Update.
1161 (Table of Symbols): In %pure-parser entry, say it's deprecated and
1162 reference %define.
1163 * src/getargs.c (pure_parser): Remove global variable.
1164 * src/getargs.h (pure_parser): Remove extern.
1165 * src/output.c (prepare): Don't define pure_flag muscle.
1166 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
1167 wrapper around `%define api.pure'.
1168 * tests/calc.at (Simple LALR Calculator): Update.
1169 (Simple GLR Calculator): Update.
1170 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
1171 Update.
1172 (GLR: Resolve ambiguity, pure, locations): Update.
1173 (GLR: Merge conflicting parses, pure, no locations): Update.
1174 (GLR: Merge conflicting parses, pure, locations): Update.
1175 * tests/glr-regression.at (Uninitialized location when reporting
1176 ambiguity): Update
1177 * tests/input.at (Unused %define api.pure): New test case.
1178 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
1179 AT_PURE_IF and AT_PURE_AND_LOC_IF.
1180 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
1181
c373bf8b
JD
11822007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1183
1184 %define push_pull -> %define api.push_pull. Discussed starting at
1185 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
1186 * data/push.c: Expect the new name.
1187 * data/yacc.c: Likewise.
1188 * doc/bison.texinfo (Push Decl): Update.
1189 (Decl Summary): Update %define entry.
1190 (Push Parser Function): Update.
1191 (Pull Parser Function): Update.
1192 (Parser Create Function): Update.
1193 (Parser Delete Function): Update.
1194 * tests/calc.at (Simple LALR Calculator): Update.
1195 * tests/input.at (%define enum variables): Update.
1196 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
1197 (Push Parsing: Multiple impure instances): Update.
1198 (Push Parsing: Unsupported Skeletons): Update.
1199 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
1200 (Exploding the Stack Size with Malloc): Update.
1201
1202 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
1203 other entries some.
1204
32f19b6b
JD
12052007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
1206
1207 For the XML output's terminal element, rename @number to @token-number,
1208 and add @symbol-number. In the nonterminal element, rename @number to
1209 @symbol-number. Discussed starting at
1210 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
1211 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
1212 renames.
1213 (xsl:template match="nonterminal"): Likewise.
1214 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
1215 (xsl:template match="nonterminal"): Likewise.
1216 * src/print-xml.c (print_grammar): Implement.
1217
255a6b90
JD
12182007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
1219
1220 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
1221 2007-10-11 change, the child elements here are items not rules.
408476bc 1222 (xsl:template match="item"): New.
255a6b90
JD
1223 (xsl:template match="rule"): Update for new reduced itemset.
1224 (xsl:template match="point"): Remove.
1225 (xsl:template match="empty"): For consistency with --graph, don't
1226 output "/* empty */".
1227 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
1228 line-wrap, don't pass a negative value as first-line-length since this
1229 won't work with the following changes.
1230 (xsl:template name="line-wrap"): Simplify slightly.
1231 (xsl:template name="ws-search"): Eliminate recursion.
1232 * src/print_graph.c (print_core): Don't print a reduction's lookahead
1233 set next to an item whose dot is not at the end of the RHS even if it
1234 happens to be associated with the same rule.
1235
88c78747
JD
12362007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
1237
31984206
JD
1238 Add %define lr.keep_unreachable_states.
1239 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
1240 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
1241 * src/main.c (main): Implement it.
1242 * tests/conflicts.at (Unreachable States After Conflict Resolution):
1243 Extend to test it, and fix a typo.
1244
12452007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
1246
1247 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
88c78747
JD
1248 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
1249 the example .output text.
1250 * tests/regression.at (Extra lookahead sets in report): Improve wording
1251 of comments.
1252
b7a70162
WP
12532007-10-17 Wojciech Polak <polak@gnu.org>
1254
1255 * src/print-xml.c (print_grammar): Renamed
1256 <terminal> and <nonterminal> attributes:
1257 "type" to "number" and "symbol" to "name".
1258 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
1259 Use new attribute names.
1260 (xsl:template match="nonterminal"): Likewise.
1261 * data/xslt/xml2xhtml.xsl: Likewise.
1262
a0de5091
JD
12632007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
1264
1265 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
1266 (Option Cross Key): Likewise.
1267
1268 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
1269 next to an item whose dot is not at the end of the RHS even if it
1270 happens to be associated with the same rule.
1271 * src/print.c (print_core): Likewise.
1272 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
1273 (Resolved SR Conflicts): Update output.
1274 * tests/regression.at (Extra lookahead sets in report): New test case.
1275
4c20d18d
WP
12762007-10-11 Wojciech Polak <polak@gnu.org>
1277
1278 * src/print-xml.c (print_core): Remove item set
1279 redundancy.
1280 * data/xslt/bison.xsl (bison:ruleNumber): New key.
1281 Improve processing time. Suggested by Joel E. Denny.
1282 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
1283 Write xsl:param "required" attribute as comment.
1284 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
1285 (xsl:template match="rule"): Support new reduced itemset.
1286 (xsl:template match="point"): Remove.
1287 * data/xslt/xml2xhtml.xsl: Likewise.
1288
f506ad1c
JD
12892007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
1290
1291 * src/getargs.c (version): Update copyright year.
1292
21f1b063
JD
12932007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
1294
1295 Make xml2dot.xsl and --graph produce the same output.
1296 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
1297 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
1298 escaped later.
1299 (xsl:template name="output-node"): Use the new escape template instead
1300 of the string-replace template directly.
1301 (xsl:template name="output-edge"): Likewise.
1302 (xsl:template name="escape"): New, escapes backslashes and newlines in
1303 addition to quotation marks.
1304 * src/graphviz.c (start_graph, output_node, output_edge): Add
1305 whitespace to output for legibility.
1306
1307 Make xml2text.xsl and --report produce the same output, and remove the
1308 XML "conflicts" element since a conflict summary is easily extracted
1309 from the automaton.
1310 * data/xslt/bison.xsl: New.
1311 (xsl:template match="state" mode="bison:count-conflicts): New.
1312 * data/xslt/xml2text.xsl: Import bison.xsl.
1313 (xsl:template match="bison-xml-report"): Instead of styling the
1314 "conflicts" element, style the "automaton" element with mode
1315 "conflicts". Unlike the former, the latter lists S/R and R/R
1316 conflicts for a state on the same line.
1317 (xsl:template match="conflicts"): Remove.
1318 (xsl:template match="conflict"): Remove.
1319 (xsl:template match="terminal"): Line-wrap the list of rules in which
1320 the terminal is used.
1321 (xsl:template match="nonterminal"): Likewise for nonterminals.
1322 (xsl:template match="automaton" mode="conflicts"): New.
1323 (xsl:template match="state" mode="conflicts"): New.
1324 (xsl:template name="line-wrap"): New.
1325 (xsl:template name="ws-search"): New.
1326 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
1327 (xsl:template match="bison-xml-report"): Instead of styling the
1328 "conflicts" element, style the "automaton" element with mode
1329 "conflicts."
1330 (xsl:template match="conflicts"): Remove.
1331 (xsl:template match="conflict"): Remove.
1332 (xsl:template match="automaton" mode="conflicts"): New.
1333 (xsl:template match="state" mode="conflicts): New.
1334 * src/conflicts.c (conflicts_output_xml): Remove.
1335 * src/conflicts.h (conflicts_output_xml): Remove prototype.
1336 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
1337 * src/print.c (print_grammar): Consistently wrap at the 66th column so
1338 the corresponding XSLT is easier. Also, never wrap between a word and
1339 the comma that follows it.
1340
793fbca5
JD
13412007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
1342
1343 Improve C++ namespace support. Discussed starting at
1344 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
1345 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
1346 b4_namespace_close): New macros that interpret the %define variable
1347 "namespace" so its value can contain "::" to indicate nested
1348 namespaces.
1349 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
1350 the above macros.
1351 * data/lalr1.cc (b4_namespace): Likewise.
1352 * data/location.cc (b4_namespace): Likewise.
1353 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
1354 inside a new table in the general %define entry. Document `%define
1355 namespace' there as well. Point the %name-prefix entry to it since it
1356 explains it more completely in the case of C++.
1357 (C++ Bison Interface): Mention `%define namespace' instead of
1358 %name-prefix.
1359 (Table of Symbols): Remove the `%define push_pull' entry. The %define
1360 entry suffices.
1361 * tests/c++.at (Relative namespace references): New test case.
1362 (Absolute namespace references): New test case.
1363 (Syntactically invalid namespace references): New test case.
1364 * tests/input.at (C++ namespace reference errors): New test case.
1365
35b8730d
JD
13662007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
1367
1368 Add syncline support and location accessor to internal %define
1369 interfaces.
1370 * data/bison.m4 (b4_percent_define_get_loc): New.
1371 (b4_percent_define_get_syncline): New.
1372 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
1373 (b4_percent_define_default): Record defining location as line 1 rather
1374 than 0 for the sake of synchronizing #line's, and define
1375 b4_percent_define_syncline(VARIABLE).
1376 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
1377 * src/muscle_tab.c (muscle_syncline_grow): New.
1378 (muscle_code_grow): Use muscle_syncline_grow.
1379 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
1380 define b4_percent_define_syncline(VARIABLE).
1381 (muscle_percent_define_get_loc): New.
1382 (muscle_percent_define_get_syncline): New.
1383 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
1384 remove some unused variables.
1385 (muscle_percent_define_default): Record defining location as line 1
1386 rather than 0 for the sake of synchronizing #line's, and define
1387 b4_percent_define_syncline(VARIABLE).
1388 (muscle_percent_define_check_values): Use
1389 muscle_percent_define_get_loc.
1390 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
1391 (muscle_percent_define_get_syncline): Prototype.
1392 * tests/skeletons.at (%define Boolean variables: invalid skeleton
1393 defaults): Update output for location change.
1394 (Complaining during macro argument expansion): Extend to test
1395 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
1396
7dc4a694
JD
13972007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
1398
1399 Fix some error-reporting macro bugs.
1400 * data/bison.m4 (b4_cat): New.
1401 (b4_error, b4_error_at): Use b4_cat to send error directives directly
1402 to stdout so they don't become arguments to other macros. Update
1403 comments and add examples.
1404 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
1405 add examples.
1406 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
1407 after printing the error directive so that M4 doesn't report subsequent
1408 problems that are induced by this problem.
1409 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
1410 instead of just in them. Recognize @\n in both places. Both expand to
1411 the empty string. Needed by b4_cat.
1412 * tests/skeletons.at (Complaining during macro argument expansion):
1413 New test case.
1414 (Fatal errors make M4 exit immediately): New test case.
1415
d4bd2295
JD
14162007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
1417
1418 Implement --print-datadir.
1419 * src/getargs.c (usage): Mention.
1420 (PRINT_DATADIR_OPTION): New anonymous enum member.
1421 (long_options): Add entry for it.
1422 (getargs): Add case for it calling compute_pkgdatadir.
1423 * src/output.c (output_skeleton): Encapsulate data directory
1424 computation from here...
1425 (prepare): ... and from here...
1426 (compute_pkgdatadir): ... into this new function.
1427 * src/output.h (compute_pkgdatadir): Prototype.
1428
34cdeddf
JD
14292007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
1430
1431 * src/print-xml.c (escape_bufs): New static global variable
1432 replacing...
1433 (xml_escape_n): ... the static local variable buf here.
1434 (print_xml): Free memory for escape_bufs.
1435 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
1436
d782395d
JD
14372007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
1438
1439 Replace `%push-parser' and `%push-pull-parser' with
1440 `%define push_pull "push"' and `%define push_pull "both"'.
1441 `%define push_pull "pull"' is the default.
1442 * doc/bison.texinfo (Push Decl, Push Parser Function,
1443 Pull Parser Function, Parser Create Function, Parser Delete Function):
1444 Update declarations.
1445 (Decl Summary, Table of Symbols): Replace %push-parser and
1446 %push-pull-parser entries with a %define push_pull entry.
1447 * data/bison.m4 (b4_percent_define_check_values): New macro.
1448 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
1449 definitions...
1450 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
1451 definitions...
1452 * data/push.c: ... to here and compute them from the value of the
1453 %define variable push_pull.
1454 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
1455 parsing requests here...
1456 * data/yacc.c: ... hack this to switch to push.c any time
1457 b4_use_push_pull_flag or the %define variable push_pull is set. This
1458 will go away when we mv push.c yacc.c.
1459 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
1460 push parsing is not supported since unused %define variables are
1461 reported anyway.
1462 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
1463 * src/muscle_tab.h (muscle_percent_define_check_values): Update
1464 comments for consistency with b4_percent_define_check_values.
1465 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
1466 muscles.
1467 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
1468 Remove.
1469 (prologue_declaration): Remove %push-parser and %push-pull-parser
1470 rules.
1471 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
1472 * tests/calc.at: Update declarations.
1473 * tests/input.at (%define enum variables): New test case.
1474 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
1475 declaration.
1476 (Push Parsing: Multiple impure instances): Update declaration.
1477 (Push Parsing: Unsupported Skeletons): New test case.
1478 * tests/torture.at (Exploding the Stack Size with Alloca): Update
1479 declaration.
1480 (Exploding the Stack Size with Malloc): Update declaration.
1481
3f999f78
WP
14822007-09-24 Wojciech Polak <polak@gnu.org>
1483
1484 Add XSLT transformations.
1485
1486 * data/xslt/xml2dot.xsl: Transform XML into DOT.
1487 * data/xslt/xml2text.xsl: Transform XML into plain text.
1488 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
1489 * data/Makefile.am (xsltdir): New variable.
1490 (dist_xslt_DATA): Add xslt/*.xsl files.
1491
a4f75309
PE
14922007-09-23 Paul Eggert <eggert@cs.ucla.edu>
1493
1494 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
1495 Problem reported by Wojciech Polak.
1496 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
1497 (xml_printf): Undo change I made on 21 September; that is,
1498 indent 2 spaces, not 1.
1499
ad5feac4
JD
15002007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
1501
1502 Pacify ./configure --enable-gcc-warnings.
1503 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
1504 `char const *' instead of `char *'.
1505 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
1506 local variable `sep'.
1507
41d7a5f2
PE
15082007-09-21 Paul Eggert <eggert@cs.ucla.edu>
1509
1510 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
1511 elsewhere.
1512 * src/print-xml.c: Prefer "const" after types; that's more consistent.
1513 (xml_printf): Indent just 1 space for level.
1514 (e_char, xlate_char): Remove.
1515 (xml_escape_string): Rewrite to avoid undefined behavior (used
1516 storage that was freed from the stack).
1517 (xml_escape_n): Don't bother checking for subscript error.
1518
3f999f78
WP
15192007-09-21 Wojciech Polak <polak@gnu.org>
1520
1521 Add Bison XML Automaton Report.
41d7a5f2
PE
1522
1523 Add support for an -x option to generate an XML report.
1524 It is not documented yet.
1525 * src/print-xml.c: New file.
1526 * src/print-xml.h: Likewise.
1527 * lib/timevar.def (TV_XML): New var.
1528 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
1529 * src/conflicts.c: Include print-xml.h.
1530 (solved_conflicts_xml_obstack): New var.
1531 (log_resolution, conflicts_solve, conflicts_free):
1532 Add support for XML report.
1533 (conflicts_output_val): New function.
1534 * src/conflicts.h (conflicts_output_val): New decl.
1535 * src/files.c (spec_xml_file): New var.
1536 (compute_output_file_names, output_file_names_free): Add XML support.
1537 * src/files.h (spec_xml_file): New decl.
1538 * src/getargs.c (xml_flag): New var.
1539 (usage, short_options, long_options, getargs): Add XML support.
1540 * src/getargs.h (xml_flag): New decl.
1541 * src/gram.c: Include print-xml.h.
1542 (rule_lhs_print_xml, rule_rhs_print_xml):
1543 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
1544 New functions.
1545 * src/gram.h: Declare external ones.
1546 * src/main.c: Include print-xml.h.
1547 (main): Add XML support.
1548 * src/reduce.c: Include print-xml.h.
1549 (reduce_xml): New function.
1550 * src/reduce.h: Declare it.
1551 * src/state.c: Include print-xml.h.
1552 (state_new): Add XML support.
1553 (state_rule_lookahead_tokens_print_xml): New function.
1554 * src/state.h: Declare it.
1555 (struct state): New member solved_conflicts_xml.
1556 * src/symtab.c (symbol_class_get_string): New function.
1557 * src/symtab.h: Declare it.
1558
6d8e724d
PE
15592007-09-21 Paul Eggert <eggert@cs.ucla.edu>
1560
1561 * GNUmakefile: Switch to coreutils's version.
1562 * bootstrap: Likewise.
1563 * Makefile.cfg: Adjust to new GNUmakefile.
1564 * README-hacking: Likewise.
1565
1566 Import from gnulib:
1567
1568 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
1569 Bruno Haible <bruno@clisp.org>
1570
1571 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
1572 and is a script that invokes bison. Tighten the code. Add comments.
1573
922bdd7f
JD
15742007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
1575
1576 Spell "boolean" as "Boolean". Reported by Akim Demaille.
1577 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
1578 * doc/bison.texinfo (Decl Summary): Fix.
1579 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
1580 * tests/input.at (Boolean %define variables): Update output.
1581 * tests/skeletons.at (%define boolean variables: invalid skeleton
1582 defaults): Rename to...
1583 (%define Boolean variables: invalid skeleton defaults): ... this and
1584 update output.
1585
1b17b01d
JD
15862007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
1587
1588 In impure push mode, don't allow more than one yypstate to be allocated
1589 since multiple impure parsers would corrupt yynerrs.
1590 * data/push.c (yypstate_allocated): New static global variable
1591 initialized to 0.
1592 (yypull_parse): If yypstate_new returns 0, don't report it as memory
1593 exhaustion if yypstate_allocated is 1, but still return 2.
1594 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
1595 already 1. Otherwise, set it to 1.
1596 (yypstate_delete): Set it to 0.
1597 * tests/push.at (Push Parsing: Multiple impure instances): New test
1598 case.
1599
9987d1b3
JD
16002007-08-17 Bob Rossi <bob@brasko.net>
1601
1602 * doc/bison.texinfo (Push Decl): Document the push parser.
1603 (Table of Symbols): Ditto.
1604 (Pure Decl): Ditto.
1605 (Decl Summary): Ditto.
1606 (Multiple Parsers, Push Parser Function, Pull Parser Function,
1607 Parser Create Function, Parser Delete Function):
1608 Add new push parser symbols.
1609 (Table of Symbols): Document push-parser, push-pull-parser,
1610 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
1611
f16b0819
PE
16122007-08-15 Paul Eggert <eggert@cs.ucla.edu>
1613
1614 Update to GPLv3.
1615 * doc/gpl-3.0.texi: New file.
1616 * doc/gpl.texi: Remove.
1617 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
1618 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
1619 * README-hacking, TODO, bootstrap, bootstrap.conf:
1620 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
1621 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
1622 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
1623 * data/lalr1.cc, data/lalr1.java, data/location.cc:
1624 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
1625 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
1626 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
1627 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
1628 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
1629 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
1630 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
1631 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
1632 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
1633 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
1634 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
1635 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
1636 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
1637 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
1638 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
1639 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
1640 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
1641 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
1642 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
1643 * src/complain.c, src/complain.h, src/conflicts.c:
1644 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
1645 * src/files.h, src/flex-scanner.h, src/getargs.c:
1646 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
1647 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
1648 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
1649 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
1650 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
1651 * src/print.c, src/print.h, src/print_graph.c:
1652 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
1653 * src/reduce.h, src/relation.c, src/relation.h:
1654 * src/revision.h, src/scan-code.h, src/scan-code.l:
1655 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
1656 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
1657 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
1658 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
1659 * tests/Makefile.am, tests/actions.at, tests/c++.at:
1660 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
1661 * tests/existing.at, tests/glr-regression.at:
1662 * tests/headers.at, tests/input.at, tests/java.at:
1663 * tests/local.at, tests/output.at, tests/push.at:
1664 * tests/reduce.at, tests/regression.at, tests/sets.at:
1665 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
1666 * tests/torture.at:
1667 Update to GPLv3.
1668
728c4be2
JD
16692007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
1670
1671 Get rid of broken %no-parser, -n, and --no-parser implementation and
1672 documentation.
1673 * TODO: Don't mention them.
1674 * doc/bison.1: Likewise.
1675 * doc/bison.texinfo (Decl Summary): Likewise.
1676 (Bison Options): Likewise.
1677 (Option Cross Key): Likewise.
1678 * src/getargs.c (no_parser_flag): Remove global variable.
1679 (usage): Don't print description of -n and --no-parser.
1680 (long_options): Remove --no-parser entry here.
1681 (getargs): Remove -n case in the switch here.
1682 * src/getargs.h (no_parser_flag): Remove extern.
1683 * tests/regression.at (Web2c Actions): Remove comment that mentions
1684 --no-parser.
1685
5d31a216
JD
16862007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
1687
1688 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
1689 name user variables starting with `yy'. Just pass NULL instead of a
1690 dummy local &yylval to yypush_parse.
1691 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
1692 starting with `yy'.
1693
a2ea208d
JD
16942007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
1695
1696 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
1697 true since it's then always used regardless of whether yyoverflow is
1698 defined. Reported by Christian Burger at
1699 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
1700 * THANKS: Add Christian Burger.
1701
91661ebb
JD
1702 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
1703 node names: say "Decl Summary" not "Bison Declaration Summary".
1704
cbd50549
JD
17052007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
1706
1707 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
1708 determine whether this function has already complained about an invalid
1709 value for a %define boolean variable, don't check whether Bison has
1710 ever examined the value. As written, the check was a tautology.
1711 Instead, record and check for this complaint using a separate muscle.
1712
eb1b0740
JD
17132007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1714
1715 Fix push parsing memory leak reported by Brandon Lucia at
1716 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
1717 * THANKS: Add Brandon Lucia.
1718 * data/push.c (yypstate_delete): Free the stack if it was reallocated
1719 but the parse never completed and thus freed it.
1720 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
1721 * tests/testsuite.at: Include push.at.
1722 * test/push.at: New.
1723 (Push Parsing: Memory Leak for Early Deletion): New test case.
1724
9d774aff
JD
17252007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
1726
1727 Improve handling of multiple S/R conflicts in the same state and of S/R
1728 conflicts involving multiple reductions.
1729 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
1730 set for a state here or Bison will abort if it is reassigned on a
1731 later conflicted reduction in the same state.
1732 Similarly, don't finalize and assign the solved conflicts report here
1733 or it will be lost if it is reassigned on a later conflicted reduction
1734 in the same state.
1735 (set_conflicts): Instead, assign them both here after all S/R conflicts
1736 in the state have been fully examined.
1737 * src/print.c (shift_set): Rename to...
1738 (no_reduce_set): ... this.
1739 (print_reductions): Update for rename, and add %nonassoc error action
1740 tokens to no_reduce_set so that, when printing the first remaining
1741 reduction on an error action token, the reduction is enclosed in
1742 brackets.
1743 (print_results): Update for rename.
1744 * tests/conflicts.at (Solved conflicts report for multiple reductions
1745 in a state): New test case.
1746 (%nonassoc error actions for multiple reductions in a state): New test
1747 case.
1748
1749 * src/main.c (main): Don't depend on C99 features.
1750
10159d2a
JD
17512007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
1752
1753 * build-aux/.cvsignore: Add compile.
b541ffdf
JD
1754 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
1755 uniwidth.
10159d2a 1756
953b3935
JD
17572007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
1758
1759 * bootstrap (slurp): Create target directories that don't exist.
1760 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
1761
6ce2d93a
JD
17622007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
1763
1764 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
1765 than item number.
1766 * closure.c (closure): Likewise.
1767 * state.h (reductions): Comment sorting of rules.
1768 (state): Comment sorting of items.
1769
ce3448d5
JD
17702007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
1771
1772 Fix C++ test cases after recent Gnulib changes. Discussed starting at
1773 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
1774 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
1775 definition in order to avoid Gnulib headers since we don't use config.h
1776 here.
1777 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
1778 rather than AT_DATA so that config.h is included.
1779
8a86eef0
JD
17802007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
1781
1782 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
1783 instead of fprintf. Guard these functions with #if YYDEBUG instead of
1784 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
1785 and so that YYFPRINTF is guaranteed to be defined here.
1786
b1a81613
JD
17872007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
1788
1789 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
1790 with...
1791 (muscle_percent_define_check_values): ... this more helpful function.
1792 Again, it's not used yet, but it will be.
1793 * src/muscle_tab.h: Likewise.
1794
71b61d4d
JD
1795 Improve some comments in parser table construction.
1796 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
1797 (generate_states): Don't mention ruleset, which is internal to closure.
1798 * src/closure.c (closure): Explain sorting of core and itemset, which
1799 is required for this function to behave correctly.
1800 * src/closure.h (closure): Mention sorting.
1801
2a6b783d
JD
18022007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
1803
1804 * src/lalr.c (state_lookahead_tokens_count): For code readability,
1805 move the check for disabled transitions to an aver since conflict
1806 resolution hasn't happened yet.
1807
1808 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
1809 labels a state as inconsistent just because it has error transitions.
1810 The original form of this check appeared in revision 1.1 of lalr.c,
1811 which was committed on 1991-12-21. Now (at least), changing the
1812 consistency label on such a state appears to have no useful effect in
1813 any of the places it is examined, which I enumerate below. The key
1814 point to understanding each item in this enumeration is that a state
1815 with an error transition is labelled consistent in the first place only
1816 if it has no rules, so the check cannot matter for states that have
1817 rules. (1) Labelling a state as inconsistent will cause set_conflicts
1818 to try to identify its conflicts, and a state must have *rules* to have
1819 conflicts. (2) Labelling a state as inconsistent will affect how
1820 action_row sets the default *rule* for the state. (3) Labelling a
1821 state as inconsistent will cause build_relations to add lookback edges
1822 to *rules* in that state.
1823 * src/state.h (struct state): Word the comment for member consistent
1824 more carefully.
1825
14462c2b
JD
18262007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1827
1828 Don't depend on C99 features.
1829 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
1830 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
1831 * src/reader.c (check_and_convert_grammar): Fix for-loop.
1832 * src/state.c (state_mark_reachable_states): Fix for-loop.
1833 (state_remove_unreachable_states): Fix for-loop.
1834
1835 Don't widen struct state with member reachable just to temporarily
1836 record reachability. Instead, use a local bitset.
1837 * src/state.h (struct state): Remove member.
1838 * src/state.c (state_new): Don't initialize it.
1839 (state_mark_reachable_states): Rename to...
1840 (state_record_reachable_states): ... this, and use bitset.
1841 (state_remove_unreachable_states): Use bitset.
1842
5a43d418
JD
18432007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
1844
1845 * src/Makefile.am (yacc): Quote target action commands properly so
1846 that the yacc script isn't corrupt. Reported by Hans Aberg at
1847 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
1848
0c650a20
JD
1849 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
1850 the case of pure parsers. Reported by Frans Englich at
1851 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
1852 * THANKS: Add Frans Englich.
1853
61fee93e
JD
1854 * NEWS (2.3a+): In the %code entry, reference section `Bison
1855 Declaration Summary' from the manual now since the %code summary has
1856 moved there.
1857 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
1858 in the rules section must be terminated by semicolons.
1859
f124d423
JD
18602007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
1861
1862 Extend the front-end API for %define variables to more completely
1863 mirror the back-end. This will be useful in the future.
1864 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
1865 Update comments to mention the new front-end counterparts of these
1866 macros.
1867 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
1868 for muscle_string_decode and muscle_location_decode.
1869 (muscle_string_decode): New static function.
1870 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
1871 (muscle_percent_define_get, muscle_percent_define_ifdef): New
1872 functions.
1873 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
1874 muscle_percent_define_get to mimic the b4_percent_define_flag_if
1875 implementation more closely.
1876 (muscle_percent_define_invalid_value): New function.
1877 * src/muscle_tab.h (muscle_percent_define_get,
1878 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
1879 Prototype.
1880
75ad86ee
JD
18812007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
1882
1883 * NEWS (2.3a+): Mention yesterday's state-removal change.
1884 (2.3a): Remove the %language entry, which was added after 2.3a.
1885 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
1886 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
1887 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
1888 tests/existing.at: Update copyright date.
1889
5967f0cf
JD
18902007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
1891
1892 If conflict resolution makes states unreachable, remove those states,
1893 report rules that are then unused, and don't report conflicts in those
1894 states.
1895 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
1896 New global function.
1897 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
1898 function.
1899 * src/main.c (main): After conflict resolution, remove the unreachable
1900 states and update all data structures that reference states by number.
1901 * src/state.c (state_new): Initialize each state's reachable member to
1902 false.
1903 (state_mark_reachable_states): New static function.
1904 (state_remove_unreachable_states): New global function.
1905 * src/state.h (struct state): Add member bool reachable.
1906 (state_remove_unreachable_states): Prototype.
1907 * tests/conflicts.at (Unreachable States After Conflict Resolution):
1908 New test case.
1909 * tests/existing.at (GNU pic Grammar): Update test case output now that
1910 an unused rule is discovered.
1911
b09f4f48
JD
19122007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
1913
1914 Minor code cleanup in parser table construction.
1915 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
1916 (new_itemsets, save_reductions): Update for rename to nitemset.
1917 * src/closure.c (nritemset): Rename to...
1918 (nitemset): ... this since the "r" appears to meaningless and isn't
1919 used in the comments.
1920 (closure): Update for rename.
1921 * src/closure.h (nritemset): Update extern to...
1922 (nitemset): ... this.
1923 * src/lalr.c (LA): Fix a typo in comments.
1924 * src/print.c (print_core): Update for rename to nitemset.
1925 * src/print_graph.c (print_graph): Likewise.
1926 * src/state.h: Fix some typos in header comments.
1927
bbb44d83
PE
19282007-04-04 Paul Eggert <eggert@cs.ucla.edu>
1929
9b33de72
PE
1930 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
1931 still sticks to ASCII. Sorry!
1932
bbb44d83
PE
1933 * README-hacking: New file, taken mostly from coreutils, with changes
1934 for Bison. Contains much of the contents of:
1935 * README-cvs: Remove.
1936 * bootstrap: Sync from gnulib.
1937 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
1938 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
1939
29553547
JD
19402007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
1941
1942 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
1943 Setzer.
1944 (Java Differences): Fix some typos.
1945 * THANKS: Add Sebastian Setzer.
1946
01b477c6
PB
19472007-03-07 Paolo Bonzini <bonzini@gnu.org>
1948
730739e4
AD
1949 * data/java.m4 (b4_single_class_if): Remove.
1950 (b4_abstract_if): Look at "%define abstract".
1951 (b4_lexer_if): New.
1952 (b4_union_name): Rename...
1953 (b4_yystype): ... to this. Map to "%define stype".
1954 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
1955 b4_maybe_throws): Fix quoting.
1956 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
1957 * data/lalr1.java (Lexer interface): Always define.
1958 (Lexer interface within parser class): Remove.
1959 (YYLexer class): New, used when "%code lexer" is present.
1960 (constructor): When "%code lexer" is used, pass %lex-param
1961 to the lexer constructor.
1962 (yylex, yyparse): Remove %lex-param from method invocations
1963 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
1964
1965 * doc/bison.texinfo (Java Bison Interface): Mention "%define
1966 abstract". Rename "%define union_name" to "%define stype".
1967 Rename method names according to previous patch.
1968 (Java Scanner Interface): Describe "%code lexer" instead of
1969 "%pure-parser" and "%define single_class".
1970 (Java Differences): Mention "%code lexer".
1971
1972 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
1973 Include scanner here, using macros from tests/local.at.
1974 (AT_DATA_CALC_Y): Remove final argument.
1975 (_AT_CHECK_JAVA_CALC): Likewise.
1976 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
1977 of %locations and %error-verbose.
1978 (main): Test with and without %lex-param.
1979 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
1980 (AT_BISON_OPTION_POPDEFS): Pop it.
01b477c6 1981
122bea3a
JMG
19822007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1983
1984 DJGPP spefic issue. Inhibit the use of disallowed characters for
1985 file name genertion on Win98, WinXP, etc. These are |<>":?*\
1986 and concern testsuite case 46.
1987 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
1988 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
1989 * djgpp/config.bat: Inhibit the use of disallowed characters.
1990
9611cfa2
JD
19912007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
1992
1993 Miscellaneous %define and %code cleanup.
1994 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
1995 values are interpreted.
1996 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
1997 documentation a little more.
1998 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
1999 muscle_percent_define_insert, muscle_percent_code_grow): New
2000 functions/macros.
2001 * src/muscle_tab.h (muscle_percent_define_insert,
2002 muscle_percent_code_grow): Prototype.
2003 * src/parse-gram.y (prologue_declaration): Use
2004 muscle_percent_define_insert and muscle_percent_code_grow when parsing
2005 %define and %code directives.
2006
2007 Make it easy to share %define boolean variables between the front-end
2008 and back-end. Though not used yet, this will be useful in the future.
2009 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
2010 Bison uses of names rather than just skeleton uses of names.
2011 (b4_percent_define_get, b4_percent_define_ifdef): Rename
2012 b4_percent_define_skeleton_variables(VARIABLE) to
2013 b4_percent_define_bison_variables(VARIABLE).
2014 (b4_percent_code_get, b4_percent_code_ifdef): Rename
2015 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
2016 b4_percent_code_bison_qualifiers(QUALIFIER).
2017 (b4_check_user_names_wrap): Update for renames.
2018 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
2019 muscle_percent_define_default): New functions mimicking
2020 b4_percent_define_flag_if and b4_percent_define_default.
2021
2022 For %define variables, report locations for invalid values and
bbb44d83 2023 redefinitions.
9611cfa2
JD
2024 * data/bison.m4 (b4_percent_define_flag_if): Read
2025 b4_percent_define_loc(VARIABLE) to report the location of an invalid
2026 value for VARIABLE.
2027 (b4_percent_define_default): Save a special location in
2028 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
2029 must later be reported as invalid.
2030 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
2031 functions.
2032 (muscle_percent_define_insert): Record the location of VARIABLE in
2033 muscle percent_define_loc(VARIABLE), and use it to report the previous
2034 location for a redefinition.
2035 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
2036 (muscle_percent_define_default): Update like b4_percent_define_default.
2037 (muscle_grow_user_name_list): Rename to...
2038 (muscle_user_name_list_grow): ... this for consistency and use
2039 muscle_location_grow.
2040 * src/muscle_tab.h (muscle_location_grow): Prototype.
2041 * tests/input.at (%define errors): Update expected output.
2042 * tests/skeletons.at (%define boolean variables: invalid skeleton
2043 defaults): New test case.
2044
0bf92491
JD
20452007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
2046
2047 * src/print.c (lookahead_set, state_default_rule): Remove.
2048 (print_reductions): Replace state_default_rule invocation with
2049 equivalent use of yydefact, which was computed in token_actions in
2050 tables.c.
2051 (print_results): Don't allocate lookahead_set.
2052
d3b12988
PB
20532007-02-27 Paolo Bonzini <bonzini@gnu.org>
2054
2055 * data/lalr1.java: Prefix all private members with yy.
2056
f57a7536
JD
20572007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
2058
2059 Use YYFPRINTF instead of fprintf where appropriate. Reported by
9b33de72 2060 Sebastien Fricker at
f57a7536 2061 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
9b33de72 2062 * THANKS: Add Sebastien Fricker.
f57a7536
JD
2063 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
2064 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
2065 accept a variable number of arguments.
2066
6404a5bf
JD
20672007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
2068
2069 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
2070
e4e09639
JMG
20712007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2072
2073 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
2074 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
2075 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
2076
d7e0a1a7
PE
20772007-02-11 Paul Eggert <eggert@cs.ucla.edu>
2078
2079 Undo my 2007-02-07 change, switching back to the c-strcase module
2080 introduced in the 2007-02-03 change. Bruno Haible reported that
2081 the 2007-02-07 change would be dangerous in Turkish if we add a
2082 language whose name contains "i", since "i" is not lowercase "I"
2083 in Turkish.
2084 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
2085 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
2086 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
2087 * m4/.cvsignore: Remove strcase.m4.
2088 * src/getargs.c: Revert 2007-02-07 change, as follows.
2089 Include c-strcase.h.
2090 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
2091
deee93a1
JD
20922007-02-11 Bruno Haible <bruno@clisp.org>
2093
2094 Enable the Java related testsuite tests when the only Java compiler
2095 found is a gcj < 4.3. Discussed at
2096 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
2097 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
2098
574add85
JD
20992007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
2100
2101 * data/Makefile.am: Update copyright date.
2102 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
2103 yypstate_new returns NULL.
2104 (yypstate_new): Return NULL if malloc does.
2105 * src/reader.c (packgram): Move translation of rule actions from the
2106 beginning of packgram to...
2107 (check_and_convert_grammar): ... here right before packgram is invoked
2108 so it's easier to write more complete comments, and remove redundant
2109 code.
2110
e785ccf7
JD
21112007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
2112
2113 As in semantic actions, make @$ in %initial-action, %destructor, and
2114 %printer imply %locations.
2115 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
2116 scanning @$.
2117 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
2118 (@$ in %initial-action implies %locations,
2119 @$ in %destructor implies %locations,
2120 @$ in %printer implies %locations): ... these new test cases.
2121
1cfe1ed7
PE
21222007-02-07 Paul Eggert <eggert@cs.ucla.edu>
2123
2124 Undo most of the 2007-02-03 change, switching to the strcase module
2125 now that gnulib strcase has been fixed.
2126 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
2127 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
2128 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
2129 * m4/.cvsignore: Add strcase.m4.
2130 * src/getargs.c: Revert 2007-02-03 change, as follows.
2131 Don't include c-strcase.h.
2132 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
2133 strcasecmp has "unspecified behavior" outside the POSIX locale,
2134 but it works fine in practice if at least one argument is ASCII,
2135 as is the case in Bison.
2136
0049ec86
PB
21372007-02-07 Paolo Bonzini <bonzini@gnu.org>
2138
2139 * tests/java.at: Skip tests if only one of javac/java is present.
2140 Reported by Joel E. Denny.
2141 * tests/atlocal.in: Adjust copyright years.
2142
21432007-02-05 Paolo Bonzini <bonzini@gnu.org>
2144
2145 * data/lalr1.java (Stack): Work around old verifiers that disallow
2146 access to the private fields of an inner class, from the outer class.
2147 We can make Stack's fields public because user code doesn't have access
2148 to the instance of Stack used by parse(). Reported by Paul Eggert.
2149
2c2b7220
PE
21502007-02-03 Paul Eggert <eggert@cs.ucla.edu>
2151
2152 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
2153 the right spot for these files?
2154 * bootstrap.conf (gnulib_modules): Add c-strcase.
2155 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
2156 c-strncasecmp.c.
2157 * src/getargs.c: Include c-strcase.h.
2158 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
2159 to avoid unspecified behavior.
2160
b2b81dae
JD
21612007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
2162
2163 * doc/bison.texinfo (Decl Summary): Correct typo.
2164
c1d19e10
PB
21652007-01-30 Paolo Bonzini <bonzini@gnu.org>
2166
2167 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
2168 Complain if the value does not match empty, "true" or "false".
2169 * data/c++.m4: Adjust default definitions of %define variables.
2170 * data/java.m4: Adjust default definitions of %define variables.
2171 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
2172 to above behavior.
2173 * tests/input.at (Boolean %define variables): Test new behavior.
2174
8405b70c
PB
21752007-01-29 Paolo Bonzini <bonzini@gnu.org>
2176
2177 * NEWS: Mention java.
2178 * TODO: Remove things that are done.
2179 * bootstrap.conf: Add javacomp-script and javaexec-script.
2180 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
2181
2182 * data/Makefile.am: Add new files.
2183 * data/java-skel.m4: New.
2184 * data/java.m4: New.
2185 * data/lalr1.java: New.
2186
2187 * doc/bison.texinfo: Put "A Complete C++ Example" under
2188 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
2189 under Other Languages.
2190
2191 * src/getargs.c (valid_languages): Add Java.
2192 * src/getargs.h (struct bison_language): Update size of string fields.
2193
2194 * tests/Makefile.am: Add java.at.
2195 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
2196 * tests/java.at: New.
2197 * tests/testsuite.at: Include it.
2198
3eb82471
JD
21992007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
2200
2201 Clean up.
2202 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
2203 at_directive_argv arguments so these no longer have to be global
2204 variables. Also, update the implementation for the following changes.
2205 (fail_for_at_directive_too_many_args,
2206 fail_for_at_directive_too_few_args): Add at_directive_name argument.
2207 (at_directive_name): Remove as at_directive_argv[0] will be used for
2208 this now.
2209 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
2210 for the directive name.
2211 (at_directive_argc, at_directive_argv): Make these local within
2212 skel_lex instead of global.
2213 (INITIAL): Update directive start action for above changes.
2214 (SC_AT_DIRECTIVE_ARG): Rename to...
2215 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
2216 (SC_AT_DIRECTIVE_SKIP_WS): Update.
2217 (scan_skel): Move yylex_destroy to...
2218 (skel_scanner_free): ... here.
2219 * tests/skeletons.at (installed skeleton file name): Rename to...
2220 (installed skeleton file names): ... this.
2221
148d66d8
JD
22222007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
2223
2224 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
2225 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
2226 Summary" not "Directives".
2227 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
2228 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
2229 since the former is now the more complete one.
2230 (Prologue Alternatives): Likewise and do the same for %defines.
2231 (Table of Symbols): Add summary of %code, add summary of %define, and
2232 move full %code documentation to...
2233 (Decl Summary): ... here for consistency with other entries in these
2234 sections.
2235 Move %define entry in order to keep this list alphabetized.
2236 Reword %define entry a little to put less emphasis on the skeleton
2237 concept, which most users shouldn't have to think about.
2238
665f0c24
PE
22392007-01-26 Paul Eggert <eggert@cs.ucla.edu>
2240
2241 Adjust to recent gnulib changes.
2242 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
2243 Add string.h, string_.h, unistd_.h, wchar_.h.
2244 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
2245 * src/system.h: Don't include <stpcpy.h>; this is now done by
2246 <string.h>.
2247
592d0b1e
PB
22482007-01-23 Paolo Bonzini <bonzini@gnu.org>
2249
2250 Simplify implementation of unqualified %code, implement macros for
2251 uniform treatment of boolean %define flags. Document %define.
2252 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
2253 b4_percent_code_ifdef): New.
2254 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
2255 * data/c++.m4: Define default value for global_tokens_and_yystype.
2256 * data/glr.cc: Likewise.
2257 * data/location.cc: Use b4_percent_define_flag_if.
2258
148d66d8 2259 * doc/bison.texinfo (Decl Summary): Document %define.
592d0b1e
PB
2260
2261 * src/parse-gram.y (Unqualified %code): Change muscle name to
2262 b4_percent_code().
2263 (content.opt): Default to empty.
2264
a7867f53
JD
22652007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
2266
2267 Implement support for relative and absolute skeleton file names.
2268 Discussed starting at
2269 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
2270 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
2271 (Bison Options): Document in --skeleton entry.
2272 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
2273 full_skeleton can't necessarily hold all of pkgdatadir.
2274 If the specified skeleton file name contains a `/', don't prepend
2275 pkgdatadir.
2276 * src/parse-gram.y (prologue_declaration): If the specified skeleton
2277 file name contains a `/', prepend the grammar file directory.
2278 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
2279 * skeletons.at: New file.
2280 (relative skeleton file names): New test case.
2281 (installed skeleton file names): New test case.
2282 * tests/testsuite.at: Include skeletons.at.
2283
2284 * bootstrap: Update copyright to 2007.
2285
830c9b18
PB
22862007-01-17 Paolo Bonzini <bonzini@gnu.org>
2287
2288 * bootstrap: Remove occurrences of .#bootmp from the files.
2289
a8c2e813
AD
22902007-01-17 Akim Demaille <akim@epita.fr>
2291
2292 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
2293 nonterminals.
2294 Use per-type %printer.
2295
279cabb6
JD
22962007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
2297
2298 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
2299 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
2300 djgpp/config.site, src/files.c, src/files.h, src/main.c,
2301 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
2302 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
2303 tests/glr-regression.at, tests/input.at, tests/local.at,
2304 tests/output.at, tests/torture.at: Update copyright to 2007.
2305
bb32f4f2
AD
23062007-01-16 Akim Demaille <akim@epita.fr>
2307
2308 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
2309 error code.
2310 (Calc++ Scanner): Exit with failure if we can't open the input
2311 file.
2312 Accept "-" standing for stdin.
2313 (Calc++ Top Level): Print the result only if the parsing was
2314 successful.
2315
7cff04b5
AD
23162007-01-16 Akim Demaille <akim@epita.fr>
2317
2318 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
2319
a4e25e1d
JD
23202007-01-15 Paolo Bonzini <bonzini@gnu.org>
2321 and Joel E. Denny <jdenny@ces.clemson.edu>
2322
2323 Clean up %define and %code implementation in M4 some. Most
2324 importantly, rename all related macros to be in the b4_percent_define
2325 and b4_percent_code namespaces. Also, complete support for `.' in
2326 %define variable names and %code qualifiers.
2327 * data/bison.m4 (b4_check_user_names): Check for special
2328 "SKELETON-NAMESPACE(name)" macros instead of using two nested
2329 m4_foreach loops.
2330 (b4_get_percent_define, b4_get_percent_code): Rename to...
2331 (b4_percent_define_get, b4_percent_code_get): ... these.
2332 Extend documentation with examples.
2333 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
2334 b4_percent_define_skeleton_variables and
2335 b4_percent_code_skeleton_qualifiers.
2336 Expect any value for the %define variable `foo' to be stored in the
2337 macro named `b4_percent_define(foo)'; expect any %code blocks for the
2338 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
2339 expect any unqualified %code blocks to be stored in a macro named
2340 `b4_percent_code_unqualified'.
2341 Use m4_indir so that %define variable names and %code qualifiers can
2342 contain `.', which is allowed by the grammar parser.
2343 (b4_percent_define_default): New macro to set a default value for a
2344 %define variable.
2345 (m4_wrap): Update wrapped code, and fix some underquoting.
2346 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
2347 Expect grammar uses of %define variables and %code qualifiers to be
2348 defined in b4_percent_define_user_variables and
2349 b4_percent_code_user_qualifiers.
2350 * data/c++.m4: Use b4_percent_define_default rather than
2351 m4_define_default. Fix some underquoting. Skeleton usage of %define
2352 variable define_location_comparison now implies skeleton usage of
2353 %define variable filename_type.
2354 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
2355 data/push.c, data/yacc.c: Update macro names.
2356 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
2357 muscle names.
2358
e37c665c
JMG
23592007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2360
2361 DJGPP specific issues.
2362
2363 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
2364 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
2365
7d2d521f
JD
23662007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2367
2368 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
2369 run parsers in all tests so that Valgrind is invoked during
2370 maintainer-check-valgrind.
2371 (Duplicate representation of merged trees): Free all semantic values.
2372 (Duplicated user destructor for lookahead): Likewise.
2373
e0ac9b4b
JD
23742007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2375
2376 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
2377 command-line prefix.
2378 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
2379 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
2380 miss Valgrind messages.
2381 (Exploding the Stack Size with Malloc): Likewise.
2382
78143faa
JD
23832007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2384
2385 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
2386 locals. Reported by Juan Manuel Guerrero at
2387 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
2388 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
2389 Fix some indentation also.
2390 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
2391 explaining this issue.
2392
7ecec4dd
JD
23932007-01-09 Paolo Bonzini <bonzini@gnu.org>
2394 and Joel E. Denny <jdenny@ces.clemson.edu>
2395
2396 Simplify union and prologue handling, and escape union and lex/parse
2397 params with digraphs.
2398 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
2399 values to the empty string since these are no longer guaranteed
2400 initialized by the front-end.
2401 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
2402 braces around b4_user_stype since this is no longer done by the
2403 front-end.
2404 * src/files.c, src/files.h (pre_prologue_obstack,
2405 post_prologue_obstack): Remove.
2406 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
2407 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
2408 with digraphs. This fixes lex params and parse params.
2409 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
2410 * src/output.c (prepare): Remove muscle insertion of the prologues.
2411 (output): Remove freeing of pre_prologue_obstack and
2412 post_prologue_obstack.
2413 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
2414 than prologue_augment for prologue parsing so you don't need prologue
2415 obstacks.
5c80250c
JD
2416 (grammar_declaration): For %union RHS, use `braceless' instead of
2417 "{...}" so that braces are already stripped and code is escaped with
2418 digraphs.
7ecec4dd
JD
2419 * src/reader.c (prologue_augment): Remove.
2420 (reader): Remove initialization of pre_prologue_obstack and
2421 post_prologue_obstack.
2422 * src/reader.h (prologue_augment): Remove.
2423
2424 * data/c.m4: Remove stray parenthesis.
2425
16dc6a9e
JD
24262007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2427
2428 Remove quotes from variables names in %define directives and from
2429 qualifiers in %code directives, and restrict the characters that are
2430 allowed in them to M4-friendly ones. For %define, continue to support
2431 the quoted form as a deprecated feature. Discussed starting at
2432 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
2433 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
2434 %code.
2435 * doc/bison.texinfo (Prologue Alternatives): Update.
91661ebb
JD
2436 (Decl Summary): In %defines entry, update mention of `%code requires'
2437 and `%code provides'.
16dc6a9e
JD
2438 (C++ Location Values): Update %define uses.
2439 (Calc++ Parser Interface): Likewise.
2440 (Calc++ Parser): Likewise, and update `%code requires' uses.
148d66d8 2441 (Table of Symbols): Update %code documentation.
16dc6a9e
JD
2442 * src/parse-gram.y (prologue_declaration): For %define variables, use
2443 `variable' instead of `STRING'.
2444 (grammar_declaration): For %code qualifiers, use `ID' instead of
2445 `STRING'.
2446 (variable): New nonterminal that takes an `ID' or a `STRING'.
2447 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
2448 and %define uses.
2449 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
2450 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
2451 (%define errors): Update %define uses.
2452
e9813cd4
JD
24532007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2454
2455 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
2456 instead of muscle_insert for %define values so that M4-special
2457 characters are replaced with digraphs.
2458 * tests/input.at (%define errors): Extend to check weird values.
2459
6afc30cc
JD
24602007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2461
2462 Instead of having skeletons declare all valid %define variables and
2463 %code qualifiers, provide macros that retrieve the associated values
2464 and build these lists automatically. Thus Bison will now warn when a
2465 variable or qualifier is not used by the skeleton in the current
2466 invocation regardless of whether it might sometimes be used by that
2467 skeleton in other invocations. Also, move all %define value macros to
2468 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
2469 form, which is replaced by %code.
2470 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
2471 (b4_check_user_names): ... this, and change the series of valid name
2472 arguments to a single list argument for names used in the skeleton
2473 similar to the existing list argument for names used in the grammar.
2474 Warn instead of complaining.
2475 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
2476 values and %code code, to format %code code properly, and to build
2477 lists of all %define variables and %code qualifiers used in the
2478 skeleton: b4_skeleton_percent_define_variables and
2479 b4_skeleton_percent_code_qualifiers.
2480 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
2481 Remove, and...
2482 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
2483 the skeleton names lists can finish building first. In place of
2484 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
2485 expect the lists b4_user_percent_define_variables and
2486 b4_user_percent_code_qualifiers.
2487 * data/c++.m4: Where setting default values for b4_parser_class_name,
2488 b4_location_type, b4_filename_type, b4_namespace, and
2489 b4_define_location_comparison, update their names to the
2490 b4_percent_define_ namespace.
2491 * data/glr.c: Don't use b4_check_percent_define_variables and
2492 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
2493 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
2494 (b4_parser_class_name, b4_namespace): Define these using
a4e25e1d 2495 b4_get_percent_define for parser_class_name and namespace.
6afc30cc
JD
2496 * data/location.cc: Use b4_get_percent_define.
2497 * data/push.c: Don't use b4_check_percent_define_variables and
2498 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
2499 * data/yacc.c: Likewise, and don't call m4_exit in
2500 b4_use_push_for_pull_if or m4_wrap code will never execute.
2501 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
2502 Rename to...
2503 (muscle_grow_user_name_list): ... this for consistency with the
2504 terminology used in bison.m4.
2505 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
2506 %define variable names, and rename muscle used_percent_define_variables
2507 to user_percent_define_variables.
2508 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
2509 user_percent_code_qualifiers.
2510 (content): Remove.
2511 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
2512 {CODE} form is no longer accepted.
2513 * tests/input.at (Reject bad %code qualifiers): Rename to...
2514 (Reject unused %code qualifiers): ... this, and update test output.
2515 (%define error): Update test output.
2516
7eb8a0bc
JD
25172007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
2518
2519 Check for unrecognized %define variables similar to checking for
2520 unrecognized %code qualifiers. Check for redefined %define variables.
2521 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
2522 generalizes...
2523 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
2524 (b4_check_percent_define_variables): New, also wraps it.
2525 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
2526 variables using b4_check_percent_define_variables.
2527 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
2528 all those exercised in the test suite and all those listed in the
2529 `Default values' section of c++.m4. Are there others?
2530 * data/push.c, data/yacc.c: Declare no valid %define variables.
2531 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
2532 similar to muscle_find, but it works even when the muscle stores a
2533 const value.
2534 (muscle_grow_used_name_list): New function for constructing the used
2535 name list muscles that b4_check_for_unrecognized_names requires.
2536 * src/parse-gram.y (prologue_declaration): Warn if a variable is
2537 %define'd more than once. Define the b4_used_percent_define_variables
2538 muscle with muscle_grow_used_name_list.
2539 (grammar_declaration): Abbreviate %code code with
2540 muscle_grow_used_name_list.
2541 * tests/input.at (%define errors): New.
2542
3fc65ead
JD
25432007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2544
2545 Provide warn_at, complain_at, and fatal_at function callbacks to the
2546 skeletons, and use this for %code qualifier complaints.
2547 * data/bison.m4 (b4_error_at): New, invoked by...
2548 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
2549 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
2550 @fatal_at(...@) directives.
2551 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
2552 qualifiers in b4_used_percent_code_qualifiers and to use
2553 b4_complain_at.
2554 * src/location.c, src/location.h (boundary_set_from_string): New global
2555 function.
2556 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
2557 function.
2558 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
2559 to b4_used_percent_code_qualifiers.
2560 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
2561 function.
2562 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
2563 (lineno): Rename to...
2564 (out_lineno): ... this so I don't misunderstand it again.
2565 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
2566 here; these newlines are in the input but not the output file.
2567 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
2568 (at_directive_perform): ... this new static function, and add handling
2569 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
2570 directives.
2571 * tests/input.at (Reject bad %code qualifiers): Update test output with
2572 locations and extend.
2573
2574 * tests/output.at (Output file name: [, Output file name: ]): Remove
2575 bogus comment about these tests failing.
2576
1c7b7e1d
JD
25772007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2578
2579 Clean up b4_check_percent_code_qualifiers a little.
2580 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
2581 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
2582 documentation and add examples.
2583 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
2584 qualifiers here.
2585
08af01c2
JD
25862007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
2587
2588 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
2589 unreliable -- especially when they're hidden inside another macro.
2590 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
2591 data/c.m4: Remove m4_divert(-1).
2592 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
2593 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
2594 m4_divert_push(0) and m4_divert_pop(0).
279cabb6 2595 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
08af01c2
JD
2596 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
2597 pushed and popped by m4sugar, should be first on the stack.
2598
2599 Provide warn, complain, and fatal function callbacks to the skeletons.
2600 This provides more flexibility than m4_fatal, improves the error
2601 message format, and captures messages for translation. Discussed
2602 starting at
2603 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
2604 * data/bison.m4 (b4_error): New, invoked by...
2605 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
2606 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
2607 directives. Because these M4 macros might be called when the current
2608 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
2609 the previous removal of uses of m4_divert, which caused trouble.
2610 (b4_check_percent_code_qualifiers): Use b4_complain instead of
2611 m4_fatal to report unrecognized %code qualifiers.
2612 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
2613 push parser requests.
2614 * data/glr.c: Use b4_complain instead of m4_fatal to report
2615 non-deterministic push parser requests.
2616 Update @output usage to @output(...@) form.
2617 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
2618 report missing %defines. Update @output usage to @output(...@) form.
2619 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
2620 @output(...@) form.
2621 * src/main.c (main): Invoke skel_scanner_free.
2622 * src/scan-skel.h (skel_scanner_free): Prototype new function.
2623 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
2624 obstack_for_string from flex-scanner.h.
2625 (YY_DECL): Use to declare skel_lex static.
2626 (decode_at_digraphs): Remove; now handled in the new
2627 SC_AT_DIRECTIVE_ARG start condition.
2628 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
2629 functions.
2630 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
2631 at_directive_argv): New static globals.
2632 (INITIAL): Use fail_for_invalid_at.
2633 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
2634 recognize the start of a generalized `@directive(...@)' form and
2635 start...
2636 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
2637 directive args (using the new obstack_for_string), to decode the
2638 contained @ diagraphs, and to perform the directive. It recognizes
2639 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
2640 @output(...@).
2641 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
2642 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
2643 `@,'.
2644 (scan_skel): Initialize obstack_for_string on the first call.
2645 (skel_scanner_free): New function to free obstack_for_string.
2646 * tests/input.at (Reject bad %code qualifiers): Update test output.
2647
8e0a5e9e
JD
26482007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
2649
2650 Consolidate the 4 prologue alternative directives (%code, %requires,
2651 %provides, and %code-top) into a single %code directive with an
2652 optional qualifier field. Discussed at
2653 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
2654 * NEWS (2.3a+): Rewrite the existing entry for the prologue
2655 alternatives.
2656 * doc/bison.texinfo (Prologue Alternatives): Update.
2657 (Decl Summary): Update to %code "requires" and %code "provides".
2658 (Calc++ Parser): Update to %code "requires".
148d66d8 2659 (Table of Symbols): Remove entries for %requires, %provides, and
8e0a5e9e
JD
2660 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
2661 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
2662 are replaced by b4_percent_code_provides and b4_percent_code_requires,
2663 which are skeleton-specific.
2664 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
2665 declare what %code qualifiers it supports and to complain if any other
2666 qualifiers were used in the grammar.
2667 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
2668 and b4_user_code([b4_percent_code_provides]) in place of
2669 b4_user_requires and b4_user_provides.
2670 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
2671 Add b4_user_code([b4_percent_code_top]) and
2672 b4_user_code([b4_percent_code]).
2673 Invoke b4_check_percent_code_qualifiers.
2674 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
2675 PERCENT_REQUIRES): Remove.
2676 (grammar_declaration): Remove RHS's for %code-top, %provides, and
2677 %requires. Rewrite the %code RHS as the unqualified form defining the
2678 muscle b4_percent_code. Add another RHS for the qualified %code form,
2679 which defines muscles of the form b4_percent_code_QUALIFIER and the
2680 b4_used_percent_code_qualifiers muscle.
2681 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
2682 PERCENT_REQUIRES): Remove.
2683 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
2684 %code "requires" and %code "provides".
2685 * tests/input.at (Reject bad %code qualifiers): New.
2686
95021767
JD
26872007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
2688
2689 Use the new code_props interface for destructors and printers.
2690 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
2691 printer_location members, and change the type of the destructor and
2692 printer members to code_props.
2693 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
2694 symbol_printer_get, semantic_type_destructor_set,
2695 semantic_type_printer_set, default_tagged_destructor_set,
2696 default_tagless_destructor_set, default_tagged_printer_set,
2697 default_tagless_printer_set): Use code_props in arguments and return
2698 types in place of char const * and location.
2699 (symbol_destructor_location_get, symbol_printer_location_get): Remove
2700 since the locations are now contained in the return of
2701 symbol_destructor_get and symbol_printer_get.
2702 * src/output.c (symbol_destructors_output, symbol_printers_output):
2703 Replace with...
2704 (symbol_code_props_output): ... this to eliminate duplicate code.
2705 (output_skeleton): Update to use symbol_code_props_output.
2706 * src/reader.c (symbol_should_be_used): Update use of
2707 symbol_destructor_get.
2708 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
2709 Update uses of the various _destructor_set and _printer_set functions.
2710 * src/symtab.c: (default_tagged_destructor_location,
2711 default_tagless_destructor_location, default_tagged_printer_location,
2712 default_tagless_printer_location): Remove since we...
2713 (default_tagged_destructor, default_tagless_destructor,
2714 default_tagged_printer, default_tagless_printer): ... change the type
2715 of these to code_props.
2716 (symbol_new, semantic_type_new, symbol_destructor_set,
2717 semantic_type_destructor_set, symbol_destructor_get,
2718 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
2719 symbol_check_alias_consistency, default_tagged_destructor_set,
2720 default_tagless_destructor_set, default_tagged_printer_set,
2721 default_tagless_printer_set): Update.
2722 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
2723 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
2724 code_props members.
2725 (symbol_print): Use SYMBOL_CODE_PRINT.
2726
f6857bbf
JD
27272007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
2728
2729 Use the new code_props interface for rule actions.
2730 * src/symlist.h (symbol_list): Replace action, action_location, and
2731 used members with a code_props action_props member.
2732 * src/reader.c (symbol_should_be_used, grammar_rule_check,
2733 grammar_midrule_action, grammar_current_rule_merge_set,
2734 grammar_current_rule_symbol_append, packgram): Update.
2735 * src/scan-code.h (translate_rule_action): Remove, no longer used.
2736 * src/scan-code.l (handle_action_dollar): Update.
2737 (translate_rule_action): Remove, no longer used.
2738 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
2739
7c0c6181
JD
27402007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
2741
2742 Use the new code_props interface in parse-gram.y.
2743 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
2744 Update all uses of translate_* functions to use the new code_props
2745 interface and to use gram_scanner_last_string_free and
2746 code_scanner_last_string_free where possible.
2747 (grammar_declaration): symbol_list_destructor_set and
2748 symbol_list_printer_set now perform the translation, so don't do it
2749 here. Use gram_scanner_last_string_free where possible.
2750 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
2751 translate_code): Remove, no longer used.
2752 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
2753 symbol_list_printer_set): Perform code translation here rather than
2754 depending on the caller to do so.
2755
2756 * src/symlist.h (struct symbol_list): Correct some documentation typos.
2757 * src/scan-gram.h (gram_last_string): Remove declaration.
2758 * src/scan-gram.l (last_string): Declare it static.
2759
28e52c0d
JD
27602007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
2761
2762 Encapsulate code properties and related functionality for the various
2763 destructors, printers, and actions into a code_props structure and
2764 interface. This patch merely implements code_props in scan-code.h and
2765 scan-code.l. Future patches will rewrite other modules to use it.
2766 Discussed starting at
2767 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
2768 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
2769 consistently initialize const structs that have an empty location
2770 field.
2771 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
2772 to ensure consistency.
2773 * src/scan-code.h (code_props): New structure.
2774 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
2775 function, macro, and const global variable for initializing a
2776 code_props with no code.
2777 (code_props_plain_init, code_props_symbol_action_init,
2778 code_props_rule_action_init, code_props_translate_code): The rest of
2779 the new code_props functional interface. Among other things, the init
2780 functions set the code_props kind field so that
2781 code_props_translate_code will know whether to behave like
2782 translate_symbol_action, translate_rule_action, or translate_code.
2783 These old translate functions must remain until all other modules are
2784 updated to use the new code_props interface.
2785 (code_scanner_last_string_free): New function similar to
2786 gram_scanner_last_string_free.
2787 (code_scanner_free): Add documentation.
2788 * src/scan-code.l: Implement the new interface.
2789 (code_lex): Make it static, add a code_props* argument, and remove the
2790 rule argument.
2791 (last_string): New static global similar to the one in scan-gram.l.
2792 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
2793 instead of rule.
2794 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
2795 code_props since Bison may one day use this information for destructors
2796 and printers.
2797 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
2798 (handle_action_dollar): Use symbol_list_n_get and set used flag
2799 directly since symbol_list_n_used_set is removed.
2800 (translate_action): Add a code_props* argument and remove the rule,
2801 action, and location arguments. Pass the code_props* on to code_lex.
2802 (translate_rule_action, translate_symbol_action, translate_code):
2803 Rewrite as wrappers around the new code_props interface.
2804 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
2805 it would eventually need to break the encapsulation of code_props.
2806
96034983
JD
28072007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
2808
2809 * etc/.cvsignore: New.
2810
945e396c
JD
28112007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
2812
2813 Add maintainer-push-check to run maintainer-check using push parsing in
2814 place of pull parsing where available.
2815 * Makefile.am (maintainer-push-check): New.
2816 * data/bison.m4 (b4_use_push_for_pull_if): New.
2817 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
2818 appropriately based on their existing values.
2819 (yypush_parse): Don't print push-parser-specific diagnostics if push
2820 parsing is being used in place of pull parsing.
2821 * data/yacc.c: If push parsing should replace pull parsing, redirect to
2822 push.c.
2823 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
2824 variable, and insert b4_use_push_for_pull_flag into muscles.
2825 * tests/Makefile.am (maintainer-push-check): New.
2826
7d596384
JD
28272006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
2828
2829 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
2830 (whether successful or failed) so that yypush_parse can be invoked
2831 again to start a new parse using the same yypstate.
2832 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
2833 check multiple yypull_parse invocations on the same yypstate. For pull
2834 mode, extend to check multiple yyparse invocations.
2835 (Exploding the Stack Size with Alloca): Extend to try with
2836 %push-pull-parser.
2837 (Exploding the Stack Size with Malloc): Likewise.
2838
2839 * tests/calc.at (Simple LALR Calculator): Don't specify
2840 %skeleton "push.c" since %push-pull-parser implies that now.
2841 * tests/headers.at (export YYLTYPE): Don't check for the push
2842 declarations. Otherwise, this test case can't be used to see if push
2843 mode can truly emulate pull mode.
2844 * tests/input.at (Torturing the Scanner): Likewise.
2845 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
2846 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
2847 AT_YACC_IF, which now includes the case of push mode since %skeleton
2848 need not be used for push mode. This will be more intuitive once
2849 push.c is renamed to yacc.c.
2850
7172e23e
JD
28512006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
2852
2853 For push mode, convert yyparse from a macro to a function, invoke yylex
2854 instead of passing a yylexp argument to yypull_parse, and don't
2855 generate yypull_parse or yyparse unless %push-pull-parser is declared.
2856 Discussed starting at
2857 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
2858 * data/bison.m4 (b4_pull_if): New.
2859 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
2860 * data/push.c: Improve M4 quoting a little.
2861 (b4_generate_macro_args, b4_parenthesize): Remove.
2862 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
2863 any time a pull parser is requested.
2864 Don't #define this as a wrapper around yypull_parse. Instead, when
2865 both push and pull are requested, make it a function that does that
2866 same thing.
2867 (yypull_parse): If there's a b4_prefix, #define this to
2868 b4_prefix[pull_parse] when both push and pull are requested.
2869 Don't define this as a function unless both push and pull are
2870 requested.
2871 Remove the yylexp argument and hard-code yylex invocation instead.
2872 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
2873 %push-parser.
2874 * src/getargs.c (pull_parser): New global initialized to true.
2875 * getargs.h (pull_parser): extern it.
2876 * src/output.c (prepare): Insert pull_flag muscle.
2877 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
2878 (prologue_declaration): Set both push_parser and pull_parser = true for
2879 %push-pull-parser. Set push_parser = true and pull_parser = false for
2880 %push-parser.
2881 * src/scan-gram.l: Don't accept %push_parser as an alternative to
2882 %push-parser since there's no backward-compatibility concern here.
2883 Scan %push-pull-parser.
2884 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
2885 instead of %push-parser.
2886 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
2887 prototype it in the module that calls yyparse.
2888 * tests/input.at (Torturing the Scanner): Likewise.
2889 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
2890
2e7944cb
JD
28912006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
2892
2893 Update etc/bench.pl. Optimize push mode a little (the yyn change
2894 deserves most of the credit).
2895 * Makefile.am (SUBDIRS): Add etc subdirectory.
2896 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
2897 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
2898 yytoken, yyval, and yyloc declarations to...
2899 (yyparse or yypush_parse): ... here to improve performance. For
2900 yypush_parse invocations after the first, be sure to assign yyn its old
2901 value again.
2902 (yypstate_new): Don't bother initializing the yyresult field since the
2903 initial value isn't used.
2904 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
2905 remove the #define that, in push mode, set it to yyps->NAME.
2906 * etc/Makefile.am: New.
2907 * etc/bench.pl: Remove and build it instead from...
2908 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
2909 "tests/bison" from the build directory by default rather than just
2910 invoking "bison" from $PATH.
2911 (calc_grammar): Update push parser code: don't declare yylval globally,
2912 don't define yyparse_wrapper, and don't #define yyparse.
2913 (bench_grammar): Update to check all working combinations of yacc.c,
2914 push.c, impure, pure, pull, and push.
2915
c3d50342
JD
29162006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
2917
2918 For push mode, add pull wrappers around yypush_parse.
2919 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
2920 (yypull_parse): New function wrapping yypush_parse.
2921 (yyparse): New #define wrapping yypull_parse.
2922 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
2923 is declared.
2924 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
2925 prototype yylex in the module that calls yyparse, and don't prototype
2926 yyparse there. Otherwise, the yyparse expansion won't compile.
2927 * tests/input.at (Torturing the Scanner): Likewise.
2928
94ebeba5
JD
29292006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
2930
2931 Enable push parsers to operate in impure mode. Thus, %push-parser no
2932 longer implies %pure-parser. The point of this change is to move
2933 towards being able to test the push parser code by running the entire
2934 test suite as if %push-parser had been declared.
2935 * data/push.c (yypush_parse): For impure mode, remove the
2936 yypushed_char, yypushed_val, and yypushed_loc arguments.
2937 Instead, declare these as local variables initialized to the global
2938 yychar, yylval, and yylloc.
2939 For the first yypush_parse invocation only, restore the initial values
2940 of these global variables when it's time to read a token since they
2941 have been overwritten.
2942 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
2943 %push-parser.
2944 * tests/calc.at (Simple LALR(1) Calculator): Always declare
2945 %pure-parser along with %push-parser since this test case was designed
2946 for pure push parsers.
2947 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
2948 (AT_YACC_OR_PUSH_IF): New.
2949 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
2950 add a note that it's still wrong for some cases (as it has been for a
2951 while).
2952 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
2953 %push-parser no longer implies %pure-parser.
2954
a0633178
JD
29552006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
2956
2957 Remove some unnecessary differences between the pull parser code and
2958 the push parser code. This patch enables yynerrs in push mode.
2959 * data/push.c: Reformat M4 a little.
2960 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
2961 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
2962 because push mode is on. Instead, if pure mode is on, move yynerrs
2963 to...
2964 (b4_declare_parser_state_variables): ... here.
2965 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
2966 to yyps->NAME so it can be used in yypush_parse.
2967 (yypush_parse): Don't omit uses of yynerrs in push mode.
2968
8646b6a3
JD
29692006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
2970
2971 Fix bug such that the first pushed token's value and location are
2972 sometimes overwritten (sometimes by %initial-action) before being used.
2973 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
2974 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
2975 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
2976 more closely mimic the pull parser logic.
2977 Don't copy the pushed token to yychar, yylval, and yylloc until it's
2978 time to read a token, which is after any initialization of yylval and
2979 yylloc.
2980 (gottoken): Rename label to...
2981 (yyread_pushed_token): ... for clarity and to avoid infringing on the
2982 user namespace.
2983
9baf4d74
JD
29842006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
2985
2986 Rearrange initialization of the parser state variables so that the
2987 skeleton doesn't have to have a copy for pull mode and another for push
2988 mode. This patch also fixes at least a bug such that yylloc was not
2989 initialized (with b4_location_initial_line and
2990 b4_location_initial_column) upon calling yypush_parse. However, that
2991 initialization now overwrites the first token's location;
2992 %initial-action assigning @$ already did the same thing, and both bugs
2993 will be fixed in a later patch.
2994 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
2995 (b4_declare_parser_state_variables): Remove initialization of yytoken,
2996 yyss, yyvs, yyls, and yystacksize.
2997 (yypstate_new): Remove initialization of some yypstate fields: yystate,
2998 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
2999 yylsp.
3000 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
3001 yyps->NAME so it can be used in yypush_parse.
3002 (yyparse or yypush_parse): For yypush_parse, don't print the
3003 "Starting parse" diagnostic for invocations after the first.
3004 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
3005 yypush_parse, only do it for the first invocation.
3006 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
3007 initialization to occur in yypush_parse but only on the first
3008 invocation.
3009
23522164
JD
30102006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
3011
3012 * data/push.c: Add CPP guards around push parser declarations in both
3013 the header and the code file.
3014 In the code file, move the push parser declarations to the same place
3015 they appear in the header file.
3016 Clean up the M4 some, especially the inconsistent underquoting in
3017 some b4_c_function_def and b4_c_function_decl uses.
3018
bb010fe5
JD
30192006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
3020
3021 Encapsulate the push parser state variables into an M4 macro so the
3022 push skeleton doesn't have to list them again for pull mode's yyparse.
3023 For push mode, remove yypush_parse's local equivalents of these
3024 variables to eliminate unnecessary copying between the two sets at
3025 run-time. This patch also fixes at least a bug related to multiple
3026 %initial-action invocations in push mode.
3027 * data/push.c (b4_declare_parser_variables): Rename to...
3028 (b4_declare_scanner_communication_variables): ... this for clarity and
3029 update both uses.
3030 (b4_declare_yyparse_variables): Remove and move its contents to the one
3031 spot where it was invoked.
3032 (b4_declare_parser_state_variables): New macro containing the parser
3033 state variables required by push mode.
3034 (struct yypstate): Replace all fields but yynew with
3035 b4_declare_parser_state_variables.
3036 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
3037 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
3038 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
3039 (yyparse or yypush_parse): For yyparse in pull mode, replace local
3040 parser state variable declarations with
3041 b4_declare_parser_state_variables.
3042 Don't initialize parser state variables when calling yypush_parse since
3043 yypstate_new already does that.
3044 Invoke the user's initial action only upon the first yypush_parse
3045 invocation.
3046 Remove all code that copies between the local parser state variables
3047 and the yypstate.
3048
2d212f8c
JD
30492006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
3050
3051 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
3052 prevent a name collision in a future patch where these names will
3053 sometimes be #define'd.
3054 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
3055 since it no longer has the same name as the existing argument.
3056 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
3057
e6e704dc
JD
30582006-12-19 Paolo Bonzini <bonzini@gnu.org>
3059 and Joel E. Denny <jdenny@ces.clemson.edu>
3060
3061 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
3062 that the argument is case-insensitive, and there's no `=' here.
3063 For the %skeleton entry, mention that %language is better.
3064 (Bison Options): Likewise for --language and --skeleton. Move the
3065 --skeleton entry so that the `Tuning the parser' section is sorted
3066 alphabetically on long options.
3067 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
3068 %language directive in detail here; cross-reference the %language
3069 documentation instead.
3070 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
3071 `%require "2.3b"' so that the example is always up-to-date.
148d66d8 3072 (Table of Symbols): Add entries for %language and %skeleton.
e6e704dc
JD
3073 * examples/extexi (normalize): Instead of replacing every %require
3074 argument with the current Bison version, just substitute for
3075 `@value{VERSION}'. This guarantees that we're testing what actually
3076 appears in the documentation.
3077 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
3078 rather than `@VERSION@'.
3079
0e021770
PE
30802006-12-18 Paul Eggert <eggert@cs.ucla.edu>
3081
fd575f05
PE
3082 * NEWS: Reword the %language news a bit, and put it earlier.
3083
0e021770
PE
3084 * src/getargs.c (skeleton_arg): Last arg is now location const *.
3085 Rewrite to simplify the logic.
3086 (language_argmatch): Likewise.
fd575f05
PE
3087 (program_name): We now own this var.
3088 * src/getargs.h (struct bison_language): Use char[] rather than
3089 const char *.
0e021770
PE
3090
3091 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
3092 Java is supported.
3093 * src/complain.c (program_name): Remove decl; no longer needed.
3094 * src/main.c (program_name): Remove; now belongs to getargs.
3095
30962006-12-18 Paolo Bonzini <bonzini@gnu.org>
3097
3098 * NEWS: Document %language.
3099
3100 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
3101
3102 * data/c-skel.m4, data/c++-skel.m4: New files.
3103 * data/glr.c: Complain on push parsers.
3104
3105 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
3106 over %skeleton.
148d66d8 3107 (Decl Summary): Document %language and %skeleton.
0e021770
PE
3108 (Command line): Document -L.
3109
3110 * examples/extexi: Rewrite %require directive.
3111 * examples/calc++/Makefile.am: Pass VERSION to extexi.
3112
3113 * src/files.c (compute_exts_from_gc): Look in language structure
3114 for .y extension.
3115 (compute_file_name_parts): Check whether .tab should be added.
3116 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
3117 (language, skeleton_arg, language_argmatch): New.
3118 (long_options): Add --language.
3119 (getargs): Use skeleton_arg, add -L/--language.
3120 * src/getargs.h: Include location.h.
3121 (struct bison_language, language, skeleton_arg, language_argmatch): New.
3122 * src/output.c (prepare): Pick default skeleton from struct language.
3123 Don't dispatch C skeletons here.
3124 * src/parse-gram.y (PERCENT_LANGUAGE): New.
3125 (prologue_declaration): Add "%language" rule, use skeleton_arg.
3126 * src/scan-gram.l ("%language"): New rule.
3127
3128 * tests/calc.at: Test %skeleton and %language.
3129 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
3130 (AT_GLR_IF): Look for %skeleton "glr.cc".
3131 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
3132 (AT_YACC_IF): Reject %language.
3133
5691bf57
PE
31342006-12-18 Paul Eggert <eggert@cs.ucla.edu>
3135
db06f0ce
PE
3136 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
3137 since it wasn't used; only the typedef name 'semantic_type' is needed.
3138 Also, omit trailing white space.
3139
5691bf57
PE
3140 * bootstrap: Sync from coreutils.
3141 (gnulib_extra_files): Add build-aux/announce.gen.
3142 (slurp): Adjust .gitignore files like .cvsignore files.
3143 * build-aux/announce-gen: Remove from CVS, since bootstrap
3144 now creates this.
3145
791934e4
JD
31462006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
3147
3148 Make %push-parser imply %pure-parser. This fixes several bugs; see
3149 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
3150 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
3151 pure_parser = true.
3152 * data/push.c: Don't bother testing b4_push_if when deciding whether
3153 to expand b4_declare_parser_variables globally.
3154 (yypush_parse): Likewise in here.
3155
3156 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
3157 (yy_reduce_print): Reformat M4 for readability.
3158
ee5abb37
JD
31592006-12-15 Bob Rossi <bob@brasko.net>
3160 and Joel Denny <jdenny@ces.clemson.edu>
3161
3162 * data/push.c (yypstate): Add typedef, and update all uses of
3163 struct yypstate to just yypstate.
3164 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
3165
16ca01f9
JD
31662006-12-14 Bob Rossi <bob@brasko.net>
3167
3168 * data/push.c (yypush_parse): Declare prototype regardless of
3169 %locations option.
3170
ab8e7e1a
JD
31712006-12-14 Bob Rossi <bob@brasko.net>
3172
3173 * data/push.c (yyparse): Remove the prototype and the #define when in
3174 push-parser mode.
3175
9bf32be3
JD
31762006-12-13 Bob Rossi <bob@brasko.net>
3177
3178 * data/push.c (yypstate_init): Rename to...
3179 (yypstate_new): ... this and use b4_c_function_def.
3180 (yypstate_delete): New.
3181 (yypush_parse): Change parameters yynval and yynlloc to be const.
3182 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
3183 yypstate_delete functions.
3184
f02e2948
JD
31852006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
3186
3187 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
3188 strange test case titles. Reported by Bob Rossi.
3189
38eb7751
PE
31902006-12-13 Paul Eggert <eggert@cs.ucla.edu>
3191
3192 * TODO: Add pointer to Sylvain Schmitz's work on static detection
3193 of potential ambiguities in GLR grammers.
3194
bd9d212b
JD
31952006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
3196
3197 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
3198 `bison ', use m4_index instead of m4_substr since chopping up a string
3199 containing M4-special characters causes problems here.
3200
3201 Fix a couple of bugs related to special characters in user-specified
3202 file names, and make it easier for skeletons to compute output file
3203 names with the same file name prefix as Bison-computed output file
3204 names.
3205 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
3206 b4_parser_file_name and b4_spec_defines_file instead of
3207 @output_parser_name@ and @output_header_name@, which are now redundant.
3208 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
3209 b4_parser_file_name, b4_spec_defines_file, and the new
3210 @basename(FILENAME@) instead of @output_parser_name@ and
3211 @output_header_name@, which inappropriately escaped the file names as
3212 C string literals.
3213 * src/files.c (all_but_ext): Remove static qualifier.
3214 (compute_output_file_names): Move `free (all_but_ext)' to...
3215 (output_file_names_free): ... here since all_but_ext is needed later.
3216 * src/files.h (all_but_ext): Extern.
3217 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
3218 exactly what MUSCLE_INSERT_STRING used to do.
3219 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
3220 characters are escaped properly.
3221 * src/output.c (prepare): Define muscle file_name_all_but_ext as
3222 all_but_ext.
3223 For pkgdatadir muscle, maintain previous functionality by using
3224 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
3225 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
3226 digraphs would never be expanded. Hopefully no one has M4-special
3227 characters in his Bison installation path.
3228 * src/scan-skel.l: Don't parse @output_header_name@ and
3229 @output_parser_name@ anymore since they're now redundant.
3230 In @output, use decode_at_digraphs.
3231 Parse a new @basename command that invokes last_component.
3232 (decode_at_digraphs): New.
3233 (BASE_QPUTS): Remove unused.
3234 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
3235 (Output file name): New tests.
3236
3f7ca628
JD
32372006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
3238
3239 Warn about output files that are generated by the skeletons and that
3240 conflict with other output files.
3241 * data/glr.c: Don't generate the header file here when glr.cc does.
3242 * src/files.c (file_names, file_names_count): New static globals.
3243 (compute_output_file_names): Invoke output_file_name_check for files
3244 not generated by the skeletons and remove existing checks.
3245 (output_file_name_check): New function that warns about conflicting
3246 output file names.
3247 (output_file_names_free): Free file_names.
3248 * src/files.h (output_file_name_check): Declare.
3249 * src/scan-skel.l: Invoke output_file_name_check for files generated by
3250 the skeletons.
3251 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
3252 (Conflicting output files): New tests.
3253
178e123e
PE
32542006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3255
3256 * doc/bison.texinfo: Fix a couple of typos.
3257
32582006-12-08 Bob Rossi <bob@brasko.net>
8def5cd0
JD
3259
3260 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
3261 Rename to...
3262 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
3263 update all uses.
3264 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
3265 (yypush_parse): Rename yypvars argument to yyps and remove redundant
3266 local pv.
3267 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
3268 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
3269
ea17f233
JD
32702006-12-07 Bob Rossi <bob@brasko.net>
3271 and Joel Denny <jdenny@ces.clemson.edu>
3272
3273 * data/push.c (yypvarsinit): Change return type from void* to struct
3274 yypvars*. No longer cast to void* on return.
3275 (struct yypvars): Remove yylen since it need not be remembered between
3276 yypushparse invocations.
3277 (yypushparse): Don't copy between yylen and pv->yylen.
3278
55a30bda
JD
32792006-12-05 Bob Rossi <bob@brasko.net>
3280
3281 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
3282 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
3283 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
3284 (struct yypvars): Remove b4_declare_parser_variables.
3285 (yypvarsinit): Remove init code for removed variables.
3286 (global scope): Do not declare b4_declare_parser_variables if
3287 push or pure mode.
3288 (yypushparse): Add b4_declare_parser_variables.
3289 Init new local variables, and remove init code for removed
3290 yypvars variables.
3291 (yyparse): Delete.
3292 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
3293 and yyparse for other modes.
3294 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
3295 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
3296 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
3297 (AT_PURE_LEX_IF): True if pure or push parser.
3298
85894313
JD
32992006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
3300
3301 Document Yacc prologue alternatives and default %destructor's and
3302 %printer's as experimental. Don't mention Java yet. Discussed at
3303 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
3304 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
3305 (2.3a): Annotate this entry to say the old forms of these features were
3306 also experimental.
3307 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
148d66d8 3308 Table of Symbols): Say they're experimental. Comment out any mention
85894313
JD
3309 of Java (we'll want this back eventually).
3310
02975b9a
JD
33112006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
3312
3313 Support a file name argument to %defines. Deprecate `=' in
3314 %file-prefix, %name-prefix, and %output. Discussed at
3315 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
3316 * NEWS (2.3a+): Mention.
148d66d8 3317 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
02975b9a
JD
3318 form of %defines, and remove `=' from entries for %file-prefix,
3319 %name-prefix, and %output.
3320 * src/parse-gram.y (prologue_declaration): Implement.
3321 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
3322 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
3323 all but one occurrence of %name-prefix.
3324 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
3325 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
3326 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
3327 occurrence of each of %file-prefix and %output. Add check for %defines
3328 with argument.
3329 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
3330 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
3331 Remove the `=' from %output.
3332
287b314e
JD
33332006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
3334
3335 Don't escape $ in test case titles since Autoconf 2.61 now does that
3336 correctly.
3337 * tests/actions.at (Default %printer and %destructor are not for error
3338 or $undefined): Here.
3339 (Default %printer and %destructor are not for $accept): Here.
3340 * tests/input.at (Invalid $n and @n): Here.
3341
3ebecc24
JD
33422006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
3343
3344 Rename <!> to <>. Discussed starting at
3345 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
3346 * NEWS (2.3a+): Update.
148d66d8 3347 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
3ebecc24
JD
3348 Update.
3349 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
3350 * src/scan-gram.l (INITIAL): Implement.
3351 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
3352 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
3353 comment.
3354 * tests/actions.at (Default tagless %printer and %destructor,
3355 Default tagged and per-type %printer and %destructor,
3356 Default %printer and %destructor are not for error or $undefined,
3357 Default %printer and %destructor are not for $accept,
3358 Default %printer and %destructor for mid-rule values): Update.
3359 * tests/input.at (Default %printer and %destructor redeclared,
3360 Unused values with default %destructor): Update.
3361
26b8a438
JD
33622006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
3363
3364 Don't let %prec take a nonterminal.
3365 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
3366 token.
3367 * tests/input.at (%prec takes a token): New test checking that %prec
3368 won't take a nonterminal.
3369
07c39ae9
JD
33702006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3371
405d53b7
JD
3372 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
3373 it was double-quoted.
07c39ae9
JD
3374 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
3375 grammar is maintained with Bison's highest standards.
3376 * src/getargs.c: Fix some typos in Doxygen comments.
3377
580b8926
JD
33782006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3379
3380 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
3381 later. Reported by Paul Eggert in
3382 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
3383 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
3384 * src/scan-code.l (translate_action): Don't bother invoking
3385 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
3386 (code_scanner_free): Instead of invoking
3387 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
3388 which frees more.
3389 * src/scan-gram.l (gram_scanner_free): Likewise.
3390 * src/scan-skel.l (scan_skel): Likewise.
3391
4502eadc
JD
33922006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
3393
3394 * src/files.c (tr): Change return type to void.
3395 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
3396 has been called previously for the same key.
3397 (muscle_find): Return storage instead of value so that
3398 --enable-gcc-warnings doesn't produce warnings that the return discards
3399 const. aver that the value and storage are the same since storage
3400 could potentially be NULL when value is not.
3401 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
3402 same as 0.
3403
7746c8f6
PE
34042006-11-08 Paul Eggert <eggert@cs.ucla.edu>
3405
3406 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
3407 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
3408 us a slightly cleaner distribution, and also works.
3409 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
3410 gnulib changes.
3411
eb095650
PE
34122006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
3413 and Paul Eggert <eggert@cs.ucla.edu>
3414
3415 Don't let Bison leak memory except when it complains.
3416 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
3417 (spec_defines_file, dir_prefix): Now char *, not const char *,
3418 since they are freed.
3419 * src/files.c: Likewise.
3420 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
3421 Likewise.
3422 (tr): Now operates in-place. All uses changed.
3423 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
3424 values.
3425 (compute_file_name_parts, compute_output_file_names): Don't store
3426 read-only data in variables that will be freed.
3427 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
3428 src_extension, and header_extension.
3429 (output_file_names_free): New public function to free
3430 spec_verbose_file, spec_graph_file, spec_defines_file,
3431 parser_file_name, and dir_prefix.
3432 * src/getargs.c (getargs): Don't store read-only data in variables that
3433 will be freed.
3434 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
3435 (which previously existed but was unused), and quotearg_free.
3436 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
3437 * src/muscle_tab.c: Likewise.
3438 (muscle_entry): Make the value char const *,
3439 and add a new storage member that is char * and can be freed.
3440 (muscle_entry_free): New private function.
3441 (muscle_init): Use it instead of free.
3442 (muscle_insert, muscle_grow): Update and use new storage member.
3443 (muscle_code_grow): Free the string passed to muscle_grow
3444 since it's not needed anymore.
3445 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
3446 add a new `char *code' member.
3447 ("{...}"): Declare semantic type as code.
3448 * src/scan-code.h (translate_rule_action):
3449 (translate_symbol_action, translate_code, translate_action): Return
3450 `char const *' rather than `char *' since external code should not free
3451 these strings.
3452 * src/scan-code.l: Likewise.
3453 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
3454 which is "{...}" in the parser.
3455 * tests/Makefile.am (maintainer-check-valgrind): Set
3456 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
3457 Valgrind.
3458 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
3459 complain.
3460 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
3461 expecting a non-zero exit status sets --leak-check=summary and
3462 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
3463 this case, and we don't want to hear about it.
3464
ac564be4
PE
34652006-11-08 Paul Eggert <eggert@cs.ucla.edu>
3466
3467 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
3468 instead of from the template, to simplify configuration a bit.
3469 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
3470 and m4/wint_t.m4, as they are needed with the latest gnulib.
3471
17bd8a73
JD
34722006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
3473
3474 Disable unset/unused mid-rule value warnings by default, and recognize
3475 --warnings=midrule-values to enable them. Discussed starting at
3476 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
3477 * NEWS (2.3a+): Mention.
3478 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
3479 warnings): Add entry for midrule-values subargument.
3480 * src/reader.c (symbol_should_be_used): Don't return true just because
3481 the value is a set/used mid-rule value unless
3482 --warnings=midrule-values was specified.
3483 * tests/input.at (Unused values, Unused values before symbol
3484 declarations): Run tests with and without --warnings=midrule-values.
3485
3486 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
3487 than LIST_FREE directly.
3488
89eb3c76
JD
34892006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
3490
3491 Finish implementing --warnings=error, which should not be implied by
3492 --warnings=all (or by its synonyms -W and --warnings without
3493 subarguments).
3494 * src/complain.c (set_warning_issued): New function to report that
3495 warnings are being treated as errors and to record an error if so.
3496 Invoke...
3497 (warn_at, warn): ... here.
3498 * src/getargs.c (warnings_args, warnings_types): Reorder so that
3499 "error - warnings are errors" does not appear above "all - all of the
3500 above".
3501 (getargs): For -W and --warnings without subarguments, don't let
3502 FLAGS_ARGMATCH set warnings_error in warnings_flag.
3503 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
3504
ba7560e2
JD
35052006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
3506
3507 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
3508 empty subargument list. For example: `bison --warnings= parser.y'.
3509
31283fc3
JD
35102006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3511
3512 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
3513 the parser header file so that gcc doesn't warn.
3514
12e35840
JD
35152006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3516
3517 Split the default %destructor/%printer into two kinds: <*> and <!>.
3518 Discussed starting at
3519 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
3520 * NEWS (2.3a+): Mention.
3521 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
3522 previous change today related to mid-rules.
148d66d8 3523 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
3ebecc24 3524 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
12e35840
JD
3525 (TYPE_TAG_ANY): Add as <*>.
3526 (TYPE_TAG_NONE): Add as <!>.
3527 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
3528 for <*> and <!>.
3529 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
3530 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
3531 * src/symlist.c (symbol_list_default_new): Split into tagged and
3532 tagless versions.
3533 (symbol_list_destructor_set, symbol_list_printer_set): Split
3534 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
3535 SYMLIST_DEFAULT_TAGLESS.
3536 * src/symlist.h: Update symbol_list_default*_new prototypes.
3537 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
3538 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
3539 * src/symtab.c (default_destructor, default_destructor_location,
3540 default_printer, default_printer_location): Split each into tagged and
3541 tagless versions.
3542 (symbol_destructor_get, symbol_destructor_location_get,
3543 symbol_printer_get, symbol_printer_location_get): Implement tagged
3544 default and tagless default cases.
3545 (default_destructor_set, default_printer_set): Split each into tagged
3546 and tagless versions.
3547 * src/symtab.h: Update prototypes.
3548 * tests/actions.at (Default %printer and %destructor): Rename to...
3549 (Default tagless %printer and %destructor): ... this, and extend.
3550 (Per-type %printer and %destructor): Rename to...
3551 (Default tagged and per-type %printer and %destructor): ... this, and
3552 extend.
3553 (Default %printer and %destructor for user-defined end token): Extend.
3554 (Default %printer and %destructor are not for error or $undefined):
3555 Update.
3556 (Default %printer and %destructor are not for $accept): Update.
3557 (Default %printer and %destructor for mid-rule values): Extend.
3558 * tests/input.at (Default %printer and %destructor redeclared): Extend.
3559 (Unused values with default %destructor): Extend.
3560
f91b1629
JD
35612006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3562
3563 Don't apply the default %destructor/%printer to an unreferenced midrule
3564 value. Mentioned at
3565 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
3566 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
3567 like $@n instead of just @n so that the default %destructor/%printer
3568 logic doesn't see them as user-defined symbols.
3569 (symbol_is_dummy): Check for both forms of the name.
3570 * src/reader.c (packgram): Remove the `$' from each midrule symbol
3571 name for which the midrule value is referenced in any action.
3572 * tests/actions.at (Default %printer and %destructor for mid-rule
3573 values): New test.
3574 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
3575 for change to dummy symbol names.
3576
519d0004
JD
35772006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
3578
3579 Warn about unset midrule $$ if the corresponding $n is used.
3580 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
3581 $n usage.
3582 (packgram): Before invoking grammar_rule_check on any rule, make sure
3583 all actions have already been scanned in order to set `used' flags.
3584 Otherwise, checking that a midrule's $$ is set will not always work
3585 properly because the midrule check must forward-reference the midrule's
3586 parent rule.
3587 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
3588 warning.
3589
a501eca9
JD
35902006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
3591
3592 More improvements to the documentation of the prologue alternatives:
3593 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
3594 Bison manual.
3595 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
3596 some text to clarify the relative importance of the new directives and
3597 to show how these directives may be viewed as code labels.
3598
2cbe6b7f
JD
35992006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
3600
3601 Similar to the recently removed %before-header, add %code-top as the
3602 alternative to the pre-prologue. Mentioned at
3603 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
3604 Also, let the prologue alternatives appear in the grammar section.
3605 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
3606 (prologue_declaration): Move the existing prologue alternatives to...
3607 (grammar_declaration): ... here and add %code-top.
3608 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
3609
3610 Clean up and extend documentation for the prologue alternatives.
3611 * NEWS (2.3a+): Describe prologue alternatives.
3612 * doc/bison.texinfo (Prologue): Move discussion of prologue
3613 alternatives to...
3614 (Prologue Alternatives): ... this new section, and extend it to discuss
3615 all 4 directives in detail.
148d66d8
JD
3616 (Table of Symbols): Clean up discussion of prologue alternatives and
3617 add %code-top.
2cbe6b7f 3618
e557d3ea
JMG
36192006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3620
3621 DJGPP specific issues.
3622
3623 * djgpp/config.bat: config.hin has been moved to lib. Adjust
3624 config.bat accordingly.
3625 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
3626 * djgpp/config.site: Likewise.
3627
136a0f76
PB
36282006-10-16 Paolo Bonzini <bonzini@gnu.org>
3629
27bd5d67
PB
3630 Replace %*-header with %provides, %requires, %code. See discussion at
3631 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
3632
136a0f76
PB
3633 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
3634 (b4_user_start_header): Remove.
3635 * data/glr.c: Use new macros instead of b4_*start_header
3636 and b4_*end_header.
3637 * data/glr.cc: Likewise.
3638 * data/lalr1.cc: Likewise.
3639 * data/push.c: Likewise.
3640 * data/yacc.c: Likewise.
3641
3642 * doc/bison.texinfo: Remove %before-header, rename
3643 %{start,end,after}-header to %requires, %provides, %code.
3644
3645 * src/parse-gram.y: Likewise (also rename token names accordingly).
3646 * src/scan-gram.l: Likewise.
3647 * tests/actions.at: Likewise.
3648
10f429ef
PE
36492006-10-14 Paul Eggert <eggert@cs.ucla.edu>
3650
3651 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
3652 Problem reported by Joel E. Denny.
3653
36542006-10-14 Jim Meyering <jim@meyering.net>
3655
3656 (Sync from coreutils.)
3657 Work also when the working directory (with e.g. coreutils sources)
3658 is version controlled with git, rather than CVS.
3659 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
3660 rather than CVS.
3661 In messages and comments, say e.g., "checked-out sources",
3662 rather than "CVS sources".
3663 (version_controlled_file): New function. Work for git as well as
3664 for CVS. Don't use grep's -q option.
3665 (slurp): Call it here, in place of CVS-specific code.
3666
c4bd5bf7
JD
36672006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
3668
3669 Fix testsuite for ./configure --enable-gcc-warnings:
3670 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
3671 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
3672 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
3673 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
3674 * test/regression.at (Diagnostic that expects two alternatives):
3675 Likewise.
3676
46356ea4
PE
36772006-10-12 Paul Eggert <eggert@cs.ucla.edu>
3678
231ed89a
PE
3679 * bootstrap.conf (gnulib_modules): Add config-h.
3680 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
3681 worry about HAVE_CONFIG_H.
3682 * lib/abitset.c: Likewise.
3683 * lib/bitset.c: Likewise.
3684 * lib/bitset_stats.c: Likewise.
3685 * lib/bitsetv-print.c: Likewise.
3686 * lib/bitsetv.c: Likewise.
3687 * lib/ebitset.c: Likewise.
3688 * lib/get-errno.c: Likewise.
3689 * lib/lbitset.c: Likewise.
3690 * lib/subpipe.c: Likewise.
3691 * lib/timevar.c: Likewise.
3692 * lib/vbitset.c: Likewise.
3693 * lib/bitset.c: Include "bitset.h" first, to test interface.
3694 * lib/bitset_stats.c: Include "bitset_stats.h" first.
3695 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
3696 * lib/bitsetv.c: Include "bitsetv.h" first.
3697 * lib/get-errno.c: Include "get-errno.h" first.
3698 * m4/.cvsignore: Add config-h.m4.
3699 * tests/actions.at (Default %printer and %destructor for ...):
3700 Adjust expected line numbers in output to reflect removal of #if
3701 HAVE_CONFIG_H lines.
3702 * tests/glr-regression.at (Missed %merge type warnings when ...):
3703 Likewise.
3704 * tests/regression.at (Braced code in declaration in rules section):
3705 Likewise.
3706 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
3707 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
3708 Include <config.h> unconditionally.
3709
46356ea4
PE
3710 * bootstrap: Sync from coreutils, as follows:
3711
3712 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
3713
3714 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
3715 variable was sometimes used without being initialized. This
3716 messed up the installation of the INSTALL file in some cases.
3717
3718 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
3719
3720 * bootstrap (usage, main program, symlink_to_gnulib): Add option
3721 --copy. Inspired by a suggestion from Bruno Haible.
3722
3723 2006-10-03 Jim Meyering <jim@meyering.net>
3724
3725 * bootstrap: Undo last change to this file, since now gnulib-tool
3726 sticks with the automake default in generating dependencies.
3727
dd4bf078
PE
37282006-10-12 Paul Eggert <eggert@cs.ucla.edu>
3729
cf2a5f7c
PE
3730 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
3731 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
3732
3733 * doc/bison.1: Add copyright notice.
3734
3735 * data/glr.c: Don't include <stdarg.h>; not used.
3736
35fe0834
PE
3737 * NEWS: The -g and --graph options now output graphs in Graphviz
3738 DOT format, not VCG format.
3739 * doc/bison.1: Likewise.
3740 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
fcab4a2e
PE
3741 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
3742 of this change in
3743 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
35fe0834
PE
3744 * TODO: Remove Graphviz entry.
3745 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
3746 remove vcg.c, vcg.h, vcg_defaults.h.
3747 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
3748 * src/graphviz.c, src/graphviz.h: New files.
3749 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
3750 * src/files.h: Make comment more generic.
3751 * src/main.c (main): Likewise.
3752 * src/print_graph.h: Likewise.
3753 * src/getargs.c (usage): Make usage description more generic.
3754 * src/print_graph.c: Include graphviz.h rather than vcg.h.
3755 (static_graph, fgraph): Remove. All uses changed to pass
3756 arguments instead of sharing a static var.
3757 (print_core, print_actions, print_state, print_graph):
3758 Output graphviz format rather than VCG format.
3759 * tests/.cvsignore: Remove *.vcg; add *.dot.
3760 * tests/output.at: Expect *.dot files, not *.vcg files.
3761
dd4bf078
PE
3762 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
3763 accommodates the 2006-10-08 change.
3764
efdd7421
PE
37652006-10-11 Bob Rossi <bob@brasko.net>
3766
3767 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
3768 (b4_yyssa, b4_yyerror_range): New macros.
3769 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
3770 (yypvarsinit): Remove init of removed fields.
3771 (yypushparse): Remove use of removed fields; use new macros instead.
3772
96a1981a
PE
37732006-10-11 Paul Eggert <eggert@cs.ucla.edu>
3774
3775 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
3776 in a push parser. Reindent slightly to match yacc.c better.
3777
37782006-10-11 Bob Rossi <bob@brasko.net>
3779
46356ea4
PE
3780 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
3781 yymsg_alloc fields.
3782 (yypvarsinit, yypushparse): Remove init of removed fields.
3783 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
96a1981a 3784
c1630a8b
PE
37852006-10-09 Paul Eggert <eggert@cs.ucla.edu>
3786
3787 * THANKS: Add Paolo Bonzini and Bob Rossi.
3788
90b9908d
PB
37892006-10-08 Paolo Bonzini <bonzini@gnu.org>
3790
3791 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
3792 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
3793 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
3794 b4_define_user_cde and uses): Remove.
3795 (b4_comment, b4_prefix, b4_sync_start): New.
3796 * data/bison.m4: New file, with most of the content removed from c.m4.
3797 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
3798 * src/output.c (output_skeleton): Pass bison.m4.
3799 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
3800 only if specified.
3801
cf806753
PE
38022006-10-05 Paul Eggert <eggert@cs.ucla.edu>
3803
3804 Fix test failure reported by Tom Lane in
3805 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
3806 and try to make such failures easier to catch in the future.
3807 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
3808 that's now the caller's responsibility.
3809 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
3810 Set yychar = YYEOF if it's negative.
3811 * tests/actions.at (yylex): Abort if asked to read past EOF.
3812 * tests/conflicts.at (yylex): Likewise.
3813 * tests/cxx-type.at (yylex): Likewise.
3814 * tests/glr-regression.at (yylex): Likewise.
3815 * tests/input.at (yylex): Likewise.
3816 * tests/regression.at (yylex): Likewise.
3817 * tests/torture.at (yylex): Likewise.
3818
0e2f006a
PE
38192006-10-01 Paul Eggert <eggert@cs.ucla.edu>
3820
3821 Fix problems with translating English-language diagnostics.
3822 * bootstrap: Fix bug introduced in recent bootstrap changes, with
3823 respect to bison-runtime pot generation. The YY_ stuff
3824 wasn't being captured.
3825 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
3826 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
3827 * runtime-po/POTFILES.in: Add data/push.c.
3828
e3ddc1e3
PE
38292006-09-29 Paul Eggert <eggert@cs.ucla.edu>
3830
3831 Merge bootstrap changes from coreutils.
3832
3833 2006-09-28 Jim Meyering <jim@meyering.net>
3834
3835 Automatically generated dependencies are important even
3836 when all of the sources in a directory come from gnulib.
3837 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
3838 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
3839
3840 2006-09-23 Jim Meyering <jim@meyering.net>
3841
3842 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
3843
3844 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
3845
3846 * bootstrap: Add support for --force.
3847 (usage): New function. Describe usage less tersely.
3848 (CVS_only_file): New var.
3849
01e972b3
PE
38502006-09-21 Paul Eggert <eggert@cs.ucla.edu>
3851
3852 * data/push.c (YYPUSH_MORE): Make it an enum instead.
3853 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
3854 Adjust white space and comments to match GNU style better.
3855
c63d3e90
PE
38562006-09-20 Bob Rossi <bob@brasko.net>
3857
3858 * data/push.c (yyresult_get): Remove function.
3859 (YYPUSH_MORE): Add #define.
3860 (yypushparse): Modify return value.
3861
e70f46d1
PE
38622006-09-20 Paul Eggert <eggert@cs.ucla.edu>
3863
3864 * stamp-h.in: Remove; no longer needed.
3865 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
3866 Remove config.h, config.hin, intl (no longer created).
3867 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
3868 stamp-h1.
3869
3870 Sync bootstrap from coreutils, as follows:
3871
3872 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
3873
3874 * bootstrap (symlink_to_gnulib): New function.
3875 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
3876 to copies-of-gnulib.
3877 (cp_mark_as_generated, slurp, gnulib_files):
3878 Avoid making a copy if it's the same as the old version.
3879 (gnulib_files): Add support for this variable (used by Bison).
3880
a92be413
PE
38812006-09-20 Paul Eggert <eggert@cs.ucla.edu>
3882
3883 * src/getargs.c (usage): Rework to use conventions similar to
3884 coreutils, to make translation a bit easier and the code a bit
3885 smaller. Problem reported by Tim Van Holder.
3886
4f82b42a
PE
38872006-09-15 Paul Eggert <eggert@cs.ucla.edu>
3888
3b2942e6
PE
3889 Use some of gnulib's new modules, taken from coreutils.
3890
3891 * bootstrap: Sync from coreutils, except add support for gnulib_files.
3892 * bootstrap.conf: New file.
3893 (gnulib_modules): Add configmake, inttypes, unistd.
3894 (XGETTEXT_OPTIONS): Add complain, complain_at,
3895 fatal, fatal_at, warn, warn_at, unexpected_end.
3896 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
3897 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
3898 (gl_EARLY): Add.
3899 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
3900 (gl_INIT): Add
3901 (GNULIB_AUTOCONF_SNIPPET): Remove.
3902 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
3903 the pickiest.
3904 * lib/.cvsignore: Add inttypes_.h.
3905 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
3906 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
3907 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
3908 no-longer-necessary initializations.
3909 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
3910 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
3911 use the unistd module.
3912 * src/system.h: Likewise.
3913 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
3914 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
3915 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
3916 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
3917 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
3918 * src/system.h: Include inttypes.h unconditionally, now that we
3919 use the inttypes module. Don't bother to include stdint.h, since
3920 inttypes.h now does that for us.
3921 (LOCALEDIR): Remove, now that we use the configmake module.
3922 * src/getargs.c: Include configmake.h.
3923 * src/main.c: Likewise.
3924 * src/output.c: Likewise.
3925 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
3926 not from $abs_top_builddir, since config.h moved.
3927
3928
4f82b42a
PE
3929 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
3930 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
3931
3932 * src/parse-gram.y (symbol_declaration): Don't put statements
3933 before declarations; it's not portable to C89.
3934 * src/scan-code.l (handle_action_at): Likewise.
3935
3936 * src/scan-code.l: Always initialize braces_level; the old code
3937 left it uninitialized and therefore had undefined behavior.
3938
3939 Don't attempt to redefine 'assert', since it runs afoul of
3940 systems where standard headers (mistakenly) include <assert.h>.
3941 Instead, define and use our own alternative, called 'aver'.
3942 * src/reader.c: Don't include assert.h, since we no longer
3943 use assert.
3944 * src/scan-code.l: Likewise.
3945 * src/system.h (assert): Remove, replacing with....
3946 (aver): New function, taking a bool arg. All uses changed.
3947 * src/tables.c (pack_vector): Ensure that aver arg is bool,
3948 not merely an integer.
3949
31c10e38
PE
39502006-09-15 Bob Rossi <bob@brasko.net>
3951
3952 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
3953 * data/c.m4 (YYPUSH): New.
3954 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
3955 * src/getargs.c (push_parser): New var.
3956 * src/getargs.h (push_parser): New declaration.
3957 * src/output.c (prepare): Add macro insertion of `push_flag'.
3958 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
3959 (prologue_declaration): Parse %push-parser.
3960 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
3961 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
3962 list of removed lines from the traces observed.
3963 (AT_CHECK_CALC_LALR): Added push parser tests.
3964
fa7b79c0
PE
39652006-09-13 Paul Eggert <eggert@cs.ucla.edu>
3966
21fe08ca
PE
3967 * NEWS: Version 2.3a.
3968 * configure.ac (AC_INIT): Likewise.
3969
e8ec4d9b
PE
3970 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
3971 "#define YYSTYPE int" that caused "make maintainer-check" to fail
3972 due to header ordering dependencies. I don't know why the #define
3973 was there.
3974
fa7b79c0
PE
3975 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
3976 runtime cost when YYDEBUG is not defined, and so that some tests
3977 that used to fail now work. Problem and initial suggestion by
3978 Paolo Bonzini.
3979 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
3980 * data/glr.cc (b4_parser_class_name):
3981 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
3982 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
3983 (yydebug_) [YYDEBUG]: New member.
3984 (yycdebug_): Now defined only if YYDEBUG.
3985 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
3986 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
3987 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
3988 if YYYDEBUG.
3989 (debug_stream, set_debug_stream, debug_level, set_debug_level):
3990 Define only if YYDEBUG.
3991 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
3992 set_debug_level.
3993 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
3994 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
3995 AT_CHECK_CALC_GLR_CC that are working now.
3996
4ec13d60
PE
39972006-09-12 Paul Eggert <eggert@cs.ucla.edu>
3998
3999 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
4000 We don't need them in glr.cc, and glr.c defines them.
4001 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
4002 assumes that defining it to anything is the same as defining
4003 it to 1. Problem reported by Paolo Bonzini.
4004
8e1687ae
PE
40052006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
4006
4007 * data/c.m4 (b4_null, b4_case): Define.
4008 * src/output.c (prepare_symbols): Use b4_null.
4009 (user_actions_output): Use b4_case.
4010
3dc5e96b
PE
40112006-09-11 Paul Eggert <eggert@cs.ucla.edu>
4012
aef3da86
PE
4013 * data/glr.c (b4_shared_declarations): Put start-header first,
4014 before any #includes that we generate, so that feature-test
4015 macros work. Problem reported by Michael Deutschmann in
4016 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
4017 * data/lalr1.cc: Likewise.
4018 * doc/bison.texinfo (Prologue): Document that feature-test macros
4019 should be defined before any Bison declarations.
4020 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
4021 that depend on location.hh after, not before, Bison decls, since
4022 we now include location.hh after the first user prologue.
4023
3dc5e96b
PE
4024 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
4025 Sander Brandenburg in
4026 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
4027 Also, fix minor white space and comment issues.
aef3da86
PE
4028 (Prologue): Mention that it's better to define feature-test macros
4029 before Bison declarations. Problem reported by Michael Deutschmann.
4030
4031 * README-cvs: Fix typo: "&" should be "&&". Problem reported
4032 by Jim Meyering.
4033 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
4034 This adjusts to recent gnulib changes.
3dc5e96b 4035
b2a0b7ca
JD
40362006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
4037
4038 Finish implementation of per-type %destructor/%printer. Discussed
4039 starting at
4040 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
4041 and
4042 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
4043 * NEWS (2.3+): Add a description of this feature to the default
4044 %destructor/%printer description.
4045 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
4046 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
4047 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
4048 list node contains a semantic type.
4049 * src/symtab.c, src/symtab.h: Extend with a table that associates
4050 semantic types with their %destructor's and %printer's.
4051 (semantic_type_from_uniqstr, semantic_type_get,
4052 semantic_type_destructor_set, semantic_type_printer_set): New functions
4053 composing the public interface of that table.
4054 (symbol_destructor_get, symbol_destructor_location_get,
4055 symbol_printer_get, symbol_printer_location_get): If there's no
4056 per-symbol %destructor/%printer, look up the per-type before trying
4057 the default.
4058 * tests/actions.at (Per-type %printer and %destructor): New test case.
4059 * tests/input.at (Default %printer and %destructor redeclared):
4060 Extend to check that multiple occurrences of %symbol-default in a
4061 single %destructor/%printer declaration is an error.
4062 (Per-type %printer and %destructor redeclared, Unused values with
4063 per-type %destructor): New test cases.
4064
3be03b13
JD
40652006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
4066
4067 Require default %destructor/%printer to be declared using
4068 %symbol-default instead of an empty symbol list, and start working on
4069 new per-type %destructor/%printer. Discussed at
4070 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
4071 * NEWS (2.3+): Add %symbol-default to example.
4072 * bison.texinfo (Freeing Discarded Symbols): Likewise.
148d66d8 4073 (Table of Symbols): Add entry for %symbol-default.
3be03b13
JD
4074 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
4075 (generic_symlist, generic_symlist_item): New nonterminals for creating
4076 a list in which each item is a symbol, semantic type, or
4077 %symbol-default.
4078 (grammar_declaration): Use generic_symlist in %destructor and %printer
4079 declarations instead of symbols.1 or an empty list.
4080 (symbol_declaration, precedence_declaration, symbols.1): Update actions
4081 for changes to symbol_list.
4082 * src/reader.c: Update for changes to symbol_list.
4083 * src/scan-code.l: Likewise.
4084 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
4085 * src/symlist.c, src/symlist.h: Extend such that a list node may
4086 represent a semantic type or a %symbol-default in addition to just an
4087 ordinary symbol. Add switched functions for setting %destructor's and
4088 %printer's.
4089 * tests/actions.at, tests/input.at: Add %symbol-default to all default
4090 %destructor/%printer declarations.
4091
3508ce36
JD
40922006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
4093
4094 Whether the default %destructor/%printer applies to a particular symbol
4095 isn't a question of whether the user *declares* that symbol (in %token,
4096 for example). It's a question of whether the user by any means
4097 *defines* the symbol at all (by simply using a char token, for
4098 example). $end is defined by Bison whereas any other token with token
4099 number 0 is defined by the user. The error token is always defined by
4100 Bison regardless of whether the user declares it with %token, but we
4101 may one day let the user define error as a nonterminal instead.
4102 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
4103 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
4104 the meaning of "user-defined".
4105 * tests/actions.at (Default %printer and %destructor for user-declared
4106 end token): Rename to...
4107 (Default %printer and %destructor for user-defined end token): ...
4108 this.
4109
4110 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
4111 computation of whether to apply the default, don't maintain a list of
4112 every Bison-defined symbol. Instead, just check for a first character
4113 of '$', which a user symbol cannot have, and check for the error token.
4114
9350499c
JD
41152006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
4116
4117 Don't apply the default %destructor or %printer to the error token,
4118 $undefined, or $accept. This change fits the general rule that the
4119 default %destructor and %printer are only for user-declared symbols,
4120 and it solves several difficulties that are described in the new test
4121 cases listed below.
4122 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
4123 * tests/actions.at (Default %printer and %destructor are not for error
4124 or $undefined, Default %printer and %destructor are not for $accept):
4125 New test cases.
4126
4d7370cb
JD
41272006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
4128
4129 Allow %start after the first rule.
4130 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
4131 when parsing the first rule.
4132 (check_and_convert_grammar): Search for it here after all grammar
4133 declarations have been parsed. Skip midrules, which have dummy LHS
4134 nonterminals.
4135 * src/symtab.c (symbol_is_dummy): New function.
4136 * src/symtab.h (symbol_is_dummy): Declare it.
4137 * tests/input.at (%start after first rule): New test.
4138
6d0ef4ec
JD
41392006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
4140
4141 Redo some of the previous commit: add back the ability to use
4142 non-aliased/undeclared string literals since it might be useful to
4143 those declaring %token-table.
4144 * src/reader.c (check_and_convert_grammar): Undo changes in previous
4145 commit: don't worry about complaints from symbols_pack.
4146 * src/symtab.c (symbol_new, symbol_class_set,
4147 symbol_check_alias_consistency): Undo changes in previous commit: count
4148 each string literal as a new symbol and token, assign it a symbol
4149 number, and don't complain about non-aliased string literals.
4150 (symbols_pack): Since symbol_make_alias still does not decrement symbol
4151 and token counts but does still set aliased tokens to the same number,
4152 symbol_pack_processor now leaves empty slots in the symbols array.
4153 Remove those slots.
4154 * tests/regression.at (Undeclared string literal): Remove test case
4155 added in previous commit since non-aliased string literals are allowed
4156 again.
4157 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
4158 remove unnecessary string literal declarations.
4159 * tests/sets.at (Firsts): Likewise.
4160
965537bc
JD
41612006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
4162
4163 Don't allow an undeclared string literal, but allow a string literal to
4164 be used before its declaration.
4165 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
4166 symbols_pack complained.
4167 * src/symtab.c (symbol_new): Don't count a string literal as a new
4168 symbol.
4169 (symbol_class_set): Don't count a string literal as a new token, and
4170 don't assign it a symbol number since symbol_make_alias does that.
4171 (symbol_make_alias): It's not necessary to decrement the symbol and
4172 token counts anymore. Don't assume that an alias declaration occurs
4173 before any uses of the identifier or string, and thus don't assert that
4174 one of them has the highest symbol number so far.
4175 (symbol_check_alias_consistency): Complain if there's a string literal
4176 that wasn't declared as an alias.
4177 (symbols_pack): Bail if symbol_check_alias_consistency failed since
4178 symbol_pack asserts that every token has been assigned a symbol number
4179 although undeclared string literals have not.
4180 * tests/regression.at (String alias declared after use, Undeclared
6d0ef4ec 4181 string literal): New test cases.
965537bc
JD
4182 (Characters Escapes, Web2c Actions): Declare string literals as
4183 aliases.
4184 * tests/sets.at (Firsts): Likewise.
4185
47aee066
JD
41862006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
4187
4188 In the grammar scanner, STRING_FINISH unclosed constructs and return
4189 them to the parser in order to improve error messages.
4190 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
4191 SC_BRACED_CODE, SC_PROLOGUE): Implement.
4192 * tests/input.at (Unclosed constructs): New test case.
4193 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
4194 seen.
4195
4196 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
4197 unused global.
4198
1f6b3679
JD
41992006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
4200
4201 Handle string aliases for character tokens correctly.
4202 * src/symtab.c (symbol_user_token_number_set): If the token has an
4203 alias, check and set its alias's user token number instead of its own,
4204 which is set to indicate the alias. Previously, every occurrence of
4205 the character token in the grammar overwrote that alias indicator with
4206 the character code.
4207 * tests/input.at (String aliases for character tokens): New test.
4208
219741d8
JD
42092006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
4210
4211 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
4212
11daa4e7
PE
42132006-08-11 Paul Eggert <eggert@cs.ucla.edu>
4214
4215 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
4216 to prevent failures when building on older platforms.
4217 Check for autopoint failure.
4218 Set XGETTEXT_OPTIONS to values that check for C format strings,
4219 so that translators are warned about them (this also helps
4220 prevent core dumps).
4221
4222 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
4223 function, since it simplifies our code a bit.
4224
4225 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
4226 rather than -W, so we don't get bogus warnings about sign comparisons.
4227 Add -Wpointer-arith, since that warning is useful (it reports code
4228 that does not conform to C89 and that some compilers reject).
4229 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
4230 since it's no longer needed.
4231
f9bfc42a
JD
42322006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
4233
4234 Clean up scanners a bit.
4235 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
4236 definitions so gcc won't warn when obstack_for_string is unused.
4237 * src/scan-code.l: config.h and system.h are already #include'd by
4238 scan-code-c.c, so get rid of them here.
4239 * src/scan-gram.l: Likewise.
4240 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
4241 definitions rather than duplicating the rest of it.
4242 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
4243
06e8700a
JD
42442006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
4245
4246 Suppress signed/unsigned comparison warnings for yycheck.
4247 * data/c.m4 (b4_safest_int_type): New macro.
4248 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
4249 a signed int type, cast it to b4_safest_int_type first.
4250 * data/yacc.c: Likewise.
4251 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
4252 also overwritten.
4253
9c437126
PE
42542006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
4255
4256 * doc/bison.texinfo: Fix some typos.
4257
284d8a13
PE
42582006-08-02 Paul Eggert <eggert@cs.ucla.edu>
4259
4260 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
4261 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
4262
4263 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
4264 the latest gnulib does this a different way.
4265 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
4266 translation was patched, so stop omitting it.
4267
ec5479ce
JD
42682006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
4269
4270 Enable declaration of default %printer/%destructor. Make the parser
4271 use these for all user-declared grammar symbols for which the user does
4272 not declare a specific %printer/%destructor. Thus, the parser uses it
4273 for token 0 if the user declares it but not if Bison generates it as
4274 $end. Discussed starting at
4275 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
4276 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
4277 and
4278 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
4279 * NEWS (2.3+): Mention.
4280 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
4281 declare a %destructor for a mid-rule's semantic value. It's just
4282 impossible to declare one specific to it.
4283 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
4284 code. Describe default %destructor form.
4285 * src/parse-gram.y (grammar_declaration): Parse default
4286 %printer/%destructor declarations.
4287 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
4288 and symbol_destructor_location_get rather than accessing the destructor
4289 and destructor_location members of struct symbol.
4290 (symbol_printers_output): Likewise but for %printer's.
4291 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
4292 again.
4293 * src/symtab.c (default_destructor, default_destructor_location,
4294 default_printer, default_printer_location): New static global
4295 variables to record the default %destructor and %printer.
4296 (symbol_destructor_get, symbol_destructor_location_get,
4297 symbol_printer_get, symbol_printer_location_get): New functions to
4298 compute the appropriate %destructor and %printer for a symbol.
4299 (default_destructor_set, default_printer_set): New functions to set the
4300 default %destructor and %printer.
4301 * src/symtab.h: Prototype all those new functions.
4302 * tests/actions.at (Default %printer and %destructor): New test to
4303 check that the right %printer and %destructor are called, that they're
4304 not called for $end, and that $$ and @$ work correctly.
4305 (Default %printer and %destructor for user-declared end token): New
4306 test to check that the default %printer and %destructor are called for
4307 a user-declared end token.
4308 * tests/input.at (Default %printer and %destructor redeclared, Unused
4309 values with default %destructor): New tests to check related grammar
4310 warnings and errors.
4311
868d2d96
JD
43122006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
4313
4314 Clean up handling of %destructor for the end token (token 0).
4315 Discussed starting at
4316 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
4317 and
4318 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
4319
4320 Make the skeletons consistent in how they pop the end token and invoke
4321 its %destructor.
4322 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
4323 state, which has token number 0, since this would invoke the
4324 %destructor for the end token.
4325 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
4326 until after shifting the end token, or else it won't be popped.
4327 * data/yacc.c (yyparse): Likewise.
4328
4329 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
4330 it's the end token. Upon termination, destroy an unshifted lookahead
4331 even when it's the end token.
4332 * data/lalr1.cc (yy::parser::parse): Likewise.
4333 * data/yacc.c (yyparse): Likewise.
4334
4335 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
4336 value warnings for the end token when the user gives the end token a
4337 %destructor.
4338
4339 * tests/actions.at (Printers and Destructors): Test all the above.
4340
62a9592d
PE
43412006-07-24 Paul Eggert <eggert@cs.ucla.edu>
4342
4343 Update to latest gnulib and gettext versions.
4344 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
4345 Add fopen-safer.
4346 (gnulib_files): Add m4/warning.m4. Don't worry about files
4347 overwritten by autopoint.
4348 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
4349 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
4350 rejects them.
4351 Don't use autoreconf; instead, invoke autopoint etc. by hand,
4352 so that we can remove the intl files at a better time.
4353 (intl_files_to_remove): Remove aclocal.m4, since it gets
4354 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
4355 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
4356 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
4357 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
4358 Remove datarootdir hack; no longer needed.
4359 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
4360 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
4361 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
4362 strdup.h.
4363 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
4364 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
4365
10d6970f
PE
43662006-07-20 Paul Eggert <eggert@cs.ucla.edu>
4367
4368 * bootstrap: Adjust to today's change to gnulib-tool by invoking
4369 it with --assume-autoconf='latest-stable'.
4370
50a33993
JD
43712006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
4372
4373 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
4374 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
4375 YYSTYPE' and `{'.
4376 * src/muscle_tab.h (muscle_grow): Replace the header comments with
4377 those from muscle_tab.c since the old ones are misleading.
4378
2ce4ed68
AD
43792006-07-13 Akim Demaille <akim@epita.fr>
4380
4381 Support %define "KEY" {VALUE}.
4382 * src/scan-code.h, src/scan-code.l (translate_action)
4383 (translate_rule_action, translate_symbol_action, translate_code):
4384 Return char *, not const char *.
4385 * src/parse-gram.y (declaration): Rename as...
4386 (prologue_declaration): this.
4387 (string_content): Remove this nonterminal, use STRING.
4388 (braceless, content, content.opt): New nonterminal.
4389 Use them.
4390 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
4391 as value.
4392 * src/scan-gram.l (getargs.h): Don't include it.
4393
db7e5eb5
PE
43942006-07-12 Paul Eggert <eggert@cs.ucla.edu>
4395
4396 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
4397 rather than a for-loop that declares a local bool variable. This
4398 should work around a compatibility problem with a Cray x1e C++
4399 compiler reported by Hung Nguyen in
4400 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
4401 The for-loop was introduced in the 2004-11-17 change but I don't
4402 know why it was needed.
4403
a5d80ba5
AD
44042006-07-12 Akim Demaille <akim@epita.fr>
4405
4406 * data/c.m4: Comment changes.
4407
23eb2a69
AD
44082006-07-10 Akim Demaille <akim@lrde.epita.fr>
4409
4410 * src/complain.c (error_message, ERROR_MESSAGE): New.
4411 To factor...
4412 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
4413 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
4414
ddc8ede1
PE
44152006-07-09 Paul Eggert <eggert@cs.ucla.edu>
4416
4417 * NEWS: Instead of %union, you can define and use your own union type
4418 YYSTYPE if your grammar contains at least one <type> tag.
4419 Your YYSTYPE need not be a macro; it can be a typedef.
4420 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
4421 (Union Decl, Decl Summary): Document this.
4422 * data/glr.c (YYSTYPE): Implement this.
4423 * data/glr.cc (YYSTYPE): Likewise.
4424 * data/lalr1.cc (YYSTYPE): Likewise.
4425 * data/yacc.c (YYSTYPE): Likewise.
4426 * src/output.c (prepare): Output tag_seen_flag.
4427 * src/parse-gram.y (declaration, grammar_declaration):
4428 Use 'union_seen' rather than 'typed' to determine whether
4429 %union has been seen, since grammars can now be typed without
4430 %union.
4431 (symbol_declaration, type.opt, symbol_def):
4432 Keep track of whether a tag has been seen.
4433 * src/reader.c (union_seen, tag_seen): New vars.
4434 (typed): remove.
4435 * src/reader.h (union_seen, tag_seen, typed): Likewise.
4436 * src/scan-code.l (untyped_var_seen): New variable.
4437 (handle_action_dollar): Adjust to above changes.
4438 (handle_action_dollar, handle_action_at):
4439 Improve overflow checking for outlandish numbers.
4440 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
4441 avoid new diagnostics generated by above changes.
4442 * tests/regression.at (YYSTYPE typedef): Add test to check
4443 for type tags without %union.
4444
4445 * src/symlist.c (symbol_list_length): Return int, not unsigned
4446 int, since callers expect int. This may need to get revisited
4447 once we have proper integer overflow checking.
4448
4449 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
4450 object is now static.
4451
4452 * src/getargs.c (flags_argmatch): Return void, not int,
4453 to pacify ./configure --enable-gcc-warnings.
4454
4455 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
4456 since last_string is already defined to FLEX_PREFIX (last_string).
4457
7b42569e
AD
44582006-07-09 Akim Demaille <akim@lrde.epita.fr>
4459
4460 Implement --warnings/-W.
4461 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
4462 replaced by...
4463 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
4464 Adjust callers.
4465 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
4466 (warnings_args, warnings_types): New.
4467 (getargs, short_options, long_options): Accept -W/--warnings.
4468 Sort the options by alphabetical order, upper case letter right
4469 before its lower case.
4470
3b452f4e
JD
44712006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
4472
4473 Change %merge result type clash warnings to errors. Discussed at
4474 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
4475 * src/reader.c (record_merge_function_type): Use complain_at.
4476 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
4477 declared later): Update test case results.
4478
b8a41559
AD
44792006-07-09 Akim Demaille <akim@lrde.epita.fr>
4480
4481 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
4482 to be in alphabetical order.
4483 (trace_args): Spelling fixes.
4484
cd9e1ba2
PE
44852006-07-09 Paul Eggert <eggert@cs.ucla.edu>
4486
4487 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
4488 so they don't collide with user-defined macros.
4489 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
4490 this was never guaranteed, and now that we're using gnulib stdint,
4491 which defines int_fast16_t to long int, the problem is exposed.
4492
cb48f191
PE
44932006-07-08 Paul Eggert <eggert@cs.ucla.edu>
4494
b8445a15
PE
4495 * data/c.m4 (b4_basename): Simplify a bit, since we don't
4496 need the full POSIX semantics (and weren't implementing them
4497 anyway).
4498
cb48f191
PE
4499 Adjust to Autoconf 2.60 and today's gnulib.
4500 * bootstrap (gnulib_modules): Add stdint.
4501 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
4502 no longer copies it.
4503 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
4504 since stdint needs the former and wcwidth (which is now required
4505 by mbswidth) needs the latter.
4506 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
4507 work around a compatibility glitch between gettext 0.14.6 and
4508 Autoconf 2.60.
4509 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
4510 Do not check for uintptr_t, since new stdint module does the right
4511 thing.
4512 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
4513 Add stdint.h, stdint_.h, wcwidth.h.
4514 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
4515 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
4516 stdint.m4, wchar_t.m4, wcwidth.m4.
4517 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
4518 usual order for ../lib/*.h files.
4519 (file_name_split): Use last_component, not base_name, to adjust
4520 to gnulib changes.
4521 * src/parse-gram.h: Include <strverscmp.h> in the usual order
4522 for ../lib/*.h files.
4523 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
4524 Define unconditionally, since we now assume the stdint module.
4525 * src/scan-skel.l: Include <dirname.h>.
4526 (BASE_QPUTS): Use last_component, not base_name.
4527 * src/system.h: Include <unlocked-io.h> in the usual order
4528 for ../lib/*.h files. Include <stdint.h> unconditionally,
4529 since we now use the stdint module.
4530 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
4531 HAVE_UINTPTR_T, since we now use the stdint module.
4532 (base_name): Remove decl, since files now include <dirname.h>
4533 to get the decl.
4534
cd48d21d
AD
45352006-07-08 Akim Demaille <akim@lrde.epita.fr>
4536
4537 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
4538 New, default to 1.
4539 * data/yacc.c, data/glr.c, data/location.cc: Use them.
4540 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
4541 default.
4542 * tests/calc.at: Adjust.
4543
8ec0a172
AD
45442006-07-08 Akim Demaille <akim@lrde.epita.fr>
4545
b8445a15 4546 * data/c.m4 (b4_basename): New.
8ec0a172
AD
4547 (b4_syncline): Also output the location of its invocation (from
4548 the skeleton).
4549 (b4_user_action, b4_define_user_action, b4_user_actions)
4550 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
4551 (b4_user_stype): New.
4552 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
4553
4a678af8
JD
45542006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
4555
4556 In the grammar file, the first column is 1 not 0 on the first line as
4557 on every other line.
4558 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
4559 * tests/input.at (Torturing the Scanner): Update output.
4560
4561 * src/scan-gram.l (scanner_cursor): Declare it static.
4562
dd60572a
JD
45632006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
4564
4565 In warnings, say "previous declaration" rather than "first
4566 declaration".
4567 * src/symtab.c (redeclaration): Do that here.
4568 * src/reader.c (record_merge_function_type): In the case of a result
4569 type clash, report the previous declaration rather than the very first
4570 one in the grammar file.
4571 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
4572 declared later): Add a third declaration to check this behavior.
4573 * tests/input.at (Incompatible Aliases): Update output.
4574
2073e1b6
AD
45752006-06-27 Akim Demaille <akim@epita.fr>
4576
4577 * doc/Doxyfile.in: New.
4578 * doc/Makefile.am: Use it.
4579 * src/lalr.h, src/symtab.h: Initial doxygenation.
4580
8ee5b538
JD
45812006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
4582
4583 Don't miss %merge result type warnings just because the LHS types are
fab044e6
JD
4584 declared after the %merge. This continues the effort of the previous
4585 patch.
8ee5b538
JD
4586 * src/reader.c (get_merge_function): Don't set the merger type yet.
4587 (record_merge_function_type): New function for setting the merger type
4588 and checking for clashes.
4589 (grammar_current_rule_merge_set): Set the location of the %merge for
4590 the current rule.
4591 (packgram): Invoke record_merge_function_type for each rule now that
4592 all symbol type declarations have been parsed.
4593 * src/reader.h (merger_list.type_declaration_location): New member
4594 storing the location of the first %merge from which the type for this
4595 merging function was derived.
4596 * src/symlist.h (symbol_list.merger_declaration_location): New member
4597 storing the location of a rule's %merge, if any.
4598 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
4599 declared later): New test to catch the error fixed by the above patch.
4600
ffa4ba3a
JD
46012006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
4602
4603 Get action warnings (grammar_rule_check) right even when symbol
fab044e6
JD
4604 declarations appear after the rules. Discussed at
4605 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
4606 and
4607 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
4608 Don't mistake the type of $$ in a midrule to be that of its parent
4609 rule's $$.
ffa4ba3a
JD
4610 * src/reader.c (grammar_current_rule_end): Don't invoke
4611 grammar_rule_check yet since not all symbol declarations may have been
4612 parsed yet.
4613 (grammar_midrule_action): Likewise.
4614 Don't record whether the midrule's $$ has been used yet since actions
4615 haven't been translated yet.
4616 Record the midrule's parent rule and its RHS index within the parent
4617 rule.
4618 (grammar_current_rule_action_append): Don't translate the action yet
4619 since not all symbol declarations may have been parsed yet and, thus,
4620 warnings about types for $$, $n, @$, and @n can't be reported yet.
4621 (packgram): Translate the action and invoke grammar_rule_check now that
4622 all symbol declarations have been parsed.
4623 * src/scan-code.l (handle_action_dollar): Now that this is invoked
4624 after parsing the entire grammar file, the symbol list here in the case
4625 of a midrule is actually the midrule's empty RHS, so reference its
4626 parent rule's RHS where necessary.
4627 On the other hand, now that you can already know it's a midrule, you
4628 aren't forced to think $$ has the same type as its parent rule's $$.
4629 (handle_action_at): In the case of a midrule, reference the parent rule
4630 where necessary.
4631 * src/symlist.c (symbol_list_new): Initialize new midrule-related
4632 members.
4633 (symbol_list_length): Now that this is invoked after all rules have
4634 been parsed, a NULL symbol (rather than a NULL symbol list node)
4635 terminates a rule. symbol_list_print already does this correctly.
4636 * src/symlist.h (symbol_list.midrule_parent_rule,
4637 symbol_list.midrule_parent_rhs_index): New members so that midrules can
4638 remember their relationships with their parents.
4639 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
4640 fixed by the above patch.
4641 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
4642 implementing...
4643 (Unused values): ... this old test case and...
4644 (Unused values before symbol declarations): ... this new test case.
4645 This one is the same as `Unused values' except that all symbol
4646 declarations appear after the rules in order to catch the rest of the
4647 errors fixed by the above patch.
4648
e256e17f
JD
46492006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
4650
300a1930
JD
4651 More cleanup.
4652 * src/reader.c (current_rule): Declare it static since it's no longer
4653 used outside this file.
4654 (grammar_current_rule_action_append): Remove redundant arguments from
4655 translate_rule_action invocation.
4656 * src/reader.h (current_rule): Remove this unused extern.
4657 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
4658 * src/scan-code.l (translate_rule_action): Likewise.
e256e17f 4659
381ecb06
JD
46602006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
4661
4662 Clean up yesterday's patch.
4663 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
4664 to...
4665 * src/reader.c (grammar_current_rule_action_append): ... here for
4666 consistency with grammar_current_rule_symbol_append.
4667 * tests/regression.at (Braced code in declaration in rules section):
4668 Make yyerror and yylex static as usual.
4669
4210cd0b
JD
46702006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
4671
4672 Fix bug that mistakes braced code in a declaration in the rules section
4673 to be a rule action. Mentioned at
4674 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
4675 * src/scan-gram.l: Move midrule action detection from the start of the
4676 scanning of any braced code to...
4677 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
4678 action. For readability, use $2 and @2 rather than the equivalent
4679 global variables.
4680 * tests/regression.at (Braced code in declaration in rules section):
4681 New test to catch the error fixed by the above patch.
4682
4683 Work on code readability some.
4684 * src/scan-code.l (current_rule): Get rid of this misleading and
4685 redundant declaration: it's actually extern'ed in reader.h.
4686 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
4687 translate_action): Add a rule argument and use it instead of the global
4688 current_rule.
4689 (translate_rule_action): This already receives current_rule through an
4690 argument, so pass it on to translate_action instead of assigning
4691 current_rule to current_rule.
4692 (translate_symbol_action, translate_code): Pass rule = NULL to
4693 translate_action.
4694
34f98f46
JD
46952006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
4696
4697 Rename %before-definitions to %start-header and %after-definitions to
4698 %end-header. Don't use these declarations to separate pre-prologue
4699 blocks from post-prologue blocks. Add new order-independent
4700 declarations %before-header and %after-header as alternatives to the
4701 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
4702 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
4703 * NEWS (2.3+): Update for these changes.
4704 * data/glr.c (b4_before_definitions): Update to...
4705 (b4_start_header): ... this.
4706 (b4_after_definitions): Update to...
4707 (b4_end_header): ... this.
4708 * data/glr.cc: Likewise.
4709 * data/lalr1.cc: Likewise.
4710 * data/yacc.c: Likewise.
4711 * doc/bison.texinfo (The prologue): Update names, and replace remaining
4712 prologue blocks with %*-header declarations.
4713 (Calc++ Parser): Likewise.
91661ebb 4714 (Decl Summary): Update names.
148d66d8 4715 (Table of Symbols): Update description.
34f98f46
JD
4716 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
4717 (PERCENT_END_HEADER): ... this.
4718 (PERCENT_BEFORE_DEFINITIONS): Update to...
4719 (PERCENT_START_HEADER): ... this.
4720 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
4721 (declaration): Update token names and m4 macro names.
4722 When parsing %end-header and %start-header, invoke translate_code
4723 before muscle_code_grow, and no longer set global booleans to remember
4724 whether these declarations have been seen.
4725 Parse new %after-header and %before-header.
4726 * src/reader.c (before_definitions, after_definitions): Remove.
4727 (prologue_augment): Accept a new bool argument to specify whether to
4728 augment the pre-prologue or post-prologue.
4729 * src/reader.h (before_definitions, after_definitions): Remove these
4730 extern's.
4731 (prologue_augment): Add new bool argument.
4732 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
4733 (PERCENT_END_HEADER): ... this.
4734 (PERCENT_BEFORE_DEFINITIONS): Update to...
4735 (PERCENT_START_HEADER): ... this.
4736 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
4737 * tests/actions.at (Printers and Destructors): Update names.
4738
31b2b07e
JD
47392006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
4740
4741 Add comparison operators for C++ location classes. Discussed at
4742 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
4743 * data/c++.m4 (b4_define_location_comparison): New boolean %define
4744 declaration indicating whether filename_type has an operator==. If
4745 filename_type is `std::string', it defaults to `1', `0' otherwise.
4746 * data/location.cc: Iff b4_define_location_comparison is `1', add
4747 operator== and operator!= for class position and for class location.
4748
4749 Some minor fixes.
4750 * src/scan-action.l: Remove unused file.
4751 * src/symtab.c (symbol_printer_set): Use printer_location not
4752 destructor_location.
4753 * src/symtab.h (struct symbol): Replace incorrect source comment for
4754 printer members.
4755 * tests/input.at (Incompatible Aliases): Update output with correct
4756 printer location.
4757
9bc0dd67
JD
47582006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
4759
4760 Don't put the pre-prologue in the header file. For the yacc.c code
4761 file and the glr.c header and code files, move the pre-prologue before
4762 the token definitions. Add new %before-definitions and
4763 %after-definitions to declare code that will go in both the header file
4764 and code file. Discussed at
4765 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
4766 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
4767 and
4768 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
4769 * NEWS (2.3+): Describe these changes.
4770 * data/glr.c (b4_pre_prologue): Move from within to before...
4771 (b4_shared_declarations): ... this.
4772 Add new b4_before_definitions before b4_token_enums.
4773 Add new b4_after_definitions at the end.
4774 * data/glr.cc (b4_pre_prologue): Replace with...
4775 (b4_before_definitions): ... this in the header file.
4776 (b4_after_definitions): New near the end of the header file.
4777 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
4778 code file right before including the header file.
4779 (b4_before_definitions): New in the previous position of
4780 b4_pre_prologue in the header file.
4781 (b4_after_definitions): New near the end of the header file.
4782 * data/yacc.c: Clean up some m4 quoting especially in the header file.
4783 (b4_token_enums_defines): In the code file, move to right before
4784 YYSTYPE for consistency with the header file.
4785 (b4_before_definitions): New right before b4_token_enums_defines in
4786 both the header and code file.
4787 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
4788 header and code file.
4789 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
4790 of prologues for %union dependencies.
91661ebb
JD
4791 (Decl Summary): In %defines description, mention the effect of
4792 %before-definitions and %after-definitions on the header file.
9bc0dd67
JD
4793 (Calc++ Parser): Forward declare driver in a %before-definitions rather
4794 than in the pre-prologue so that make check succeeds.
148d66d8 4795 (Table of Symbols): Add entries for %before-definitions and
9bc0dd67
JD
4796 %after-definitions.
4797 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
4798 %before-definitions.
4799 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
4800 (declaration): Parse those declarations and append to
4801 b4_before_definitions and b4_after_definitions, respectively.
4802 * src/reader.c (before_definitions, after_definitions): New bools to
4803 track whether those declarations have been seen.
4804 (prologue_augment): Add to the post-prologue if %union,
4805 %before-definitions, or %after-definitions has been seen.
4806 * src/reader.h (before_definitions, after_definitions): New extern's.
4807 * src/scan-gram.l: Scan the new declarations.
4808 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
4809 prologue block in a %before-definitions or a %after-definitions based
4810 on whether the %union is declared.
4811 * tests/regression.at (Early token definitions with --yacc, Early token
4812 definitions without --yacc): Move tests for token definitions into the
4813 post-prologue since token names are no longer defined in the
4814 pre-prologue.
4815
203b9274
AD
48162006-06-20 Akim Demaille <akim@epita.fr>
4817
4818 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
4819 (symbol_get): Use it.
4820 * src/parse-gram.y: Use it.
4821
a7ee59cf
JD
48222006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
4823
4824 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
4825 build succeeds when configured with --enable-gcc-warnings.
4826
5a2baae7
PE
48272006-06-19 Paul Eggert <eggert@cs.ucla.edu>
4828
33ad1a9c
PE
4829 * src/parse-gram.y (char_name): New function.
4830 (CHAR, STRING, string_content): For %printer, properly escape.
4831 (ID): Prefer fputs to fprintf.
4832 (id): Reindent to be consistent with other rules.
4833 Properly quote char.
4834
5a2baae7
PE
4835 The Translation Project changed its way of publishing translations
4836 to maintainers. I haven't received any responses to my request
4837 for supporting the old way, or for documenting the new way. I
4838 have modified 'bootstrap' to use screen scraping
4839 (in this case, HTML scraping). This is unreliable and inelegant,
4840 but I don't see any better way. Yuck.
4841 * bootstrap (TP_URL, WGET_COMMAND): New vars.
4842 (get_translations): New function, which uses HTML scraping to
4843 deduce locations of latest translations.
4844 Use this function to grab both bison and bison-runtime .po files.
4845 Don't bother priming the pump for the runtime-po domain any more,
4846 as it's now translated better than bison is.
4847
58d7a1a1
AD
48482006-06-19 Akim Demaille <akim@epita.fr>
4849
4850 * src/scan-gram.l: No longer "parse" things after `%union' until
4851 `{'. Rather, return a single "%union" token.
4852 No longer make symbols: return strings, and leave the conversion
4853 to symbols to the parser.
4854 (SC_PRE_CODE, token_type): Remove.
4855 * src/parse-gram.y (%union): New field `character'.
4856 Sort tokens.
4857 (CHAR): New token.
4858 (ID, ID_COLON): Now that the scanner no longer makes them
4859 identifiers, adjust all uses to invoke symbol_get.
4860 (id_colon): New, wraps the conversion from string to symbol.
4861 (%union): Accept a possible union_name.
4862 (symbol): Now can be a char.
4863 * data/c.m4 (b4_union_name): Leave a default value.
4864 * data/glr.c, data/yacc.c: Use it.
4865
b931235e
JD
48662006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
4867
4868 For associating token numbers with token names for "yacc.c", don't use
4869 #define statements unless `--yacc' is specified; always use enum
4870 yytokentype. Most important discussions start at:
4871 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
4872 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
4873 and
4874 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
4875 * NEWS (2.3+): Mention.
4876 * data/c.m4 (b4_yacc_if): New.
4877 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
4878 token #define's.
4879 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
4880 on token name definitions.
4881 * src/getargs.c (usage): Capitalize `Yacc' in English.
4882 * src/output.c (prepare): Define b4_yacc_flag.
4883 * tests/regression.at (Early token definitions): Test that tokens names
4884 are defined before the pre-prologue not just before the post-prologue.
4885 Remove this test case and copy to...
4886 (Early token definitions with --yacc): ... this to test #define's.
4887 (Early token definitions without --yacc): ... and this to test enums.
4888
9e6e7ed2
PE
48892006-06-11 Paul Eggert <eggert@cs.ucla.edu>
4890
4891 * NEWS: Reword the post-2.3 change to not be so optimistic about
4892 removing the old "look-ahead" spelling.
4893 Update previous look-ahead/lookahead change reports.
4894 * REFERENCES: look-ahead -> lookahead (since that's
4895 what he actually wrote).
4896 * doc/refcard.tex: look ahead -> lookahead,
4897 look-ahead -> lookahead
4898
742e4900
JD
48992006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
4900
4901 For consistency, use `lookahead' instead of `look-ahead' or
4902 `look_ahead'. Discussed starting at
4903 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
4904 and then at
4905 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
4906 * NEWS: For the next release, note the change to `--report'.
4907 * TODO, doc/bison.1: Update English.
4908 * doc/bison.texinfo: Update English.
4909 (Understanding Your Parser, Bison Options): Document as
4910 `--report=lookahead' rather than `--report=look-ahead'.
4911 * src/conflicts.c: Update English in comments.
4912 (lookahead_set): Rename from look_ahead_set.
4913 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
4914 (resolve_sr_conflict): Rename local look_ahead_tokens to
4915 lookahead_tokens, and update other uses.
4916 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
4917 count_rr_conflicts, conflicts_free): Update uses.
4918 * src/getargs.c (report_args): Move "lookahead" before alternate
4919 spellings.
4920 (report_types): Update uses.
4921 (usage): For `--report' usage description, state `lookahead' spelling
4922 rather than `look-ahead'.
4923 * src/getargs.h (report.report_lookahead_tokens): Rename from
4924 report_look_ahead_tokens.
4925 * src/lalr.c: Update English in comments.
4926 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
4927 (state_lookahead_tokens_count): Rename from
4928 state_look_ahead_tokens_count.
4929 Rename local n_look_ahead_tokens to n_lookahead_tokens.
4930 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
4931 Rename local n_look_ahead_tokens to n_lookahead_tokens.
4932 Update other uses.
4933 Update English in output.
4934 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
4935 * src/print.c: Update English in comments.
4936 (lookahead_set): Rename from look_ahead_set.
4937 (print_reduction): Rename argument lookahead_token from
4938 look_ahead_token.
4939 (print_core, state_default_rule, print_reductions, print_results):
4940 Update uses.
4941 * src/print_graph.c: Update English in comments.
4942 (print_core): Update uses.
4943 * src/state.c: Update English in comments.
4944 (reductions_new): Update uses.
4945 (state_rule_lookahead_tokens_print): Rename from
4946 state_rule_look_ahead_tokens_print, and update other uses.
4947 * src/state.h: Update English in comments.
4948 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
4949 (state_rule_lookahead_tokens_print): Rename from
4950 state_rule_look_ahead_tokens_print.
4951 * src/tables.c: Update English in comments.
4952 (conflict_row, action_row): Update uses.
4953 * tests/glr-regression.at
4954 (Incorrect lookahead during deterministic GLR,
4955 Incorrect lookahead during nondeterministic GLR): Rename
4956 print_look_ahead to print_lookahead.
4957 * tests/torture.at: Update English in comments.
4958 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
4959 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
4960 (Many lookahead tokens): Update uses.
4961 * data/glr.c: Update English in comments.
4962 * lalr1.cc: Likewise.
4963 * yacc.c: Likewise.
4964 * src/conflicts.h: Likewise.
4965 * src/lalr.h: Likewise.
4966 * src/main.c: Likewise.
4967 * src/output.c: Likewise.
4968 * src/parse-gram.c: Likewise.
4969 * src/tables.h: Likewise.
4970 * tests/calc.at: Likewise.
4971
3c40d0b5
JD
49722006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
4973
4974 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
4975
5d278082
PE
49762006-06-07 Paul Eggert <eggert@cs.ucla.edu>
4977
4978 * TODO: Add request from Nelson H. F. Beebe to be able to install
4979 Bison without installing the yacc script.
4980
9e668899
JD
49812006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
4982
4983 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
4984 and yytext if they're already #define'd.
4985 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
4986 * src/scan-code-c.c: ... here.
4987 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
4988 <config.h>.
4989
0c8e079f
JD
49902006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
4991
4992 Get Bison to build again when configured with --enable-gcc-warnings.
4993 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
4994 missing #include's.
4995 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
4996 loc argument as it shadows a global.
4997 * src/scan-gram.l: Remove stray comma that prevents boundary_set
4998 invocation.
4999
5000 * src/.cvsignore: Add scan-code.c.
5001
2346344a
AD
50022006-06-07 Akim Demaille <akim@epita.fr>
5003
5004 * src/scan-gram.l: Move the "add a trailing ; to actions" code
5005 to...
5006 * src/scan-code.l: here.
5007 * tests/input.at (Torturing the Scanner): Fix another location
5008 error.
5009
4862bdfd
AD
50102006-06-07 Akim Demaille <akim@epita.fr>
5011
5012 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
5013
e9071366
AD
50142006-06-06 Akim Demaille <akim@epita.fr>
5015
5016 Extract the parsing of user actions from the grammar scanner.
5017 As a consequence, the relation between the grammar scanner and
5018 parser is much simpler. We can also split "composite tokens" back
5019 into simple tokens.
5020 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
5021 * src/scan-gram.l (add_column_width, adjust_location): Move to and
5022 rename as...
5023 * src/location.h, src/location.c (add_column_width)
5024 (location_compute): these.
5025 Fix the column count: the initial column is 0.
5026 (location_print): Be robust to ending column being 0.
5027 * src/location.h (boundary_set): New.
5028 * src/main.c: Adjust to scanner_free being renamed as
5029 gram_scanner_free.
5030 * src/output.c: Include scan-code.h.
5031 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
5032 Use boundary_set.
5033 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
5034 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
5035 which is now, again, a separate token.
5036 Adjust all dependencies.
5037 Whereever actions with $ and @ are used, use translate_code.
5038 (action): Remove this nonterminal which is now useless.
5039 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
5040 (grammar_current_rule_action_append): Use translate_code.
5041 (packgram): Bound check ruleno, itemno, and rule_length.
5042 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
5043 (last_string, last_braced_code_loc, max_left_semantic_context)
5044 (scanner_initialize, scanner_free, scanner_last_string_free)
5045 (gram_out, gram_lineno, YY_DECL_): Move to...
5046 * src/scan-gram.h: this new file.
5047 (YY_DECL): Rename as...
5048 (GRAM_DECL): this.
5049 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
5050 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
5051 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
5052 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
5053 Move these declarations, and...
5054 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
5055 these to...
5056 * src/flex-scanner.h: this new file.
5057 * src/scan-gram.l (rule_length, rule_length_overflow)
5058 (increment_rule_length): Remove.
5059 (last_braced_code_loc): Rename as...
5060 (gram_last_braced_code_loc): this.
5061 Adjust to the changes of the parser.
5062 Move all the handling of $ and @ into...
5063 * src/scan-code.l: here.
5064 * src/scan-gram.l (handle_dollar, handle_at): Remove.
5065 (handle_action_dollar, handle_action_at): Move to...
5066 * src/scan-code.l: here.
5067 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
5068 scan-code.h, scan-code-c.c, scan-gram.h.
5069 (EXTRA_bison_SOURCES): Add scan-code.l.
5070 (BUILT_SOURCES): Add scan-code.c.
5071 (yacc): Be robust to white spaces.
5072
5073 * tests/conflicts.at, tests/input.at, tests/reduce.at,
5074 * tests/regression.at: Adjust the column numbers.
5075 * tests/regression.at: Adjust the error message.
7891a7c4 5076
184e42f0
JD
50772006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
5078
5079 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
5080 Use Akim's wording from
5081 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
5082
7891a7c4
JD
50832006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
5084
5085 Between Bison releases, manually append `+' to the previous Bison
5086 release number, and use that as a signal to automatically print the
5087 ChangeLog's CVS Id keyword from --version. Discussed starting at
5088 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
5089 * ChangeLog: Add Id header.
5090 * configure.ac (AC_INIT): Append `+' to `2.3'.
5091 * src/.cvsignore: Add revision.c.
5092 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
5093 (BUILT_SOURCES): Add revision.c.
5094 (revision.c): New target rule. This file defines a new global variable
5095 named revision. It initializes it with either the Id from ChangeLog
5096 or, if VERSION doesn't contain `+', with the empty string.
5097 * src/getargs.c (version): Print the value of revision.
5098 * src/revision.h: Extern revision.
5099
4ad3ed84
PE
51002006-06-05 Paul Eggert <eggert@cs.ucla.edu>
5101
5102 * NEWS: Version 2.3.
5103 * configure.ac (AC_INIT): Likewise.
5104
02103984
PE
51052006-05-30 Paul Eggert <eggert@cs.ucla.edu>
5106
5107 * data/glr.c (YYRECOVERING): Define to be a function-like macro
5108 with no arguments, not as an object-like macro. This is for
5109 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
5110 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
5111 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
5112 Document this.
5113
2c08afa5
JD
51142006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
5115
5116 * src/getargs.c (usage): Back out yesterday's modification of the
5117 --help output so that we don't have to wait for translation before
5118 releasing 2.3.
5119
6077da58
PE
51202006-05-29 Paul Eggert <eggert@cs.ucla.edu>
5121
5122 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
5123 Problem reported by Akim Demaille.
5124
2a26b6c2
JD
51252006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
5126
5127 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
5128
aefef0d6
PE
51292006-05-26 Paul Eggert <eggert@cs.ucla.edu>
5130
5131 * data/yacc.c (yy_reduce_print): Omit trailing white space in
5132 generated source code. Problem reported by Frans Englich in
5133 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
5134
fcd8e201
PE
51352006-05-22 Paul Eggert <eggert@cs.ucla.edu>
5136
5137 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
5138 shell, not within 'make', so that 'make' by an ordinary builder
5139 (using GNU make) does not worry about configuring gzip. This also
5140 works around a bug reported independently by Keith Thompson and by
5141 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
5142 stderr rather than stdout, messing up the build logs.
5143
7b5cdcbd
JD
51442006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
5145
5146 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
5147 to make sure that YYID will never be unused. This fixes a 'make
5148 maintainer-check' failure caused by the recent changes to the 'Trivial
5149 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
5150 not used.
5151 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
5152
5ad0a449
JD
51532006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
5154
5155 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
5156 state before an empty RHS is always resolved here. Only the location
5157 of that state is guaranteed to be resolved, and that's enough. This
5158 fixes the remaining bug reported by Derek M. Jones in
5159 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
5160 * tests/glr-regression.at (Uninitialized location when reporting
5161 ambiguity): Test the above case.
5162 Also, the embedded comments in this test case claim it checks the case
5163 of an empty RHS that has inherited the initial location. However, the
5164 corresponding LHS was already resolved, so yyresolveLocations didn't
5165 actually have reason to modify it. Fix this by forcing
5166 nondeterministic operation at the beginning of the parse.
5167
50cce58e
PE
51682006-05-20 Paul Eggert <eggert@cs.ucla.edu>
5169
5170 * data/c.m4 (b4_yy_symbol_print_generate):
5171 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
5172 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
5173 of the bugs reported today by Derek M Jones in
5174 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
5175 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
5176 defined to be a type name without parens or brackets.
5177 (Location Type): Similarly for YYLTYPE.
5178 * tests/regression.at (Trivial grammars): Put in a test for this
5179 bug that will be caught by 'make maintainer-check' (though not,
5180 alas, by 'make check' unless your compiler is picky).
5181
ab8d9dc5
PE
51822006-05-19 Paul Eggert <eggert@cs.ucla.edu>
5183
0d2c8934 5184 * NEWS: Version 2.2.
ab8d9dc5
PE
5185 * configure.ac (AC_INIT): Likewise.
5186
9138c575
JD
51872006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
5188
5189 * data/glr.c (yyreportTree): Make room in yystates for the state
5190 preceding the RHS. This fixes the segmentation fault reported by Derek
5191 M. Jones in
5192 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
5193 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
5194 to the user. Reported for yyreportTree by Derek M. Jones later in the
5195 same thread.
5196 * THANKS: Add Derek M. Jones.
5197 Update my email address.
5198 Fix typo in Steve Murphy's name.
5199
276f48df
PE
52002006-05-14 Paul Eggert <eggert@cs.ucla.edu>
5201
d6645148
PE
5202 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
5203 checking against YYLAST that caused the parser to miss a potential
5204 alternative in its diagnostic.
5205 Problem reported by Maria Jose Moron Fernandez in
5206 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
5207 * data/lalr1.cc (yysyntax_error_): Likewise.
5208 * data/yacc.c (yysyntax_error): Likewise.
5209 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
5210 tokens, in case we run into an older C compiler.
5211 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
5212 Use them to check for the off-by-one error fixed above.
5213
276f48df
PE
5214 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
5215 YYSIZE_T, not size_t.
5216 * tests/regression.at (Trivial grammars): New test, to catch
5217 the error fixed by the above patch.
5218
cd8b5791
AD
52192006-05-14 Akim Demaille <akim@lrde.epita.fr>
5220
5221 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
5222 scheme.
5223 Reported by Steve Murphy.
5224
34376418
AD
52252006-05-14 Akim Demaille <akim@lrde.epita.fr>
5226
5227 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
5228 * data/glr.cc: b4_location_flag is now b4_locations_flag.
5229
327afc7c
AD
52302006-05-14 Akim Demaille <akim@lrde.epita.fr>
5231
5232 Implement --trace=m4.
5233 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
5234 * src/output.c (output_skeleton): When set, pass -dV to m4.
5235
5236 Factor the handling of flags in m4.
5237 * src/output.c (prepare): Rename the muscle names debug, defines,
5238 error_verbose to debug_flag, defines_flag, error_verbose_flag.
5239 * data/c.m4: Adjust.
5240 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
5241 Use b4_define_flag_if to define other b4_FLAG_if macros.
5242 (b4_location_if): As a consequence, rename as...
5243 (b4_locations_if): this, for consistency.
5244 Adjust all the skeletons.
5245
ba9ecd19
AD
52462006-05-14 Akim Demaille <akim@lrde.epita.fr>
5247
5248 * etc/bench.pm: Shorten bench names.
5249
4e83ea15
AD
52502006-05-14 Akim Demaille <akim@lrde.epita.fr>
5251
5252 * src/output.h, src/output.c (error_verbose): Move to...
5253 * src/getargs.h, src/getargs.c: here.
5254 Sort the flags.
5255 Adjust dependencies.
5256
6e93d810
PE
52572006-05-13 Paul Eggert <eggert@cs.ucla.edu>
5258
5259 * data/c.m4 (b4_copyright): Put the special exception for Bison
5260 skeletons here, so we don't have to put it in each skeleton. All
b15296ff
PE
5261 uses changed. Suggested by Akim Demaille. Also, wrap the
5262 copyright notice, in case it is longer than 80 columns. Replace
5263 comma by newline after title.
6e93d810 5264
eaea13f5
PE
52652006-05-11 Paul Eggert <eggert@cs.ucla.edu>
5266
5267 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
5268 incompatibility, not a bug. Mention that it wasn't fixed as of
5269 flex 2.5.33.
5270
3cf084ec
AD
52712006-05-11 Akim Demaille <akim@lrde.epita.fr>
5272
5273 * examples/extexi: Enforce the precedence of concatenation over
5274 >>.
0a9f1c7d 5275 Reported by Tommy Nordgren.
3cf084ec 5276
32c96bd7
AD
52772006-05-11 Akim Demaille <akim@lrde.epita.fr>
5278
5279 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
5280 with the member "token".
f94705b2 5281 Reported by Martin Nylin.
32c96bd7 5282
eaea13f5
PE
52832006-05-08 Paul Eggert <eggert@cs.ucla.edu>
5284
5285 * data/glr.c: Switch to Bison 2.2 special-exception language in
5286 the copyright notice. Use more-regular format for titles and
5287 copyright notices.
5288 * data/glr.cc: Likewise.
5289 * data/location.cc: Likewise.
5290 * data/yacc.cc: Likewise.
5291 * doc/bison.texinfo (Conditions): Document this.
5292 * NEWS: likewise. Upgrade version to 2.2.
5293
6e2d1146
AD
52942006-04-27 Akim Demaille <akim@lrde.epita.fr>
5295
5296 * data/glr.cc: Remove dead code.
5297
47671055
PE
52982006-04-25 Paul Eggert <eggert@cs.ucla.edu>
5299
5300 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
5301 that variable and the line breaks the bootstrap. Problem reported
5302 by Juan M. Guerrero.
5303
ed2e6384
AD
53042006-04-24 Akim Demaille <akim@lrde.epita.fr>
5305
5306 * doc/bison.texinfo (Multiple start-symbols): New.
5307
3cedc2dc
AD
53082006-04-24 Akim Demaille <akim@lrde.epita.fr>
5309
5310 * etc/README, etc/bench.pl: New.
5311
b2ddc3f3
AD
53122006-04-03 Akim Demaille <akim@lrde.epita.fr>
5313
5314 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
5315 rule.
5316 Reported by Mickael Labau.
5317 * tests/input.at (Torturing the Scanner): Test it.
5318
91e3ac9a
PE
53192006-03-16 Paul Eggert <eggert@cs.ucla.edu>
5320
5321 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
5322 Problem reported by Bob Rossi.
5323
53242006-03-13 Paul Eggert <eggert@cs.ucla.edu>
5325
5326 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
5327 and didn't really work.
5328 For the index, use @ifnotinfo, not @iftex.
5329 Minor cleanups of spacing and terminology.
5330
5cf61e93
AD
53312006-03-12 Akim Demaille <akim@lrde.epita.fr>
5332
5333 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
5334 of AT_NAME_PREFIX when %name-prefix is not used.
5335
aa08666d
AD
53362006-03-12 Akim Demaille <akim@lrde.epita.fr>
5337
5338 Apply --prefix to C++ skeletons too: they change the namespace.
5339 The test suite already exercize these cases.
5340 * data/c++.m4 (b4_namespace): New.
5341 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
5342 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
5343 * data/yacc.c, data/glr.c: Remove a useless `[]'.
5344 * doc/bison.texinfo: Document it.
5345 (Option Cross Key): Use @multitable in all formats. It looks
5346 nicer, even in TeX outputs.
5347 (Rules): Use the same code whatever the output type is.
5348 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
5349 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
5350 * tests/calc.at: Use it, instead of hard coding `yy'.
91e3ac9a 5351
45567173
AD
53522006-03-10 Akim Demaille <akim@lrde.epita.fr>
5353
5354 * TODO: Remove dead items.
5355
e9d8f881 53562006-03-10 Akim Demaille <akim@lrde.epita.fr>
55ba27be
AD
5357
5358 * doc/FAQ: Remove, merged into...
5359 * doc/bison.texinfo (FAQ): this.
5360 * doc/Makefile.am (EXTRA_DIST): Adjust.
5361
c095d689
AD
53622006-03-10 Akim Demaille <akim@lrde.epita.fr>
5363
5364 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
5365 even if empty.
5366 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
5367 * doc/bison.texinfo (Calc++ Scanner): Use it.
5368
6e0f8287
PE
53692006-03-09 Paul Eggert <eggert@cs.ucla.edu>
5370
5371 Fix two nits reported by twlevo, plus one more that I discovered.
5372
5373 * src/assoc.h (assoc_to_string): Give a name to the arg, as
5374 this is the usual Bison style.
5375 * src/location.h (location_print): Likewise.
5376
5377 * src/reader.h (token_name): Likewise.
5378
d6b771c3
PE
53792006-03-08 Paul Eggert <eggert@cs.ucla.edu>
5380
5381 Fix some nits reported by twlevo.
5382 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
5383 and "POSIX". Use more-modern syntax for URLs. Mention C++
5384 and ask for Java. Don't hardwire OS version numbers. Add
5385 copyright notice.
5386 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
5387 * src/conflicts.c (solved_conflicts_obstack): Now static.
5388
1e137b71
JD
53892006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
5390
5391 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
5392 page. Say "you can use it" not "you may use it" as on the web page;
5393 we're describing capabilities not granting permission.
5394
73f2e47e
PE
53952006-03-06 Paul Eggert <eggert@cs.ucla.edu>
5396
6d05403d
PE
5397 * data/glr.c (yyresolveLocations): Rename local variables to avoid
5398 shadowing warnings. Use usual patter for iterating through RHS.
5399 * tests/glr-regression.at
5400 (Uninitialized location when reporting ambiguity):
5401 Modify yylex so that it uses its argument, rather than trying
5402 to rely on ARGSUSED (which doesn't work for gcc with warnings).
5403 const char -> char const.
5404
73f2e47e
PE
5405 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
5406 Don't use tabs inside commands; it messes up 'ps'.
5407 Problem reported by twlevo.
5408
8710fc41
JD
54092006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
5410
5411 * tests/glr-regression.at (Uninitialized location when reporting
5412 ambiguity): New test case.
5413 * data/glr.c (yyresolveLocations): New function, which uses
5414 YYLLOC_DEFAULT.
5415 (yyresolveValue): Invoke yyresolveLocations before reporting an
5416 ambiguity.
5417 * doc/bison.texinfo (Default Action for Locations): Note
5418 YYLLOC_DEFAULT's usage for ambiguity locations.
5419 (GLR Semantic Actions): Cross-reference those notes.
5420
ae952af2
JD
54212006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
5422
5423 * tests/glr-regression.at (Leaked semantic values when reporting
5424 ambiguity): Remove unnecessary union and type declarations.
5425 (Leaked lookahead after nondeterministic parse syntax error): New test
5426 case.
5427 * data/glr.c (yyparse): Check for zero stacks remaining before
5428 attempting to shift the lookahead so that you don't lose it.
5429
35ee866a
JD
54302006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5431
5432 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
5433 * tests/glr-regression.at (Leaked semantic values when reporting
5434 ambiguity): New test case.
5435 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
5436 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
5437 now unnecessary yystackp parameter.
5438 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
5439 destructors can be called.
5440
5441 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
5442 in existing testcases.
5443
520181ab
JD
54442006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5445
5446 Don't leak semantic values for parent RHS when a user action cuts the
5447 parser, and clean up related code a bit.
5448 * tests/glr-regression.at (Leaked merged semantic value if user action
35ee866a
JD
5449 cuts parse): Rename to...
5450 (Leaked semantic values if user action cuts parse): ... this. Add check
520181ab
JD
5451 for leaked parent RHS values.
5452 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
5453 between an unresolved state (non-empty chain of semantic options) and
5454 an incomplete one (signaled by an empty chain).
ae952af2 5455 (yyresolveStates): Document the interface. Move all manipulation of a
520181ab
JD
5456 successfully or unsuccessfully resolved yyGLRState to...
5457 (yyresolveValue): ... here so that yyresolveValue always leaves a
5458 yyGLRState with consistent data and thus is easier to understand.
5459 Remove the yyvalp and yylocp parameters since they are always just
5460 taken from the yys parameter. When reporting a discarded merged value
5461 in debugging output, note that it is incompletely merged. Document the
5462 interface.
5463 (yyresolveAction): If resolving any of the RHS states fails, destroy
5464 them all rather than leaking them. Thus, as long as user actions are
5465 written to clean up the RHS correctly, yyresolveAction always cleans up
5466 the RHS of a semantic option. Document the interface.
5467
18d9185c
PE
54682006-02-27 Paul Eggert <eggert@cs.ucla.edu>
5469
5470 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
5471 led to a segmentation fault in GNU Pascal. Problem reported
5472 by Waldek Hebisch.
5473
841a7737
JD
54742006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
5475
5476 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
5477 mid-rule action inside a nonterminal symbol in order to declare a
5478 destructor for its semantic value.
5479
fc3f467f
PE
54802006-02-16 Paul Eggert <eggert@cs.ucla.edu>
5481
5482 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
5483 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
5484 __cplusplus && ! defined _STDLIB_H && !
5485 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
5486 defined free))]: Include <stdlib.h> rather than rolling our own
5487 declarations of malloc and free, to avoid problems with
5488 incompatible declarations (using 'throw') C++'s stdlib.h. This
5489 should fix Debian bug 340012
5490 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
5491 reported by Guillaume Melquiond.
5492
a3af26dd
PE
54932006-02-13 Paul Eggert <eggert@cs.ucla.edu>
5494
4d7bc38c
PE
5495 * NEWS: Clarify symbols versus types in unused-value warnings.
5496
a3af26dd
PE
5497 * configure.ac (AC_INIT): Bump version number.
5498
4e26c69e
PE
54992006-02-13 Paul Eggert <eggert@cs.ucla.edu>
5500
5501 * NEWS: Version 2.1a.
5502 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
5503 since C99 requires this.
5504
498e897c
PE
55052006-02-11 Paul Eggert <eggert@cs.ucla.edu>
5506
5507 * m4/c-working.m4: New file.
5508 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
5509
57bb17ca
PE
55102006-02-10 Paul Eggert <eggert@cs.ucla.edu>
5511
5512 * Makefile.maint: Merge from coreutils.
5513
0be105dc
PE
55142006-02-09 Paul Eggert <eggert@cs.ucla.edu>
5515
5516 More portability fixes for problems summarized by Nelson H. F. Beebe.
5517
5518 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
5519 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
5520 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
5521 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
5522 messes up because C++ code is compiled in 32-bit mode but linked
5523 in 64-bit mode.
5524
6fc0c024
PE
55252006-02-08 Paul Eggert <eggert@cs.ucla.edu>
5526
5527 More portability fixes for problems summarized by Nelson H. F. Beebe.
5528
7870f699
PE
5529 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
5530 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
5531
6fc0c024
PE
5532 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
5533 nodist_PROGRAMS, since we don't need to actually compile the
5534 example if we're just doing a plain 'make'. This avoids bothering
5535 the installer unnecessarily about problems due to weird C++
5536 compilers.
5537
fe6c2fde
PE
55382006-02-06 Paul Eggert <eggert@cs.ucla.edu>
5539
5540 More portability fixes for problems summarized by Nelson H. F. Beebe.
5541
5542 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
5543 than #include "...", and compile with -I'.'. The old method was
5544 not portable, according to Posix and the C standard, and it does
5545 not work with Sun C 5.7, where previous #line directives affect
5546 the working directory used in later #include "..." directives.
5547
927b425b
JMG
55482006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5549
5550 Various DJGGP specific issues in /djgpp
5551
d9735e9e
PE
55522006-02-02 Paul Eggert <eggert@cs.ucla.edu>
5553
5554 More portability fixes for problems summarized by Nelson H. F. Beebe.
5555
5556 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
5557 '#include <map>' works and that you can apply ++ to iterators.
5558
5a6755af
PE
55592006-02-01 Paul Eggert <eggert@cs.ucla.edu>
5560
67a0dc4f
PE
5561 Work around portability problems summarized by Nelson H. F. Beebe in
5562 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
5563
8c86f0ef
PE
5564 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
5565 that '#include <string>' works.
5566
de35dd59
PE
5567 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
5568 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
5569 "warning: sorry: semantics of inline function static data `const
5570 unsigned char translate_table[262]' are wrong (you'll wind up with
5571 multiple copies)".
5572
67a0dc4f
PE
5573 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
5574 or, xor to not_, and_, or_, and xor_, respectively. This works
5575 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
5576 random system header somewhere that includes the equivalent of
5577 <iso646.h>.
5578
5a6755af
PE
5579 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
5580 -E" works; it apparently doesn't work with PathScale EKO Compiler
67a0dc4f 5581 Suite Version 2.0.
5a6755af 5582
3f001415
JD
55832006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
5584
5585 During deterministic GLR operation, user actions should be able to
5586 influence the parse by changing yychar. To make this easier to fix and
5587 to make glr.c easier to evolve in general, don't maintain yytoken in
5588 parallel with yychar; just compute yytoken when needed.
5589 * tests/glr-regression.at (Incorrect lookahead during deterministic
5590 GLR): Check that setting yychar in a user action has the intended
5591 effect.
5592 * data/glr.c (yyGLRStack): Remove yytokenp member.
5593 (yyclearin): Don't set *yytokenp.
5594 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
5595 yychar rather than *yytokenp to determine the current lookahead.
5596 Compute yytoken locally when needed.
5597 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
5598 point to.
5599
5600 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
5601 after `--report' documentation.
5602
e2a8c0f5
PE
56032006-01-30 Paul Eggert <eggert@cs.ucla.edu>
5604
5605 * src/parse-gram.y (grammar_declaration): Location of printer
5606 symbol is @1, not list->location. Bug reported by twlevo.
5607 * tests/input.at (Incompatible Aliases): Adjust to above change.
5608
6b702268
PE
56092006-01-29 Paul Eggert <eggert@cs.ucla.edu>
5610
27622431
PE
5611 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
5612 all the test at once. This makes the output easier to read in the
5613 normal case.
5614
6b702268
PE
5615 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
5616 got from <http://bro-ids.org/download.html>. The bug is that
5617 when two actions appeared in succession, the second one was
5618 scanned before the first one was added to the grammar rule
5619 as a midrule action. Bison then output the incorrect warning
5620 "parse.y:905.17-906.36: warning: unused value: $3".
5621 * src/parse-gram.y (BRACED_CODE, action): These are no longer
5622 associated with a value.
5623 (rhs): Don't invoke grammar_current_rule_action_append.
5624 (action): Invoke it here instead.
5625 * src/reader.c (grammar_midrule_action): Now extern.
5626 (grammar_current_rule_action_append): Don't invoke
5627 grammar_midrule_action; that is now the scanner's job.
5628 * src/reader.h (last_string, last_braced_code_loc):
5629 (grammar_midrule_action): New decls.
5630 * src/scan-gram.l (last_string): Now extern, sigh.
5631 (last_braced_code_loc): New extern variable.
5632 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
5633 rule already has an action.
5634 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
5635 * tests/input.at (AT_CHECK_UNUSED_VALUES):
5636 Add some tests to check that the above changes fixed the bug.
5637
d40ba6c2
PE
56382006-01-27 Paul Eggert <eggert@cs.ucla.edu>
5639
5640 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
5641 All used changed. Check whether the symbol has a destructor,
5642 not whether it is typed.
5643 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
5644 that the values are still reported as unused. All line numbers
5645 adjusted.
5646
401aace6
PE
56472006-01-23 Paul Eggert <eggert@cs.ucla.edu>
5648
5649 Work around a bug in bro 0.8, which underparenthesizes its
5650 definition of YYLLOC_DEFAULT.
5651 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
5652 their arguments.
5653 * data/lalr1.cc: Likewise.
5654 * data/yacc.cc: Likewise.
5655
06f01bc4
PE
56562006-01-22 Paul Eggert <eggert@cs.ucla.edu>
5657
401aace6
PE
5658 Work around a bug in Pike 7.0, and give the Pike folks a
5659 better way to override the usual int widths.
5660 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
5661 user can override the types.
5662 (short): #undef, to work around a bug in Pike 7.0.
5663 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
5664 (union yyalloc.yyss): Use yytype_int16 rather than short.
5665 All uses changed.
5666 (yysigned_char): Remove.
5667 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
5668 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
5669 * tests/regression.at (Web2c Actions): Adjust to above changes.
5670
5671 * src/reader.c (check_and_convert_grammar): New function.
5672 (reader): Close the input file even if something went wrong during
5673 parsing. Minor file descriptor leak reported by twlevo.
5674
06f01bc4
PE
5675 * src/assoc.c (assoc_to_string): Use a default: abort (); case
5676 to pacify gcc -Wswitch-default.
5677 * src/scan-gram.l (adjust_location): Use a default: break; case
5678 to pacify gcc -Wswitch-default.
5679 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
5680 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
5681 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
5682 Move these decls to scan-skel.l, since they don't need to be
5683 visible elsewhere.
5684 * src/scan-skel.l: Accept the above decls.
5685 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
5686 is used.
5687
02650b7f
PE
56882006-01-21 Paul Eggert <eggert@cs.ucla.edu>
5689
5690 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
5691 since we don't want to insist on a version number at the start
5692 of the changelog every time.
5693 * Makefile.maint: Sync from coreutils a bit better.
5694 (sc_trailing_blank): Renamed from sc_trailing_space.
5695 All uses changed.
5696 (sc_no_if_have_config_h, sc_require_config_h):
5697 (sc_prohibit_assert_without_use): New rules.
5698 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
5699 (sc_dd_max_sym_length): Fix leading spaces in rule.
5700 (sc_system_h_headers): Prefix with @.
5701 (sc_useless_cpp_parens, m4-check): Output line numbers.
5702 (changelog-check): Allow version only in head.
5703 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
5704 satisfy new Makefile.maint rule.
5705 * data/glr.c: Likewise.
5706 * data/glr.cc: Likewise.
5707 * data/lalr1.cc: Likewise.
5708 * data/yacc.c: Likewise.
5709 * lib/ebitsetv.c: Likewise.
5710 * lib/lbitset.c: Likewise.
5711 * lib/subpipe.c: Likewise.
5712 * lib/timevar.c: Likewise.
5713 * src/system.h: Likewise.
5714 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
5715 * djgpp/Makefile.maint: Add copyright notice.
5716 * djgpp/README.in: Likewise.
5717 * djgpp/config.bat: Likewise.
5718 * djgpp/config.site: Likewise.
5719 * djgpp/config_h.sed: Likewise.
5720 * djgpp/djunpack.bat: Likewise.
5721 * djgpp/config.sed: Fix copyright notice to match standard format.
5722 * djgpp/subpipe.h: Likewise.
5723 * lib/bitsetv-print.c: Likewise.
5724 * lib/bitsetv.c: Likewise.
5725 * lib/subpipe.h: Likewise.
5726 * lib/timevar.c: Likewise.
5727 * lib/timevar.h: Likewise.
5728 * djgpp/subpipe.c: Use standard recipe for config.h.
5729 * lib/abitset.c: Likewise.
5730 * lib/bitset.c: Likewise.
5731 * lib/bitset_stats.c: Likewise.
5732 * lib/bitsetv-print.c: Likewise.
5733 * lib/bitsetv.c: Likewise.
5734 * lib/ebitsetv.c: Likewise.
5735 * lib/get-errno.c: Likewise.
5736 * lib/lbitset.c: Likewise.
5737 * lib/subpipe.c: Likewise.
5738 * lib/timevar.c: Likewise.
5739 * lib/vbitset.c: Likewise.
5740 * tests/local.at: Likewise.
5741 * src/scan-gram.l: Don't include verify.h, since system.h does
5742 that for us.
5743 * .x-sc_require_config_h: New file.
5744 * .x-sc_unmarked_diagnostics: New file.
5745
287c78f6
PE
57462006-01-20 Paul Eggert <eggert@cs.ucla.edu>
5747
287c78f6
PE
5748 Be a bit more systematic about using 'abort'.
5749 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
5750 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
5751 Put 'default: abort ();' before some other case, to satisfy older
5752 pedantic compilers.
5753 * lib/bitset_stats.c (bitset_stats_init): Likewise.
5754 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
5755 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
5756 * src/conflicts.c (resolve_sr_conflict): Likewise.
68cae94e
PE
5757 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
5758 (get_decision_str, get_orientation_str, get_node_alignment_str):
5759 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
5760 (get_linestyle_str, get_arrowstyle_str): Likewise.
5761 * src/conflicts.c (resolve_sr_conflict):
5762 Use a default case rather than one for the one remaining enum
5763 value, to catch invalid enum values as well.
5764 * src/lalr.c (set_goto_map, map_goto):
5765 Prefer "assert (FOO);" to "if (!FOO) abort ();".
5766 * src/nullable.c (nullable_compute, token_definitions_output):
5767 Likewise.
5768 * src/reader.c (packgram, reader): Likewise.
5769 * src/state.c (transitions_to, state_new, state_reduction_find):
5770 Likewise.
5771 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
5772 (symbol_pack): Likewise.
5773 * src/tables.c (conflict_row, pack_vector): Likewise.
287c78f6
PE
5774 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
5775 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
68cae94e
PE
5776 * src/system.h: Don't include <assert.h>.
5777 (assert): New macro.
5778
5779 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
5780 (Destructor Decl, Parser Function, Pure Calling):
5781 Describe rules for braces inside C code more carefully.
287c78f6 5782
c66dfadd
PE
57832006-01-19 Paul Eggert <eggert@cs.ucla.edu>
5784
c21493b8
PE
5785 Fix some porting glitches found by Nelson H. F. Beebe.
5786 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
5787 compilers that don't understand that abort () does not return.
5788 * src/state.c (transitions_to): Likewise.
5789 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
5790 that '#include <cstdlib>' works.
5791 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
5792 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
5793 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
5794 for the benefit of some pre-C99 compilers.
5795
b6e3facf
PE
5796 * bootstrap: Undo changes to gnulib files that autoreconf made.
5797
c66dfadd
PE
5798 Minor fixups to get 'make maintainer-check' to work.
5799 * configure.ac: Don't use -Wnested-externs, as it's incompatible
5800 with the new verify.h implementation.
5801 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
5802 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
5803 * data/yacc.c (YYUSE): Likewise.
5804 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
5805 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
5806 * src/parse-gram.y (declaration): Don't pass a string constant
5807 to a function that expects char *, since GCC might complain
5808 about the constant value.
5809 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
5810 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
5811 before #defining them.
5812 * tests/glr-regression.at
5813 (Incorrectly initialized location for empty right-hand side in GLR):
5814 In yyerror, use the msg arg.
5815 (Corrupted semantic options if user action cuts parse):
5816 (Incorrect lookahead during deterministic GLR):
5817 (Incorrect lookahead during nondeterministic GLR):
5818 Don't name a local var 'index'; it shadows string.h's 'index'.
5819
ed94ef2a
AD
58202006-01-19 Akim Demaille <akim@epita.fr>
5821
5822 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
5823 location, not just parts of it.
5824
e9ad4aec
PE
58252006-01-18 Paul Eggert <eggert@cs.ucla.edu>
5826
d6ca7905
PE
5827 * NEWS: Document the fact that multiple %unions are now allowed.
5828 * doc/bison.texinfo (Union Decl): Likewise.
51cbef6f
PE
5829 * TODO: This feature is now implemented, so remove it from
5830 the wishlist.
d6ca7905 5831
ef1b70e0
PE
5832 * Makefile.maint: Merge with coreutils Makefile.maint.
5833 (CVS_LIST): Use build-aux version if available.
5834 (VERSION_REGEXP): New macro.
5835 (syntax-check-rules): Add sc_no_if_have_config_h,
5836 sc_prohibit_assert_without_use, sc_require_config_h,
5837 sc_useless_cpp_parens.
5838 (sc_obsolete_symbols): Check for O_NDELAY.
5839 (sc_dd_max_sym_length): Track coreutils.
5840 (sc_unmarked_diagnostics): Look in all files, not just *.c.
5841 (sc_useless_cpp_parens): New rule.
5842 (news-date-check): Look for version or today's date.
5843 (changelog-check): Don't require version number near head.
5844 (copyright-check): Use current year instead of hardwiring 2005.
5845 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
5846 (announcement): Add --gpg-key-ID.
5847
5848 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
5849 with "file system".
5850
2073ce56 5851 Avoid undefined behavior that addressed just before the start of an
e9ad4aec
PE
5852 array. Problem reported by twlevo.
5853 * src/reader.c (packgram): Prepend a new sentinel before ritem.
5854 * src/lalr.c (build_relations): Rely on new sentinel.
5855 * src/gram.c (gram_free): Adjust to new sentinel.
5856
b7691f15
JD
58572006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
5858
5859 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
5860 yylookaheadNeeds. All uses updated.
5861 (yysplitStack): Rename local yynewLookaheadStatuses to
5862 yynewLookaheadNeeds.
5863 * data/glr-regression.at (Incorrect lookahead during nondeterministic
5864 GLR): In comments, change `lookahead status' to `lookahead need'.
5865
ddee1b06
PH
58662006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
5867
5868 * data/glr.c (yysplitStack): A little stylistic rewrite.
5869
12f4614d
PH
58702006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
5871
5872 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
5873
32c29292
JD
58742006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
5875
5876 * doc/bison.texinfo: Fix some typos.
5877 (GLR Semantic Actions): New subsection discussing special
5878 considerations because GLR semantic actions might be deferred.
5879 (Actions): Mention look-ahead usage of yylval.
5880 (Actions and Locations): Mention look-ahead usage of yylloc.
5881 (Special Features for Use in Actions): Add YYEOF entry and mention it
5882 in the yychar entry.
5883 In the yychar entry, remove mention of the local yychar case (pure
5884 parser) since this is irrelevant information when writing semantic
148d66d8 5885 actions and since it's already discussed in `Table of Symbols' where
32c29292
JD
5886 yychar is otherwise described as an external variable.
5887 In the yychar entry, don't call it the `current' look-ahead since it
5888 isn't when semantic actions are deferred.
5889 In the yychar and yyclearin entries, add note about deferred semantic
5890 actions.
5891 Add yylloc and yylval entries discussing look-ahead usage.
5892 (Look-Ahead Tokens): When discussing yychar, don't call it the
5893 `current' look-ahead, and do mention yylval and yylloc.
5894 (Error Recovery): Cross-reference `Action Features' when mentioning
5895 yyclearin.
148d66d8 5896 (Table of Symbols): In the yychar entry, don't call it the `current'
32c29292
JD
5897 look-ahead.
5898 In the yylloc and yylval entries, mention look-ahead usage.
5899
de366a2f 59002006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2781dbd1
JD
5901
5902 * tests/glr-regression.at: Update copyright year to 2006.
5903
bf70fa87
JD
59042006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5905
5906 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
5907 use during nondeterministic operation to track which stacks have
5908 actually needed the current lookahead.
5909 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
5910 Allocate, deallocate, resize, and otherwise shuffle space for
5911 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
5912 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
5913 appropriately during nondeterministic operation.
5914 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
5915 members to store the current lookahead to be used by the deferred
5916 user action.
5917 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
5918 from which the RHS is taken. Set the lookahead members of the new
5919 yySemanticOption according to the lookahead status for stack yyk.
5920 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
5921 yyaddDeferredAction.
5922 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
5923 members of yySemanticOption before invoking yyuserAction, and then set
5924 them back to their current values afterward.
5925 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
5926 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
5927 * tests/glr-regression.at: Remove `.' from the ends of recent test case
5928 titles for consistency.
5929 (Leaked merged semantic value if user action cuts parse): In order to
5930 suppress lint warnings, use arguments in merge function, and assign
5931 char value < 128 in main.
5932 (Incorrect lookahead during deterministic GLR): New test case.
5933 (Incorrect lookahead during nondeterministic GLR): New test case.
5934
05449a2c
JD
59352006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5936
de366a2f 5937 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
05449a2c
JD
5938 !yyvaluep as signal that no semantic value is available to print.
5939 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
5940 to print a semantic value.
5941
4158e0a1 59422006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
fd2493f7 5943
4158e0a1
JD
5944 * tests/glr-regression.at: For consistency with my newer test cases,
5945 don't thank myself.
5946
d659304d
JD
59472006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
5948
5949 * data/glr.c (yyresolveValue): When merging semantic options, if at
5950 least one user action succeeds but a later one cuts the parse, then
5951 destroy the semantic value before returning rather than leaking it.
5952 (yyresolveStates): If a user action cuts the parse and thus
5953 yyresolveValue fails, ignore the (unset) semantic value rather than
5954 corrupting the yyGLRState, and empty the semantic options list since
5955 the user actions should have called all necessary destructors.
5956 Simplify code with YYCHK.
5957 * tests/glr-regression.at (Corrupted semantic options if user action
5958 cuts parse): New test case.
5959 (Undesirable destructors if user action cuts parse): New test case.
5960 Before applying any of this patch, this test case never actually failed
5961 for me... but only because the corrupted semantic options usually
5962 masked this bug.
5963 (Leaked merged semantic value if user action cuts parse): New test
5964 case.
5965
6ec2c0f2
AD
59662006-01-05 Akim Demaille <akim@epita.fr>
5967
5968 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
5969
1b9c21fb
PE
59702006-01-04 Paul Eggert <eggert@cs.ucla.edu>
5971
5972 * data/c.m4 (b4_c_modern): New macro, with a new provision for
5973 _MSC_VER. Problem reported by Cenzato Marco.
5974 (b4_c_function_def): Use it.
5975 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
5976 b4_c_modern.
5977 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
5978 than rolling our own.
5979
84866159
AD
59802006-01-04 Akim Demaille <akim@epita.fr>
5981
5982 Also warn about non-used mid-rule values.
5983 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
5984 member.
5985 (symbol_list_new): Adjust.
5986 * src/reader.c (symbol_typed_p): New.
5987 (grammar_rule_check): Use it.
5988 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
5989 Check its rule.
5990 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
5991 Use it.
5992 * tests/actions.at (Exotic Dollars): Adjust.
5993
378f4bd8
AD
59942006-01-04 Akim Demaille <akim@epita.fr>
5995
5996 * src/reader.c (grammar_midrule_action): If $$ is set in a
5997 mid-rule, move the `used' bit to its lhs.
5998 * tests/input.at (Unused values): New.
5999 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
6000
e2a21b6f
PE
60012006-01-03 Paul Eggert <eggert@cs.ucla.edu>
6002
54662697
PE
6003 * doc/bison.texinfo (Bison Options): Say more accurately what
6004 --yacc does.
6005 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
6006 about declarations in the grammar when in Yacc mode, as POSIX does
6007 not require a diagnostic when the grammar uses extensions.
6008
6009 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
6010
073f9288
PE
6011 Warn about dubious constructions like "%token T T".
6012 Reported by twlevo.
6013 * src/symtab.h (struct symbol.declared): New member.
6014 * src/symtab.c (symbol_new): Initialize it to false.
6015 (symbol_class_set): New arg DECLARING, specifying whether
6016 this is a declaration that we want to warn about, if there
6017 is more than one of them. All uses changed.
6018
1221b78a
PE
6019 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
6020 Allow multiple %union directives, whose contents concatenate.
6021 * src/parse-gram.y (grammar_declaration): Likewise.
6022 Use muscle_code_grow, so that we don't need stype_line any more.
6023 All uses changed.
6024
6025 * src/muscle_tab.c (muscle_grow): Fix comment.
6026
e2a21b6f
PE
6027 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
6028 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
6029 Update copyright year to 2006.
6030
8f7e3cf9
AD
60312006-01-03 Akim Demaille <akim@epita.fr>
6032
6033 Have glr.cc pass (some of) the calc.at tests.
6034 * data/glr.cc (b4_parse_param_orig): New.
6035 (b4_parse_param): Improve its definition, and bound it more
6036 clearly in the skeleton.
6037 (b4_epilogue): Append, instead of prepending, in order to keep
6038 #line consistency.
6039 Simplify the generation of auxiliary functions: locations and
6040 purity are mandated.
6041 (b4_global_tokens_and_yystype): Honor it.
6042 * data/location.cc (c++.m4): Don't include it.
6043 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
6044 and AT_SKEL_CC_IF.
6045 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
6046 AT_LALR1_CC_IF.
6047 Be sure to initialize the first position's filename.
6048 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
6049 mandated anyway.
6050 (AT_CHECK_CALC_GLR_CC): New.
6051 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
6052
3953ed88
AD
60532006-01-02 Akim Demaille <akim@epita.fr>
6054
6055 * src/output.c (output_skeleton): Don't hard wire the inclusion of
6056 c.m4.
0a96ba81 6057 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
3953ed88
AD
6058 * data/glr.cc: Do not include stack.hh.
6059
9ecafbbf
AD
60602006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6061
6062 * data/glr.c: Reformat whitespace with tabs.
6063 (b4_lpure_formals): Remove this unused m4 macro.
6064 * tests/cxx-type.at: Reformat whitespace with tabs.
6065 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
6066 since it's a member. Rename type to isNterm for clarity.
6067
c4d497a0
AD
60682005-12-29 Akim <akim@sulaco.local>
6069
6070 Let glr.cc catch up with symbol_value_print.
6071 * data/glr.cc (b4_yysymprint_generate): Replace by...
6072 (b4_yy_symbol_print_generate): this.
6073 (yy_symbol_print, yy_symbol_value_print): Declare them.
6074
4517da37
PE
60752005-12-28 Paul Eggert <eggert@cs.ucla.edu>
6076
6077 * src/location.h (boundary): Note that a line or column equal
6078 to INT_MAX indicates an overflow.
6079 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
6080 (rule_length_overflow, increment_rule_length, add_column_width):
6081 New functions.
6082 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
6083 (<SC_BRACED_CODE>"}"):
6084 Use increment_rule_length rather than incrementing it by hand.
6085 (adjust_location, handle_syncline): Diagnose overflow.
6086 (handle_action_dollar, handle_action_at):
6087 Fix bug with monstrosities like $-2147483648.
6088 Remove now-unnecessary checks.
6089 (scan_integer): Verify assumptions and remove now-unnecessary checks.
6090 (convert_ucn_to_byte): Verify assumptions.
6091 (handle_syncline): New arg LOC. All callers changed.
6092 Don't store through a value derived from char const * pointer.
6093
6094 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
6095 GCC warnings.
6096
e3233bf6
PE
60972005-12-27 Paul Eggert <eggert@cs.ucla.edu>
6098
6099 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
6100 Remove unnecessary forward static decls.
6101
8f3596a6
AD
61022005-12-27 Akim Demaille <akim@epita.fr>
6103
6104 * src/reader.c (grammar_current_rule_check): Also check that $$
6105 is used.
6106 Take the rule to check as argument, hence rename as...
6107 (grammar_rule_check): this.
6108 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
6109 Rename as...
6110 (grammar_rule_begin, grammar_rule_end): these, for consistency.
6111 (grammar_midrule_action, grammar_symbol_append): Now static.
6112 * tests/torture.at (input): Don't rely on the default action
6113 being always performed.
6114 * tests/calc.at: "Set" $$ even when the action is "cut" with
6115 YYERROR or other.
6116 * tests/actions.at (Exotic Dollars): Instead of using unused
6117 values, check that the warning is issued.
6118
721be13c
PE
61192005-12-22 Paul Eggert <eggert@cs.ucla.edu>
6120
6121 * NEWS: Improve wording for unused-value warnings.
6122
a0af42fc
AD
61232005-12-22 Akim Demaille <akim@epita.fr>
6124
6125 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
6126 (b4_yysymprint_generate): Rename as...
6127 (b4_yy_symbol_print_generate): this.
6128 Generate yy_symbol_print instead of yysymprint.
6129 Generate also yy_symbol_value_print, and use it.
6130
affac613
AD
61312005-12-22 Akim Demaille <akim@epita.fr>
6132
721be13c 6133 * NEWS: Warn about unused values.
affac613
AD
6134 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
6135 a `used' member.
6136 (symbol_list_n_get, symbol_list_n_used_set): New.
6137 (symbol_list_n_type_name_get): Use symbol_list_n_get.
6138 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
6139 * src/reader.c (grammar_current_rule_check): Check that values are
6140 used.
6141 * src/symtab.c (symbol_print): Accept 0.
6142 * tests/existing.at: Remove the type information.
6143 Empty the actions.
6144 Remove useless actions (beware of mid-rule actions: perl -000
6145 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
6146 * tests/actions.at (Exotic Dollars): Use unused values.
6147 * tests/calc.at: Likewise.
6148 * tests/glr-regression.at (No users destructors if stack 0 deleted):
6149 Likewise.
6150
6151 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
6152 rule_useful_p.
6153
9d9b8b70
PE
61542005-12-21 Paul Eggert <eggert@cs.ucla.edu>
6155
8bb4c753
PE
6156 Undo 2005-12-01 tentative license wording change. The wording is
6157 still being reviewed by the lawyers, and we don't want to wait for
6158 them before publishing a test release. For now, revert to the
6159 previous wording.
6160 * NEWS: Undo 2005-12-01 change.
6161 * data/glr.c: Revert to previous license wording.
6162 * data/glr.cc: Likewise.
6163 * data/lalr1.cc: Likewise.
6164 * data/location.cc: Likewise.
6165 * data/yacc.c: Likewise.
6166
9d9b8b70
PE
6167 * NEWS: Reword %destructor vs YYABORT etc.
6168 * data/glr.c: Use American spacing, for consistency.
6169 * data/glr.cc: Likewise.
6170 * data/lalr1.cc: Likewise.
6171 * data/yacc.c: Likewise.
6172 * data/yacc.c: Reformat comments slightly.
6173 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
6174 for consistency. Fix some spelling errors and reword recently-included
6175 text slightly.
6176 * tests/cxx-type.at: Cast results of malloc, for C++.
6177
2c3b392a
AD
61782005-12-21 Joel E. Denny <address@hidden>
6179
6180 * tests/cxx-type.at: Construct a tree, count the parents of shared
6181 nodes, and free each node once and only once. Previously, the memory
6182 for semantic values was leaked instead.
6183
d6cff4dc
AD
61842005-12-21 Joel E. Denny <address@hidden>
6185
6186 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
6187 (yylval, yylloc): If pure, #define to yystackp->yyval and
6188 yystackp->yyloc similar to yychar and yynerrs.
6189 (yyparse): If pure, remove local yylval and yylloc. Add local
6190 yystackp to accommodate pure definitions of yylval and yylloc.
6191 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
6192 yylvalp and yyllocp to &yylval and &yylloc.
6193 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
6194 namespace. Previously, nerrs and char were missing, but lval and lloc
6195 weren't necessary.
6196 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
6197 yylvalp and yyllocp parameters since, if pure, these are now always
6198 accessible through yystackp. If not pure, they are still accessible
6199 globally.
6200 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
6201 `if (YYID (N))' to pacify lint.
6202
a85284cf
AD
62032005-12-21 Akim Demaille <akim@epita.fr>
6204
6205 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
6206 destroy the RHS symbols of a rule.
6207 * data/yacc.c (yylen): Initialize to 0.
6208 Keep its value to the number of items to possibly shift.
6209 In particular, a regular successful parse that ends on YYFINAL by
6210 a (internal) YYACCEPT must not have yylen != 0.
6211 (yyerrorlab, yyreturn): Pop the RHS.
6212 Reorder a bit to emphasize the `shifting' bits of code.
6213 (YYPOPSTACK): Now accept a number of items to pop.
6214 * data/lalr1.cc: Likewise.
6215 * data/glr.c: Formatting changes.
6216 Use goto instead of fall through.
6217 * doc/bison.texinfo (Destructor Decl): Complete.
6218
d508c281
JMG
62192005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6220
6221 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
6222 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
6223 * djgpp/config.bat: Replace every occurence of the file name
6224 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
6225 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
6226 * djgpp/config.sed: Replace every occurence of the file name
6227 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
6228 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
6229 * djgpp/djunpack.bat: DJGPP specific file.
6230 * djgpp/fnchange.lst: DJGPP specific file.
6231 * djgpp/README.in: Add new information about how to unpack the bison
6232 source on MSDOS and other systems which have 8.3 file name restrictions
6233 using djunpack.bat and fnchange.lst.
6234
3e7a2cd9
PE
62352005-12-12 Paul Eggert <eggert@cs.ucla.edu>
6236
6237 * bootstrap (build_cvs_prefix): Remove; unused.
6238 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
6239 when getting gnulib.
6240
62412005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
6242
6243 * data/glr.c: Reorder typedef declarations for structs to match order
6244 of struct declarations.
6245 Rename yystack everywhere to yystackp except in yyparse where it's not
6246 a pointer.
6247 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
6248 consistency.
6249 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
6250 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
6251 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
6252 lint.
6253
877519f8
PE
62542005-12-09 Paul Eggert <eggert@cs.ucla.edu>
6255
0eca5a39
PE
6256 * tests/sets.at (Accept): Fix typos in regular expression used to
6257 sed out the final state number.
6258
2cec9080
PE
6259 Work around portability problem on Solaris 10: flex-generated
6260 files include <stdio.h> before <config.h>, which messes up
6261 because the latter defines __EXTENSIONS__. Address the problem
6262 by creating two new little files that include <config.h> first,
6263 then include the flex-generated files. Rewrite everyone else
6264 to include <config.h> first, as well.
6265 * lib/timevar.c: Always include "config.h".
6266 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
6267 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
6268 (EXTRA_bison_SOURCES): New macro.
6269 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
6270 * src/system.h: Don't include config.h.
6271 * src/LR0.c: Include <config.h> first.
6272 * src/assoc.c: Likewise.
6273 * src/closure.c: Likewise.
6274 * src/complain.c: Likewise.
6275 * src/conflicts.c: Likewise.
6276 * src/derives.c: Likewise.
6277 * src/files.c: Likewise.
6278 * src/getargs.c: Likewise.
6279 * src/gram.c: Likewise.
6280 * src/lalr.c: Likewise.
6281 * src/location.c: Likewise.
6282 * src/main.c: Likewise.
6283 * src/muscle_tab.c: Likewise.
6284 * src/nullable.c: Likewise.
6285 * src/output.c: Likewise.
6286 * src/parse-gram.y: Likewise.
6287 * src/print.c: Likewise.
6288 * src/print_graph.c: Likewise.
6289 * src/reader.c: Likewise.
6290 * src/reduce.c: Likewise.
6291 * src/relation.c: Likewise.
6292 * src/state.c: Likewise.
6293 * src/symlist.c: Likewise.
6294 * src/symtab.c: Likewise.
6295 * src/tables.c: Likewise.
6296 * src/uniqstr.c: Likewise.
6297 * src/vcg.c: Likewise.
6298
877519f8
PE
6299 * src/parse-gram.y: Fix minor problems uncovered by lint.
6300 (current_lhs, current_lhs_location): Now static.
6301 (current_assoc): Remove unused variable.
6302
6303 Cleanups so that Bison-generated parsers have less lint.
6304 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
6305 Prepend /*ARGSUSED*/, for lint's sake.
6306 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
6307 definition if 'lint' is defined.
6308 (YYID): New macro (or function, if lint).
6309 All uses of /*CONSTCOND*/0 replaced by YYID(0).
6310 * data/yacc.c: Likewise.
6311 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
6312 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
6313 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
6314 is C++ only.
6315 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
6316 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
6317 Use YYID(0) rather than 0, for lint.
6318 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
6319 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
6320
f5228370
PE
63212005-12-07 Paul Eggert <eggert@cs.ucla.edu>
6322
6323 * tests/glr-regression.at
6324 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
6325 Close memory leak reported by twlevo.
6326
69ce078b
PE
63272005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
6328
6ff99711
PE
6329 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
6330 all stacks.
6331 (yyparse): Iterate another stack in order to call user destructors.
69ce078b
PE
6332 * tests/glr-regression.at (No users destructors if stack 0 deleted):
6333 New test case.
6334 (Duplicated user destructor for lookahead): This test now is expected
6335 to succeed.
6336
af3412cd
PE
63372005-12-01 Paul Eggert <eggert@cs.ucla.edu>
6338
32b5b719 6339 * NEWS: Document the following change.
af3412cd
PE
6340 * data/yacc.c: Say "parser skeleton" rather than "file", since
6341 it's no longer just a file.
6342 * data/glr.c: Grant a special exception for C GLR parsers, that
6343 reads like the already-existing exception for C LALR(1) parsers.
6344 * data/glr.cc: Likewise.
6345 * data/lalr1.cc: Likewise.
6346 * data/location.cc: Likewise.
6347 * data/yacc.c: Reword the "written by" statement to clarify that
6348 it was the parser skeleton, not the entire output file.
6349 * data/glr.c: Written by Paul Hilfinger.
6350 * data/glr.cc: Written by Akim Demaille.
6351 * data/lalr1.cc: Likewise.
6352
035aa4a0
PE
63532005-11-18 Paul Eggert <eggert@cs.ucla.edu>
6354
d9963c85
PE
6355 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
6356 Fix typos in previous change that broke 'make check'.
6357 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
6358 supported in C.
6359 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
6360 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
6361 We can revert this once things settle down.
6362
035aa4a0
PE
6363 * src/conflicts.c (conflicts_print): Don't print file name twice
6364 when %expect fails because there were no conflicts.
6365 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
6366 change.
6367 * tests/conflicts.at (%expect not enough, %expect too much):
6368 (%expect with reduce conflicts): Adjust to new behavior.
6369
63702005-11-18 Akim Demaille <akim@epita.fr>
6371
6372 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
6373 errors.
6374 * NEWS: Document this.
6375 * doc/bison.texinfo (Expect Decl): Likewise.
6376
d1ff7a7c
AD
63772005-11-16 Akim Demaille <akim@epita.fr>
6378
6379 Generalize the display of semantic values and locations in traces.
6380 * data/glr.c (yy_reduce_print): Fix indices (again).
6381 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
6382 literal integers.
6383 * data/lalr1.cc (yyreduce_print): Rename as...
6384 (yy_reduce_print): this.
6385 Display values and locations.
6386 * data/yacc.c (yy_reduce_print): Likewise.
6387 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
6388 (yysymprint): Move higher to be visible from yy_reduce_print).
6389 (yyparse): Adjust.
6390 * tests/calc.at: Adjust the expected length of the traces.
6391
6de5398d
AD
63922005-11-14 Akim Demaille <akim@epita.fr>
6393
6394 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
6395 from 1 to N, while values and location start at 0.
6396 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
6397
a1373f55
AD
63982005-11-14 Akim Demaille <akim@epita.fr>
6399
6400 * data/glr.c (yy_reduce_print): Fix the $ number.
6401
613d8952
AD
64022005-11-14 Akim Demaille <akim@epita.fr>
6403
6404 "Use" parse parameters.
6405 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
6406 * data/glr.c, data/glr.cc: Use them.
6407 * data/glr.c (YYUSE): Have a C++ definition that supports
6408 non-pointer types.
6409
b2741627
AD
64102005-11-14 Akim Demaille <akim@epita.fr>
6411
6412 * data/glr.c (yyexpandGLRStack): Declare only if defined.
6413
5059b5c8
AD
64142005-11-14 Akim Demaille <akim@epita.fr>
6415
42249483
AD
6416 * data/glr.cc: New.
6417 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5059b5c8 6418
4626a15d
AD
64192005-11-12 Akim Demaille <akim@epita.fr>
6420
6421 Let position and location be PODs.
6422 * data/location.cc (position::initialize, location::initialize): New.
6423 (position::position, location::location): Define only if
6424 b4_location_constructors is defined.
6425 * data/lalr1.cc (b4_location_constructors): Define it for backward
6426 compatibility.
6427 * doc/bison.texinfo (Initial Action Decl): Use initialize.
6428
64292005-11-12 Akim Demaille <akim@epita.fr>
98ae9643
AD
6430
6431 * data/lalr1.cc: Move the body of the ctor and dtor into the
6432 parser file (instead of the header).
6433 Wrap the implementations in a "namespace yy".
6434
64352005-11-12 Akim Demaille <akim@epita.fr>
6436
6437 Have glr.c include its header file when created.
6438 * data/glr.c (b4_shared_declarations): New.
6439 Output them verbatim in the parser if !%defines, otherwise
6440 output then in the header file, and include it instead.
6441
1989d947
AD
64422005-11-11 Akim Demaille <akim@epita.fr>
6443
6444 * data/glr.c: Comment changes.
6445
64462005-11-11 Akim Demaille <akim@epita.fr>
62b08cfc
AD
6447
6448 When yydebug, report semantic and location values for reductions.
6449 * data/glr.c (yy_reduce_print): Report the semantic values and the
6450 locations.
6451 (YY_REDUCE_PRINT): Adjust.
6452 (yyglrReduce): Use them.
6453 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
6454 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
6455 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
6456 traces.
6457
02998094
AD
64582005-11-10 Akim Demaille <akim@epita.fr>
6459
6460 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
6461 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
6462 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
6463
5210672f
PE
64642005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
6465
6466 * m4/cxx.m4, examples/Makefile.am: Don't build
6467 examples/calc++ if no C++ compiler is available. (trivial change)
6468
a8991a1d
AD
64692005-11-09 Akim Demaille <akim@epita.fr>
6470
6471 * src/scan-skel.l: Use a couple of asserts.
6472
36b5e963
AD
64732005-11-03 Akim Demaille <akim@epita.fr>
6474
6475 In some (weird) cases, the final state number is incorrect.
6476 Reported by Alexandre Duret-Lutz.
6477 * src/LR0.c (state_list_append): Remove the computation of
6478 final_state.
6479 (save_reductions): Do it here.
6480 (get_state): Alpha conversion.
6481 (generate_states): Use a for loop.
6482 * src/gram.h (item_number_is_rule_number)
6483 (item_number_is_symbol_number): New.
6484 * src/state.c: Use assert.
6485 * src/system.h: Include assert.h.
6486 * tests/sets.at (Accept): New.
6487
44e7ead1
PH
64882005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6489
6490 * data/glr.c (yyfill): Adjust comment.
36b5e963 6491 (yyresolveAction): Initialize default location properly
44e7ead1
PH
6492 for empty right-hand sides.
6493 (yydoAction): Ditto.
6494 Add comment explaining apparently dead code.
36b5e963
AD
6495 * tests/glr-regression.at
6496 (Incorrectly initialized location for empty right-hand side in GLR):
44e7ead1 6497 New test.
36b5e963 6498
e10a80ee
PE
64992005-10-30 Paul Eggert <eggert@cs.ucla.edu>
6500
6501 * bootstrap (cleanup_gnulib): New function. Use it to clean up
6502 gnulib when interrupted. This fixes some race conditions and
6503 works around some portability problems (one noted by Paul
6504 Hilfinger).
6505
067b32ee
AD
65062005-10-22 Akim <akim@epita.fr>
6507
6508 * Makefile.cfg: Adjust to config -> build-aux.
6509 Reported by twledo.
6510
4b367315
AD
65112005-10-21 Akim Demaille <akim@epita.fr>
6512
6513 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
6514 the %parse-params.
6515 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
6516 * data/yacc.c (b4_Pure_if): Rename as...
6517 (b4_yacc_pure_if): this.
6518 (YY_SYMBOL_PRINT, yyparse): Adjust.
6519 * doc/bison.texinfo: Formatting changes.
6520
24cc23d9
AD
65212005-10-21 Akim Demaille <akim@epita.fr>
6522
6523 Finish the transition config -> build-aux.
6524 * configure.ac, Makefile.am: Use build-aux.
6525 * config/prev-version, config/announce-gen, config/Makefile.am:
6526 Move to...
6527 * build-aux/prev-version, build-aux/announce-gen,
6528 * build-aux/Makefile.am: here.
6529
d4476375
AD
65302005-10-14 Akim Demaille <akim@epita.fr>
6531
6532 * examples/calc++/test: Use set -x only when VERBOSE.
6533
302c0aee
PE
65342005-10-13 Paul Eggert <eggert@cs.ucla.edu>
6535
6536 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
6537 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
6538
7625ec2c
AD
65392005-10-13 Akim Demaille <akim@epita.fr>
6540
6541 * src/scan-skel.l: Output the base name parts of the parser and
6542 header file names.
302c0aee 6543 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7625ec2c
AD
6544 additional checks.
6545 Use this to exercise C++ outputs in subdirs.
6546 Reported by Oleg Smolsky.
6547
ba0fe3c7
PE
65482005-10-12 Paul Eggert <eggert@cs.ucla.edu>
6549
6550 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
6551 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
6552 Problem reported by John P. Hartmann.
6553 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
6554 already defined it.
6555
9b8a5ce0
AD
65562005-10-12 Akim Demaille <akim@epita.fr>
6557
6558 * src/parse-gram.y (version_check): Exit 63 to please missing
6559 (stands for "version mismatch).
6560 * tests/input.at, doc/bison.texinfo: Adjust.
6561
4f6e011e
PE
65622005-10-10 Paul Eggert <eggert@cs.ucla.edu>
6563
6564 Work around portability problems with Visual Age C compiler
6565 (xlc and xlC_r) reported by John P. Hartmann.
6566 * data/location.cc (initial_column, initial_line): Remove.
6567 All uses replaced by 0 and 1.
6568 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
6569 that xlc complains about.
6570 * src/scan-skel.l (skel_wrap): Likewise.
4d7aa45e 6571 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
ba0fe3c7 6572 as __STDC__.
4d7aa45e
PE
6573 * data/yacc.c (YYMODERN_C): New macro, which also looks at
6574 __STDC_VERSION__. Use it everywhere instead of looking at
6575 __STDC__ and __cplusplus.
4f6e011e 6576
a1b3bf8c
AD
65772005-10-10 Akim Demaille <akim@epita.fr>
6578
6579 * examples/calc++/test: Be quiet unless VERBOSE.
6580
412e44aa
PE
65812005-10-05 Paul Eggert <eggert@cs.ucla.edu>
6582
2a4647a3
PE
6583 * data/c.m4 (yydestruct, yysymprint):
6584 Use YYUSE instead of casting to void.
6585 * data/glr.c (YYUSE): New macro.
6586 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
6587 Use it instead of rolling our own.
6588 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
6589 (YYCHK1):
6590 Use /*CONSTCOND*/ to suppress lint warnings.
6591 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
6592 (YY_STACK_PRINT): Use 'false' not '0'.
6593 (YYUSE): New macro.
6594 (yysymprint_, yydestruct_): Use it instead of rolling our own.
6595 * data/yacc.c (YYUSE): New macro.
6596 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
6597 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
6598 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
6599
6600
412e44aa
PE
6601 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
6602 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
6603
88c6637f
PE
66042005-10-04 Paul Eggert <eggert@cs.ucla.edu>
6605
2f4f028d
PE
6606 Undo the parts of the unlocked-I/O change that substituted
6607 putc or puts for printf. This might hurt performance a bit,
6608 but some people prefer the printf style.
6609 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
6610 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
6611 All uses replaced by YYFPRINTF and YYDPRINTF.
6612 * data/yacc.c: Likewise.
6613 * lib/bitset.c (bitset_print): Likewise.
6614 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
6615 putc and puts.
6616 * lib/lbitset.c (debug_lbitset): Likewise.
6617 * src/closure.c (print_firsts, print_fderives): Likewise.
6618 * src/gram.c (grammar_dump): Likewise.
6619 * src/lalr.c (look_ahead_tokens_print): Likewise.
6620 * src/output.c (escaped_output): Likewise.
6621 (user_actions_output): Break apart two printfs.
6622 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
6623 * src/reduce.c (reduce_print): Likewise.
6624 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
6625 * src/system.h: Include unlocked-io.h rathe than stdio.h.
6626
88c6637f
PE
6627 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
6628 Use assignments rather than casts-to-void to suppress
6629 unused-variable warnings. This pacifies 'lint'.
6630 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
6631 unused-variable warnings.
6632
fb32e373
JMG
66332005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6634
6635 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
6636
edb8f44f
PE
66372005-10-02 Paul Eggert <eggert@cs.ucla.edu>
6638
fb9c0b33
PE
6639 Use unlocked I/O for a minor performance improvement on hosts like
6640 GNU/Linux and Solaris that support unlocked I/O. The basic idea
6641 is to use the gnlib unlocked-io module, and to prefer putc and
6642 puts to printf when either will work (since the latter doesn't
6643 come in an unlocked flavor).
6644 * bootstrap (gnulib_modules): Add unlocked-io.
6645 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
6646 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
6647 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
6648 and similarly for puts and putc and printf.
6649 * data/yacc.c: Likewise.
6650 * lib/bitset.c (bitset_print): Likewise.
6651 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
6652 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
6653 to printf.
6654 * lib/lbitset.c (debug_lbitset): Likewise.
6655 * src/closure.c (print_firsts, print_fderives): Likewise.
6656 * src/gram.c (grammar_dump): Likewise.
6657 * src/lalr.c (look_ahead_tokens_print): Likewise.
6658 * src/output.c (escaped_output): Likewise.
6659 (user_actions_output): Coalesce two printfs.
2f4f028d 6660 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
fb9c0b33
PE
6661 * src/reduce.c (reduce_print): Likewise.
6662 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2f4f028d 6663 * src/system.h: Include unlocked-io.h rather than stdio.h.
fb9c0b33 6664
edb8f44f
PE
6665 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
6666 this confuses xgettext.
6667
b50d2359
AD
66682005-10-02 Akim Demaille <akim@epita.fr>
6669
6670 * bootstrap (gnulib_modules): Add strverscmp.
6671 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
6672 * m4/.cvsignore: Add strverscmp.m4.
6673 * src/parse-gram.y (%require): New token, new rule.
6674 (version_check): New.
6675 * src/scan-gram.l (%require): Adjust.
6676 * tests/input.at (AT_REQUIRE): New.
6677 Use it.
6678 * doc/bison.texinfo (Require Decl): New.
6679 (Calc++ Parser): Use %require.
6680
21667f64
AD
66812005-10-02 Akim Demaille <akim@epita.fr>
6682
6683 * data/location.cc: New.
6684
2b81e969
AD
66852005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
6686 Akim Demaille <akim@epita.fr>
6687
6688 Make sure -odir/foo.cc creates dir/location.hh etc.
6689 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
6690 (spec_file_prefix, spec_verbose_file, spec_graph_file)
6691 (spec_defines_file): Now const.
6692 (dir_prefix): New.
6693 (short_base_name): Remove.
6694 * src/files.c: Adjust.
6695 (dirname.h): Include.
6696 (base_name): Don't prototype it.
6697 (finput): Remove, duplicates gram_in.
6698 (full_base_name, short_base_name): Replace by...
6699 (all_but_ext, all_but_tab_ext): these.
6700 (compute_base_names): Rename as...
6701 (compute_file_name_parts): this.
6702 Update to compute the new variables, including dir_prefix.
6703 Adjust dependencies.
6704 * src/output.c (prepare): Output them.
6705 * src/reader.c: Adjust to use gram_in, not finput.
6706 * src/scan-skel.l (@dir_prefix@): New.
6707
ad6a9b97
JMG
67082005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6709
6710 * lib/subpipe.c: New function end_of_output_subpipe() added
6711 to allow support for non-posix systems. This is a no-op function
6712 for posix systems.
6713
6714 * lib/subpipe.h: New function end_of_output_subpipe() added
6715 to allow support for non-posix systems. This is a no-op function
6716 for posix systems.
6717
6718 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
6719 handle the lack of pipe/fork functionality on non-posix systems.
6720
6721 * djgpp/Makefile.maint: DJGPP specific file.
6722
6723 * djgpp/README.in: DJGPP specific file.
6724
6725 * djgpp/config.bat: DJGPP specific configuration file.
6726
6727 * djgpp/config.sed: DJGPP specific configuration file.
6728
6729 * djgpp/config.site: DJGPP specific configuration file.
6730
6731 * djgpp/config_h.sed: DJGPP specific configuration file.
6732
6733 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
6734
6735 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
6736
fc695704
AD
67372005-10-02 Akim Demaille <akim@epita.fr>
6738
6739 * data/location.cc: New, extract from...
6740 * data/lalr1.cc: here.
6741 (location.hh): Include it after the user prologue, in case the
6742 filename type is defined by the user.
6743 Forward declation location and position before the pre-prologue.
6744 (yyresult_): Rename as...
6745 (yyresult): this, it's a local variable, not an attribute.
6746 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
6747
67482005-10-01 Akim Demaille <akim@epita.fr>
5215c87f
AD
6749
6750 * examples/extexi: Restore the #line generation.
6751
fb9712a9
AD
67522005-09-30 Akim Demaille <akim@epita.fr>,
6753 Alexandre Duret-Lutz <adl@gnu.org>
6754
6755 Move the token type and YYSTYPE in the parser class.
6756 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
6757 (parser::token): New, from the moved free definition of tokens.
6758 (parser::semantic_value): Now a full definition instead of an
6759 indirection to YYSTYPE.
6760 (b4_post_prologue): No longer included in the header file, but
6761 in the implementation file.
6762 * doc/bison.texi (C+ Language Interface): Update.
6763 * src/parse-gram.y: Support unary %define.
6764 * tests/actions.at: Define global_tokens_and_yystype for backward
6765 compatibility until we update the tests.
6766 * tests/calc.at: Idem.
6767 (first_line, first_column, last_line, last_column): Define for lalr1.cc
6768 to simplify the code.
6769
55f0c7b1
PE
67702005-09-29 Paul Eggert <eggert@cs.ucla.edu>
6771
6772 Port to SunOS 4.1.4, which lacks strtoul and strerror.
6773 Ah, the good old days! Problem reported by Peter Klein.
6774 * bootstrap (gnulib_modules): Add strerror, strtoul.
6775 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
6776 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
6777
fb9712a9 67782005-09-29 Akim Demaille <akim@epita.fr>
d4fb5e3c
AD
6779
6780 * data/c.m4 (b4_error_verbose_if): New.
6781 * data/lalr1.cc: Use it.
6782 (YYERROR_VERBOSE_IF): Remove.
6783 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
6784 parser members, replaced by...
6785 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
6786 local variables.
6787 (yysyntax_error_): Takes the state number as argument.
6788 (yyreduce_print_): Use the argument yyrule, not the former
6789 attribute yyn_.
6790
8a6f72f3
PE
67912005-09-26 Paul Eggert <eggert@cs.ucla.edu>
6792
6793 * bootstrap (gnulib_modules): Add verify.
6794 * lib/.cvsignore: Add verify.h.
6795 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
6796 * src/system.h (verify): Remove.
6797 Include verify.h instead.
6798 * src/tables.c (tables_generate): Use new API for 'verify'.
6799
0d50976f
PE
68002005-09-21 Paul Eggert <eggert@cs.ucla.edu>
6801
ebc3737e
PE
6802 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
6803 local variables whose names begin with 'yy'.
6804 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
6805 Trivial changes from Joel E. Denny.
6806
0d50976f
PE
6807 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
6808 it itself.
6809 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
6810 don't use alloca any more.
6811
6812 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
6813 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
62c4328e 6814 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
0d50976f
PE
6815 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
6816 to match yacc.c, to test more hosts.
6817
a05b79df
PE
68182005-09-20 Paul Eggert <eggert@cs.ucla.edu>
6819
55289366
PE
6820 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
6821 doesn't affect behavior.
6822 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
6823 Solaris, AIX, MSC.
6824 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
6825 This works a bit better with glibc, if user code has already included
6826 stdlib.h.
6827 * doc/bison.texinfo (Bison Parser): Document that users can't
6828 arbitrarily use malloc and free for other purposes. Document
6829 that <alloca.h> and <malloc.h> might be included.
6830 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
6831 user must declare alloca.
6832
a05b79df
PE
6833 * HACKING (release): Forwarn the Translation Project about
6834 stable releses.
6835
3ab2ca22
AD
68362005-09-20 Akim Demaille <akim@epita.fr>
6837
6838 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
6839
a9739e7c
PE
68402005-09-19 Paul Eggert <eggert@cs.ucla.edu>
6841
a702593e
PE
6842 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
6843 (YYSTACK_ALLOC_MAXIMUM): Use it.
6844 (yysyntax_error): New function.
6845 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
6846 multiple syntax errors are reported, and alloca is being used.
6847 Instead, reallocate buffers twice as big each time, so that
6848 we waste at most half the allocated memory. Start with a small
6849 (128-byte) buffer that will suffice in most cases anyway.
6850 Use yysyntax_error to do most of the work.
6851
6852 * doc/bison.texinfo (Error Reporting, Table of Symbols):
6853 yynerrs is the number of errors reported, not the number of
6854 errors encountered.
6855
a9739e7c
PE
6856 * tests/glr-regression.at (Duplicated user destructor for lookahead):
6857 Mark it as expected to fail.
6858 Cast result of malloc; problem reported by twlevo@xs4all.nl.
6859 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
6860 Don't start user-code symbols with "yy", to avoid name space problems.
6861
f479c6c6
AD
68622005-09-19 Akim Demaille <akim@epita.fr>
6863
6864 Remove the traits, failed experiment.
6865 It never proved useful, and anyway because of the current
6866 definition, it was not possible to have several specialization of
6867 this traits, making it useless.
6868 * data/lalr1.cc (yy:traits): Remove.
6869 Inline its definitions in the parser class.
6870
e2586f82
AD
68712005-09-19 Akim Demaille <akim@epita.fr>
6872
6873 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
6874 least Mac OSX with a /usr/local install of gettext.
6875
2e8cf949
AD
68762005-09-19 Akim Demaille <akim@epita.fr>
6877
6878 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
6879 and yytoken for similarity with the other skeletons.
6880
c7fb0b90
AD
68812005-09-19 Akim Demaille <akim@epita.fr>
6882
4e26c69e 6883 * NEWS, configure.ac: update version number to 2.1a.
c7fb0b90 6884
1bd0deda
PE
68852005-09-16 Paul Eggert <eggert@cs.ucla.edu>
6886
6887 * NEWS: Version 2.1.
6888
6889 * NEWS: Remove notice of yytname change, since it was never in an
6890 official release.
6891 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
6892 diagnostic.
6893 * src/output.c (prepare): Likewise.
6894 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
6895 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
6896 is not defined. This is an awful hack, but it's enough for now.
6897 All callers changed.
6898 * tests/glr-regression-at (make_value): Args are const pointers now,
6899 to avoid GCC warning.
6900 (Duplicated user destructor for lookahead): New test. Currently
6901 skipped. It fails on my host but I'm not sure it'll always fail.
6902
69032005-09-16 Akim Demaille <akim@epita.fr>
c1432f65
AD
6904
6905 * src/symtab.h (struct symbol): Declare the printer and destructor
6906 as const, to avoid accidental calls to free.
6907 (symbol_destructor_set, symbol_printer_set): Adjust.
6908 * src/symtab.c: Adjust.
6909
1bd0deda 69102005-09-16 Akim Demaille <akim@epita.fr>
cf147260
AD
6911
6912 * data/c.m4 (b4_token_enums): New.
6913 (b4_token_defines): Rename as...
6914 (b4_token_enums_defines): this.
6915 (b4_token_defines): New, output only the #defines.
6916 * data/yacc.c, data/glr.c: Adjust.
6917 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
6918 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
6919 as default values.
6920
dbcdae2d
AD
69212005-09-16 Akim Demaille <akim@epita.fr>
6922
6923 * data/lalr1.cc (yylex_): Remove, inline its code.
6924 (yyreport_syntax_error_): Remove, replaced by...
6925 (yysyntax_error_): this which returns a string and leaves to the
6926 caller the call to the users' error function.
6927 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
6928 Move from members of the parser object...
6929 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
6930 to local variables of the parse function.
6931
70d8f291
AD
69322005-09-16 Akim Demaille <akim@epita.fr>
6933
6934 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
6935 since it's in Bison's name space.
6936
b47dbebe
PE
69372005-09-15 Paul Eggert <eggert@cs.ucla.edu>
6938
ae199bf1
PE
6939 * data/glr.c (yyresolveValue): Add default case to pacify
6940 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
6941
b47dbebe
PE
6942 * NEWS: Document when yyparse started to return 2.
6943 * doc/bison.texinfo (Parser Function): Document when yyparse
6944 returns 2.
6945
6946 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
6947 (b4_filename_type): Renamed back from b4_file_name_type. All uses
6948 changed.
6949 (class position): file_name -> filename (reverting). All uses changed.
6950
69512005-09-14 Paul Eggert <eggert@cs.ucla.edu>
6952
6953 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
6954 do anything if $@ exists. This reverts part of the 2005-07-07
6955 patch.
6956
00292f66
PE
69572005-09-11 Paul Eggert <eggert@cs.ucla.edu>
6958
6959 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
6960 contains obsolete information and isn't worth distributing as a
6961 separate file anyway.
6962 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
6963 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
6964 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
6965 (yyparse): Abort if user code uses longjmp to throw an unexpected
6966 value.
6967
a420f962
PE
69682005-09-09 Paul Eggert <eggert@cs.ucla.edu>
6969
00292f66
PE
6970 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
6971 Suggested by twlevo@xs4all.nl.
6972
127287e9
PE
6973 * data/glr.c (YYCHK1): Do not assume YYE is in range.
6974 This avoids a diagnostic from gcc -Wswitch-enum.
6975 Problem reported by twlevo@xs4all.nl.
6976
a420f962
PE
6977 * doc/bison.texinfo: Don't use "filename", as per GNU coding
6978 standards. Use "file name" or "file" or "name", depending on
6979 the context.
6980 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
6981 not to hack/foo.tab.c.
6982 (Calc++ Top Level): 2nd arg of main is not const.
48b16bbc
PE
6983 * data/glr.c: b4_filename -> b4_file_name.
6984 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
6985 All uses changed.
6986 (class position): filename -> file_name. All uses changed.
6987 * data/yacc.c: b4_filename -> b4_file_name.
6988 * lib/bitset.h: filename -> file_name in local vars.
6989 * lib/bitset_stats.c: Likewise.
6990 * src/files.c: Likewise.
6991 * src/scan-skel.l ("@output ".*\n): Likewise.
6992 * src/files.c (file_name_split): Renamed from filename_split.
6993 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
a420f962
PE
6994
69952005-09-08 Paul Eggert <eggert@cs.ucla.edu>
6996
6997 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
6998 to accommodate latest gnulib.
6999
7000 * tests/glr-regression.at (Duplicate representation of merged trees):
7001 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
7002
7003 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
7004 needed.
7005
42a6501d
PE
70062005-08-26 Paul Eggert <eggert@cs.ucla.edu>
7007
7008 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
7009 All uses changed. Invoke user destructor after an error during a
7010 split parse (trivial change from Joel E. Denny).
7011
7012 * tests/glr-regression.at
7013 (User destructor after an error during a split parse): New test case.
7014 Problem reported by Joel E. Denny in:
7015 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
7016
ef9a1faf
PE
70172005-08-25 Paul Eggert <eggert@cs.ucla.edu>
7018
5b4aaf78
PE
7019 * README-cvs: Give URLs for recommended tools.
7020 Mention Gzip version problem, and bootstrapping issues.
7021 Remove troubleshooting section, as it's somewhat obsolete.
7022
b5240ba5
PE
7023 * bootstrap (no_cache): New var, to accommodate different wget
7024 variants. Use it instead of '-C off'. Problem reported by
7025 twlevo@xs4all.nl.
7026
ef9a1faf
PE
7027 * data/glr.c (yydestroyStackItem): New function.
7028 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
7029 debugging information. Problem reported by Joel E. Denny.
7030
e6efa9da
AD
70312005-08-25 Akim Demaille <akim@epita.fr>
7032
7033 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
7034
adc90f13
PE
70352005-08-24 Paul Eggert <eggert@cs.ucla.edu>
7036
7037 * data/glr.c (yyrecoverSyntaxError, yyreturn):
7038 Don't invoke destructor on unresolved entries.
7039 * tests/glr-regression.at
7040 (User destructor for unresolved GLR semantic value): New test case.
7041 Problem reported by Joel E. Denny in:
7042 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
7043
f9315de5
PE
70442005-08-21 Paul Eggert <eggert@cs.ucla.edu>
7045
15d29c1f
PE
7046 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
7047 Add strnlen.c.
7048 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
7049 lib-prefix.m4, po.m4.
7050
dd5f2af2
PE
7051 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
7052 in yydestruct diagnostic, since it might not be an error.
7053 Problem reported by Joel Denny near end of
7054 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6250acbd 7055 * data/lalr1.cc (yyerturn): Likewise.
dd5f2af2
PE
7056 * data/yacc.c (yyreturn): Likewise.
7057 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
7058
7059 * src/files.c: Remove obsolete FIXME comment.
7060
7061 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
7062 with the other templates, and to fix bogus run-on messages such
7063 as the one reported at the end of
7064 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
7065 All callers changed to avoid the newline.
7066 (yyprocessOneStack): Output two lines rather than one, to accommodate
7067 the above change. This changes the debug output format slightly.
7068
f9315de5
PE
7069 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
7070 reported by Joel E. Denny in
7071 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
7072 (trivial change).
7073 * tests/glr-regression.at (Duplicate representation of merged trees):
7074 New test, from Joel E. Denny in:
7075 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
7076 * THANKS: Add Joel E. Denny.
7077
7078 * configure.ac (AC_INIT): Bump to 2.0c.
7079
04098407
PE
70802005-07-24 Paul Eggert <eggert@cs.ucla.edu>
7081
7082 * NEWS: Version 2.0b.
7083
ca5d2013
PE
7084 * Makefile.am (SUBDIRS): Put examples before tests, so that
7085 "make check" doesn't finish with "All 1 tests passed".
7086
3d54b576
PE
7087 * tests/regression.at (Token definitions): Don't rely on
7088 AT_PARSER_CHECK for data that contains backslashes. It currently
7089 uses 'echo', and 'echo' isn't portable if its argument contains
7090 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
7091 that the byte '\0xff' is not printable in the C locale; it is,
7092 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
7093 not printable, so use '\0x81' to test.
7094
d53ae497
PE
7095 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
7096 version of GCC, since the macro is used with non-GCC compilers.
7097
fc01665e
PE
7098 Fix core dump reported by Pablo De Napoli in
7099 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
7100 * tests/regression.at (Invalid inputs with {}): New test.
7101 * src/parse-gram.y (token_name): Translate type before using
7102 it as an index.
7103
04098407
PE
7104 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
7105 the user's name space. All uses changed to __attribute__
7106 ((__unused__)).
7107 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
7108 Add __attribute__ ((__noreturn__)).
7109
7110 * etc/clcommit: Remove. We weren't using it, and it failed
7111 "make maintainer-distcheck".
7112 * Makefile.maint: Merge from coreutils.
7113 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
7114 (syntax-check-rules): Change list of rules as described below.
7115 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
7116 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
7117 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
7118 (sc_trailing_space): New rules.
7119 (sc_xalloc_h_in_src): Remove.
7120 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
7121 (sc_space_tab, sc_error_exit_success, sc_changelog):
7122 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
7123 (makefile-check, po-check, author_mark_check):
7124 (makefile_path_separator_check, copyright-check):
7125 Use grep -n, to make it easier to find violations.
7126 Use CVS_LIST and CVS_LIST_EXCEPT.
7127 (header_regexp, h_re): Remove.
7128 (dd_c): New macro.
7129 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
7130 (my-distcheck): Use more-modern GCC flags.
7131 (signatures, %.asc): Remove.
7132 (rel-files, announcement): Remove signatures.
7133 Restore old updating code, even though we don't use it, so
7134 that we're the same as coreutils.
7135 (alpha, beta, major): Depend on news-date-check.
7136 Make the upload commands.
7137
7138 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
7139 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
7140 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
7141 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
7142 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
7143 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
7144 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
7145 * tests/sets.at: Likewise.
7146
7147 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
7148 we comment out the Autoconf version number.
7149 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
7150 it's error-prone and "make maintainer-distcheck" rejects it.
7151
7152 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
7153 Indent calls to "error" to pacify "make maintainer-distcheck",
7154 when the calls are not intended to be translated.
7155 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
7156
7157 * src/Makefile.am (DEFS): Use +=, to pacify
7158 "make maintainer-distcheck".
7159 (bison_SOURCES): Add scan-skel.h.
7160 (sc_tight_scope): New rule, from coreutils.
7161
7162 * src/files.c (src_extension, header_extension):
7163 Now static, not extern.
7164 * src/getargs.c (short_options): Likewise.
7165 * src/muscle_tab.c (muscle_table): Likewise.
7166 * src/parse-gram.y (current_class, current_type, current_prec):
7167 Likewise.
7168 * src/reader.c (grammar_end, previous_rule_end): Likewise.
7169 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
7170 * src/main.c (main): Cast bindtextdomain and textdomain calls to
7171 void, to avoid warning when NLS is disabled.
7172 * src/output.c: Include scan-skel.h.
7173 (scan_skel): Remove decl, since scan-skel.h does this.
7174 (output_skeleton):
7175 Indent calls to "error" to pacify "make maintainer-distcheck".
7176 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
7177 * src/reader.h (gram_end, gram_lineno): New decls to pacify
7178 "make maintainer-distcheck".
7179 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
7180 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
7181 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
7182 (skel_lex_destroy, scan_skel): Move these decls to...
7183 * src/scan-skel.h: New file.
7184 * src/uniqstr.c (uniqstr_assert):
7185 Indent calls to "error" to pacify "make maintainer-distcheck".
7186
7187 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
7188 not @VAR@.
7189
7190 * tests/torture.at: Revamp to avoid misuse of atoi that
7191 "make maintainer-distcheck" complained about.
7192
7193 * examples/extexi (message): Don't print a message more than once,
7194 and omit line-number decoration that makes Emacs compile think
7195 that informative messages are worth worrying about.
7196
71972005-07-22 Paul Eggert <eggert@cs.ucla.edu>
7198
7199 * configure.ac: Update version number.
7200
7201 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
7202 accidentally.
7203 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
7204 autogenerated by the maintainer.
7205 * examples/calc++/.cvsignore: Add *.yy.
7206
7207 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
7208 * lib/bitset_stats.c (bitset_stats_init): Likewise.
7209 * lib/bitsetv.c (bitsetv_alloc): Likewise.
7210
7211 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
7212
7213 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
7214 from maintainer-distcheck about casting the argument of 'free'.
7215
7216 * NEWS: Mention recent yytname changes.
7217 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
7218
7219 * bootstrap: For translations that have not yet been upgraded to
7220 the new runtime-po domain, prime the pump by extracting the
7221 relevant strings from the obsolete translations. This code can be
7222 removed once the bison-runtime domain has been translated by each
7223 team.
7224
7225 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
7226 now that token names are already quoted.
7227
7228 Fix problem reported by Anthony Heading.
7229 * data/glr.c (YYTOKEN_TABLE): New macro.
7230 (yytname): Define if YYTOKEN_TABLE.
7231 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
7232 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
7233 (YYERROR_VERBOSE): Define the same way the other skeletons do.
7234 * src/output.c (prepare_symbols): Output token_table_flag.
7235
0ffda363
PE
72362005-07-21 Paul Eggert <eggert@cs.ucla.edu>
7237
7238 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
7239 again if the first call fails.
7240
7241 * data/glr.c (yytnamerr): New function.
7242 (yyreportSyntaxError): Use it to dequote most string literals.
7243 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
7244 with other skeletons. All uses changed.
7245 (yytnameerr_): New function.
7246 (yyreport_syntax_error): Use it to dequote most string literals.
7247 * data/yacc.c (yytnamerr): New function.
7248 (yyerrlab): Use it to decode most string literals.
7249 * doc/bison.texinfo (Decl Summary, Calling Convention):
7250 Clarify quoting convention of yytname.
7251 * src/output.c (prepare_symbols): Quote all names. This undoes
7252 the 2005-04-17 change, which is now accomplished (mostly) via
7253 changes in the parsers as described above.
7254 * tests/regression.at (Token definitions, Web2c Actions):
7255 Undo most 2005-04-17 change here, too.
7256
72572005-07-20 Paul Eggert <eggert@cs.ucla.edu>
7258
7259 Fix more problems reported by twlevo@xs4all.nl.
7260 * tests/cxx-type.at: Don't pipe output of ./types through sed to
7261 remove trailing spaces. This loses the exit status of ./types,
7262 and isn't needed since ./types shouldn't be emitting trailing
7263 spaces.
7264 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
7265 as the stack isn't valid in that case.
7266
7267 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
7268 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
7269 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
7270 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
7271 is used.
7272 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
7273 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
7274 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
7275 Likewise.
7276
7277 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
7278 overly-picky compilers that reject 'char *foo = "bar";'.
7279
7280 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
7281 to FILE * parameter, not to stderr. This fixes a typo introduced
7282 in the 2005-07-12 change.
7283
7284 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
7285 warnings from GCC 4.
7286
7287 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
7288 (yyglrShiftDefer, yysplitStack):
7289 Remove unused parameters b4_pure_formals. All uses changed.
7290 (yyglrShift): Remove unused parameters b4_user_formals.
7291 All uses changed.
7292 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
7293
6100a9aa
PE
72942005-07-18 Paul Eggert <eggert@cs.ucla.edu>
7295
258b75ca
PE
7296 Destructor cleanups and regularization among the three skeletons.
7297 * NEWS: Document the behavior changes.
7298 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
7299 stack before failing, as the cleanup code will do it for us now.
7300 * data/lalr1.cc (yyerrlab): Likewise.
7301 * data/glr.c (yyparse): Pop everything off the stack before
7302 freeing it, so that destructors get called properly.
7303 * data/lalr1.cc (yyreturn): Likewise.
7304 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
7305 This is more consistent.
7306 * doc/bison.texinfo (Destructor Decl): Mention more reasons
7307 why destructors might be called. 1.875 -> 2.1.
7308 (Destructor Decl, Decl Summary, Table of Symbols):
7309 Some English-language cleanups for %destructor.
7310 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
7311 Add output line for destructor of start symbol.
7312 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
7313 because of that same extra output line.
7314
1a059451
PE
7315 * NEWS: Document minor wording changes in diagnostics of
7316 Bison-generated parsers.
7317 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
7318 Remove unused formals. All uses changed.
7319 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
7320 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
7321 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
7322 Rename yyoverflowab to yyexhaustedlab.
7323 When memory exhaustion occurs during syntax-error reporting,
7324 report it separately rather than in a single diagnostic; this
7325 eases translation.
7326 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
7327 (Memory Exhausted): Renamed from Parser Stack Overflow.
7328 Revamp wording slightly to prefer "memory exhaustion".
7329 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
7330
97460c78
PE
7331 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
7332
30757c8c
PE
7333 Add i18n support to the GLR skeleton. Partially fix the C++
7334 skeleton; a C++ expert needs to finish this. Remove debugging
7335 msgids; there's little point to having them translated, since they
7336 can be understood only by someone who can read the
7337 (English-language) source code.
7338
7339 Generate runtime-po/bison-runtime.pot automatically, so that we
7340 don't have to worry about garbage getting in that file. We'll
7341 make sure after the next official release that old msgids don't
7342 get lost. See
7343 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
7344
7345 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
7346 Now auto-generated.
7347 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
7348 Fix typos in explanations of the runtime file.
7349 * bootstrap: Change gettext keyword from YYI18N to YY_.
7350 Use standard Makefile.in.in in runtime-po, since we'll arrange
7351 for backward-compatible bison-runtime.po files in a different way.
7352 * data/glr.c (YY_): New macro, from yacc.c.
7353 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
7354 Translate messages intended for users.
7355 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
7356 the wording in the other skeletons. We don't know that the memory
7357 is virtual.
7358 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
7359 Use same method that yacc.c uses.
7360 Don't translate debugging messages.
7361 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
7362 it doesn't work (yet), and requires C++ expertise to fix.
7363 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
7364 Move defn to a more logical place, to be consistent with other
7365 skeletons.
7366 Don't translate debugging messages.
7367 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
7368 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
7369 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
7370 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
7371
ac8c5689
PE
7372 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
7373 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
7374 void, not int.
7375 * tests/glr-regression.at (Badly Collapsed GLR States):
7376 Likewise.
7377 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7378 yylex should return 0 at EOF rather than aborting.
7379
6100a9aa
PE
7380 Improve tests for stack overflow in GLR parser.
7381 Problem reported by twlevo@xs4all.nl.
7382 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
7383 All uses removed.
7384 (yyStackOverflow): Just longjmp, but with value 2 so that caller
7385 can handle the problem.
7386 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
7387 (yyparse): New local variable yyresult to record the result.
7388 Use result of setjmp to set it, rather than storing itinto
7389 struct.
7390 (yyDone): Remove label.
7391 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
7392 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
7393 if YYABORT is used).
7394 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
7395 yyparse status; put status > 1 into diagnostic.
7396 Check that status==2 works.
7397 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
7398 Use exit status 3 for failure to open (which shouldn't happen).
7399
15f40952
PE
74002005-07-17 Paul Eggert <eggert@cs.ucla.edu>
7401
67fd79c4
PE
7402 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
7403 1 on syntax error; just let yyparse do its thing.
7404 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
7405 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
7406 (Exploding the Stack Size with Alloca):
7407 (Exploding the Stack Size with Malloc):
7408 Expect exit status 2, not 1, since the parser is supposed to blow
7409 its stack. Problem reported by twlevo@xs4all.nl.
7410
15f40952
PE
7411 * data/glr.c (yyparse): Don't assume that the initial calls
7412 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
7413 Print a stack-overflow message and fail instead.
7414 Initialize the line-number information before creating the stack,
7415 so that the stack-overflow message can report line zero safely.
7416
f32c66b5
PE
74172005-07-14 Paul Eggert <eggert@cs.ucla.edu>
7418
a22ff96f 7419 Fix problems reported by twlevo@xs4all.nl.
e2688cd9
PE
7420 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
7421 (yyuserMerge): Provide a default case if b4_mergers is empty.
7422 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
7423 * tests/glr-regression.at
7424 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
c70fdfcd 7425 Add casts to pacify C++ compilers.
1beb0b24
PE
7426 * tests/glr-regression.at (Improper merging of GLR delayed action
7427 sets): Declare yylex before using it.
f32c66b5 7428 * tests/Makefile.am (maintainer-check-g++): Fix a stray
a22ff96f
PE
7429 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
7430 test for valgrind; valgrind is independent of g++.
7431 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
7432 for compatibility with POSIX 1003.1-2001 (if running coreutils).
7433 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
7434 Use a destructor, so that we can expand the stack. Change
7435 YYSTYPE to char * so that we can free it. Cast result of malloc.
f32c66b5 7436
d741bd1b
PE
74372005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
7438
7439 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
7440 a valgrind failure. Problem reported by twlevo@xs4all.nl.
7441
0410a6e0
PE
74422005-07-13 Paul Eggert <eggert@cs.ucla.edu>
7443
7444 * PACKAGING: New file, suggested by Bruno Haible and taken from
7445 similar wording in gettext's PACKAGING file.
7446 * NEWS: Mention PACKAGING.
7447 * Makefile.am (EXTRA_DIST): Add PACKAGING.
7448
f7ab6a50
PE
74492005-07-12 Paul Eggert <eggert@cs.ucla.edu>
7450
baf785db 7451 * NEWS: Document recent i18n improvements.
f7ab6a50
PE
7452 * bootstrap: Get runtime translations into runtime-po.
7453 Create runtime-po files automatically, if possible.
7454 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
7455 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
7456 does not infringe on the user's name space.
7457 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
7458 * doc/bison.texinfo (Internationalization): Revamp the English
7459 and Texinfo syntax a bit, to try to make it clearer.
7460 (Bison Options, Option Cross Key): Mention --print-localedir.
7461 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
7462 YYENABLE_NLS. Quote a bit more.
7463 * runtime-po/.cvsignore: New file.
7464 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
7465 * runtime-po/Rules-quot: Remove; now created by bootstrap.
7466 * runtime-po/quot.sed: Likewise.
7467 * runtime-po/boldquot.sed: Likewise.
7468 * runtime-po/en@quot.header: Likewise.
7469 * runtime-po/en@boldquot.header: Likewise.
7470 * runtime-po/insert-header.sin: Likewise.
7471 * runtime-po/remove-potcdate.sin: Likewise.
7472 * runtime-po/Makevars: Likewise.
7473 * runtime-po/LINGUAS: Likewise.
7474 * runtime-po/de.po: Likewise; we will rely on the translation project
7475 to maintain this, so "bootstrap" should get it.
0410a6e0 7476 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
f7ab6a50
PE
7477 its value.
7478 * src/main.c (main): Bind the bison-runtime domain, too.
7479
74802005-07-12 Bruno Haible <bruno@clisp.org>
7481
7482 * data/yacc.c: Include <libintl.h> when NLS is enabled.
7483 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
7484 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
7485 * runtime-po: New directory.
7486 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
7487 $(DOMAIN).pot-update rule, so that old messages are never dropped.
7488 * runtime-po/Rules-quot: New file, copied from po/.
7489 * runtime-po/quot.sed: Likewise.
7490 * runtime-po/boldquot.sed: Likewise.
7491 * runtime-po/en@quot.header: Likewise.
7492 * runtime-po/en@boldquot.header: Likewise.
7493 * runtime-po/insert-header.sin: Likewise.
7494 * runtime-po/remove-potcdate.sin: Likewise.
7495 * runtime-po/Makevars: New file.
7496 * runtime-po/POTFILES.in: New file.
7497 * runtime-po/LINGUAS: New file.
7498 * runtime-po/bison-runtime.pot: New file.
7499 * runtime-po/de.po: New file.
7500 * m4/bison.m4: New file.
7501 * Makefile.am (SUBDIRS): Add runtime-po.
7502 (aclocaldir, aclocal_DATA): New variables.
7503 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
7504 Define aclocaldir.
7505 * src/getargs.c (usage): Document --print-localedir option.
7506 (PRINT_LOCALEDIR_OPTION): New enum item.
7507 (long_options): Add --print-localedir option.
7508 (getargs): Handle --print-localedir option.
7509 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
7510 (Internationalization): New section.
7511
22dda0f0
AD
75122005-07-12 Akim Demaille <akim@epita.fr>
7513
7514 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
7515 for consistency with the rest of the code.
7516 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
7517 Add separators.
7518
82b248ad
AD
75192005-07-12 Akim Demaille <akim@epita.fr>
7520
7521 * src/parse-gram.y: Use %printer instead of YYPRINT.
7522
fa0e9314
AD
75232005-07-12 Akim Demaille <akim@epita.fr>
7524
867a3e00
AD
7525 * src/symtab.h, src/symtab.c (symbol_print): New.
7526 * src/symlist.h, src/symlist.c (symbol_list_print): New.
7527 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
7528
75292005-07-12 Akim Demaille <akim@epita.fr>
7530
7531 * data/glr.c (b4_syncline): Fix (swap) the definitions of
fa0e9314
AD
7532 b4_at_dollar and b4_dollar_dollar.
7533
e054b190
PE
75342005-07-11 Paul Eggert <eggert@cs.ucla.edu>
7535
7536 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
7537 and Pennello's paper.
7538
34160ec4
PE
75392005-07-09 Paul Eggert <eggert@cs.ucla.edu>
7540
407d4a75
PE
7541 * data/yacc.c (yyparse): Undo previous patch. Instead,
7542 set yylsp[0] and yyvsp[0] only if the initial action
7543 sets yylloc and yylval, respectively.
7544
34160ec4
PE
7545 * data/yacc.c (yyparse): In the initial action, set
7546 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
7547 This avoids the use of undefined variables if the initial
7548 action does not set yylloc and/or yylval.
7549
c3d5a4a7
PE
75502005-07-07 Paul Eggert <eggert@cs.ucla.edu>
7551
b34d96c1
PE
7552 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
7553 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
7554 Remove from CVS. These files are automatically generated.
7555 * examples/extexi: Clarify that this file is now part of Bison,
7556 not GNU M4, and that it works with any POSIX-compatible Awk.
7557 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
7558 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
7559 so that we also get calc++-parser.yy. Geneate it.
7560 Use $(AWK), not gawk, since any conforming Awk will do.
7561 Put comment before action, since older 'make' can't handle comment
7562 in action.
7563 $(BUILT_SOURCES): List all built sources, not just some of them.
7564 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
7565 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
7566 $($(calc_sources_generated)): Remove unnecessary test for existence
7567 of target. (This had a shell syntax error anyway; a stray "x".)
7568 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
7569 calc++-parser.yy.
7570 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
7571
c3d5a4a7
PE
7572 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
7573 implied by the other modules.
7574
828c373b
AD
75752005-07-06 Akim Demaille <akim@epita.fr>
7576
7577 Bind examples/calc++ to the package.
7578 * examples/calc++/Makefile: Remove, replaced by...
7579 * examples/calc++/Makefile.am: ... this new file.
7580 * examples/calc++/test: Remove input.
7581 * examples/calc++/compile: Remove.
7582 * examples/Makefile.am: New.
7583 * configure.ac, Makefile.am: Adjust.
7584 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
7585
63cb01d6
PE
75862005-07-05 Paul Eggert <eggert@cs.ucla.edu>
7587
fd2df2ed
PE
7588 * data/glr.c (yyFail): Drastically simplify; since the format argument
7589 never had any % directives, we can simply pass it to yyerror.
7590 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
7591 be modified later, as that is the usual style in glr.c.
7592 Problems reported by Paul Hilfinger.
7593
63cb01d6
PE
7594 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
7595 and size overflow errors.
7596 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
7597 in case the user prolog sets feature-test macros like _GNU_SOURCE.
7598 (YYSIZEMAX): New macro.
7599 (yystpcpy): New function, taken from yacc.c.
7600 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
7601 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
7602 so that we don't have to maintain their signatures.
7603 (yyFail): Check for buffer overflow, by using vsnprintf rather
7604 than vsprintf. Allocate a bigger buffer if possible.
7605 Report an error if buffer allocation fails.
7606 (yyStackOverflow): New function.
7607 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
7608 the initialization was successful. It might fail if storage was
7609 exhausted.
7610 (yyexpandGLRStack): Add more checks for storage allocation failure.
7611 Use yyStackOverflow to report failures.
7612 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
7613 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
7614 Don't assume stack number fits in int.
7615 (yysplitStack): Check for storage allocation failure.
7616 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
7617 can print diagnostics on storage allocation failure. All callers
7618 changed.
7619 (yyresolveValue): Use yybool for boolean.
7620 (yyreportSyntaxError): Check for size-calculation overflow.
7621 This code is taken from yacc.c.
7622 (yyparse): Check for storage allocation errors when allocating
7623 the initial stack.
7624
1c59e0a1
AD
76252005-07-05 Akim Demaille <akim@epita.fr>
7626
7627 Extract calc++ from the documentation.
7628 * doc/bison.texinfo (Calc++): Add the extraction marks.
7629 * examples/extexi: New, from the aborted GNU Programming 2E.
7630 Separate the different paragraph of a file with empty lines.
7631 * examples/Makefile: Use it to extract the whole calc++ example.
7632
8a0adb01
AD
76332005-06-24 Akim Demaille <akim@epita.fr>
7634
7635 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
7636 class typedefs.
7637
12545799
AD
76382005-06-22 Akim Demaille <akim@epita.fr>
7639
7640 * doc/bison.texinfo (C++ Language Interface): First stab.
7641 (C++ Parsers): Remove.
7642
99be0235
AD
76432005-06-22 Akim Demaille <akim@epita.fr>
7644
7645 * data/lalr1.cc (yylex_): Honor %lex-param.
7646
0ffd4fd1
AD
76472005-06-22 Akim Demaille <akim@epita.fr>
7648
7649 Start a set of simple examples.
7650 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
7651 * examples/calc++/calc++-driver.hh,
7652 * examples/calc++/calc++-parser.yy,
7653 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
7654 * examples/calc++/compile, examples/calc++/test: New.
7655
0925ebb4
PE
76562005-06-09 Paul Eggert <eggert@cs.ucla.edu>
7657
7658 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
7659 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
7660 which stems from the 2005-05-27 patch.
7661
43d3b664
PH
76622005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7663
7664 * data/glr.c: Modify treatment of unused parameters to permit use
7665 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
7666
3062864d
PE
76672005-05-30 Paul Eggert <eggert@cs.ucla.edu>
7668
7669 Fix infringement on user name space reported by Janos Zoltan Szabo.
7670 * data/yacc.c (yyparse): strlen -> yystrlen.
7671
989b5b8e
AD
76722005-05-30 Akim Demaille <akim@epita.fr>
7673
7674 * data/lalr1.cc (_): New.
7675 Translate the various messages.
7676
bedf57f5
PE
76772005-05-27 Paul Eggert <eggert@cs.ucla.edu>
7678
7679 Fix infringement on user name space reported by Bruno Haible.
7680 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
7681 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
7682 the user's name space.
7683 (alloca): Include <stdlib.h> to get it, if it's not built in.
7684 (YYMALLOC, YYFREE): Define only if needed.
7685 (malloc, free): Declare, but only if needed, as this infringes on
7686 the user name space.
7687
4d1801f1
PE
76882005-05-25 Paul Eggert <eggert@cs.ucla.edu>
7689
7690 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
7691 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
7692 with %d format.
7693 * lib/ebitset.c (min, max): Undef before defining.
7694 * lib/vbitset.c (min, max): Likewise.
7695 * lib/subpipe.c (create_subpipe): Save local variables in case
7696 vfork clobbers them.
7697
76982005-05-24 Bruno Haible <bruno@clisp.org>
7699
7700 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
7701 error message syntax used by gcc-4.0.
7702
b94a9e1e
PE
77032005-05-23 Paul Eggert <eggert@cs.ucla.edu>
7704
85ac3861
PE
7705 * README: Mention m4 1.4.3. Remove obsolete advice about
7706 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
7707
b94a9e1e
PE
7708 * bootstrap: Remove workaround for problem I encountered with
7709 gettext 0.14.1; it seems to be fixed now.
7710
51c30d21
PE
77112005-05-22 Paul Eggert <eggert@cs.ucla.edu>
7712
009ce67d
PE
7713 * NEWS: Version 2.0a.
7714
f2a97c62
PE
7715 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
7716 the previous change.
7717
c8775f93
PE
7718 Various maintainer cleanups.
7719 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
7720 conftest*, for benefit of CVS commands run at the same time as
7721 "configure". Add build-aux, since "bootstrap" now creates it and
7722 its subfiles.
7723 * Makefile.cfg (move_if_change): Remove.
7724 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
7725 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
7726 (po_repo, do-po-update, po-update, wget_files, get-targets):
7727 (config.guess-url_prefix, config.sub-url_prefix):
7728 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
7729 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
7730 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
7731 Remove.
7732 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
7733 this is now the recommended name.
7734 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
7735 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
7736 ylwrap. These files now go into build-aux.
7737 * config/move-if-change: Remove.
7738 * config/prev-version.txt: Bump from 1.75 to 2.0.
7739
3ea5f0ec
PE
7740 * bootstrap: Add stdio-safer, unistd-safer modules.
7741 Remove m4/glibc2.m4 (introduced by latest gnulib, but
7742 we don't need it).
7743 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
7744 fopen-safer.c, stdio-safer.h, unistd-safer.h.
7745 * lib/subpipe.c: Include "unistd-safer.h".
7746 (create_subpipe): Make sure all the newly-created
7747 file descriptors are > 2, so that diagnostics don't
7748 get sent down them (which might cause Bison to hang, in theory).
7749 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
7750 * src/files.c (xfopen): Use fopen_safer, not fopen.
7751
51c30d21
PE
7752 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
7753 yesterday's yacc.c fix.
7754
cea1469d
PE
77552005-05-21 Paul Eggert <eggert@cs.ucla.edu>
7756
3ea5f0ec
PE
7757 * data/glr.c, data/lalr1.cc: Update copyright date.
7758
cea1469d
PE
7759 Fix a destructor bug reported by Wolfgang Spraul in
7760 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
7761 * data/yacc.c (yyabortlab): Don't call destructor, and
7762 don't set yychar to EMPTY.
7763 (yyoverflowlab): Don't call destructor.
7764 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
7765 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
7766 since we no longer output the message "discarding lookahead token
7767 end of input ()".
7768
5e6f62f2
PH
77692005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
7770
7771 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
7772 fix a small glitch in debugging output.
7773 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
7774 after YY_SYMBOL_PRINT where needed.
7775
7776 (struct yyGLRState): Add some comments.
7777 (struct yySemanticOption): Add some comments.
7778 (union yyGLRStackItem): Add comment.
7779
7780 (yymergeOptionSets): Correct this to properly perform the union,
7781 avoiding infinite reported by Michael Rosien.
7782 Update comment.
7783
7784 * tests/glr-regression.at: Add test for GLR merging error reported
7785 by M. Rosien.
cea1469d 7786
0fb669f9
PE
77872005-05-13 Paul Eggert <eggert@cs.ucla.edu>
7788
7789 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
7790 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
7791 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
7792 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
7793 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
7794 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
7795 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
7796 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
7797 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
7798 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
7799 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
7800 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
7801 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
7802 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
7803 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
7804 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
7805 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
7806 src/derives.h, src/files.c, src/files.h, src/getargs.c,
7807 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
7808 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
7809 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
7810 src/output.h, src/parse-gram.c, src/parse-gram.h,
7811 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
7812 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
7813 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
7814 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
7815 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
7816 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
7817 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
7818 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
7819 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
7820 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
7821 tests/reduce.at, tests/regression.at, tests/sets.at,
7822 tests/synclines.at, tests/testsuite.at, tests/torture.at:
7823 Update FSF postal mail address.
7824
51f4735e
PE
78252005-05-11 Paul Eggert <eggert@cs.ucla.edu>
7826
7827 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
7828 Problem reported by Ralf Menzel.
7829
80ce3401
PE
78302005-05-01 Paul Eggert <eggert@cs.ucla.edu>
7831
7832 * tests/actions.at: Test that stack overflow invokes destructors.
7833 From Marcus Holland-Moritz.
7834 * data/yacc.c (yyerrlab): Move the code that destroys the stack
7835 from here....
7836 (yyreturn): to here. That way, destructors are called properly
7837 even if the stack overflows, or the user calls YYACCEPT or
7838 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
7839 (yyoverflowlab): Destroy the lookahead.
7840
78412005-04-24 Paul Eggert <eggert@cs.ucla.edu>
7842
7843 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
7844
72f000b0
PE
78452005-04-17 Paul Eggert <eggert@cs.ucla.edu>
7846
7847 * NEWS: Bison-generated C parsers no longer quote literal strings
7848 associated with tokens.
7849 * src/output.c (prepare_symbols): Don't escape strings,
7850 since users don't want to see C escapes.
7851 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
7852 in diagnostics.
c19683bb 7853 * tests/input.at (Torturing the Scanner): Likewise.
72f000b0
PE
7854 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
7855
1094323f
PE
78562005-04-16 Paul Eggert <eggert@cs.ucla.edu>
7857
7858 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
7859 the data size is known to be too small and we can't increase it.
7860 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
7861
ca407bdf
PE
78622005-04-15 Paul Eggert <eggert@cs.ucla.edu>
7863
7864 * src/parse-gram.y: Include quotearg.h.
7865 (string_as_id): Quote $1 before using it as a key, since the
7866 lexer no longer quotes it for us.
7867 (string_content): Don't strip quotes, since lexer no longer
7868 quotes it for us.
7869 * src/scan-gram.l: Include quotearg.h.
7870 ("\""): Omit quote.
7871 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
7872 a key, since the rest of the lexer doesn't quote it.
7873 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
7874 * tests/regression.at (Token definitions): Check for backslashes
7875 in token strings.
7876
7877 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
7878 (YYSIZE_T): Define to unsigned long int when using an older compiler.
7879 (yyparse): Revamp code to generate long syntax error message, to
7880 make it easier to translate, and to avoid problems with arithmetic
7881 overflow. Change "virtual memory" to "memory" in diagnostic, since
7882 we don't know whether the memory is virtual.
7883
1ce59070
PE
78842005-04-13 Paul Eggert <eggert@cs.ucla.edu>
7885
7886 * NEWS: Bison-generated C parsers now use the _ macro to
7887 translate strings.
7888 * data/yacc.c (_) [!defined _]: New macro.
7889 All English strings wrapped inside this macro.
7890 * doc/bison.texinfo (Bison Parser): Document _.
7891 * po/POTFILES.in: Include src/parse-gram.c, since it now
7892 includes translateable strings that parse-gram.y doesn't.
7893
a749a695
PE
78942005-04-12 Paul Eggert <eggert@cs.ucla.edu>
7895
7896 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
7897 reverting the 2004-10-11 change to this function.
7898 (symbol_check_alias_consistency): Don't call symbol_type_set
7899 if the type name is already correct.
7900 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
7901
8fb1053b
PE
79022005-03-25 Paul Eggert <eggert@cs.ucla.edu>
7903
7904 * tests/regression.at (Token definitions): Don't use a token named
7905 c, as that generates a "#define c ..." that runs afoul of buggy
7906 stdlib.h that uses the identifier c as a member of struct
7907 drand48_data. Problem reported by Horst Wente.
7908
ff498c4a
PE
79092005-03-21 Paul Eggert <eggert@cs.ucla.edu>
7910
7911 * bootstrap: Change translation URL from
7912 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
7913 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
7914 redirection glitches. Problem reported by twlevo@xs4all.nl.
7915
65211d70
PE
79162005-03-20 Paul Eggert <eggert@cs.ucla.edu>
7917
7918 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
7919 after operands; POSIX says this isn't portable for the c99 command.
7920
9577fb1f
PE
79212005-03-18 Paul Eggert <eggert@cs.ucla.edu>
7922
7923 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
7924 immediately if a data overrun has occurred; this may help us track
7925 down what may be a spurious failure on MacOS.
7926
78b178f7
PE
79272005-03-17 Paul Eggert <eggert@cs.ucla.edu>
7928
a2599d0f
PE
7929 Respond to problems reported by twlevo@xs4all.nl.
7930
7931 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
7932
78b178f7
PE
7933 * src/vcg.h: Comment fix.
7934 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
7935 (G_CMAX): Change to -1 instead of INT_MAX.
7936
7937 * data/yacc.c (yyparse): Omit spaces before #line.
78b178f7 7938
7296e729
PE
79392005-03-15 Paul Eggert <eggert@cs.ucla.edu>
7940
7941 * src/tables.c (state_number_to_vector_number): Put it inside an
7942 "#if 0", since it's not currently used. Problem reported by
7943 Roland McGrath.
7944
05ac60f3
PE
79452005-03-06 Paul Eggert <eggert@cs.ucla.edu>
7946
7947 * src/output.c (escaped_output): Renamed from
7948 escaped_file_name_output, since we now use it for symbol tags as
7949 well. All uses changed.
7950 (symbol_destructors_output, symbol_printers_output):
7951 Escape symbol tags too.
7952 Problem reported by Matyas Forstner in
7953 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
7954
7955 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
7956 not needed.
7957 * src/output.c (user_actions_output, token_definitions_output,
7958 symbol_destructors_output, symbol_printers_output): Likewise.
7959 * src/reader.c (prologue_augment): Likewise.
7960 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
7961
7962 * src/vcg.c (output_edge): Don't quote linestyle arg.
7963 Problem reported by twlevo@xs4all.nl.
7964
7eb453ac
PE
79652005-02-28 Paul Eggert <eggert@cs.ucla.edu>
7966
7967 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
7968 example, reported by Derek M Jones. Also, make the example even
7969 more outrageous, to better illustrate how bad the problem is.
7970
4c04c52a
PE
79712005-02-24 Paul Eggert <eggert@cs.ucla.edu>
7972
7973 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
7974 putsym. Typo reported by Sebastian Piping.
7975
a61e1620
PE
79762005-02-23 Paul Eggert <eggert@cs.ucla.edu>
7977
7978 * doc/bison.texinfo (Language and Grammar): some -> same
7979 (Epilogue): int he -> in the
7980 Typos reported by Sebastian Piping via Justin Pence.
7981
9ec93868
PE
79822005-02-07 Paul Eggert <eggert@cs.ucla.edu>
7983
7984 * tests/glr-regression.at (Improper handling of embedded actions
7985 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
7986 embedded actions and $-N in GLR parsers", work around an Autoconf bug
7987 with dollar signs in test names.
7988 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
7989 for a similar reason.
7990
73ce7e7e
PE
79912005-01-28 Paul Eggert <eggert@cs.ucla.edu>
7992
7993 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
7994 wants to redefine G_VIEW.
7995
2e72b98e
PE
79962005-01-27 Paul Eggert <eggert@cs.ucla.edu>
7997
7998 * src/vcg.c (get_view_str): Remove case for normal_view.
7999 Problem reported by twlevo@xs4all.nl.
8000
e0d634e5
PE
80012005-01-24 Paul Eggert <eggert@cs.ucla.edu>
8002
ccf830a4
PE
8003 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
8004 Problem reported by twlevo@xs4all.nl.
8005
e0d634e5
PE
8006 * doc/bison.texinfo: Change @dircategory from "GNU programming
8007 tools" to "Software development". Requested by Richard Stallman
8008 via Karl Berry.
8009
7bbc8cb0
PE
80102005-01-23 Paul Eggert <eggert@cs.ucla.edu>
8011
8012 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
8013 Problem reported by twlevo@xs4all.nl.
8014
08b770bc
PE
80152005-01-21 Paul Eggert <eggert@cs.ucla.edu>
8016
8017 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
8018 keyword; it's not needed with modern compilers, and it doesn't
8019 affect correctness with older compilers. Suggested by
8020 twlevo@xs4all.nl.
8021
95f22ad2
PE
80222005-01-17 Paul Eggert <eggert@cs.ucla.edu>
8023
8024 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
8025 gcc -Wswitch-default.
8026 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
8027 * data/yacc.c (yyparse): Likewise.
8028
d229d15c
PE
80292005-01-12 Paul Eggert <eggert@cs.ucla.edu>
8030
8031 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
8032 already. Let config.h define any nonstandard values.
8033
ecadd90f
PE
80342005-01-10 Paul Eggert <eggert@cs.ucla.edu>
8035
8036 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
8037 for the benefit of slower hosts. Problem reported by
8038 Nelson H. F. Beebe.
8039
213744b5
PE
80402005-01-07 Paul Eggert <eggert@cs.ucla.edu>
8041
8042 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
8043 being defined and not used.
8044 * data/lalr1.cc (yyparse): Likewise.
8045 Use "if (false)" rather than "if (0)".
8046
249d3236
PE
80472005-01-05 Paul Eggert <eggert@cs.ucla.edu>
8048
8049 * TODO: Mention that we should allow NUL bytes in tokens.
8050
987cc1fb
PE
80512005-01-02 Paul Eggert <eggert@cs.ucla.edu>
8052
8053 * src/scan-skel.l (<<EOF>>): Don't close standard output.
8054 Problem reported by Hans Aberg.
8055
08fe02d9
PE
80562005-01-01 Paul Eggert <eggert@cs.ucla.edu>
8057
8058 * src/getargs.c (version): Happy new year; update overall
8059 program copyright date from 2004 to 2005.
8060
8061 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
8062 Problem reported by Hans Aberg.
8063 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
8064 (Output file names.): Add a test for the case when standard output
8065 is closed.
8066
010c0266
PE
80672004-12-26 Paul Eggert <eggert@cs.ucla.edu>
8068
8069 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
8070 to fix an oversight in the Bison 2.0 manual.
8071
da12206a
PE
80722004-12-25 Paul Eggert <eggert@cs.ucla.edu>
8073
8074 * NEWS: Version 2.0. Reformat the existing news items since
8075 1.875, so that related items are grouped together.
3a4734aa 8076 * configure.ac (AC_INIT): Bump version to 2.0.
da12206a
PE
8077 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
8078
c935d934
PE
8079 * tests/torture.at (Exploding the Stack Size with Alloca): Set
8080 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
8081 otherwise, we're not testing alloca. Unfortunately there's no
8082 simple way to consult HAVE_ALLOCA here.
8083
da12206a
PE
8084 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
8085 for yymsg, too.
8086
8087 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
8088 hand. This avoids a warning about comparing int to size_t when
8089 GCC warnings are enabled.
8090
0a2c5137
PE
80912004-12-22 Paul Eggert <eggert@cs.ucla.edu>
8092
d7e14fc0
PE
8093 * NEWS: Bison-generated parsers no longer default to using the
8094 alloca function (when available) to extend the parser stack, due
8095 to widespread problems in unchecked stack-overflow detection.
8096 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
8097 responsibility to set it to a positive value. This lets the user
8098 specify a value that is not a preprocessor constant.
8099 * data/yacc.c (YYMAXDEPTH): Likewise.
8100 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
8101 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
8102 to be a compile-time constant. However, explain the constraints on it.
8103 Also, explain the constraints on YYINITDEPTH.
8104 (Table of Symbols): Explain that alloca is no longer the default.
8105 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
8106 to 1.
8107
0a2c5137
PE
8108 * doc/bison.texinfo (Location Default Action): Mention that n must
8109 be zero when k is zero. Suggested by Frank Heckenbach.
8110
e019c247
AD
81112004-12-22 Akim Demaille <akim@epita.fr>
8112
8113 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
8114 (parser::state_type, parser::semantic_type, parser::location_type):
8115 Private, not public.
8116 (parser::parse): Return ints, not bool.
8117 Returning a bool introduces a problem: 0 corresponds to false, and
8118 it seems weird to return false on success. Returning true changes
8119 the conventions for yyparse.
8120 Alternatively we could return void and send an exception.
8121 There is no clear consensus (yet?).
8122 (state_stack, semantic_stack, location_stack): Rename as...
8123 (state_stack_type, semantic_stack_type, location_stack_type): these.
8124 Private, not public.
8125 * tests/c++.at: New.
8126 * tests/testsuite.at, tests/Makefile.am: Adjust.
8127
72731bb7
AD
81282004-12-21 Akim Demaille <akim@epita.fr>
8129
8130 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
8131
9a0d8bec
AD
81322004-12-21 Akim Demaille <akim@epita.fr>
8133
8134 Don't impose std::string for filenames.
8135
8136 * data/lalr1.cc (b4_filename_type): New.
8137 (position::filename): Use it.
8138 (parser.hh): Move the inclusion of stack.hh and location.hh below
8139 the user code, so that needed headers for the filename type can be
8140 included first.
72731bb7
AD
8141 Forward declare them before the user code.
8142 * tests/Makefile.am (check-local, installcheck-local): Pass
8143 TESTSUITEFLAGS to the TESTSUITE.
9a0d8bec 8144
99880de5
AD
81452004-12-20 Akim Demaille <akim@epita.fr>
8146
8147 Use more STL like names: my_class instead of MyClass.
8148
8149 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
8150 (SemanticStack, SemanticType, StateStack, StateType)
8151 (TokenNumberType, Stack, Slice, Traits, Parser::location)
8152 (Parser::value): Rename as...
8153 (location_stack, location_type, rhs_number_type, semantic_stack)
8154 (semantic_type, state_stack, state_type, token_number_type, stack)
8155 (slice, traits, parser::yylloc, parser::yylval): these.
8156
8157 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
8158
9bec482e
PE
81592004-12-19 Paul Eggert <eggert@cs.ucla.edu>
8160
8161 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
8162 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
8163
f6fbd3da
PE
81642004-12-17 Paul Eggert <eggert@cs.ucla.edu>
8165
8166 Remove uses of 'short int' and 'unsigned short int'. This raises
8167 some arbitrary limits. It uses more memory but nowadays that's
8168 not much of an issue.
8169
8170 This change does not affect the generated parsers; that's a different
8171 task, as some users will want to conserve memory there.
8172
8173 Ideally we should use size_t to represent all object counts, and
8174 something like ptrdiff_t to represent signed differences of object
8175 counts; but that will require more code-cleanup than I have the
8176 time to do right now.
8177
8178 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
8179 Use size_t, not int or short int, to count objects.
8180 * src/closure.c (nritemset, closure): Likewise.
8181 * src/closure.h (nritemset, closure): Likewise.
8182 * src/nullable.c (nullable_compute): Likewise.
8183 * src/print.c (print_core): Likewise.
8184 * src/print_graph.c (print_core): Likewise.
8185 * src/state.c (state_compare, state_hash): Likewise.
8186 * src/state.h (struct state): Likewise.
8187 * src/tables.c (default_goto, goto_actions): Likewise.
8188
8189 * src/gram.h (rule_number, rule): Use int, not short int.
8190 * src/output.c (prepare_rules): Likewise.
8191 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
8192 errs, reductions): Likewise.
8193 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
8194 Likewise.
8195 * src/tables.c (vector_number, tally, action_number,
8196 ACTION_NUMBER_MINIMUM): Likewise.
8197 * src/output.c (muscle_insert_short_int_table): Remove.
8198
efeed023
AD
81992004-12-17 Akim Demaille <akim@epita.fr>
8200
8201 * data/lalr1.cc: Extensive Doxygenation.
8202 (error_): Rename as...
8203 (error): this, since it is visible to the user.
8204 Adjust callers.
8205 (Parser::message): Now an automatic variable from...
8206 (Parser::yyreport_syntax_error_): here.
8207 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
8208 Parser::error.
8209 * tests/input.at: Escape $.
8210
bc82c5a5
PE
82112004-12-16 Paul Eggert <eggert@cs.ucla.edu>
8212
8213 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
8214 Parenthesize rhs to avoid obscure problems with mistakes like
8215 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
8216 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
8217 b4_rhs_location): Likewise.
8218 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
8219 b4_rhs_location): Likewise.
8220
fd19f271
AD
82212004-12-16 Akim Demaille <akim@epita.fr>
8222
8223 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
8224 yacc.c: be sure to stay within yycheck_.
8225 * tests/actions.at: Re-enable C++ tests.
8226
10454ea4
AD
82272004-12-16 Akim Demaille <akim@epita.fr>
8228
8229 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
8230 real.
8231
c5b95ccf
AD
82322004-12-16 Akim Demaille <akim@epita.fr>
8233
8234 Use #define to handle the %name-prefix.
8235
8236 * data/glr.c, data/yacc.c: Comment changes.
8237 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
8238 so that one can refer to yylex in the parser file, and have it
8239 renamed, as is the case with other skeletons.
8240
617a8f12
AD
82412004-12-16 Akim Demaille <akim@epita.fr>
8242
8243 Move lalr1.cc internals into yy*.
8244
8245 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
8246 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
8247 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
8248 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
8249 (empty_, final_, terror_, errcode_, ntokens_)
8250 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
8251 (looka_, ilooka_, error_range_, nerrs_):
8252 Rename as...
8253 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
8254 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
8255 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
8256 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
8257 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
8258 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
8259 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
8260 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
8261 these.
8262
1e547e6e
PE
82632004-12-15 Paul Eggert <eggert@cs.ucla.edu>
8264
8265 Fix some problems reported by twlevo at xs4all.
8266 * src/symtab.c (symbol_new): Report an error if the input grammar
8267 contains too many symbols. This is better than calling abort() later.
8268 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
8269 (struct node, struct graph):
8270 Rename member expand to stretch. All uses changed.
8271 (struct graph): Remove member layoutalgorithm. All uses removed.
8272 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
8273 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
8274 All uses changed.
8275 (N_STRETCH): Rename from N_EXPAND. All uses changed.
8276
735d6bd4
AD
82772004-12-15 Akim Demaille <akim@epita.fr>
8278
8279 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
8280 Add more Doxygen comments.
8281 (symprint_, stack_print_, reduce_print_, destruct_, pop)
8282 (report_syntax_error_, translate_): Rename as...
8283 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
8284 (yypop_, yyreport_syntax_error_, yytranslate_): this.
8285
2e1f5829
AD
82862004-12-15 Akim Demaille <akim@epita.fr>
8287
8288 * data/lalr1.cc (lex_): Rename as...
8289 (yylex_): this.
8290 Move the trace here.
8291 Take the %name-prefix into account.
8292 Reported by Alexandre Duret-Lutz.
8293
a3cb6248
AD
82942004-12-15 Akim Demaille <akim@epita.fr>
8295
8296 Simplify the C++ parser constructor.
8297
8298 * data/lalr1.cc (debug_): Rename as...
8299 (yydebug_): so that the parser's internals are always in the yy*
8300 pseudo namespace.
8301 Adjust uses.
8302 (b4_parse_param_decl): Remove the leading comma as it is now only
8303 called as unique argument list.
8304 (Parser::Parser): Remove the constructor accepting a location and
8305 an initial debugging level.
8306 Remove from the other ctor the argument for the debugging level.
8307 (debug_level_type, debug_level, set_debug_level): New.
8308
8309 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
8310 constructor calls.
8311
07fed891
AD
83122004-12-15 Akim Demaille <akim@epita.fr>
8313
8314 Remove b4_root related material: failure experiment
a3cb6248 8315 (which goal was to allow to derive from a class).
07fed891
AD
8316
8317 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
8318 definitions and uses.
8319
e603eaa5
PE
83202004-12-14 Paul Eggert <eggert@cs.ucla.edu>
8321
8322 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
8323 not 2, since it's not portable to subtract 1 from the start of an
8324 array. The new item 0 is never set or used. All uses changed.
8325
8326 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
8327 the default definition of YYLLOC_DEFAULT. Problem reported
8328 by Frank Heckenbach.
8329
fafb007d
PE
83302004-12-12 Paul Eggert <eggert@cs.ucla.edu>
8331
8332 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
8333 the normal case and one for the error case. Just use the
8334 first one uniformly. Problem reported by Frank Heckenbach.
8335 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
8336 use exactly the same macro in both places.
8337 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
8338 so that the normal-case YYRHSLOC works for the error case too.
8339 All uses changed.
8340 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
8341 (YYLLOC_DEFAULT): Use the same macro as glr.c.
8342 * doc/bison.texinfo (Location Default Action): Don't claim that
8343 we have an array of locations. Use the same macro for both glr
8344 and lalr parsers. Mention YYRHSLOC. Mention what happens when
8345 the index is 0.
8346
48814dcd
PE
83472004-12-10 Paul Eggert <eggert@cs.ucla.edu>
8348
a4e1a53b
PE
8349 * HACKING: Update email addresses to send announcements to.
8350
48814dcd
PE
8351 * configure.ac (AC_INIT): Bump version to 1.875f.
8352
337116ba
PE
83532004-12-10 Paul Eggert <eggert@cs.ucla.edu>
8354
8355 * NEWS: Version 1.875e.
8356 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
8357
8358 * src/scan-skel.l: Include "complain.h", for "fatal".
8359
8360 * src/relation.h (relation_print, relation_digraph):
8361 Relation sizes are of type relation_node, not size_t (this is
8362 merely a doc fix, since the two types are equivalent).
8363 (relation_transpose): Relation sizes are of type relation_node,
8364 not int.
8365 * src/relation.c: Likewise.
8366 (top, infinity): Now of type relation_node, not int.
8367 (traverse, relation_transpose): Use relation_node, not int.
8368
8369 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
8370 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
8371 (yyparse): Remove unused local introduced in 2004-10-25 patch.
8372
8373 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
68b082af 8374 specifying whether the test should be skipped. Use it tp
337116ba 8375 specify that the [%defines %skeleton "lalr1.cc"] tests currently
68b082af 8376 fail on some hosts, and should be skipped.
337116ba 8377
da2a7671
PE
83782004-12-08 Paul Eggert <eggert@cs.ucla.edu>
8379
8380 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
8381 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
8382 unless otherwise specified below.
8383
8384 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
8385 to allocate kernel_base, kernel_items, kernel_size, since
8386 they needn't be initialized to 0.
8387 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
8388 * src/closure.c (new_closure): Likewise, for itemset.
8389 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
8390 * src/lalr.c (set_goto_map): Likewise, for temp_map.
8391 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
8392 (build_relations): Likewise for edge, states1, includes.
8393 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
8394 * src/reader.c (packgram): Likewise, for ritem, rules.
8395 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
8396 * src/relation.c (relation_digraph): Likewise for VERTICES.
8397 (relation_transpose): Likewise for new_R, end_R.
8398 * src/symtab.c (symbols_token_translations_init): Likewise for
8399 token_translations.
8400 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
8401 (token_actions): Likewise for yydefact, actrow, conflrow,
8402 conflict_list.
8403 (save_column): Likewise for froms[symno], tos[symno].
8404 (goto_actions): Likewise for state_count.
8405 (pack_table): Likewise for base, pos, check.
8406 (tables_generate): Likewise for width.
8407
8408 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
8409 for initial core. Just have a separate core, so we needn't worry
8410 about whether kernel_size and kernel_base are initialized.
8411
8412 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
8413 kernel_size, kernel_items): Remove unnecessary initialization.
8414 * src/conflicts.c (conflicts): Likewise.
8415 * src/derives.c (derives): Likewise.
8416 * src/muscle_tablc (muscle_insert): Likewise.
8417 * src/relation.c (relation_digraph): Likewise.
8418 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
8419 conflrow, conflict_table, conflict_list, table, check):
8420 Likewise.
8421
8422 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
8423 This is because all callers pass unsigned int.
8424 * src/closure.h (new_closure): Likewise.
8425
8426 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
8427 (build_relations): Initialize includes[i] in all cases.
8428 * src/reader.c (packgram): Always initialize rules[ruleno].prec
8429 and rules[ruleno].precsym. Initialize members in order.
8430 * src/relation.c (relation_transpose): Always initialize new_R[i]
8431 and end_R[i].
8432 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
8433
8434 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
8435 conflict_list[0] was always 0, but now it isn't initialized.
8436
8437 * src/table.c (table_grow): When conflict_table grew, the grown
8438 area wasn't cleared. Fix this.
8439
8440 * lib/.cvsignore: Add strdup.c, strdup.h.
8441 * m4/.cvsignore: Add strdup.m4.
8442
00baeeac
PE
84432004-12-07 Paul Eggert <eggert@cs.ucla.edu>
8444
8445 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
8446 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
8447 GOTO_NUMBER_MAXIMUM, since we occasionally compute
8448 ngotos + 1 without checking for overflow.
8449 (build_relations): Use END_NODE, not -1, to denote end of edges.
8450 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
8451 build_relations): Use goto_number, not int, for goto numbers.
8452 * src/tables.c (save_column, default_goto): Likewise.
8453
be3d9d42
AD
84542004-11-23 Akim Demaille <akim@epita.fr>
8455
8456 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
8457 of #defining from yystype.
8458 Don't typedef yystype, C++ does not need it.
8459 This lets it possible to forward declare it as union.
8460
78e526d5
PE
84612004-11-23 Paul Eggert <eggert@cs.ucla.edu>
8462
8463 * bootstrap (gnulib_modules): Add extensions.
8464 Problem reported by Jim Meyering.
8465
afbb696d
PE
84662004-11-22 Paul Eggert <eggert@cs.ucla.edu>
8467
8468 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
8469 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
8470 src/system.h, src/tables.c: XFREE -> free, to accommodate
8471 recent change to gnulib xalloc.h.
78e526d5 8472 Problem reported by Jim Meyering.
afbb696d 8473
c1f8f16a
AD
84742004-11-17 Akim Demaille <akim@epita.fr>
8475
8476 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
8477
db7e5eb5 84782004-11-17 Akim Demaille <akim@epita.fr>,
9a1e9989
AD
8479 Alexandre Duret-Lutz <adl@gnu.org>
8480
8481 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
8482 changes.
8483 (YYCDEBUG): Adjust.
8484 Use it instead of cdebug_.
8485 (Parser::debug_stream, Parser::set_debug_stream): New.
8486 (Parser::symprint_): Define cdebug_ for temporary backward
8487 compatibility.
8488 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
8489 debug_stream ().
8490
68e11668
AD
84912004-11-17 Akim Demaille <akim@epita.fr>
8492
8493 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
8494 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
8495 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
8496 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
8497
97cbc73e
PE
84982004-10-27 Paul Eggert <eggert@cs.ucla.edu>
8499
8500 * data/glr.c (yyloc_default): Remove; not used.
8501 Problem reported by Frank Heckenbach.
8502
e342c3be
AD
85032004-10-25 Akim Demaille <akim@epita.fr>
8504
8505 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
8506 Introduce another definition to address simple location arrays.
8507 (yyGLRStack): New member: yyerror_range.
8508 (yyrecoverSyntaxError, yyparse): Update it.
8509 (yyrecoverSyntaxError): Use it when shifting the error token to
8510 have an accurate range, equivalent to the one computed by both
8511 yacc.c and lalr1.cc.
8512 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
8513 that column numbers start at column 0, as per GNU Coding
8514 Standards, the others tests, and the doc.
8515 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
8516 Adjust to the above change (first column is 0).
8517 And adjust the location of the "<error>", now covering the whole
8518 line.
8519
93602feb 85202004-10-22 Akim Demaille <akim@epita.fr>
04098407 8521 and Paul Eggert <eggert@cs.ucla.edu>
93602feb
PE
8522
8523 Remove some arbitrary limits on goto numbers and relations.
8524 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
8525 initial values, since they're never used.
8526 (set_goto_map): ngotos is now unsigned, so test for overflow
8527 by seeing whether it wraps around to zero.
8528 * src/lalr.h (goto_number): Now size_t, not short int.
8529 (GOTO_NUMBER_MAXIMUM): Remove.
8530 * src/relation.c (relation_print, traverse, relation_transpose):
8531 Check for END_NODE rather than looking at sign.
8532 * src/relation.h (END_NODE): New macro.
8533 (relation_node): Now size_t, not short int.
8534
dba08b04
PE
85352004-10-22 Paul Eggert <eggert@cs.ucla.edu>
8536
8537 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
8538 keyword, not an identifier. Problem reported by Baron Schwartz in
8539 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
8540
df09ef2e
AD
85412004-10-11 Akim Demaille <akim@epita.fr>
8542
8543 * src/symtab.c (symbol_check_alias_consistency): Also check
8544 type names, destructors, and printers.
8545 Reported by Alexandre Duret-Lutz.
8546 Recode the handling of associativity and precedence in terms
8547 of symbol_precedence_set.
8548 Accept no redeclaration at all, not even equal to the previous
8549 value.
8550 (redeclaration): New.
8551 Use it to factor redeclaration complaints.
8552 (symbol_make_alias): Don't set the type of the alias, let
8553 symbol_check_alias_consistency do it as for other features.
8554 * src/symtab.h (symbol): Add new member prec_location, and
8555 type_location.
8556 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
8557 * tests/input.at (Incompatible Aliases): New.
8558
146bc99d
PE
85592004-10-09 Paul Eggert <eggert@cs.ucla.edu>
8560
8561 .cvsignore fixes to accommodate gnulib changes,
8562 and the practice of naming build directories "_build".
8563 * .cvsignore: Add "_*". Sort.
8564 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
8565 * m4/.cvsignore: Add "*_gl.m4".
8566
e503aa60
AD
85672004-10-06 Akim Demaille <akim@epita.fr>
8568
8569 * src/parse-gram.y (add_param): Fix the truncation of trailing
8570 spaces.
8571
b4a20338
AD
85722004-10-05 Akim Demaille <akim@epita.fr>
8573
8574 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
8575 whether the reducion was empty or not. This leaves room to
8576 improve the use of YYLLOC_DEFAULT in such a case.
8577 lalr1.cc is still experimental, so changing this is acceptable.
8578 And finally, there are probably not many users who changed the
8579 handling of locations in GLR, so changing is admissible too.
8580
8581 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
8582 empty reduction, set @$ to an empty location ending the previously
8583 stacked symbol.
8584 Adjust uses to make sure the code is triggered on empty
8585 reductions.
8586 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
8587 expected output: empty reductions have empty locations.
8588
f85a5e6f
AD
85892004-09-29 Akim Demaille <akim@epita.fr>
8590
8591 * data/lalr1.cc: Move towards a more standard C++ coding style
8592 for templates: Class < T > -> Class<T>.
8593
b203fc2c
AD
85942004-09-29 Akim Demaille <akim@epita.fr>
8595
8596 * data/lalr1.cc: Reinstall the former ctor, for sake of
8597 compatibility, but warn it will be removed.
8598 Move towards a more standard C++ coding style (i.e., type *var ->
8599 type* var).
8600
5b7e1e73
PE
86012004-09-27 Paul Eggert <eggert@cs.ucla.edu>
8602
3fee967f
PE
8603 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
8604 since it's less likely to work if NULs are involved in the future.
5b7e1e73 8605
0dcca5c2
AD
86062004-09-27 Akim Demaille <akim@epita.fr>
8607
8608 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
8609
6dde1c82
AD
86102004-09-27 Akim Demaille <akim@epita.fr>
8611
8612 * data/lalr1.cc (b4_parse_param_decl_1): New.
b203fc2c 8613 (b4_parse_param_decl): Use it to have different names between attribute
6dde1c82
AD
8614 and argument names.
8615 (b4_cc_constructor_call): Likewise.
8616
b233d555
AD
86172004-09-24 Akim Demaille <akim@epita.fr>
8618
8619 * src/parse-gram.y (add_param): Strip the leading and trailing
8620 blanks from a formal argument declaration.
8621 (YY_LOCATION_PRINT): New.
8622
619404e3
AD
86232004-09-24 Akim Demaille <akim@epita.fr>
8624
8625 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
8626 after the location.
8627
dd8d9022
AD
86282004-09-24 Akim Demaille <akim@epita.fr>
8629
8630 * doc/bison.texinfo (Table of Symbols): Sort.
8631
0092f063
AD
86322004-09-21 Akim Demaille <akim@epita.fr>
8633
8634 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
8635 the useless parentheses.
8636 Suggested by Paul Eggert.
8637
451364ed
AD
86382004-09-20 Akim Demaille <akim@epita.fr>
8639
8640 Let the initial-action act on the look-ahead, and use it for the
8641 "initial push" (corresponding to an hypothetical beginning-of-file).
8642 And let lalr1.cc honor %initial-action.
8643
8644 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
8645 example.
8646 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
8647 (Parser::Parser): Remove the ctor that used to initialize it.
8648 (Parser::parse): Like in the other skeletons, issue the "starting
8649 parse" message before any action.
8650 Honor %initial-action.
8651 Initialize the stacks with the lookahead.
8652 * data/yacc.c: Let $$ and @$ in %initial-action designate the
8653 look-ahead.
8654 Push them in the stacks.
8655 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
8656
18d192f0
AD
86572004-09-20 Akim Demaille <akim@epita.fr>
8658
8659 * doc/bison.texinfo (Initial Action Decl): New.
8660
b8458aa5
AD
86612004-09-20 Akim Demaille <akim@epita.fr>
8662
8663 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
8664 clearer criterion to define it.
8665 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
8666 When reducing on an empty RHS, use the latest stacked location as
8667 location.
8668 yylloc is not always available.
8669 * data/glr.c: Likewise.
8670 Also, honor initial-actions.
8671
3fc16193
AD
86722004-09-20 Akim Demaille <akim@epita.fr>
8673
8674 * data/yacc.c (YY_LOCATION_PRINT): New.
8675 Define when we know YYLTYPE's structure, i.e., when the default
8676 YYLLOC_DEFAULT is used.
8677 * data/c.m4 (b4_yysymprint_generate): Use it.
8678 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
8679 value of the result.
8680 (error_start_): Replace with...
8681 (error_range_): this location array.
8682 This allows to replace code relying on the implementation of
8683 locations by portable code.
8684 * data/yacc.c (yylerrsp): Replace with...
8685 (yyerror_range): this.
8686 Every time a token is popped, update yyerror_range[0], to have an
8687 accurate location for the error token.
8688 * data/glr.c (YY_LOCATION_PRINT): New.
8689 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
8690 deference a pointer.
8691 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
8692 report the location in %printers.
8693
8694 * src/scan-skel.l: Instead of abort, report error messages to ease
8695 understanding skeleton scanning failures.
8696
ecfe33e7
AD
86972004-09-16 Akim Demaille <akim@epita.fr>
8698
8699 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
8700 (iterator, const_iterator): these, to be more in the C++ spirit.
8701 Also, return reverse iterators so that when displaying the stack
8702 we display its bottom first.
8703 (Parser::stack_print_, Parser::reduce_print_): Match the messages
8704 from yacc.c.
8705 We should probably use vector here though.
8706
1576d44d
AD
87072004-09-16 Akim Demaille <akim@epita.fr>
8708
8709 Have more complete shift traces.
8710
8711 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
8712 to report Shifts instead of ad hoc YYDPRINTF invocations,
8713 including for the error token.
8714 * data/lalr1.cc (symprint_): Output the location.
8715 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
8716 output the location within the %printer.
8717 Activate GLR tests, at least to make sure they compile properly.
8718 They still don't pass though.
8719 * tests/calc.at: Adjust expect verbose output, since now "Entering
8720 state..." is on a different line than the "Shifting" message.
8721
9c66f418
AD
87222004-09-08 Akim Demaille <akim@epita.fr>
8723
8724 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
8725 Bison directive from the Bison file to the invocation of this
8726 macro, so that these directives are passed to
8727 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
8728 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
8729 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
8730 the extra Bison directives instead of the whole series.
8731 Change the grammar so that there are recoverable errors, and
8732 unrecoverable errors. Now we can have the parser give up before
8733 consuming the whole input. As a result we now can observe that
8734 the lookahead is freed when needed.
8735 Change the parser source to parse argv[1] instead of a hard coded
8736 string.
8737 Simplify yylex, and give a value and location to EOF.
8738 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
8739 passed directives already coded in the file.
8740 Add some tests to check the location of "error".
8741 For some tests, the C++ parser is correct, and not yacc.c.
8742 For other tests, they provide different, but unsatisfying, values,
8743 so keep the C++ value so that at least one parser is "correct"
8744 according to the test suite.
8745 (Actions after errors): Remove, this is subsumed by the
8746 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
8747
52d5733f
AD
87482004-09-06 Akim Demaille <akim@epita.fr>
8749
8750 * data/lalr1.cc: Adjust the indentation of the labels.
04098407 8751 (Parser::pop): New.
52d5733f
AD
8752 Use it.
8753
a0e68930
AD
87542004-09-06 Akim Demaille <akim@epita.fr>
8755
8756 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
8757 argument, an informative message.
8758 Call YY_SYMBOL_PRINT.
8759 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
8760 * data/lalr1.cc (destruct_): Likewise.
8761 In addition, no longer depend on b4_yysymprint_generate and
8762 b4_yydestruct_generate to generate these functions, do it "by
8763 hand".
8764
e757bb10
AD
87652004-09-03 Akim Demaille <akim@epita.fr>
8766
8767 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
8768 invoked, yydestruct the lookahead.
8769 * tests/calc.at (Calculator $1): Update the expected lengths of
8770 traces: there is an added line for the discarded lookahead.
8771 * doc/bison.texinfo (Destructor Decl): Some rewording.
8772 Define "discarded" symbols.
8773
0fe1f06d
AD
87742004-09-02 Akim Demaille <akim@epita.fr>
8775
8776 * data/lalr1.cc (translate_, destruct_): No reason to be static.
8777
284acc8b
AD
87782004-09-02 Akim Demaille <akim@epita.fr>
8779
8780 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
8781 (YYDSYMPRINTF): Rename as...
8782 (YY_SYMBOL_PRINT): this.
8783 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
8784 two.
8785 Use it instead of direct symprint_ calls.
8786 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
8787 one.
8788
a5eb1ed2
AD
87892004-09-02 Akim Demaille <akim@epita.fr>
8790
b7c72fe1
AD
8791 * data/lalr1.cc (b4_yysymprint_generate): New.
8792 (symprint_): New member function, defined when YYDEBUG.
8793 Use it consistently instead of token/nterm debugging output by
8794 hand.
a5eb1ed2
AD
8795 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
8796 %printer calls to use cdebug_ when using lalr1.cc.
8797
417141dd
AD
87982004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
8799
8800 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
8801 with #ifdef YYDEBUG.
8802
2fa09258
AD
88032004-08-26 Akim Demaille <akim@epita.fr>
8804
8805 * doc/bison.texinfo (Implementing Loops): Rename as...
8806 (Implementing Gotos/Loops): this.
8807
9378b508
PE
88082004-08-13 Paul Eggert <eggert@cs.ucla.edu>
8809
8810 Adjust to latest gnulib.
8811 * bootstrap (gnulib_modules): Add xalloc-die.
8812 Set LC_ALL=C so that file names sort consistently.
8813 Prefer the gnulib copies of gettext.m4, glibc21.m4,
8814 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
8815 uintmax_t.m4, ulonglong.m4.
8816 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
8817 po.m4 since we are now using _gl.m4 instead.
8818
87a8ad5c
PE
88192004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
8820
8821 * src/scan-action.l: Remove. Scanning of semantic actions is
8822 handled in scan-gram.l.
8823
dca81a78
PE
88242004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
8825
8826 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
8827
8828 * src/location.h (struct): The file member is a uniqstr.
8829 (equal_boundaries): Use UNIQSTR_EQ for comparison.
8830
c9cbf7c5
PE
88312004-07-22 Paul Eggert <eggert@cs.ucla.edu>
8832
8833 Fix bug with non-%union parsers that have printers or destructors,
8834 which led to a Bison core dump. Reported by Peter Fales in
8835 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2fa09258 8836
c9cbf7c5
PE
8837 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
8838 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
8839 not to our own type.
8840 * src/output.c (symbol_destructors_output, symbol_printers_output):
8841 Don't assume %union.
8842 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
8843 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
8844 UNION-FLAG. All callers changed.
8845 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
8846 Use type char, not unsigned int, when declaring an array of char;
8847 this lets us remove a cast.
8848 (Printers and Destructors): Add non-%union test cases.
8849
fa7e68c3
PE
88502004-06-21 Paul Eggert <eggert@cs.ucla.edu>
8851
8852 * doc/bison.texinfo: Minor editorial changes, mostly to the new
8853 GLR writeups. E.g., avoid frenchspacing and the future tense,
8854 change "lookahead" to "look-ahead", and change "wrt" to "with
8855 respect to".
2fa09258 8856
fa7e68c3
PE
88572004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8858
8859 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
8860 New sections, split off from the GLR Parsers section. Put the new
8861 Simple GLR Parser near the start of the GLR section, for clarity.
8862 Rewrite connective text.
8863
99a9344e
PE
88642004-06-21 Frank Heckenbach <frank@g-n-u.de>
8865
8866 * doc/bison.texinfo (Simple GLR Parsers): New section.
8867
8dd162d3
PE
88682004-06-21 Paul Eggert <eggert@cs.ucla.edu>
8869
8870 * NEWS, TODO, doc/bison.texinfo:
8871 Use "look-ahead" instead of "lookahead", to be consistent.
8872 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
8873 while we're fixing "look-ahead".
8874 * src/conflicts.c (shift_set): Renamed from shiftset.
8875 (look_ahead_set): Renamed from lookaheadset.
8876 * src/print.c: Likewise.
8877 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
8878 name for "lookahead".
8879 (report_types, usage): Likewise.
8880 * src/getargs.h (report_look_ahead_tokens): Renamed from
8881 report_lookaheads.
8882 * src/lalr.c (compute_look_ahead_tokens): Renamed from
8883 compute_lookaheads.
8884 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
8885 (look_ahead_tokens_print): Renamed from lookaheads_print.
8886 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
8887 state_rule_lookaheads_print.
8888 * src/state.h: Likewise.
8889 (reductions.look_ahead_tokens): Renamed from lookaheads.
8890 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
8891 AT_DATA_LOOKAHEADS_GRAMMAR.
8892
57a90331
PE
88932004-06-03 Paul Eggert <eggert@cs.ucla.edu>
8894
8895 * README: Update location of patched M4 distribution.
8896
8ed3234a
PE
88972004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
8898
8899 Don't assume the C++ compiler takes the same arguments as the C compiler
8900 (trivial change).
8901 * configure.ac (O0CXXFLAGS): New var.
8902 * tests/atlocal.in (CXXFLAGS): Use it.
8903
07971983
PE
89042004-05-29 Paul Eggert <eggert@cs.ucla.edu>
8905
8906 Fix some "make check" problems with C++ reported by
8907 Albert Chin-A-Young for Tru64 C++ in this thread:
8908 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
8909
8910 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
8911 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
8912 Output to a .cc file for C++, not to a .c file.
8913 * tests/calc.at (AT_CHECK_CALC): Likewise.
8914 * tests/regression.at (AT_CHECK_DANCER): Likewise.
8915 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
8916
29058652
PE
89172004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
8918
8919 * tests/calc.at, tests/actions.at: Workaround for SGI
8920 C++ compiler. (trivial change)
8921
62cb8a99
PE
89222004-05-27 Paul Eggert <eggert@cs.ucla.edu>
8923
fd418816
PE
8924 Spent a few hours checking out which prerequisite versions the
8925 current sources actually require. I went all the way back to
8926 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
8927 a seemingly endless set of combinations of versions more recent
8928 than that. The bottom line is that the current sources require
8929 fairly recent versions of the build tools, and it'll be some work
8930 to change this.
8931 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
8932 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
8933 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
8934 Add comments explaining why those particular versions are
8935 currently needed.
2fa09258 8936
62cb8a99
PE
8937 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
8938 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
161a71f3 8939 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
62cb8a99
PE
8940
8941 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
8942 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
8943
caa52c10
PE
89442004-05-26 Paul Eggert <eggert@cs.ucla.edu>
8945
8946 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
8947 0.11.5. Suggested by Bruno Haible.
8948 * bootstrap: Remove gettext version checking.
8949
8950 * doc/bison.texinfo (Decl Summary): Also mention that %union
8951 can depend on prerequisite types. Problem reported by Tim
8952 Van Holder.
8953
4bfd5e4e
PE
89542004-05-25 Paul Eggert <eggert@cs.ucla.edu>
8955
2cef3017
PE
8956 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
8957 * README-alpha: Don't tell people not to package this.
8958
b9c85d5c
PE
8959 * bootstrap: Don't assume $(...) works; use `...` instead.
8960 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
8961 gettext better.
8962
4bfd5e4e
PE
8963 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
8964 put into the -d output file, and mention what to do if YYSTYPE is
8965 defined as a macro.
8966
6a36ff94
PE
89672004-05-24 Paul Eggert <eggert@cs.ucla.edu>
8968
6712933e
PE
8969 Undo change made earlier today: it caused autopoint to not bring
8970 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
8971 autopoint's.
8972
8973 * bootstrap: Check that gettext version matches what's in
8974 configure.ac. Warn users to ignore robots.txt ERROR 404.
8975 * bootstrap: Undo today's earlier change (logged below).
8976 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
b9c85d5c 8977
6a36ff94
PE
8978 The gettext version checking is causing more trouble than it's
8979 curing; remove it. Problem reported by Paul Hilfinger.
8980
8981 * bootstrap: Issue a warning that one can expect a message
8982 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
8983 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
8984
209ea708
PE
89852004-05-23 Paul Eggert <eggert@cs.ucla.edu>
8986
8987 Ensure that the C++ compiler used for testing actually works on a
8988 simple test program; if not, skip the C++-related tests. Problem
8989 reported by Vin Shelton in:
161a71f3 8990 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
209ea708
PE
8991
8992 * m4/cxx.m4: New file.
8993 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
8994 * tests/atlocal.in (BISON_CXX_WORKS): Add.
8995 * tests/local.at (AT_COMPILE_CXX): Use it.
8996
41ca2549
PE
89972004-05-21 Paul Eggert <eggert@cs.ucla.edu>
8998
383e69dc
PE
8999 * data/glr.c (yylloc): Output this macro even if locations are not
9000 being generated, as the GLR parser needs it even in that case.
9001 Problem reported by Troy A. Johnson
9002 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
9003
41ca2549
PE
9004 * configure.ac (AC_INIT): Update to 1.875e.
9005
e476c87d
PE
90062004-05-21 Paul Eggert <eggert@cs.ucla.edu>
9007
9008 * NEWS: Version 1.875d.
9009 * configure.ac (AC_INIT): Likewise.
9010 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
9011
9012 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
9013 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
9014 lalr1.cc runs afoul of the first, and the last two are no longer
9015 supported by GCC 3.4.0.
9016 * README: Mention GNU m4 1.4 or later; mention m4 patches.
9017 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
9018
233a88ad
PE
90192004-05-06 Paul Eggert <eggert@cs.ucla.edu>
9020
9021 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
9022 unsigned int, for compatibility with latest gnulib hash module.
9023 * src/state.c (state_hash, state_hasher): Likewise.
9024 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
9025 * src/uniqstr.c (hash_uniqstr): Likewise.
e476c87d 9026
12ffdd28
PE
90272004-05-03 Paul Eggert <eggert@cs.ucla.edu>
9028
9029 * NEWS: Unescaped newlines are no longer allowed in char & strings.
9030
9031 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
9032 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
9033 character and string literals.
9034 (unexpected_end): New function.
9035 (unexpected_eof): Use it.
9036 (unexpected_newline): New function.
9037 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
9038 actions.
e476c87d 9039
12ffdd28
PE
9040 * NEWS: Document %expect-rr.
9041
9042 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
9043 Fix typo by replacing $1 with $option.
9044 Remove more 'intl'-related files.
9668e2be 9045 Don't DEFUN AM_INTL_SUBDIR twice.
12ffdd28
PE
9046
9047 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
9048 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
9049 strtoul.c.
9050 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
9051 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
9052 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
9053 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
9054 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
9055 * src/.cvsignore: Add *.output.
9056
9057 * src/parse-gram.y: Put copyright notice inside %{ %} so it
9058 gets copied to the output file.
e476c87d 9059
1f65350a
PE
90602004-04-28 Paul Eggert <eggert@twinsun.com>
9061
9062 Get files from the gnulib and po repositories, instead of relying
9063 on them being in our CVS. Upgrade to latest versions of gnulib
9064 and Automake.
9065
9066 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
9067 * bootstrap: Bootstrap from gnulib and po repositories.
9068 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
9069 * README-cvs: Document these changes. Remove version numbers from
9070 mentions of build tools, since they change so often. Mention Flex.
9071
9072 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
9073 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
9074 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
9075 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 9076 does this for us.
12ffdd28
PE
9077 (AC_ISC_POSIX): Remove; we no longer support this
9078 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
9079 (AC_HEADER_STDC): Remove: we now assume C89 or better.
9080 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
9081 Do not check for C89 headers, except for locale.h which is used
9082 by the Yacc library and must port to K&R hosts.
9083 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
9084 Do not check for C89 functions, except for setlocale which is
9085 used by the Yacc library.
9086 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
9087 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
9088 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
9089 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
9090 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
9091 AM_GNU_GETTEXT): Remove; now done by:
9092 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
9093 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
9094 for us.
9095
9096 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
9097 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
9098 Define to empty, as gnulib.mk will do the rest for us.
9099 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
9100 for us.
9101 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
9102 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
9103
9104 * src/files.c: Include gnulib's xstrndup.h.
9105
9106 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
9107 (REALLOC): Use xnrealloc, for likewise.
9108 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
9109 (strnlen, memrchr): Remove decls; functions no longer used.
9110 Include <stpcpy.h>.
9111
9112 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
9113 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
9114 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
9115 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
9116 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
9117 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
9118 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
9119 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
9120 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
9121 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
9122 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
9123 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
9124 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
9125 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
9126 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
9127 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
9128 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
9129 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
9130 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
9131 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
9132 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
9133 Remove, as these files are now generated automatically
9134 by bootstrap or automake.
9135
9136 * po/ChangeLog: Remove: all but one entry was a duplicate
9137 of this file, and I moved that 2000-11-02 entry here.
9138
9139 * config/.cvsignore: Add Makefile, depcomp, install-sh.
9140 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
9141 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
9142 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
9143 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
9144 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
9145 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
9146 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
9147 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
9148 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
9149 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
9150 xstrndup.h.
9151 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
9152 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
9153 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
9154 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
9155 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
9156 * src/.cvsignore: Remove *_.c.
9157
9158
9159 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
9160 support it. (The latest stable gzip doesn't.)
9161
91622004-04-27 Paul Eggert <eggert@twinsun.com>
9163
9164 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
9165 case, as stos_ is now used by destructors due to the 2004-02-09
9166 change.
9167
9168 Remove more K&R C support.
9169 * lib/libiberty.y (PARAMS): Remove. All uses removed.
9170 * lib/subpipe.c (errno): Remove decl.
9171 Include <stdlib.h> unconditionally.
9172 (EXIT_FAILURE): Remove macro.
9173 * src/complain.c (vfprintf, strerror): Remove.
9174 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
9175 unconditionally.
9176 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
9177 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
9178 (strchr, strspn, memchr): Remove decls.
9179 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
9180 unconditionally. Do not declare perror.
9181 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
9182 unconditionally.
9183
9184 * src/complain.c (_): Remove useless defn, as system.h defines this.
9185
9186 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
9187 with latest obstack.h.
9188 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
9189 to procedure types, as obstack.h now does that for us.
9190 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
9191
9192 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
9193 so that this include file can stand alone.
9194 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
9195 does this now. Include subpipe.h first after config.h, to
9196 test whether it can stand alone.
9197
9198 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
9199 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
9200 unused declaration.
9201
9202 * tests/synclines.at (%union synch line): Put a dummy member in
9203 the union, because empty unions aren't allowed in C. Caught
9204 by GCC 3.4.0.
9205
4f16766c
PE
92062004-04-13 Jim Meyering <jim@meyering.net>
9207
9208 * src/conflicts.c (conflicts_print): Correct format string typo:
9209 use `%%' to produce literal `%'. (trivial change)
9210
779e7ceb
PE
92112004-03-30 Paul Eggert <eggert@twinsun.com>
9212
9213 * src/getargs.c (version): Update copyright year to 2004.
9214
9215 * data/c.m4 (b4_int_type): Use 'short int' rather than
9216 'short', and similarly for 'long', 'unsigned', etc.
9217 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
9218 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
9219 yy_yypstack, yydumpstack): Likewise.
9220 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
9221 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
9222 Likewise.
9223 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
9224 yy_stack_print, yyparse): Likewise.
9225 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
9226 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
9227 * lib/bitset.c (bitset_print): Likewise.
9228 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
9229 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
9230 * lib/bitsetv.c (bitsetv_dump): Likewise.
9231 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
9232 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
9233 Likewise.
9234 * src/LR0.c (allocate_itemsets): Likewise.
9235 * src/gram.h (rule_number, rule): Likewise.
9236 * src/lalr.h (goto_number): Likewise.
9237 * src/nullable.c (nullable_compute): Likewise.
9238 * src/output.c (prepare_rules): Likewise.
9239 * src/relation.c (relation_print, relation_digraph): Likewise.
9240 * src/relation.h (relation_node): Likewise.
9241 * src/state.h (state_number, transitions, errs, reductions,
9242 struct state): Likewise.
9243 * src/symtab.h (symbol_number, struct symbol): Likewise.
9244 * src/tables.c (vector_number, tally, action_number,
9245 default_goto, goto_actions): Likewise.
9246 * tests/existing.at (GNU Cim Grammar): Likewise.
9247 * tests/regression.at (Web2c Actions): Likewise.
9248
9249 * src/output.c (muscle_insert_short_int_table): Renamed from
9250 muscle_insert_short_table. All uses changed.
9251
d6328241
PH
92522004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9253
9254 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
9255 (declaration): Replace expected_conflicts with expected_sr_conflicts.
9256 Add %expect-rr rule.
4f16766c 9257
d6328241
PH
9258 * src/scan-gram.l: Recognize %expect-rr.
9259
4f16766c 9260 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 9261 expected_conflicts.
4f16766c 9262 (expected_rr_conflicts): Declare.
d6328241
PH
9263
9264 * src/conflicts.c (expected_sr_conflicts): Rename from
9265 expected_conflicts.
9266 (expected_rr_conflicts): Define.
9267 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
9268 for GLR parsers.
9269 Use expected_sr_conflicts in place of expected_conflicts.
9270 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 9271
d6328241 9272 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 9273
1452af69
PE
92742004-03-08 Paul Eggert <eggert@gnu.org>
9275
9276 Add support for hex token numbers. Suggested by Odd Arild Olsen in
161a71f3 9277 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
1452af69
PE
9278
9279 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
9280 in lalr1.cc.
9281 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
9282 * src/scan-gram.l (scan_integer): New function.
9283 ({int}): Use it.
9284 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
9285 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
9286 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
9287 Say "long int", not "long", for uniformity with GNU style.
9288
006d217d
PE
92892004-02-25 Paul Eggert <eggert@twinsun.com>
9290
9291 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
9292 compilers. This fixes a problem with Intel's C++ compiler being
9293 chatty, reported by Guido Trentalancia in
161a71f3 9294 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
006d217d 9295
c2729758
ADL
92962004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
9297
9298 Support %destructor and merge error locations in lalr1.cc.
9299
9300 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
9301 (Parser::stos_): Define unconditionally.
9302 (Parser::destruct_): New method. Generate its body with
9303 b4_yydestruct_generate.
9304 (Parser::error_start_): New attribute.
9305 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
9306 token which are discarded.
9307 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
9308 error_start_ when erroneous token are discarded.
9309 (Parser::parse) <yyerrlab1>: Compute the location of the error
9310 token so that it covers all the discarded tokens.
9311 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
9312 it can be called with `%skeleton "lalr1.cc"', and do that.
9313
dd0e0635
PE
93142004-02-02 Paul Eggert <eggert@twinsun.com>
9315
9316 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
9317 $(top_srcdir)/lib and ../lib. This fixes a bug reported
9318 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
9319 There's no need to mention top_builddir since Automake does that
9320 for us.
9321 (INCLUDES): Remove, as Automake says it's obsolescent.
9322 Contents migrated into AM_CPPFLAGS as described above.
9323 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
9324
93252004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9326
9327 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
9328 (yyreportSyntaxError): Handle case where lookahead token is
9329 YYEMPTY.
9330
be16239b
PH
93312004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9332
9333 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
9334 resulting parsers are compilable with C++.
9335
5fa90832
PE
93362003-12-23 Paul Eggert <eggert@twinsun.com>
9337
9338 * config/depcomp, config/install-sh: Sync with Automake 1.8.
9339 * src/output.c (output_skeleton): Rename local var.
9340 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
9341 Bison tokens, as this runs afoul of the 2003-10-07 change that
9342 disallowed NUL bytes in character constants or string literals.
9343
9344 * tests/local.at: Require Autoconf 2.59's Autotest.
9345 * tests/testsuite.at: Don't include local.at, since we now assume
9346 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
9347 including it.
9348 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
9349 multiple inclusion warnings.
dd0e0635 9350
b165c324
AD
93512003-12-02 Akim Demaille <akim@epita.fr>
9352
9353 * doc/bison.texinfo (How Can I Reset the Parser): More about start
9354 conditions.
9355 From Bruno Haible.
9356
26e06a21
ADL
93572003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
9358
9359 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
9360
92ac3705
PE
93612003-10-07 Paul Eggert <eggert@twinsun.com>
9362
6a5ecb38
PE
9363 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
9364 if testsuite doesn't exist.
9365
92ac3705
PE
9366 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
9367 literals, unfortunately.
9368 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
9369 Complain about NUL bytes in character constants or string literals.
9370
91d2c560
PE
93712003-10-05 Paul Eggert <eggert@twinsun.com>
9372
9373 * NEWS: Don't document %no-default-prec, as it's still
9374 too experimental.
9375 * doc/bison.texinfo: Document %no-default-prec only if
9376 the defaultprec flag is set. Normally it's not.
9377
0cc3da3a
PE
93782003-10-04 Paul Eggert <eggert@twinsun.com>
9379
9380 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
9381 non-modifiable lvalue, instead of a modifiable one.
9382 * doc/bison.texinfo (Actions): Document that $$ can
9383 be assigned to. Do not claim that $$ and $N are
9384 array element references: user code should not rely on this.
9385
22fccf95
PE
93862003-10-01 Paul Eggert <eggert@twinsun.com>
9387
9388 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
9389 (grammar_declaration): Use it.
9390 * src/scan-gram.l: New token %no-default-prec.
9391 * tests/conflicts.at: Revamp tests to use %no-default-prec.
9392 * NEWS, doc/bison.texinfo: Document the above.
9393
fc8f2965
AD
93942003-10-01 Akim Demaille <akim@epita.fr>
9395
9396 VCG no longer supports long_straight_phase.
9397
9398 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
9399 * src/print_graph.c (print_graph): Adjust.
9400
39a06c25
PE
94012003-09-30 Frank Heckenbach <frank@g-n-u.de>
9402 and Paul Eggert <eggert@twinsun.com>
9403
9404 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
9405 Table of Symbols): Document %default-prec.
9406 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
9407 (grammar_declaration): Set default_prec on %default-prec.
9408 * src/scan-gram.l (%default-prec): New token.
9409 * src/reader.h (default_prec): New flag.
9410 * src/reader.c: Likewise.
9411 (packgram): Handle it.
9412 * tests/conflicts.at (%default-prec without %prec,
9413 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 9414
39a06c25
PE
94152003-09-30 Paul Eggert <eggert@twinsun.com>
9416
9417 * tests/testsuite.at: Include local.at, not input.at, fixing
9418 a typo in the 2003-08-25 patch.
9419
62b6aef9
AD
94202003-08-27 Akim Demaille <akim@epita.fr>
9421
9422 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
9423 GCC warnings.
9424
89e1cc61
AD
94252003-08-26 Akim Demaille <akim@epita.fr>
9426
9427 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
9428 "<\#" to avoid magic from Gnus when posting parts of this script.
9429
a08460b0
AD
94302003-08-26 Akim Demaille <akim@epita.fr>
9431
9432 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
9433 (Parser::parse): here.
9434 Adjust: nerrs and errstatus is now replaced by...
9435 (Parser::nerrs_, Parser::errstatus_): New.
9436
603f1cfd
AD
94372003-08-25 Akim Demaille <akim@epita.fr>
9438
9439 * config/announce-gen, Makefile.cfg: New.
9440 * Makefile.am: Adjust.
9441 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
9442 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
9443
cd3684cf
AD
94442003-08-25 Akim Demaille <akim@epita.fr>
9445
9446 When reducing initial empty rules, Bison parser read an initial
9447 location that is not defined. This results in garbage, and that
9448 affects Bison's own parser. Therefore we need (i) to extend Bison
9449 to support a means to initialize this location, and (ii) to use
9450 this CVS Bison to fix CVS Bison's parser.
9451
9452 * src/reader.h, reader.c (epilogue_augment): Remove, replace
9453 with...
9454 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
9455 * src/parse-gram.y: Adjust.
9456 (%initial-action): New.
9457 (%error-verbose): Since we require CVS Bison, there is no reason
9458 not to use it.
9459 * src/scan-gram.l: Adjust.
9460 * src/Makefile.am (YACC): New, to make sure we use our own parser.
9461 * data/yacc.c (yyparse): Use b4_initial_action.
9462
4e03e201
AD
94632003-08-25 Akim Demaille <akim@epita.fr>
9464
9465 * doc/bison.texinfo: Don't promote stdout for error messages.
9466
8c182d05
AD
94672003-08-25 Akim Demaille <akim@epita.fr>
9468
9469 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
9470 From Alexandre Duret-Lutz.
9471
6a60c4cf
PE
94722003-08-25 Akim Demaille <akim@epita.fr>
9473
9474 Version 1.875c.
9475
25f66e1a
AD
94762003-08-25 Akim Demaille <akim@epita.fr>
9477
9478 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
9479 Use them.
9480
5348bfbe
AD
94812003-08-25 Akim Demaille <akim@epita.fr>
9482
9483 * data/lalr1.cc (Parser::reduce_print_): New.
9484 Use it.
9485
47301314
AD
94862003-08-25 Akim Demaille <akim@epita.fr>
9487
9488 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
9489 error recovery loops. This patch is based on
161a71f3 9490 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
47301314
AD
9491 Also, augment the similarity between lalr1.cc and yacc.c.
9492 Note: the locations of error recovery rules are not correct yet.
9493
9494 * data/lalr1.cc: Comment changes to augment the similarity between
9495 lalr1.cc and yacc.c.
9496 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
9497 (yyerrlab1): Remove, but where it used to be (now the bottom part of
9498 yyerrlab), when hitting EOF, pop the whole stack here instead of
9499 merely falling thru the default error handling mechanism.
9500 (yyerrorlab): New label, with the old contents of YYERROR,
9501 plus the following change: pop the stack of rhs corresponding
9502 to the production that invoked YYERROR. That is how Yacc
9503 behaves (required by POSIX).
9504 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
9505 fail.
9506
1f7a61ff
AD
95072003-08-25 Akim Demaille <akim@epita.fr>
9508
9509 Tune local.at so that people can "autom4te -l autotest calc.at -o
9510 calc" for instance, to extract a sub test suite.
9511
9512 * tests/testsuite.at: Move the initialization, Autotest version
9513 requirement, and AT_TESTED invocation into...
9514 * tests/local.at: here.
9515 * tests/testsuite.at: Include it for compatibility with Autoconf
9516 2.57.
9517 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
9518 be ignore.
9519
327b5b56
PE
95202003-08-04 Paul Eggert <eggert@twinsun.com>
9521
9522 Rework code slightly to avoid gcc -Wtraditional warnings.
9523 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
9524 The returned value is now stored in *YY0. All callers changed.
9525 * src/output.c (merge_output): Adjust to the above change.
9526
0051e3ed
PE
95272003-07-26 Paul Eggert <eggert@twinsun.com>
9528
9529 * data/glr.c (YYASSERT): New macro.
9530 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
9531 yyresolveStates, yyprocessOneStack):
9532 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
9533 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 9534
137437c6
PE
95352003-07-25 Paul Eggert <eggert@twinsun.com>
9536
5b620e06
PE
9537 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
9538 for portability to K&R C (after ansi2knr, presumably). See
161a71f3 9539 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5b620e06
PE
9540 by Frank Heckenbach, though I have omitted the structure-initialization
9541 part of his glr-knr.diff patch since I recall that the Portable
9542 C Compiler didn't require that change.
9543
137437c6
PE
9544 Let the user specify how to allocate and free memory.
9545 Derived from a suggestion by Frank Heckenbach in
161a71f3 9546 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
137437c6
PE
9547 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
9548 All uses of free, malloc, realloc changed to use these macros,
9549 and unnecessary casts removed.
9550 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
9551
ddb85ca5
PE
95522003-07-06 Matthias Mann <MatthiasMann@gmx.de>
9553
9554 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
9555 use s.empty() rather than s == "" to test for empty string; see
161a71f3 9556 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
ddb85ca5
PE
9557 (trivial change)
9558
39910e09
AD
95592003-06-25 Akim Demaille <akim@epita.fr>
9560
9561 * config/depcomp, config/install-sh: Update from masters.
9562
0ae99356
PE
95632003-06-20 Paul Eggert <eggert@twinsun.com>
9564
9565 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
9566 and return properly parenthesized result.
9567 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
9568 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9569 Remove unnecessary parentheses from uses.
9570 * doc/bison.texinfo (Location Default Action): Describe the
9571 conventions for parentheses.
9572
cd05d13c
PE
95732003-06-19 Paul Eggert <eggert@twinsun.com>
9574
81fd08ca
PE
9575 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
9576 yyreportTree): Do not assume that size_t is the same width as int,
9577 when printing sizes. Print sizes using an unsigned format.
9578 Problem reported by Frank Heckenbach in
161a71f3 9579 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 9580
cd05d13c
PE
9581 Port to Forte Developer 7 C compiler.
9582 * data/glr.c (struct YYLTYPE): If locations are not being used,
9583 declare a single dummy member, as empty structs do not conform
9584 to the C standard.
9585 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
9586 the Forte Developer 7 C compiler complains that end-of-loop
9587 code is not reached.
9588
4dcf140b
PE
95892003-06-17 Paul Eggert <eggert@twinsun.com>
9590
9591 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
9592 avoid warnings from picky compilers about redefinition of PARAMS.
9593
8dd76bee
PE
95942003-06-17 Paul Eggert <eggert@twinsun.com>
9595
9596 Version 1.875b.
9597
9598 * NEWS: Document 1.875b.
9599
9600 * lib/bbitset.h: Do not include config.h; that's the includer's job.
9601 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
9602 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
9603 Don't use 'index' in comments, as it's a builtin fn on some hosts.
9604 * lib/bitset_stats.c: Include gettext.h unconditionally, as
9605 per recent gettext manual's suggestion.
9606 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
9607 Use prototypes, not old-style definitions.
9608 * lib/lbitset.c (lbitset_unused_clear): Likewise.
9609 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
9610 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
9611 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
9612 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
9613 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
9614 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
9615 vbitset_or_and_cmp, vbitset_copy): Likewise.
9616
9617 * lib/libiberty.h: Do not include config.h; that's the includer's job.
9618 Do not include <stdlib.h>.
9619 (PARAMS): Define unconditionally for C89.
9620 (ATTRIBUTE_NORETURN): Remove.
9621 (ATTRIBUTE_UNUSED): Define unconditionally.
9622
9623 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
161a71f3 9624 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8dd76bee
PE
9625 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
9626 * lib/vbitset.c, lib/vbitset.h: New files.
9627 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
9628 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
9629 from libbitset.
9630
9631 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
9632 `How Can I Reset @code{yyparse}', since texinfo does not allow
9633 arbitrary @ in node names.
9634
9635 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
9636 shouldn't be needed according to the gettext 0.12.1 documentation
9637 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 9638 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 9639 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 9640 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 9641
8dd76bee
PE
9642 * lib/.cvsignore: Add stdbool.h.
9643 * m4/.cvsignore: Add nls.m4, po.m4.
9644
9645 Upgrade to CVS gnulib.
9646 * stdbool_.h: File renamed from stdbool.h.in.
9647 * configure.ac (AM_STDBOOL_H): Invoke this instead of
9648 AC_HEADER_STDBOOL.
9649 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
9650 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
9651 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
9652 (MOSTLYCLEANFILES): New var.
9653 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
9654 (stdbool.h): New rule.
9655 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
9656 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
9657 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
9658 m4/quote.m4: Upgrade to today's gnulib.
9659
9660 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
9661 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
9662 the tests right now.
9663 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
9664 yyerror are declared before use; C99 requires this.
9665
25005f6a
PH
96662003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9667
9668 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
9669 first.
9670 (yyrecoverSyntaxError): Correct the logic for setting and testing
9671 yyerrState.
9672 Correct comment on handling EOF.
9673 Allow states with only a default reduction, rather than failing
8dd76bee 9674 (I can't quite reconstruct why these were not allowed before).
25005f6a 9675
137437c6 9676 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 9677 buffer overruns, corrupting state.
8dd76bee
PE
9678
9679 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
9680 definition.
9681 * src/reader.h (max_left_semantic_context): New variable declaration.
9682 * src/scan-gram.l (max_left_semantic_context): Define.
9683 (handle_action_dollar): Update max_left_semantic_context.
9684 * data/glr.c (YYMAXLEFT): New definition.
9685 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
9686 (yyresolveAction): Ditto.
9687
9688 Fixes to problems with location handling in GLR parsers reported by
9689 Frank Heckenbach (2003/06/05).
9690
9691 * data/glr.c (YYLTYPE): Make trivial if locations not used.
9692 (YYRHSLOC): Add parentheses, and define only if locations used.
9693 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
9694 locations not used.
9695 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
9696 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 9697
25005f6a
PH
9698 * tests/cxx-type.at: Exercise location information; update tests
9699 to differentiate output with and without locations.
8dd76bee 9700 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
9701 because default YYLTYPE not yet defined.
9702 Change semantic actions to compute strings, rather than printing
9703 them directly (to test proper passing of semantics values). Change
9704 output to prefix notation and update test data and expected results.
9705 (yylex): Track locations.
9706 (stmtMerge): Return value rather than printing, and include arguments
9707 in value.
8dd76bee 9708
711f40b7
PE
97092003-06-03 Paul Eggert <eggert@twinsun.com>
9710
9711 Avoid warnings generated by GCC 2.95.4 when Bison is
9712 configured with --enable-gcc-warnings.
9713 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
9714 yy::]b4_parser_class_name[::translate_,
9715 yy::Stack::operator[] (unsigned),
9716 yy::Stack::operator[] (unsigned) const,
9717 yy::Slice::operator[] (unsigned),
9718 yy::Slice::operator[] (unsigned) const):
9719 Rename local vars to avoid warnings.
9720 * tests/glr-regression.at (Improper handling of embedded actions
9721 and $-N in GLR parsers): Remove unused local variable from yylex.
9722 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
9723 (void) as arg when not pure, since we now assume C89 when building
9724 Bison. Pacify GCC by using parameter.
9725
ac695f7d
PE
97262003-06-02 Paul Eggert <eggert@twinsun.com>
9727
9728 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
9729 yy::Location::lines, yy::Location::columns): Rename arguments
9730 to avoid shadowing; this removes a warning generated by GCC 3.3.
9731
26ec81e0
PE
97322003-06-01 Paul Eggert <eggert@twinsun.com>
9733
9734 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
9735 to g++, as GCC 3.3 complains if you do it.
9736 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
9737 everything that WARNING_CFLAGS has, except omit warnings
9738 not suitable for C++.
9739 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
9740 * tests/atlocal.in (CXXFLAGS): New var.
9741 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
9742
9743 Fix a GLR parser bug I reported in February; see
161a71f3 9744 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
26ec81e0
PE
9745 The problem was that GLR parsers did not conform to the C standard,
9746 because actions like { $1 = $2 + $3; } expanded to expressions
9747 that invoked YYFILL in separate subexpressions, and YYFILL assigned
9748 to a local variable. The C standard says that expressions
9749 like (var = f ()) + (var = f ()) have undefined behavior.
9750 Another problem was that GCC sometimes issues warnings that
9751 yyfill and its parameters are unused.
9752
9753 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
9754 as possibly unused.
9755 (yyfill): New function.
9756 (YYFILL): Use it.
9757 (yyuserAction): Change type of yynormal to bool, so that it matches
9758 the new yyfill signature. Mark it as possibly unused.
9759
9760
9761 Follow up on a bug I reported in February, where a Bison-generated
9762 parser can loop. Provide a test case and a fix for yacc.c. I
9763 don't have a fix for lalr1.cc or for glr.c, unfortunately.
9764 The original bug report is in:
161a71f3 9765 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
26ec81e0
PE
9766
9767 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
9768 macro's size was becoming unwieldy.
9769 (yyerrlab): Do not discard an empty lookahead symbol, as this
9770 might destroy garbage.
9771 (yyerrorlab): New label, with the old contents of YYERROR,
9772 plus the following change: pop the stack of rhs corresponding
9773 to the production that invoked YYERROR. That is how Yacc
9774 behaves, and POSIX requires this behavior.
9775 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
9776 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
9777 Define 'alarm' to do nothing if unistd.h is not available.
9778 Add a new rule "exp: '-' error;" to test the above change to
9779 data/yacc.c. Use 'alarm' to abort any test taking longer than
9780 10 seconds, as it's probably looping.
9781 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
9782 Also, the new yacc.c generates two fewer diagnostics for an
9783 existing test.
9784
d0829076
PE
97852003-05-24 Paul Eggert <eggert@twinsun.com>
9786
c6ae27df
PE
9787 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
9788 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
9789 This fixes a problem reported by John Bowman when the Compaq/HP
9790 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
9791 -ansi -Wall -gall).
9792 * data/yacc.c (union yyalloc): Likewise.
9793 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 9794
d0829076
PE
9795 Switch from 'int' to 'bool' where that makes sense.
9796
9797 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
9798 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
9799 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
9800 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
9801 Return or accept bool, not int. All callers changed.
9802 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
9803 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
9804 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
9805 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
9806 bitset_or_and_cmp_): Likewise.
9807 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
9808 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
9809 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
9810 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
9811 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
9812 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
9813 bitset_stats_or_and_cmp): Likewise.
9814 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
9815 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
9816 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
9817 ebitset_xor_cmp): Likewise.
9818 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
9819 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
9820 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
9821 lbitset_xor_cmp): Likewise.
9822 * lib/bbitset.h: Include <stdbool.h>.
9823 (struct bitset_vtable): The following members now return bool, not
9824 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
9825 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
9826 or_and_cmp).
9827 * src/conflicts.c (count_rr_conflicts): Likewise.
9828 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
9829 All uses changed.
9830 * lib/ebitset.c (ebitset_obstack_init): Likewise.
9831 * lib/lbitset.c (lbitset_obstack_init): Likewise.
9832 * src/getargs.c (debug_flag, defines_flag, locations_flag,
9833 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
9834 graph_flag): Likewise.
9835 * src/getargs.h (debug_flag, defines_flag, locations_flag,
9836 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
9837 graph_flag): Likewise.
9838 * src/output.c (error_verbose): Likewise.
9839 * src/output.h (error_verbose): Likewise.
9840 * src/reader.c (start_flag, typed): Likewise.
9841 * src/reader.h (typed): Likewise.
9842 * src/getargs.c (LOCATIONS_OPTION): New constant.
9843 (long_options, getargs): Use it.
9844 * src/lalr.c (build_relations): Use bool, not int.
9845 * src/nullable.c (nullable_compute): Likewise.
9846 * src/print.c (print_reductions): Likewise.
9847 * src/tables.c (action_row, pack_vector): Likewise.
9848 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
9849 * src/output.c (prepare): Use it.
9850 * src/output.c (token_definitions_output,
9851 symbol_destructors_output, symbol_destructors_output): Use string,
9852 not boolean integer, to keep track of whether to output separator.
9853 * src/print_graph.c (print_core): Likewise.
9854 * src/state.c (state_rule_lookaheads_print): Likewise.
9855
9856 * config/install-sh: Sync from automake 1.7.5.
9857
6b2584b7
PE
98582003-05-14 Paul Eggert <eggert@twinsun.com>
9859
9860 * src/parse-gram.y (rules_or_grammar_declaration): Require a
9861 semicolon after a grammar declaration, in the interest of possible
9862 future changes to the Bison input language.
9863 Do not allow a stray semicolon at the start of the grammar.
9864 (rhses.1): Allow one or more semicolons after any rule, including
9865 just before "|" as required by POSIX.
9866 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
9867 grammar.
9868
caf37a36
ADL
98692003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
9870
9871 %parse-param support for lalr1.cc.
9872
9873 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
9874 b4_cc_constructor_calls, b4_cc_constructor_call,
9875 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
9876 definitions.
9877 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
9878 parse-param arguments.
9879 (yy::b4_parser_class_name): Declare instance variables to
9880 hold parse-param arguments.
9881 * tests/calc.at: s/value/semantic_value/ because value clashes
9882 with a member of yy::b4_parser_class_name. Adjust C++ code
9883 to handle %parse-param. Enable %parse-param test in C++.
9884
3ab37077
PE
98852003-05-12 Paul Eggert <eggert@twinsun.com>
9886
9887 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
9888 English a bit. Fix fclose typo. Change "const char" to "char
9889 const", and use ANSI C rather than K&R for "main". Suggest
9890 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
9891 and suggest yy_switch_to_buffer.
9892
98932003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
9894
9895 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
9896 C89. This avoids a diagnostic on compilers that define __STDC__
9897 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
161a71f3 9898 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
163ab321 9899
e743727f
PE
99002003-05-03 Paul Eggert <eggert@twinsun.com>
9901
9902 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
9903 Do not overrun array bounds.
9904 This should fix a bug reported today by Olatunji Oluwabukunmi in
161a71f3 9905 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
e743727f 9906
916708d5
AD
99072003-04-29 Akim Demaille <akim@epita.fr>
9908
9909 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
9910 * src/getargs.c, src/getargs.h: here, as bool, not int.
9911 (nondeterministic_parser): New.
9912 * src/parse-gram.y, src/scan-gram.l: Support
9913 %nondeterministic-parser.
9914 * src/output.c (prepare): Use nondeterministic_parser instead
9915 of glr_parser where appropriate.
9916 * src/tables.c (conflict_row, action_row, save_row)
9917 (token_actions, token_actions, pack_vector): Ditto.
9918
a06ea4aa
AD
99192003-04-29 Akim Demaille <akim@epita.fr>
9920
9921 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
9922
211074ca
AD
99232003-04-29 Akim Demaille <akim@epita.fr>
9924
9925 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
9926 with %pure-parser and %locations to exercise the patch from Yakov
9927 Markovitch below.
9928
6175ffe3
PE
99292003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
9930
9931 * data/yacc.c: (b4_lex_param): Corrected for the case where
9932 %lex-param is provided and %pure-parser isn't.
9933
b1e95857
PE
99342003-04-27 Paul Eggert <eggert@twinsun.com>
9935
9936 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
161a71f3 9937 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
b1e95857
PE
9938 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
9939 if it is not defined.
9940 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
9941
acda9df6
PE
99422003-04-26 Paul Eggert <eggert@twinsun.com>
9943
3470c57b
PE
9944 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
9945 Declare to be of type suitable for the ninf value itself, not of
9946 type suitable for the corresponding table, since the latter might
9947 be unsigned but the ninf value might be negative. This fixes a
9948 bug reported by Alexandre Duret-Lutz in
161a71f3 9949 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3470c57b 9950
acda9df6
PE
9951 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
9952 invokes it. We shouldn't invoke it twice because it will attempt
9953 to put error.o in the archive twice. This fixes a glitch reported
9954 by Martin Mokrejs in
161a71f3 9955 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
acda9df6 9956
b5250f26
PE
99572003-04-21 Paul Eggert <eggert@twinsun.com>
9958
9959 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
9960 to gnulib.
9961
089ac0f1
PE
99622003-04-21 Yakov Markovitch <Markovitch@iso.ru>
9963
9964 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
9965 Fix obvious typo that results in uncompilable GLR parsers
9966 when both %pure-parser and %locations are used. (trivial change)
9967
5ededac6
PE
99682003-04-17 Paul Eggert <eggert@twinsun.com>
9969
1b8f2fff
PE
9970 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
9971 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
9972 Do not insert the expected token via unput, as this runs afoul
9973 of a POSIX-compatibility bug in flex 2.5.31.
9974 All uses changed to BEGIN the parent state,
9975 since we no longer insert the expected token via unput.
9976 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
9977 that is no longer emitted after the above change.
9978
5ededac6
PE
9979 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
9980 the first one. This change is from Paul Hilfinger, and it fixes
9981 regression reported by Werner Lemberg in
161a71f3 9982 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5ededac6
PE
9983
9984 (resolve_sr_conflict): Don't invoke state_errs_set
9985 unless one or more tokens have been explicitly made errors.
9986 Otherwise, the above change causes Bison to abort.
9987
9988 * tests/existing.at (GNU pic Grammar): New test case, taken from
9989 Lemberg's email.
9990
b8be9132
AD
99912003-03-31 Akim Demaille <akim@epita.fr>
9992
9993 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
9994
d423d460
AD
99952003-03-31 Akim Demaille <akim@epita.fr>
9996
9997 * src/output.c (prepare_symbols): Avoid trailing spaces in the
9998 output.
9999
c7e441b4
AD
100002003-03-31 Akim Demaille <akim@epita.fr>
10001
10002 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
10003 From Paul Hilfinger.
10004
231897ad
AD
100052003-03-29 Akim Demaille <akim@epita.fr>
10006
10007 * m4/error.m4: Do not put under dynamic conditions some code which
10008 expansion is under static control.
10009
5b066063
AD
100102003-03-29 Akim Demaille <akim@epita.fr>
10011
10012 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
10013
22a74fec
AD
100142003-03-29 Akim Demaille <akim@epita.fr>
10015
10016 * doc/bison.texinfo (Strings are Destroyed): New.
10017
0eee27e7
PE
100182003-03-13 Paul Eggert <eggert@twinsun.com>
10019
10020 * .cvsignore: Add configure.lineno.
10021 * src/.cvsignore: Add yacc.
10022 * tests/.cvsignore: Add testsuite.log.
10023 * doc/fdl.texi: Sync with latest FSF version.
10024
f61aad93
PE
100252003-03-12 Paul Eggert <eggert@twinsun.com>
10026
537636c7
PE
10027 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
10028 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
10029 cursor, instead of leaving it undefined. This fixes a bug
10030 reported by Tim Van Holder in
161a71f3 10031 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
537636c7
PE
10032 * tests/input.at (Torturing the Scanner): Test the scanner on
10033 an empty input file, which was Tim Van Holder's test case.
10034
10035 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
10036 <sys/resource.h> can be included, include sys/time.h and
10037 sys/times.h first, if available. This works around the SunOS
10038 4.1.4 porting bug reported by Bruce Becker in
161a71f3 10039 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
537636c7
PE
10040
10041 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
10042 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
10043 AC_HEADER_SYS_WAIT.
10044
f61aad93
PE
10045 Merge changes from gnulib. This was prompted because the CVS
10046 snapshot didn't build on Solaris 7 due to strnlen problems.
10047
10048 These changes need to be merged back into gnulib:
10049 * lib/hash.c: Include <stdbool.h> unconditionally.
10050 * m4/onceonly.m4 (m4_quote): New macro.
10051 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
10052 Quote AC_FOREACH variable-expansions properly.
10053 The 2003-01-03 obstack.h change also needs merging.
10054 {end of changes requiring merging}
5b066063 10055
f61aad93
PE
10056 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10057 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
10058 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
10059 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
10060 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
10061 New files, imported from gnulib.
10062 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
10063 above.
10064
10065 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
10066 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
10067 gnulib sources.
10068
10069 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
10070 Add.
10071 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
10072 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
10073 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
10074 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
10075 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
10076 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
10077 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
10078 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
10079 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
10080 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
10081 (jm_PREREQ_ARGMATCH): Remove.
10082 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
10083 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
10084
10085 * src/system.h: Include <stdbool.h> unconditionally.
10086
10087 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
10088 assuming at least C89 in the bitset code for some time now.
10089
d2ffe116
AD
100902003-03-03 Akim Demaille <akim@epita.fr>
10091
10092 * ro.po: New.
10093
052826fd
AD
100942003-03-02 Akim Demaille <akim@epita.fr>
10095
10096 * doc/bison.texinfo (Table of Symbols): Reactivate the
10097 documentation for %lex-param, and %parse-param.
10098
c4749565
AD
100992003-03-02 Akim Demaille <akim@epita.fr>
10100
10101 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
10102 generate verbose error messages.
10103 Use the number of tokens as an upper bound in yytname, as it
10104 cannot be a non terminal.
10105
d5286af1
AD
101062003-03-02 Akim Demaille <akim@epita.fr>
10107
10108 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
10109 message.
10110
22e304a6
AD
101112003-03-02 Akim Demaille <akim@epita.fr>
10112
22e304a6
AD
10113 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
10114 Use them to exercise yycheck overrun.
10115 Based on Andrew Suffield's grammar.
10116
67a25fed
AD
101172003-03-02 Akim Demaille <akim@epita.fr>
10118
10119 Create tests/local.at for Bison generic testing macros.
10120
10121 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
10122 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
10123 This new file.
10124 * tests/calc.at (AT_CHECK_CALC): Adjust.
10125 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
10126 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
10127 * tests/local.at: here.
10128 (AT_COMPILE_CXX): Tags the tests using it as c++.
10129 Ignore the test if CXX is not functional.
10130
9c2b381f
PE
101312003-03-01 Paul Eggert <eggert@twinsun.com>
10132
10133 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
10134 not loc->end, since loc->end might contain garbage and this leads
10135 to undefined behavior on some platforms.
10136 (id_loc, token_start): Use (IF_LINTed) initial values that do not
10137 depend on *loc, so that the reader doesn't give the the false
10138 impression that *loc is initialized.
10139 (<INITIAL>"%%"): Do not bother setting code_start, since its value
10140 does not survive the return.
10141
0433ba88
AD
101422003-03-01 Akim Demaille <akim@epita.fr>
10143
10144 * src/scan-gram.l (code_start): Always initialize it when entering
10145 into yylex, as SC_EPILOGUE is activated *before* the corresponding
10146 yylex invocation. An alternative would be making it static, but
10147 then it starts with the second %%'s beginning, instead of its end.
10148
b305ea69
PE
101492003-02-28 Paul Eggert <eggert@twinsun.com>
10150
10151 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
10152 around a UnixWare 7.1.1 porting bug reported by John Hughes in
161a71f3 10153 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
b305ea69 10154
c3d25e01
PE
101552003-02-26 Paul Eggert <eggert@twinsun.com>
10156
10157 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
10158 Remove Sequent/Pyramid discussion (nobody uses them any more).
10159 Merge VMS and MS-DOS discussion; these ports may well be dead
10160 but let's keep mentioning them for now. Put <> around email
10161 addresses. Add copyright notice.
10162
c267ffbc
PE
101632003-02-24 Paul Eggert <eggert@twinsun.com>
10164
10165 * data/glr.c (yy_reduce_print): yylineno -> yylno,
10166 to avoid collision with flex use of yylineno.
10167 Problem reported by Bruce Lilly in
161a71f3 10168 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
c267ffbc
PE
10169 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
10170 * data/yacc.c (yy_reduce_print): Likewise.
10171
10172 * config/depcomp: Sync with Automake 1.7.3.
10173
f939fc12
AD
101742003-02-21 Akim Demaille <akim@epita.fr>
10175
10176 * data/lalr1.cc: Use temporary variables instead of casts to
10177 change integer types.
10178 Suggested by Paul Eggert.
10179
95923bd6
AD
101802003-02-21 Akim Demaille <akim@epita.fr>
10181
10182 * doc/bison.texinfo: Use "location" consistently to refer to @n,
10183 to avoid confusions with lalr1.cc's notion of Position.
10184 Suggested by Paul Eggert.
10185
2cdc240e
AD
101862003-02-20 Akim Demaille <akim@epita.fr>
10187
10188 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
10189 before initial_columns.
10190 (location.hh): Use consistent variable names when defining the
10191 operator<<.
10192 Use "last" so that we subtract from Positions, not from unsigned.
10193
5d003116
AD
101942003-02-20 Akim Demaille <akim@epita.fr>
10195
10196 * data/lalr1.cc (position.hh): New subfile, including the extended
10197 and Doxygen'ed documentation of class Position.
10198 (location.hh): Use it.
10199 Document a` la Doxygen.
ba1ecc07 10200 With the help of Benoit Perrot.
5d003116 10201
d02b25f9
AD
102022003-02-20 Akim Demaille <akim@epita.fr>
10203
10204 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
10205 AT_YACC_IF.
10206 Redefine AT_YYERROR_SEES_LOC_IF using it.
10207 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
10208 not defined.
10209 Don't use the location in yy::Parser::error_ and
10210 yy::Parser::print_ when not %locations.
10211 Activate more lalr1.cc tests.
10212
0d1c3a04
AD
102132003-02-19 Akim Demaille <akim@epita.fr>
10214
10215 * data/lalr1.cc: When displaying a line number, be sure to make it
10216 an int.
10217
60a777aa
AD
102182003-02-19 Akim Demaille <akim@epita.fr>
10219
10220 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
10221 Remove, useless.
10222 (YYABORT, YYACCEPT, YYERROR): New.
10223 * tests/calc.at: Renable the lalr1.cc test.
10224
0b86fc41
AD
102252003-02-19 Akim Demaille <akim@epita.fr>
10226
10227 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
10228 error recovery, mixing with/without pops and discarding of the
10229 lookahead.
10230 Exercise YYERROR.
10231 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
10232
da99a5dc
PE
102332003-02-17 Paul Eggert <eggert@twinsun.com>
10234
10235 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
10236 * tests/testsuite.at (AT_COMPILE): Use them.
10237 This fixes the testsuite problem reported by Robert Lentz in
161a71f3 10238 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
da99a5dc 10239
93b8c255
PE
102402003-02-12 Paul Eggert <eggert@twinsun.com>
10241
10242 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
10243 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
161a71f3 10244 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
93b8c255
PE
10245 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
10246 Check for malloc failure, for consistency with yacc.c.
10247 (yytname_size): Remove, for consistency with yacc.c.
10248
10249 The bug still remains in data/lalr1.cc, as I didn't have time
10250 to fix it there.
10251
7548fed2
AD
102522003-02-06 Akim Demaille <akim@epita.fr>
10253
10254 * configure.ac (GXX): Rename as...
10255 (CXX): this, to keep the original Autoconf semantics.
10256 Require 2.57.
10257 * data/lalr1.cc: Fix b4_copyright invocations.
10258 If YYDEBUG is not defined, don't depend upon name_ being defined.
10259 (location.hh): Include string and iostream.
10260 (Position::filename): New member.
10261 (Position::Position ()): New.
10262 (operator<< (Position)): New.
10263 (operator- (Position, int)): New.
10264 (Location::first, Location::last): Rename as...
10265 (Location::begin, Location::end): these, to mock the conventional
10266 iterator names.
10267 (operator<< (Location)): New.
10268 * tests/atlocal.in (CXX): New.
10269 * tests/testsuite.at (AT_COMPILE_CXX): New.
10270 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
10271 locations in a more synthetic way.
10272 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
10273 lalr1.cc is used.
10274 Adjust the C locations to match those from Emacs: first column is
10275 column 0.
10276 Change all the expected results.
10277 Conform to the GCS: simplify the locations when applicable.
10278 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
10279 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
10280 these CPP macros with the m4 macros new defined by...
10281 (AT_CHECK_PUSHDEFS): this, i.e.:
10282 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 10283 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
10284 New macros.
10285 (AT_CHECK_POPDEFS): Undefine them.
10286 (AT_CHECK_CALC_LALR1_CC): New.
10287 Use it for the first lalr1.cc test.
10288
43a176ef
AD
102892003-02-04 Akim Demaille <akim@epita.fr>
10290
10291 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
10292 Location as is defined.
10293
fc049e9c
AD
102942003-02-04 Akim Demaille <akim@epita.fr>
10295
10296 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
10297 name_ being defined.
10298
a737b216
PE
102992003-02-03 Paul Eggert <eggert@twinsun.com>
10300
10301 * src/gram.h (start_symbol): Remove unused decl.
10302
10303 Use more-consistent naming conventions for local vars.
10304
10305 * src/derives.c (derives_compute): Change type of local var from
10306 int to rule_number.
10307 * src/gram.c (grammar_rules_partial_print): Likewise.
10308 * src/print.c (print_core): Likewise.
10309 * src/reduce.c (reduce_grammar_tables): Likewise.
10310
10311 * src/gram.c (grammar_dump): Change name of item_number *
10312 local var from r to rp.
10313 * src/nullable.c (nullable_compute): Likewise.
10314
10315 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
10316
10317 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
10318 for symbol or symbol_number var.
10319 * src/reader.c (grammar_start_symbol_set): Likewise.
10320 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
10321 Likewise.
10322 * src/state.c (transitions_to): Likewise.
10323 * src/state.h: Likewise.
10324 * src/tables.c (symbol_number_to_vector_number): Likewise.
10325
10326 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
10327 char * var.
10328
10329 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
10330 var.
10331
10332 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
10333 var.
10334
10335 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
10336 Use str, not s, for char * var. Use ch, not c, for character var.
10337 Use size for size var.
10338
10339 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
10340 char * var.
10341 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
10342 uniqstr var.
10343 * src/uniqstr.h: Likewise.
10344
10345 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
10346 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
10347 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
10348 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
10349 param to have same name as that of enum, so that we don't use
10350 "s" to stand for a non-state.
10351
68e93ad5
AD
103522003-02-02 Akim Demaille <akim@epita.fr>
10353
10354 * src/scan-skel.l: Scan more than one inert character per yylex
10355 invocation.
10356
92898986
PE
103572003-02-01 Paul Eggert <eggert@twinsun.com>
10358
10359 Version 1.875a.
10360
1d9d5d71
PE
10361 * po/LINGUAS: Add ms.
10362
0435d061
AD
103632003-01-30 Akim Demaille <akim@epita.fr>
10364
10365 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
10366
6029a57f
PH
103672003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10368
10369 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
10370 of $1.
0435d061
AD
10371
10372 Changes in response to error report by S. Eken: GLR mode does not
6029a57f 10373 handle negative $ indices or $ indices in embedded rules correctly.
161a71f3 10374 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 10375
6029a57f
PH
10376 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
10377 (b4_rhs_location): Ditto.
0435d061 10378 (yyfill): New function to copy from stack tree into array
6029a57f 10379 incrementally.
0435d061
AD
10380 (yyuserAction): Modify to allow incremental move of semantic values
10381 to rhs array when in GLR mode.
10382 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
10383 as needed.
10384 Remove dummy use of yystack, as there is now a guaranteed use.
10385 (yydoAction): Modify to allow incremental move of semantic values
10386 to rhs array when in GLR mode.
10387 (yyresolveAction): Ditto.
10388 (yyglrShiftDefer): Update comment.
0435d061 10389 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
10390 (yyglrReduce): Ditto.
10391 (yydoAction): Ditto
0435d061 10392
6029a57f
PH
10393 * tests/glr-regr1.at: Rename to ...
10394 * tests/glr-regression.at: Add new regression test for the problems
10395 described above (adapted from S. Eken).
10396 Update copyright notice.
10397 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
10398 * tests/Makefile.am: Ditto.
10399
6cee6297
PE
104002003-01-28 Paul Eggert <eggert@twinsun.com>
10401
10402 * data/lalr1.cc: Do not use @output_header_name@ unless
10403 b4_defines_flag is set. This fixes two bugs reported by
10404 Tim Van Holder in
161a71f3
PE
10405 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
10406 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6cee6297 10407
b2a836b5
PE
104082003-01-21 Paul Eggert <eggert@twinsun.com>
10409
10410 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
10411 we don't need to worry about yyerrlab1 being reported as an
10412 "unused label" by non-GCC C compilers. The downside is that if
10413 locations are used then a couple of statements are duplicated each
10414 time YYERROR is invoked, but the upside is that the warnings
10415 should vanish.
10416 (yyerrlab1): Move code to YERROR.
10417 (yyerrlab2): Remove. Change uses back to yyerrlab1.
10418 This reverts some of the 2002-12-27 change.
10419
4196b931
PE
104202003-01-17 Paul Eggert <eggert@twinsun.com>
10421
10422 * src/output.c (symbol_printers_output): Fix typo that led
10423 to core dump. Problem reported by Antonio Rus in
161a71f3 10424 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
4196b931 10425
3ae831b4
AD
104262003-01-13 Akim Demaille <akim@epita.fr>,
10427 Quoc Peyrot <chojin@lrde.epita.fr>,
10428 Robert Anisko <anisko_r@lrde.epita.fr>
10429
10430 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
10431 when the stacks contain one element, as the loop would otherwise
10432 free the last state, and then use the top state (the one we just
10433 popped). This means that the initial elements will not be freed
10434 explicitly, as is the case in yacc.c; it is not a problem, as
10435 these elements have fake values.
10436
e3aa65c5
PE
104372003-01-11 Paul Eggert <eggert@twinsun.com>
10438
10439 * NEWS: %expect-violations are now just warnings, reverting
10440 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
10441 bootstrapping problem reported by Matthias Klose; see
161a71f3 10442 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
e3aa65c5
PE
10443 * src/conflicts.c (conflicts_print): Likewise.
10444 * tests/conflicts.at (%expect not enough, %expect too much,
10445 %expect with reduce conflicts): Likewise.
10446 * doc/bison.texinfo (Expect Decl): Document this. Also mention
10447 that the warning is enabled if the number of conflicts changes
10448 (not necessarily increases).
10449
10450 * src/getargs.c (version): Update copyright year.
10451
f0057011
AD
104522003-01-09 Akim Demaille <akim@epita.fr>
10453
10454 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
10455
1ee6d2a0
PE
104562003-01-08 Paul Eggert <eggert@twinsun.com>
10457
10458 * Makefile.maint (WGETFLAGS):
10459 New macro, containing "-C off" to disable proxy caches.
10460 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
10461 (rel-check): Use $(WGET) instead of wget.
10462
d4fd77c4
PE
104632003-01-06 Paul Eggert <eggert@twinsun.com>
10464
10465 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
10466 the GLR paper of Scott, Johnstone and Hussain.
10467
464c6927
PE
104682003-01-04 Paul Eggert <eggert@twinsun.com>
10469
d600ee67
PE
10470 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
10471 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
10472 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
10473 (EXTRA_LIBRARIES): New var, for liby.a.
10474 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
10475 (EXTRA_SCRIPTS): New var, for yacc.
10476
464c6927
PE
10477 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
10478 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
10479 Problem reported by Nelson H. F. Beebe.
10480
104812003-01-03 Paul Eggert <eggert@twinsun.com>
10482
10483 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
10484 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
10485 when compiling Bison 1.875's `bitset bset = obstack_alloc
10486 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
10487
10488 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
10489 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
10490 grow to a huge size with typical invocation.
d600ee67 10491
464c6927
PE
10492 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
10493 Use the pattern recommended by Autoconf 2.57, except also protect
10494 against double-definition.
10495 * src/system.h: Likewise.
10496 Portability issues reported by Nelson H. F. Beebe.
d600ee67 10497
464c6927
PE
10498 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
10499 All uses changed. Provide a definition in both C and C++.
10500 (yytrue, yyfalse): Define even if defined (__cplusplus).
10501
10502 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
10503 Reported by Nelson H. F. Beebe.
d600ee67 10504
464c6927
PE
10505 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
10506
0f42c7d5
PE
105072003-01-02 Paul Eggert <eggert@twinsun.com>
10508
10509 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
10510 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
10511 Bug reported by Nelson H. F. Beebe.
10512
dc546b0f
PE
105132003-01-01 Paul Eggert <eggert@twinsun.com>
10514
10515 * Version 1.875.
10516
2c09b6a7
PE
105172002-12-30 Paul Eggert <eggert@twinsun.com>
10518
10519 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
10520 Moved here from...
10521 (<INITIAL>","): Here. This causes stray "," to be treated
10522 more uniformly.
10523
dc546b0f 10524 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
10525 last brace in braced code when not in Yacc mode, for compatibility
10526 with Bison 1.35. This resurrects the 2001-12-15 patch to
10527 src/reader.c.
10528
10529 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
10530 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
10531
535c0f63
PE
105322002-12-28 Paul Eggert <eggert@twinsun.com>
10533
10534 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
10535 that of SYM's type. This fixes Debian bug 168069, reported by
10536 Thomas Olsson.
d600ee67 10537
963fcc17
PE
105382002-12-28 Paul Eggert <eggert@twinsun.com>
10539
10540 Version 1.75f.
10541
10542 Switch back to the Yacc style of conflict reports, undoing some
10543 of the 2002-07-30 change.
10544 * doc/bison.texinfo (Understanding): Use Yacc style for
10545 conflict reports. Also, use new way of locating rules.
10546 * src/conflicts.c (conflict_report):
10547 Renamed from conflict_report_yacc, removing the old
10548 'conflict_report'. Translate the entire conflict report at once,
10549 so that we don't assume that "," has the same interpretation in
10550 all languages.
10551 (conflicts_output): Use Yacc-style conflict report for each state,
10552 instead of our more-complicated style.
10553 (conflicts_print): Use Yacc-style conflict report, except print
10554 the input file name when not emulating Yacc.
10555 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
10556 Conflicted Reduction, %expect not enough, %expect too much,
10557 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
10558 * tests/existing.at (GNU Cim Grammar): Likewise.
10559 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
10560
10561 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
10562 fatal): Don't invoke fflush; it's not needed and it might even be
10563 harmful for stdout, as stdout might not be open.
10564 * src/reduce.c (reduce_print): Likewise.
10565
b1efe548
PE
105662002-12-27 Paul Eggert <eggert@twinsun.com>
10567
10568 Fix a bug where error locations were not being recorded correctly.
10569 This problem was originally reported by Paul Hilfinger in
161a71f3 10570 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
10571
10572 * data/yacc.c (yyparse): New local var yylerrsp, to record the
10573 top of the location stack's error locations.
10574 (yyerrlab): Set it. When discarding a token, push its location
10575 onto yylerrsp so that we don't lose track of the error's end.
10576 (yyerrlab1): Now is only the target of YYERROR, so that we can
10577 properly record the location of the action that failed. For GCC
10578 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
10579 GCC warning about yyerrlab1 being unused if YYERROR is unused.
10580 (yyerrlab2): New label, which yyerrlab now falls through to.
10581 Compute the error's location by applying YYLLOC_DEFAULT to
10582 the locations of all the symbols that went into the error.
10583 * doc/bison.texinfo (Location Default Action): Mention that
10584 YYLLOC_DEFAULT is also invoked for syntax errors.
10585 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10586 Error locations include the locations of all the tokens that were
10587 discarded, not just the last token.
d600ee67 10588
983c5c2c
PE
105892002-12-26 Paul Eggert <eggert@twinsun.com>
10590
b1efe548
PE
10591 * src/files.c: Include quote.h.
10592 (compute_output_file_names): Warn if we detect conflicting
10593 outputs to the same file. This should catch the misunderstanding
10594 exemplified by Debian Bug 165349, reported by Bruce Stephens..
10595
10596 * src/conflicts.c (conflicts_print): If the user specifies
10597 "%expect N", report an error if there are any reduce/reduce
10598 conflicts. This is what the manual says should happen.
10599 This fixes Debian bug 130890, reported by Anthony DeRobertis.
10600 * tests/conflicts.at (%expect with reduce conflicts): New test.
10601
983c5c2c
PE
10602 Don't use m4_include on relative file names, as it doesn't work as
10603 desired if there happens to be a file with that name under ".".
d600ee67 10604
983c5c2c
PE
10605 * m4sugar/version.m4: Remove; it was included but it wasn't used.
10606 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
10607 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
10608 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
10609 * src/output.c (output_skeleton): Use full path names when
10610 specifying a file to include; don't rely on include path, as
10611 it's unreliable when the working file contains a file with
10612 that name.
d600ee67 10613
983c5c2c
PE
106142002-12-25 Paul Eggert <eggert@twinsun.com>
10615
10616 Remove obsolete references to bison.simple and bison.hairy.
10617 Problem mentioned by Aubin Mahe in
161a71f3 10618 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
10619 * data/glr.c: Comment fix.
10620 * doc/bison.1: Remove references. Also, mention "yacc".
10621
10622 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
10623 with -g option.
10624
10625 * src/parse-gram.y (declaration): Use enum "report_states" rather
10626 than its numeric value 1.
10627
10628 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
10629 opening a new one. This fixes Debian bug 165349, reported by
10630 Bruce Stephens.
10631
23f2d9dc
PE
106322002-12-24 Paul Eggert <eggert@twinsun.com>
10633
10634 Version 1.75e.
10635
10636 * Makefile.maint (cvs-update): Don't assume that the shell
10637 supports $(...), as Solaris sh doesn't.
10638
10639 * src/parse-gram.y (lloc_default): Remove test for empty
10640 nonterminals at the end, since it didn't change the result.
10641
106422002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
10643
10644 If the user does not define YYSTYPE as a macro, Bison now declares it
10645 using typedef instead of defining it as a macro. POSIX requires this.
10646 For consistency, YYLTYPE is also declared instead of defined.
10647
10648 %union directives can now have a tag before the `{', e.g., the
10649 directive `%union foo {...}' now generates the C code
10650 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
10651 The default union tag is `YYSTYPE', for compatibility with Solaris 9
10652 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
10653 instead of `yyltype'.
10654
10655 `yystype' and `yyltype' are now obsolescent macros instead of being
10656 typedefs or tags; they are no longer documented and will be
10657 withdrawn in a future release.
10658
10659 * data/glr.c (b4_location_type): Remove.
10660 (YYSTYPE): Renamed from yystype.
10661 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
10662 (struct YYLTYPE): Renamed from struct yyltype.
10663 (YYLTYPE): Renamed from yyltype.
10664 (yyltype, yystype): New (and obsolescent) macros,
10665 for backward compatibility.
10666 * data/yacc.c: Likewise.
10667
10668 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
10669 does not specify a union tag. This is for compatibility with
10670 Solaris 9 yacc.
10671
10672 * src/parse-gram.y (add_param): 2nd arg is now char * not char
10673 const *, since it is now modified by stripping surrounding { }.
10674 (current_braced_code): Remove.
10675 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
10676 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
10677 trailing " {...}". Now of type <chars>.
10678 (grammar_declaration): Adjust to bundled tokens.
10679 (code_content): Remove; stripping is now done by add_param.
10680 (print_token_value): Print contents of bundled tokens.
10681 (token_name): New function.
10682
10683 * src/reader.h (braced_code, current_braced_code): Remove.
10684 (token_name): New decl.
10685
10686 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
10687 token_type, not braced_code code_kind. All uses changed.
10688 (SC_PRE_CODE): New state, for scanning after a keyword that
10689 has (or usually has) an immediately-following braced code.
10690 (token_type): New local var, to keep track of which token type
10691 to return when scanning braced code.
10692 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 10693 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
10694 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
10695 instead of returning a token type immediately.
10696 (<INITIAL>"{"): Set token type.
10697 (<SC_BRACED_CODE>"}"): Use it.
10698 (handle_action_dollar, handle_action_at): Now returns bool
10699 indicating success. Fail if ! current_rule; this prevents a core dump.
10700 (handle_symbol_code_dollar, handle_symbol_code_at):
10701 Remove; merge body into caller.
10702 (handle_dollar, handle_at): Complain in invalid contexts.
10703
10704 * NEWS, doc/bison.texinfo: Document the above.
10705 * NEWS: Fix years and program names in copyright notice.
10706
879ca4f8
PE
107072002-12-17 Paul Eggert <eggert@twinsun.com>
10708
10709 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
10710 Reporting, Table of Symbols): Omit mentions of %lex-param and
10711 %parse-param from the documentation for now.
10712
1c5fe69d
PE
107132002-12-15 Paul Eggert <eggert@twinsun.com>
10714
10715 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
10716 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
10717 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
10718 disagreed with the Bison documentation. Bug
10719 reported by Andrew Walrond.
d600ee67 10720
1c5fe69d
PE
10721 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
10722 as the caller now does that.
10723 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
10724 (YYEMPTY): Parenthesize right hand side, since others use it.
10725 (yyparse): Don't assume that our generated code is the only code
10726 that sets yychar.
10727
d1de5372
PE
107282002-12-13 Paul Eggert <eggert@twinsun.com>
10729
10730 Version 1.75d.
10731
10732 POSIX requires a "yacc" command.
10733 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
10734 (MOSTLYCLEANFILES): Add yacc.
10735 (yacc): New rule.
1c5fe69d 10736 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
10737 as an alias for bison y.
10738
10739 * po/LINGUAS: Add da.
d600ee67 10740
d1de5372
PE
10741 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
10742 problem with latest <getopt.h>.
10743 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
10744
10745 * doc/fdl.texi: Upgrade to 1.2.
10746 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
10747 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
10748 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
10749 gnulib.
10750 * config/install-sh: Sync with autotools.
10751
10752 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
161a71f3 10753 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
10754 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
10755 locations are requested.
10756 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
10757 locations are requested.
10758
d0f3fe23
PE
107592002-12-12 Paul Eggert <eggert@twinsun.com>
10760
10761 Remove unportable casts and storage allocation tricks.
10762 While we're at it, remove almost all casts, since they
10763 usually aren't needed and are a sign of trouble.
10764
10765 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
10766
10767 * src/derives.c (derives_compute): Do not subtract NTOKENS from
10768 the pointer DSET returned by malloc; this isn't portable.
10769 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
10770 Similarly for DERIVES.
10771 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
10772 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
10773 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
10774
10775 * src/derives.c (derives_compute): Do not bother invoking
10776 int_of_rule_number, since rule numbers are integers.
10777
10778 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
10779 rather than XMALLOC (char, N).
10780
10781 * src/files.c (filename_split): Rewrite to avoid cast.
10782
10783 * src/gram.h (symbol_number_as_item_number,
10784 item_number_as_symbol_number, rule_number_as_item_number,
10785 item_number_as_rule_number):
10786 Now inline functions rather than macros, to avoid casts.
10787 * src/state.h (state_number_as_int): Likewise.
10788 * src/tables.c (state_number_to_vector_number,
10789 symbol_number_to_vector_number): Likewise.
10790
10791 * src/gram.h (int_of_rule_number): Remove; no longer used.
10792
10793 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
10794 since the resulting storage is always stored into.
10795
10796 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
10797 where it's needed.
10798
10799 * src/muscle_tab.c (muscle_m4_output):
10800 Now inline. Return bool, not int.
10801 * src/state.c (state_compare): Likewise.
10802 * src/symtab.c (symbol_check_defined,
10803 symbol_check_alias_consistency, symbol_pack, symbol_translation,
10804 hash_compare_symbol, hash_symbol):
10805 Likewise.
10806 * src/uniqstr.c (uniqstr_print): Likewise.
10807 * src/muscle_tab.c (muscle_m4_output_processor):
10808 New function, to avoid casts.
10809 * src/state.c (state_comparator, stage_hasher): Likewise.
10810 * src/symtab.c (symbol_check_defined_processor,
10811 symbol_check_alias_consistency_processor, symbol_pack_processor,
10812 symbol_translation_processor, hash_symbol_comparator,
10813 hash_symbol_hasher): Likewise.
10814 * src/uniqstr.c (uniqstr_print_processor): Likewise.
10815 * src/muscle_tab.c (muscles_m4_output):
10816 Use new functions instead of casting old functions unportably.
10817 * src/state.c (state_hash_new): Likewise.
10818 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
10819 symbols_token_translations_init):
10820 Likewise.
10821 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
10822
10823 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
10824 var instead of casting to long, to avoid casts.
10825 (prepare_states): Use MALLOC rather than alloca, so that we don't
10826 have to worry about alloca.
10827 * src/state.c (state_hash_lookup): Likewise.
10828
10829 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
10830 local var instead of casting to unsigned char, to avoid casts.
10831
10832 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
10833 STATE_ALLOC): Remove.
10834 (transitions_new, errs_new, reductions_new, state_new): Use malloc
10835 rather than calloc, and use offsetof to avoid allocating slightly
10836 too much storage.
10837 (state_new): Initialize all members.
10838
10839 * src/state.c (state_hash): Use unsigned accumulator, not signed.
10840
10841 * src/symtab.c (symbol_free): Remove; unused.
10842 (symbol_get): Remove cast in lhs of assignment.
10843 (symbols_do): Now static. Accept generic arguments, not
10844 hashing-related ones.
10845
10846 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
10847 (symbol_processor): Remove.
10848 (symbols_do): Remove decl; now static.
10849
10850 * src/system.h (alloca): Remove; decl no longer needed.
10851 (<stddef.h>): Include, for offsetof.
10852 (<inttypes.>, <stdint.h>): Include if available.
10853 (uintptr_t): New type, if system lacks it.
10854 (CALLOC, MALLOC, REALLOC): New macros.
10855 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
10856 new macros.
10857
10858 * src/tables.c (table_size): Now int, to pacify GCC.
10859 (table_grow, table_ninf_remap): Use signed table size.
10860 (save_row): Don't bother initializing locals when not needed.
10861 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
10862 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
10863
10864 * src/vcg.h: Correct misspellings.
10865
10866 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
10867
10868
10869 * src/getargs.c (getargs): Don't assume EOF == -1.
10870
26b4a969
PE
108712002-12-09 Paul Eggert <eggert@twinsun.com>
10872
10873 Change identifier spellings to avoid collisions with names
10874 that are reserved by POSIX.
10875
10876 Don't use names ending in _t, since POSIX reserves them.
10877 For consistency, remove _e and _s endings -- they're weren't
10878 needed to remove ambiguity. All uses changed.
10879 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
10880 turn was just renamed from struniq_t.
10881 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
10882 which in turn was just renamed from struniq_processor_t.
10883 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
10884 in turn was renamed from hash_compare_struniq_t.
10885 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
10886 (state_list): Renamed from state_list_t.
10887 * src/assoc.h (assoc): Renamed from assoc_t.
10888 * src/conflicts.c (enum conflict_resolution): Renamed from
10889 enum conflict_resolution_e.
10890 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
10891 (rule_list): Renamed from rule_list_t.
10892 * src/getargs.h (enum trace): Renamed from enum trace_e.
10893 (enum report): Renamed from enum report_e.
10894 * src/gram.h (item_number): Renamed from item_number_t.
10895 (rule_number): Renamed from rule_number_t.
10896 (struct rule_s): Remove the "rule_s" part; not used.
10897 (rule): Renamed from rule_t.
10898 (rule_filter): Renamed from rule_filter_t.
10899 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
10900 (goto_list): Renamed from goto_list_t.
10901 * src/lalr.h (goto_number): Renamed from goto_number_t.
10902 * src/location.h (location): Renamed from location_t.
10903 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
10904 and moved here from:
10905 * src/muscle_tab.h (muscle_entry_t): here.
10906 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
10907 (rule_list): Renamed from rule_list_t.
10908 * src/print_graph.c (static_graph): Renamed from graph.
10909 * src/reader.h (braced_code): Renamed from braced_code_t.
10910 Remove brace_code_e tag.
10911 * src/relation.h (relation_node): Renamed from relation_node_t.
10912 (relation_nodes): Renamed from relation_nodes_t.
10913 (relation): Renamed from relation_t.
10914 * src/state.h (state_number): Renamed from state_number_t.
10915 (struct state): Renamed from struct state_s.
10916 (state): Renamed from state_t.
10917 (transitions): Renamed from transitions_t. Unused (and
10918 misspelled) transtion_s tag removed.
10919 (errs): Renamed from errs_t. Unused errs_s tag removed.
10920 (reductions): Renamed from reductions_t. Unused tag
10921 reductions_s removed.
10922 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
10923 (struct symbol_list): Renamed from struct symbol_list_s.
10924 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
10925 (struct symbol): Renamed from struct symbol_s.
10926 (symbol): Renamed from symbol_t.
10927 * src/tables.c (vector_number): Renamed from vector_number_t.
10928 (action_number): Renamed from action_t.
10929 * src/tables.h (base_number): Renamed from base_t.
10930 * src/vcg.h (enum color): Renamed from enum color_e.
10931 (enum textmode): Renamed from enum textmode_e.
10932 (enum shape): Renamed from enum shape_e.
10933 (struct colorentry): Renamed from struct colorentry_s.
10934 (struct classname): Renamed from struct classname_s.
10935 (struct infoname): Renamed from struct infoname_s.
10936 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
10937 (enum decision): Renamed from enum decision_e.
10938 (enum orientation): Renamed from enum orientation_e.
10939 (enum alignment): Renamed from enum alignment_e.
10940 (enum arrow_mode): Renamed from enum arrow_mode_e.
10941 (enum crossing_type): Renamed from enum crossing_type_e.
10942 (enum view): Renamed from enum view_e.
10943 (struct node): Renamed from struct node_s.
10944 (node): Renamed from node_t.
10945 (enum linestyle): Renamed from enum linestyle_e.
10946 (enum arrowstyle): Renamed from enum arrowstyle_e.
10947 (struct edge): Renamed from struct edge.
10948 (edge): Renamed from edge_t.
10949 (struct graph): Renamed from struct graph_s.
10950 (graph): Renamed from graph_t.
10951 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
10952 Rename value_t -> value.
10953 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
10954 value_t_as_yystype -> value_as_yystype.
10955
10956 Don't include <errno.h> in the mainstream code, since it
10957 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
10958 * lib/get-errno.c, lib/get-errno.h: New files.
10959 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
10960 get-errno.c.
10961 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
10962 * src/output.c (output_skeleton): Likewise.
10963 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
10964 instead of errno.
10965 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
10966 Likewise.
10967 (handle_action_dollar, handle_action_at): Likewise.
10968 * src/system.h: Do not include <errno.h>.
10969 (TAB_EXT): Renamed from EXT_TAB.
10970 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
10971
10972 Avoid str[a-z]*, since <string.h> reserves that name space.
10973 Change all instances of "struniq" in names to "uniqstr", and
10974 likewise for "STRUNIQ" and "UNIQSTR".
10975 * src/uniqstr.c: Renamed from src/struniq.c.
10976 * src/uniqstr.h: Renamed from src/struniq.h.
10977 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
10978 * src/files.c (strsuffix): Remove; unused.
10979 (concat2): Renamed from stringappend. Now static.
10980 * src/files.h (strsuffix, stringappend): Remove; unused.
10981 * src/parse-gram.y (<chars>): Renamed from <string>.
10982 (<uniqstr>): Renamed from <struniq>.
10983 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
10984 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
10985 (struct graph_s.expand): Renamed from struct graph_s.stretch.
10986 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
10987 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
10988 (N_EXPAND): Renamed from N_STRETCH.
10989
10990 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
10991 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
10992 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
10993 Remove; unused.
10994 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
10995 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
10996 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
10997 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
10998 (BASE_MAXIMUM): Renamed from BASE_MAX.
10999 (BASE_MINIMUM): Renamed from BASE_MIN.
11000 (ACTION_MAX): Remove; unused.
11001 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
11002 Unnecessary casts removed from above defines.
11003
11004
11005 Fix misspelling in names.
11006 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
11007 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
11008 G_NODE_ALIGNEMENT.
11009
11010
11011 * lib/timevar.c (timevar_report): Renamed from time_report,
11012 for consistency with other names.
11013 * lib/timevar.h (timevar_report): New decl.
11014 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
11015
11016
11017 Sort include-file uses.
11018
11019 Reorder all include files under src to be in the order "system.h".
11020 then the ../lib include files in angle brackets (alphabetized),
11021 then the . include files in double-quotes (alphabetized). Fix
11022 dependency breakages encountered in this process, as follows:
11023 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
11024 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
11025 * src/state.h: Include "symtab.h".
11026
996b1c7e
PE
110272002-12-08 Paul Eggert <eggert@twinsun.com>
11028
11029 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
11030 since this causes problems when __file__ contains character
11031 sequences like "@" that are treated specially by src/scan-skel.l.
11032 Instead, just use the file's basename. This fixes the bug
11033 reported by Martin Mokrejs in
161a71f3 11034 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 11035
e19c4e5d
PE
110362002-12-06 Paul Eggert <eggert@twinsun.com>
11037
11038 Add support for rules that do not have trailing semicolons, as
11039 POSIX requires. Improve the quality of locations in Bison
11040 diagnostics.
26b4a969 11041
e19c4e5d
PE
11042 * src/location.c: Include <quotearg.h>.
11043 (empty_location): Now const.
11044 (location_print): New function. Follow the recommendation of the
11045 GNU Coding Standards for locations that span file boundaries.
11046 * src/location.h: Do not include <quotearg.h>; no longer needed.
11047 (boundary): New type.
11048 (location_t): Use it. This allows locations to span file boundaries.
11049 All member uses changed: file -> start.file or end.file (as needed),
11050 first_line -> start.line, first_column -> start.column,
11051 last_line -> end.line, last_column -> end.column.
11052 (equal_boundaries): New function.
11053 (LOCATION_RESET, LOCATION_STEP): Remove.
11054 (LOCATION_PRINT): Remove. All callers changed to use location_print.
11055 (empty_location): Now const.
11056 (location_print): New decl.
11057 * src/parse-gram.y (lloc_default): New function, which handles
11058 empty locations more accurately.
11059 (YYLLOC_DEFAULT): Use it.
11060 (%token COLON): Remove.
11061 (%token ID_COLON): New token.
26b4a969 11062 (rules): Use it.
e19c4e5d
PE
11063 (declarations, rules): Remove trailing semicolon.
11064 (declaration, rules_or_grammar_declaration):
11065 Allow empty (";") declaration.
11066 (symbol_def): Remove empty actions; no longer needed.
11067 (rules_or_grammar_declaration): Remove trailing semicolon.
11068 (semi_colon.opt): Remove.
11069 * src/reader.h: Include location.h.
11070 (scanner_cursor): New decl.
11071 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
11072 rolling our own.
11073 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
11074 of *loc.
11075 (STEP): Remove. No longer needed, now that adjust_location does
11076 the work. All uses removed.
11077 (scanner_cursor): New var.
11078 (adjust_location): Renamed from extend_location. It now sets
11079 *loc and adjusts the scanner cursor. All uses changed.
11080 Don't bother testing for CR.
11081 (handle_syncline): Remove location arg; now updates scanner cursor.
11082 All callers changed.
11083 (unexpected_end_of_file): Now accepts start boundary of token or
11084 comment, not location. All callers changed. Update scanner cursor,
11085 not the location.
11086 (SC_AFTER_IDENTIFIER): New state.
11087 (context_state): Renamed from c_context. All uses changed.
11088 (id_loc, code_start, token_start): New local vars.
11089 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
11090 processing of Yacc white space and equivalents here.
11091 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
11092 instead of returning ID immediately, since we need to search for
11093 a subsequent colon.
11094 (<INITIAL>"'", "\""): Save token_start.
11095 (<INITIAL>"%{", "{", "%%"): Save code_start.
11096 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
11097 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
11098 BEGIN context_state at end, not INITIAL.
11099 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
11100 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
11101 Return correct token start.
11102 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
11103 the start of a character, string or multiline comment is found.
11104 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
11105 Reduction): Adjust reported locations to match the more-precise
11106 results now expected.
11107 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
11108 * tests/reduce.at (Useless Rules, Reduced Automaton,
11109 Underivable Rules): Likewise.
11110 * tests/regression.at (Invalid inputs): No longer `expecting ";"
11111 or "|"' now that so many other tokens are allowed by the new grammar.
11112
11113 * src/complain.h (current_file): Remove duplicate decl;
11114 current_file is now owned by files.h.
11115 * src/complain.c, src/scan-gram.l: Include files.h.
11116
111172002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 11118
e19c4e5d
PE
11119 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
11120 promotes to int; it might be unsigned int.
11121 * data/yacc.c (yy_reduce_print): Likewise.
11122
11123 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
11124 be #defined in the prologue, not in the Bison declarations.
11125 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 11126
b64755e3
PE
111272002-12-02 Paul Eggert <eggert@twinsun.com>
11128
11129 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
11130 * lib/strtoul.c: New file, from gnulib.
11131 This fixes a porting bug reported by Peter Klein in
161a71f3 11132 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 11133
6e746484
PE
111342002-11-30 Paul Eggert <eggert@twinsun.com>
11135
b64755e3
PE
11136 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
11137 and put only a forward declaration in the prologue. This is for
11138 consistency with the other scanner helper functions.
11139
6ba55592
PE
11140 Type clashes now generate warnings, not errors, since it
11141 appears that POSIX may allow some grammars with type clashes.
11142 * src/reader.c (grammar_current_rule_check): Warn about
11143 type clashes instead of complaining.
11144 * tests/input.at (Type Clashes): Expect warnings, not complaints.
11145
6e746484
PE
11146 Add Yacc library, since POSIX requires it.
11147 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
11148 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
11149 * lib/main.c, lib/yyerror.c: New files.
11150
11151 gram_error can be static; it need not be extern.
11152 * src/reader.h (gram_error): Remove decl.
11153 * src/parse-gram.y (gram_error): Now static. Add static decl.
11154 (print_token_value): Omit parameter names from forward decl,
11155 for consistency.
11156
88510f9c
PE
111572002-11-29 Paul Eggert <eggert@twinsun.com>
11158
6e746484
PE
11159 * doc/bison.texinfo: Emphasize that yylex and yyerror must
11160 be declared before being used. E.g., one should typically
11161 declare them in the prologue. Use GNU coding style in examples.
11162 Put "const" consistently after the type it modifies. Mention
11163 that C99 supports "inline". Mention that yyerror traditionally
11164 returns "int".
11165
88510f9c
PE
11166 %parse-param and %lex-param now take just one argument, the
11167 declaration; the argument name is deduced from the declaration.
11168
11169 * doc/bison.texinfo (Parser Function, Pure Calling, Error
11170 Reporting, Table of Symbols): Document this.
11171 * src/parse-gram.y (add_param): New function.
11172 (COMMA): Remove.
11173 (declaration): Implement new rule for %parse-param and %lex-param.
11174 * src/scan-gram.l: "," now elicits a warning, rather than being
11175 a token; this is more compatible with byacc.
11176 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
11177
bb92250c
PE
111782002-11-27 Paul Eggert <eggert@twinsun.com>
11179
11180 Rename identifiers to avoid real and potential collisions.
11181
11182 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
11183 to avoid collision with lex macro described by Bruce Lilly in
161a71f3 11184 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
11185 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
11186 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
11187 * src/parse-gram.y (print_token_value): Renamed from yyprint.
11188 All uses changed.
11189 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
11190 The name "yycontrol" violates the name space rules, and this stuff
11191 wasn't being used anyway.
11192 (input): Remove action; this stuff wasn't being used.
11193 (gram_error): Rename local variable yylloc -> loc.
11194 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
11195 (YY_DECL): Don't use "yy" at start of local variables.
11196 All uses changed, e.g., yylloc -> loc.
11197 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
11198 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
11199 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
11200 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
11201
11202 * src/parse-gram.y (gram_error): loc is now const *.
11203 * src/reader.h (gram_error): Likewise.
11204
3af4feb2
PE
112052002-11-24 Paul Eggert <eggert@twinsun.com>
11206
11207 Version 1.75c.
11208
11209 * tests/actions.at (Actions after errors): Use an output format
11210 more similar to that of the Printers and Destructors test.
11211 Test the position of the ';' token too.
11212 (Printers and Destructors): Likewise.
11213 (Printers and Destructors: %glr-parser): Remove for now, to avoid
11214 unnecessarily alarming people when the test fails.
11215
11216 * data/yacc.c (yyerrlab1): Move this label down, so that the
11217 parser does not discard the lookahead token if the user code
11218 invokes YYERROR. This change is required for POSIX conformance.
11219
11220 * lib/error.c: Sync with gnulib.
11221
112222002-11-22 Paul Eggert <eggert@twinsun.com>
11223
11224 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
11225 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
11226 * lib/xmalloc.c: Likewise.
26b4a969 11227
58004308
PE
112282002-11-20 Paul Eggert <eggert@twinsun.com>
11229
11230 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
11231
112322002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 11233
58004308
PE
11234 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
11235 should use `if (! x) abort ();' rather than `assert (x);', and
11236 anyway it's one less thing to worry about configuring.
11237
11238 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
11239 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
11240 and replace all instances of assert with abort.
11241 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
11242 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
11243
11244 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
11245 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
11246 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
11247 hash_find_entry, hash_rehash, hash_insert): Likewise.
11248 * src/conflicts.c (resolve_sr_conflict): Likewise.
11249 * src/lalr.c (set_goto_map, map_goto): Likewise.
11250 * src/nullable.c (nullable_compute): Likewise.
11251 * src/output.c (prepare_rules, token_definitions_output): Likewise.
11252 * src/reader.c (packgram, reader): Likewise.
11253 * src/state.c (state_new, state_free, state_transitions_set,
11254 state_reduction_find): Likewise.
11255 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
11256 symbol_pack): Likewise.
11257 * src/tables.c (conflict_row, pack_vector): Likewise.
11258 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11259 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11260 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
11261 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
11262
11263 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
11264 (ARGMATCH_CONSTRAINT): New macro.
11265 (ARGMATCH_ASSERT): Use it.
11266
11267 * src/system.h (verify): New macro.
11268 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
11269 rather than assert.
11270 * src/tables.c (tables_generate): Likewise.
11271
11272 * src/struniq.c (struniq_assert): Now returns void, and aborts
11273 if the assertion is false.
11274 (struniq_assert_p): Remove.
11275 * src/struniq.h: Likewise.
11276
76ae8198
PE
112772002-11-18 Paul Eggert <eggert@twinsun.com>
11278
11279 * data/glr.c (yygetLRActions): Replace `yyindex' with
11280 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
11281 This fixes the regression with Sun ONE Studio 7 cc that I reported in
161a71f3 11282 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 11283
d3c4e709
AD
112842002-11-18 Akim Demaille <akim@epita.fr>
11285
11286 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
11287 space.
11288 From Tim Van Holder.
11289
8d8a7238
PE
112902002-11-17 Paul Eggert <eggert@twinsun.com>
11291
11292 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
11293 to "SyntaxError" for consistency with my 2002-11-15 change.
11294
11295 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
11296 not define to {}, since this breaks the common use of `YYDPRINTF
11297 ((...));' if a single statement is desired (e.g. before `else').
11298 Work around GCC warnings by surrounding corresponding calls with
11299 {} if needed.
11300 (yyhasResolvedValue): Remove unused function.
11301 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
11302 loop body.
11303 (yyreportSyntaxError): Renamed from yyreportParseError.
11304 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
11305 All uses changed.
11306 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
11307 extern when possible. Remove unused initializations.
11308
b0937b22
AD
113092002-11-16 Akim Demaille <akim@epita.fr>
11310
11311 Augment the similarity between GLR and LALR traces.
11312
11313 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
11314 (YY_REDUCE_PRINT): New.
11315 (yyparse): Use them.
11316 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
11317 YYDPRINT here.
11318 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
11319 state reached after the reduction/recovery, since...
11320 (yyparse, yyprocessOneStack): Report the state we are entering in.
11321
c5e3e510
AD
113222002-11-16 Akim Demaille <akim@epita.fr>
11323
11324 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
11325 Add support for --trace=skeleton.
11326 * src/scan-skel.l: %option debug.
11327 Scan strings of non-@ or \n instead of character by character.
11328 (scan_skel): Handle trace_skeleton.
11329 (QPUTS): New.
11330 (@output_parser_name@, @output_header_name@): ``Restore'' their
11331 support (used to be M4 macros).
11332 * data/yacc.c: Quote larger chunks, a la glr.c.
11333 * data/lalr1.cc: Likewise.
11334 The header guards are no longer available, so use some other
11335 string than `YYLSP_NEEDED'.
11336
4c6cc1db
AD
113372002-11-16 Akim Demaille <akim@epita.fr>
11338
11339 Make the ``Printers and Destructors'' test more verbose, taking
11340 `yacc.c''s behavior as (possibly wrong) reference.
11341
11342 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
11343 instead of fprint on stdout.
11344 Set and report the last_line of the symbols.
11345 Consistently display values and locations.
11346
6d9e8019
PE
113472002-11-16 Paul Eggert <eggert@twinsun.com>
11348
11349 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
11350
6e649e65
PE
113512002-11-15 Paul Eggert <eggert@twinsun.com>
11352
b25d88f6
PE
11353 * tests/actions.at (Actions after errors): New test case.
11354
6e649e65
PE
11355 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
11356 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
11357 tests/action.at, tests/calc.at, tests/conflicts.at,
11358 tests/cxx-type.at, tests/regression.at:
11359 "parse error" -> "syntax error" for POSIX compatibility.
11360 "parsing stack overflow..." -> "parser stack overflow" so
11361 that code matches Bison documentation.
11362
0f39aab9
AD
113632002-11-15 Akim Demaille <akim@epita.fr>
11364
11365 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
11366 take two BRACED_CODE, not two string_content.
11367 Free the scanner's obstack when we are done.
11368 (code_content): New.
11369 * tests/calc.at: Adjust.
11370 * doc/bison.texinfo: Adjust.
11371 Also, make sure to include the `,' for these declarations.
11372
761c1926
AD
113732002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
11374
11375 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
11376 definition; avoids potential autoreconf problems.
11377
b0f98b10
AD
113782002-11-15 Akim Demaille <akim@epita.fr>
11379
11380 Always check the value returned by yyparse.
11381
11382 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
11383 returned by yyparse.
11384 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
11385 Adjust calls.
11386 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
11387 returned by yyparse.
11388
970785f1
PH
113892002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11390
11391 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
11392 on input.at test.
11393
8fcc7db1
PE
113942002-11-14 Paul Eggert <eggert@twinsun.com>
11395
7ec1b48e
PE
11396 * src/output.c (output_skeleton): Call xfopen instead of
11397 duplicating xfopen's body.
11398
cfff7583 11399 Fix bugs reported by Nelson H. F. Beebe in
161a71f3 11400 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 11401
8fcc7db1
PE
11402 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
11403 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
11404 Group compiler. Instead, use "$CC -E bar.c". Include the .h
11405 file twice in the grammar, as an extra check.
11406
11407 * tests/input.at (Torturing the Scanner): Surround the
11408 backslash-newline tests with "#if 0", to make it less likely that
11409 we'll run into compiler bugs. Bring back solitary \ inside
11410 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 11411 test backslash-newline in C character constant.
8fcc7db1 11412
4e8d992c
AD
114132002-11-14 Akim Demaille <akim@epita.fr>
11414
11415 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
11416 status of the compiler.
f32b346d 11417 Calling `exit 1' is no longer needed.
4e8d992c
AD
11418 Reported by Nelson H. F. Beebe.
11419
9501dc6e
AD
114202002-11-14 Akim Demaille <akim@epita.fr>
11421
11422 * tests/atlocal.in (CPPFLAGS): We have config.h.
11423 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
11424 New.
11425 * tests/actions.at, tests/calc.at, tests/conflicts.at,
11426 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
11427 * tests/regression.at, tests/torture.at: Use them for all the
11428 grammars that are to be compiled.
11429 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
11430 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
11431 * doc/bison.texinfo (GLR Parsers): Document `inline'.
11432
18b519c0
AD
114332002-11-14 Akim Demaille <akim@epita.fr>
11434
11435 * doc/bison.texinfo: Various formatting changes (alignments in
11436 samples, additional @group/@end group, GCS in samples.
11437 Use @deffn instead of simple @table to define the directives,
11438 macros, variables etc.
11439
9a86cdb9
PE
114402002-11-13 Paul Eggert <eggert@twinsun.com>
11441
daa33def 11442 Fix some bugs reported by Albert Chin-A-Young in
161a71f3 11443 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 11444
daa33def 11445 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 11446 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
11447 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
11448 * tests/headers.at (export YYLTYPE): Likewise.
11449
11450 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 11451 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 11452
9a86cdb9
PE
11453 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
11454 comments, since they're not portable. Use GNU coding style.
11455
9c1e26bd
AD
114562002-11-13 Akim Demaille <akim@epita.fr>
11457
11458 * data/yacc.c: Leave bigger chunks of quoted text.
11459 (YYDSYMPRINTF): New.
11460 Use it to report symbol activities.
11461 * data/glr.c (YYDSYMPRINTF): New.
11462 Use it.
11463
87f721cc
PE
114642002-11-12 Paul Eggert <eggert@twinsun.com>
11465
11466 Version 1.75b.
11467
11468 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
11469 (yyglrReduce): Return yyok, not 0.
11470 This should avoid the enumerated-type warnings reported
464c6927 11471 by Nelson H. F. Beebe in
161a71f3 11472 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
11473
11474 * lib/bbitset.h (BITSET_INLINE): Remove.
11475 * lib/bitset.h [! BITSET_INLINE]: Remove.
11476 (bitset_set, bitset_reset, bitset_test): Rename local vars
11477 to avoid shadowing warnings by GCC.
11478
11479 * data/glr.c (inline): Remove #define. It's the user's
11480 responsibility to #define it away, just like 'const'.
464c6927 11481 This fixes one of the bugs reported by Nelson H. F. Beebe in
161a71f3 11482 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 11483
87f721cc
PE
11484 * Makefile.maint (po-check): Scan .l and .y files instead of the
11485 .c and the .h files that they generate. This fixes the bug
11486 reported by Tim Van Holder in:
161a71f3 11487 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
11488 Look for N_ as well as for _. Try to avoid matching #define for
11489 N_ and _.
11490 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
11491 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
11492 * src/scan-gram.l: Revamp regular expressions so that " and '
11493 do not confuse xgettext.
11494
11495 * src/struniq.h (struniq_new): Do not declare the return type
11496 to be 'const'; this violates the C standard.
11497 * src/struniq.c (struniq_new): Likewise.
11498
be14ade5
AD
114992002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
11500
11501 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
11502 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
11503 linker.
11504
05291fbc
AD
115052002-11-12 Akim Demaille <akim@epita.fr>
11506
11507 * Makefile.maint: Sync with Autoconf:
11508 (local_updates): New.
11509
1f5fd52e
AD
115102002-11-12 Akim Demaille <akim@epita.fr>
11511
11512 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
11513
283f1e64
AD
115142002-11-12 Akim Demaille <akim@epita.fr>
11515
11516 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
11517 locations.
11518
886b69d1
AD
115192002-11-12 Akim Demaille <akim@epita.fr>
11520
11521 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
11522 not yyvalue.
11523
3df37415
AD
115242002-11-12 Akim Demaille <akim@epita.fr>
11525
11526 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
11527 Use it to test the GLR parser.
11528
7bd6c77e
AD
115292002-11-12 Akim Demaille <akim@epita.fr>
11530
11531 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
11532 defines it.
11533 * data/glr.c (yystos): New.
11534 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
11535 (YYDSYMPRINT): New.
11536 (yyval): Don't define it, it is handled via M4.
11537 (yyrecoverParseError): Free verbosely the discarded symbols.
11538 * data/yacc.c (yysymprint): Remove, rather...
11539 (b4_yysymprint_generate): invoke.
11540 * data/c.m4 (b4_yysymprint_generate): New.
11541 Accept pointers as arguments, as opposed to the version from
11542 yacc.c.
11543 (b4_yydestruct_generate): Likewise.
11544 * tests/cations.at (Printers and Destructors): Use Bison directives
11545 instead of CPP macros.
11546 Don't rely on internal details.
11547
b0400cc6
AD
115482002-11-12 Akim Demaille <akim@epita.fr>
11549
11550 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
11551 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
11552 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
11553 it against YYEMPTY and so forth), work on yytoken (i.e., set
11554 it to YYEMPTY etc.).
11555 (yydestruct): Replace with a b4_yydestruct_generate invocation.
11556 (b4_symbol_actions): Remove.
11557 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
11558 for 0, end-of-input.
11559
72f889cc
AD
115602002-11-12 Akim Demaille <akim@epita.fr>
11561
11562 * doc/bison.texinfo (Destructor Decl): New.
11563
b1ae9233
AD
115642002-11-12 Akim Demaille <akim@epita.fr>
11565
11566 * src/tables.c (tables_generate): Use free for pointers that
11567 cannot be NULL, not XFREE.
11568 (pack_vector): Use assert, not fatal, for bound violations.
11569 * src/state.c (state_new): Likewise.
11570 * src/reader.c (reader): Likewise.
11571 * src/lalr.c (set_goto_map): Likewise.
72f889cc 11572 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
11573 the file name.
11574
7ec2d4cd
AD
115752002-11-12 Akim Demaille <akim@epita.fr>
11576
11577 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
11578 Restore.
11579 * src/scan-gram.l (last_string): Is global to the file, not to
11580 yylex.
11581 * src/parse-gram.y (input): Don't append the epilogue here,
11582 (epilogue.opt): do it here, and free the scanner's obstack.
11583 * src/reader.c (epilogue_set): Rename as...
11584 (epilogue_augment): this.
11585 * data/c.m4 (b4_epilogue): Defaults to empty.
11586
573a6cd3
AD
115872002-11-12 Akim Demaille <akim@epita.fr>
11588
11589 * src/getargs.c (long_options): Remove duplicates.
11590 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
11591 Remove.
11592 * doc/bison.rnh: Remove.
11593 * doc/bison.texinfo (VMS Invocation): Remove.
11594
95612cfa
AD
115952002-11-12 Akim Demaille <akim@epita.fr>
11596
11597 * src/struniq.h, src/struniq.c (struniq_t): Is const.
11598 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
11599
11600 Use struniq for symbols.
11601
11602 * src/symtab.h (symbol_t): The tag member is a struniq.
11603 (symbol_type_set): Adjust.
11604 * src/symtab.c (symbol_new): Takes a struniq.
11605 (symbol_free): Don't free the tag member.
11606 (hash_compare_symbol_t, hash_symbol_t): Rename as...
11607 (hash_compare_symbol, hash_symbol): these.
11608 Use the fact that tags as struniqs.
11609 (symbol_get): Use struniq_new.
11610 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
11611 Returns a strniq.
11612 * src/reader.h (merger_list, grammar_currentmerge_set): The name
11613 and type members are struniqs.
11614 * src/reader.c (get_merge_function)
11615 (grammar_current_rule_merge_set): Adjust.
11616 (TYPE, current_type): Are struniq.
11617
11618 Use struniq for file names.
11619
11620 * src/files.h, src/files.c (infile): Split into...
11621 (grammar_file, current_file): these.
11622 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
11623 * src/reduce.c (reduce_print): Likewise.
11624 * src/getargs.c (getargs): Likewise.
11625 * src/complain.h, src/complain.c: Likewise.
11626 * src/main.c (main): Call struniqs_new early enough to use it for
11627 file names.
11628 Don't free the input file name.
11629
3e6656f9
AD
116302002-11-12 Akim Demaille <akim@epita.fr>
11631
11632 * src/symtab.c (symbol_free): Remove dead deactivated code:
11633 type_name are properly removed.
11634 Don't use XFREE to free items that cannot be NULL.
11635 * src/struniq.h, src/struniq.c: New.
11636 * src/main.c (main): Initialize/free struniqs.
11637 * src/parse-gram.y (%union): Add astruniq member.
11638 (yyprint): Adjust.
11639 * src/scan-gram.l (<{tag}>): Return a struniq.
11640 Free the obstack bit that used to store it.
11641 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
11642
7672019c
PE
116432002-11-11 Paul Eggert <eggert@twinsun.com>
11644
11645 Revamp to fix many (but not all) of the C- and M4-related quoting
11646 problems. Among other things, this fixes the Bison bug reported
11647 by Jan Hubicka when processing the Bash grammar; see:
161a71f3 11648 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
11649
11650 Use new @ escapes consistently. Represent brackets with @{ and @}
11651 rather than @<:@ and @:>@, since this works a bit better with dumb
11652 editors like vi. Represent @ with @@, since @ is now consistently
11653 an escape. Use @oline@ and @ofile@ rather than __oline__ and
11654 __ofile__, to avoid unexpected expansions. Similarly, use @output
11655 rather than #output.
11656
11657 * data/c.m4 (b4_copyright): Omit file name from comment, since
11658 the file name could contain "*/".
11659 (b4_synclines_flag): Don't quote the 2nd argument; it should already
11660 be quoted. All uses changed.
11661
11662 * data/glr.c: Use new @ escapes consistently.
11663 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
11664 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
11665 Remove, since they couldn't handle arbitrary characters in file
11666 names.
11667 * data/lalr1.cc: Likewise.
11668 * data/yacc.c: Likewise.
11669
11670 * src/files.c (output_infix): Remove; all uses removed.
11671 * src/files.h: Likewise.
11672
11673 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
11674 mishandled funny characters in file names, and anyway it isn't
11675 needed any more.
11676 * data/yacc.c: Likewise.
11677 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
11678
11679 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
11680 * data/yacc.c: Likewise.
11681
11682 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
11683 strings now.
11684 (muscle_init): Quote filename as a C string.
11685 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
11686 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
11687 * src/output.c (escaped_file_name_output): New function.
11688 (prepare_symbols): Quote tokens for M4.
11689 (prepare): Don't insert output_infix, output_prefix,
11690 output_parser_name, output_header_name; this is now down by scan-skel.
11691 Insert skeleton as a C string.
11692
11693 * src/output.c (user_actions_output, symbol_destructors_output,
11694 symbol_printers_output): Quote filenames for C and M4.
11695 * src/reader.c (prologue_augment, epilogue_set): Likewise.
11696
11697 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
11698 escapes other than \\ and \'; this simplifies the code.
11699 (<SC_STRING>): Likewise, for \\ and \".
11700 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
11701 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
11702 Use new escapes @{ and @} for [ and ].
11703
11704 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
11705 them with auto vars.
11706 Switch to new escape scheme, where @ is the escape character uniformly.
11707 Abort if a stray escape character is found. Avoid unbounded input
11708 buffer when parsing non-escaped text.
11709
11710 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
11711 __oline__, #output, $@, and @{ do not have unintended meanings.
11712
acea4f3b
PE
117132002-11-09 Paul Eggert <eggert@twinsun.com>
11714
11715 Fix the test failure due to GCC warnings described in
161a71f3 11716 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
11717 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
11718 evaluate to 0 if it's impossible for NINF to be in the respective
11719 table.
11720 (yygetLRActions, yyrecoverParseError): Use them.
11721
11722 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
11723 counted in the token inserted at end of file. Now takes
11724 location_t *, not location_t, so that the location can be
11725 adjusted. All uses changed.
11726
11727 * tests/regression.at (Invalid inputs): Adjust wording in
11728 diagnostic to match the new behavior.
11729
11730 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
11731 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
11732 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
11733 abort ();'. This reduces the runtime of the "Many lookaheads"
11734 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
11735 GCC 3.2.
11736
20ef1ad5
PE
117372002-11-07 Paul Eggert <eggert@twinsun.com>
11738
11739 * src/parse-gram.y (CHARACTER): Remove unused token.
11740 All uses removed.
11741
11742 * src/scan-gram.l: Remove stack option. We no longer use the
11743 stack, since the stack was never deeper than 1; instead, use the
11744 new auto var c_context to record the stacked value.
11745
11746 Remove nounput option. At an unexpected end of file, we now unput
11747 the minimal input necessary to end cleanly; this simplifies the
11748 code.
11749
11750 Avoid unbounded token sizes where this is easy.
11751
11752 (unexpected_end_of_file): New function.
11753 Use it to systematize the error message on unexpected EOF.
11754 (last-string): Now auto, not static.
11755 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
11756 (scanner_last_string_free): Remove; not used.
11757 (percent_percent_count): Move decl to just before use.
11758 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
11759 not the (never otherwised-used) CHARACTER.
11760
93724f13
AD
117612002-11-07 Akim Demaille <akim@epita.fr>
11762
11763 Let yyerror always receive the msg as last argument, so that
11764 yyerror can be variadic.
11765
11766 * data/yacc.c (b4_yyerror_args): New.
11767 Use it when calling yyerror.
11768 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
11769 Use it when calling yyerror.
11770 * doc/bison.texinfo (Error Reporting): Adjust.
11771 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
11772 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
11773
6e40b4eb
AD
117742002-11-06 Akim Demaille <akim@epita.fr>
11775
11776 #line should have quoted strings.
11777 Ideally, this should be done by m4_quotearg.
11778
11779 * src/scan-skel.l: Include quotearg.h.
11780 Quote __ofile__.
11781 * src/output.c (symbol_printers_output)
11782 (symbol_destructors_output): Quote the file name.
11783
2dfbfc12
AD
117842002-11-06 Akim Demaille <akim@epita.fr>
11785
11786 * tests/regression.at (Invalid inputs): Adjust to the recent
11787 messages.
11788
437c2d80
AD
117892002-11-06 Akim Demaille <akim@epita.fr>
11790
11791 Restore --no-lines.
11792 Reported by Jim Kent.
11793
11794 * data/c.m4 (b4_syncline): New.
11795 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
11796 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
11797 * src/output.c (user_actions_output): Likewise.
11798 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 11799 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 11800
900c5db5
AD
118012002-11-06 Akim Demaille <akim@epita.fr>
11802
11803 * src/main.c (main): Free `infile'.
11804 * src/scan-gram.l (handle_syncline): New.
11805 Recognize `#line'.
11806 * src/output.c (user_actions_output, symbol_destructors_output)
11807 (symbol_printers_output): Use the location's file name, not
11808 infile.
11809 * src/reader.c (prologue_augment, epilogue_set): Likewise.
11810
e183b123 118112002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 11812
e183b123 11813 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 11814 either has GLR conflict entries.
e183b123 11815
193eb6b7
PE
118162002-11-05 Paul Eggert <eggert@twinsun.com>
11817
e183b123
PE
11818 * src/scan-gram.l: Use more accurate diagnostics, e.g.
11819 "integer out of range" rather than "invalid value".
11820 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
11821 accordingly.
11822
193eb6b7
PE
11823 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
11824 Also, remove one static variable in the scanner.
11825
11826 * src/scan-gram.l (braces_level): Now auto, not static.
11827 Initialize to zero if the compiler is being picky.
11828 (INITIAL): Clear braces_level instead of incrementing it.
11829 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
11830 as POSIX 1003.1-2001 requires.
11831 * src/system.h (IF_LINT): New macro, taken from coreutils.
11832 * configure.ac: Define "lint" if --enable-gcc-warnings.
11833
29c01725
AD
118342002-11-05 Akim Demaille <akim@epita.fr>
11835
11836 * src/scan-gram.l: When it starts with `%', complain about the
11837 whole directive, not just that `invalid character: %'.
11838
8aeac3ca
AD
118392002-11-04 Akim Demaille <akim@epita.fr>
11840
11841 * Makefile.maint: Update from Autoconf.
11842 (update, cvs-update, po-update, do-po-update): New.
11843
793a58bb
AD
118442002-11-04 Akim Demaille <akim@epita.fr>
11845
11846 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
11847 and yyerror.
11848 Have yyerror `use' its arguments.
11849 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
11850 returns true when location & yacc & pure & parse-param.
11851 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
11852
c4d720cd
AD
118532002-11-04 Akim Demaille <akim@epita.fr>
11854
11855 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
11856 clashes.
11857 * src/scan-gram.l: Use [\'] instead of ['] to pacify
11858 font-lock-mode.
11859 Use complain_at.
11860 Use quote, not quote_n since LOCATION_PRINT no longer uses the
11861 slot 0.
11862
613a0dc5
PE
118632002-11-03 Paul Eggert <eggert@twinsun.com>
11864
11865 * src/reader.c (get_merge_function, grammar_current_rule_check):
11866 Use consistent diagnostics for reporting type name clashes.
11867 Quote the types with <>, for consistency with Yacc.
11868 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
11869
2a8d363a
AD
118702002-11-03 Akim Demaille <akim@epita.fr>
11871
11872 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
11873 New.
11874 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
11875 (b4_parse_param): Remove.
11876 Use b4_identification.
11877 Propagate b4_pure_args where needed to pass them to yyerror.
11878 * data/glr.m4 (b4_parse_param): Remove.
11879 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
11880 (b4_lpure_formals): New.
11881 Use b4_identification.
11882 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
11883 b4_user_formals and b4_user_args.
11884 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
11885 (yyreportAmbiguity): When using a pure parser, also need
11886 the location, and the parse-params.
11887 Adjust callers.
11888 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
11889 When using a pure parser, also need the parse-params.
11890 Adjust callers.
11891 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
11892 (%pure-parser + %parse-param) LALR and GLR parsers.
11893 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
11894 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
11895 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
11896 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
11897 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
11898 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
11899 * doc/bison.texinfo: Untabify the whole file.
11900 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
11901 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
11902 (Error Reporting): Adjust to these new directives.
11903 Document %error-verbose, deprecate YYERROR_VERBOSE.
11904
9e32add8
AD
119052002-11-03 Akim Demaille <akim@epita.fr>
11906
11907 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
11908 AT_CHECK_CALC_GLR invocations to use % directives, instead of
11909 command line options.
11910 * tests/cxx-type.at: Formatting changes.
11911
b02d90a5
PE
119122002-11-03 Paul Eggert <eggert@twinsun.com>
11913
11914 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
11915 to count columns correctly, and to check for invalid inputs.
9e32add8 11916
b02d90a5
PE
11917 Use mbsnwidth to count columns correctly. Account for tabs, too.
11918 Include mbswidth.h.
11919 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
11920 (extend_location): New function.
11921 (YY_LINES): Remove.
11922
11923 Handle CRLF in C code rather than in Lex code.
11924 (YY_INPUT): New macro.
11925 (no_cr_read): New function.
11926
11927 Scan UCNs, even though we don't fully handle them yet.
11928 (convert_ucn_to_byte): New function.
11929
11930 Handle backslash-newline correctly in C code.
11931 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
11932 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
11933 all uses changed.
11934 (tag, splice): New EREs. Do not allow NUL or newline in tags.
11935 Use {splice} wherever C allows backslash-newline.
11936 YY_STEP after space, newline, vertical-tab.
11937 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 11938
b02d90a5
PE
11939 (letter, id): Don't assume ASCII; e.g., spell out a-z.
11940
11941 ({int}, handle_action_dollar, handle_action_at): Check for integer
11942 overflow.
9e32add8 11943
b02d90a5
PE
11944 (YY_STEP): Omit trailing semicolon, so that it's more like C.
11945
11946 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
11947 as well as \000. Check for UCHAR_MAX, not 255.
11948 Allow \x with an arbitrary positive number of digits, as in C.
11949 Check for overflow here.
11950 Allow \? and UCNs, for compatibility with C.
11951
11952 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
11953 with quote slot used by complain_at.
11954
11955 * tests/input.at: Add tests for backslash-newline, m4 quotes
11956 in symbols, long literals, and funny escapes in strings.
11957
11958 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
11959 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
11960 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
11961 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
11962 * m4/mbswidth.m4: New file, from GNU coreutils.
11963
11964 * doc/bison.texinfo (Grammar Outline): Document // comments.
11965 (Symbols): Document that trigraphs have no special meaning in Bison,
11966 nor is backslash-newline allowed.
11967 (Actions): Document that trigraphs have no special meaning.
11968
11969 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
11970 no longer used.
11971
119722002-11-02 Paul Eggert <eggert@twinsun.com>
11973
11974 * src/reader.c: Don't include quote.h; not needed.
11975 (get_merge_function): Reword warning to be consistent with
11976 type clash diagnostic in grammar_current_rule_check.
11977
11978 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
11979 bug in trigraph handling.
11980
11981 * src/output.c (prepare_symbols): When printing token names,
11982 escape "[" as "@<:@" and likewise for "]".
11983
11984 * src/system.h (errno): Remove declaration, as we are now
11985 assuming C89 or better, and C89 guarantees errno.
11986
762b212b
PE
119872002-10-30 Paul Eggert <eggert@twinsun.com>
11988
11989 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
11990 Check for close failures.
11991 * src/files.h (xfclose): Return void, not int, since it always
11992 returned zero.
11993 * src/files.c (xfclose): Likewise. Report I/O error if ferror
11994 indicates one.
11995 * src/output.c (output_skeleton): Use xfclose rather than fclose
11996 and ferror. xfclose now checks ferror.
11997
11998 * data/glr.c (YYLEFTMOST_STATE): Remove.
11999 (yyreportTree): Use a stack-based leftmost state. This avoids
12000 our continuing battles with bogus warnings about initializers.
12001
56100c60
AD
120022002-10-30 Akim Demaille <akim@epita.fr>
12003
12004 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
12005 #if.
12006
51b4a04c
PH
120072002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12008
12009 * tests/glr-regr1.at: New test for reported regressions.
12010 * tests/testsuite.at: Add glr-regr1.at test.
12011 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 12012
bf1ebda2
PE
120132002-10-24 Paul Eggert <eggert@twinsun.com>
12014
5c16c6b1
PE
12015 Version 1.75a.
12016
bf1ebda2
PE
12017 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
12018 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
12019 we use malloc. Don't assume 'A' through 'Z' are contiguous.
12020 Don't assume strdup exists; POSIX says its an XSI extension.
12021 Check for buffer overflow on input.
12022
b526ee61
AD
120232002-10-24 Akim Demaille <akim@epita.fr>
12024
12025 * src/output.c (output_skeleton): Don't disable M4sugar comments
12026 too soon: it results in comments being expanded.
12027 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
12028 first output.
12029
f1886bb2
AD
120302002-10-24 Akim Demaille <akim@epita.fr>
12031
12032 * data/yacc.c (m4_int_type): New.
12033 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
12034 char' as only yacc.c wants K&R portability.
12035 * data/glr.c (yysigned_char): Remove.
12036 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
12037 Reported by Quoc Peyrot.
12038
c5576256
PE
120392002-10-23 Paul Eggert <eggert@twinsun.com>
12040
12041 * src/main.c (main): With --trace=time, report times even if a
12042 non-fatal error occurs. Formerly, the times were reported in some
12043 such cases but not in others.
12044 * src/reader.c (reader): Just return if a complaint has been issued,
12045 instead of exiting, so that 'main' can report times.
12046
27b0ffea
AD
120472002-10-22 Akim Demaille <akim@epita.fr>
12048
12049 * src/system.h: Include sys/types.
12050 Reported by Bert Deknuydt.
12051
223a7883
PE
120522002-10-23 Paul Eggert <eggert@twinsun.com>
12053
12054 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
12055 Suggested by Art Haas.
12056
120572002-10-22 Paul Eggert <eggert@twinsun.com>
12058
12059 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
12060 decl; not needed any more.
12061 * src/main.c (main): Use return to exit, undoing yesterday's change.
12062 The last OS that we could find where this wouldn't work is
12063 SunOS 3.5, and that's too old to worry about now.
12064
12065 * data/glr.c (struct yyltype): Define members even when not
12066 doing locations. This is more consistent with yacc.c, and it
12067 works around the following bug reports:
161a71f3
PE
12068 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
12069 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 12070
223a7883
PE
12071 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
12072 @acronym consistently. Standardize on "Yacc" instead of "YACC",
12073 "Algol" instead of "ALGOL". Give a bit more history about BNF.
12074
8b76775a
AD
120752002-10-22 Akim Demaille <akim@epita.fr>
12076
12077 * data/README: New.
12078
6db10d14
PE
120792002-10-21 Paul Eggert <eggert@twinsun.com>
12080
12081 Be consistent about 'bool'; the old code used an enum in one
12082 module and an int in another, and this violates the C standard.
12083 * m4/stdbool.m4: New file, from coreutils 4.5.3.
12084 * configure.ac (AC_HEADER_STDBOOL): Add.
12085 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
12086 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
12087 * src/symtab.c (hash_compare_symbol_t): Likewise.
12088 * src/system.h (bool, false, true): Use a definition consistent
12089 with ../lib/hash.c. All uses changed.
12090
12091 * src/complain.c (warning_issued): Renamed from warn_message_count,
12092 so that we needn't worry about integer overflow (!).
12093 Now of type bool. All uses changed.
12094 (complaint_issued): Renamed from complain_message_count; likewise.
12095
12096 * src/main.c (main): Use exit to exit with failure.
27b0ffea 12097
6db10d14
PE
12098 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
12099 rather than 1 and 0.
12100 * src/main.c (main): Likewise.
12101 * src/getargs.c (getargs): Likewise.
12102 * src/reader.c (reader): Likewise.
12103
12104 * src/getarg.c (getargs): Remove duplicate code for
12105 "Try `bison --help'".
12106
12107 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
12108 What was that "2" for?
12109
12110 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
12111 * src/getargs.c (usage): Likewise.
12112
12113 * src/getargs.c (getargs): When there are too few operands, report
12114 the last one. When there are too many, report the first extra
12115 one. This is how diffutils does it.
12116
92a060fd
PE
121172002-10-20 Paul Eggert <eggert@twinsun.com>
12118
12119 Remove K&R vestiges.
12120 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
12121 * src/complain.c (VA_START): Remove. Assume prototypes.
12122 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
12123 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
12124 fatal): Assume prototypes.
12125 * src/complain.h: Assume prototypes.
12126 * src/system.h (PARAMS): Remove.
12127 Include <limits.h> unconditionally, since it's guaranteeed even
12128 for a freestanding C89 compiler.
12129 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
12130 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 12131
e7cb57c0
AD
121322002-10-20 Akim Demaille <akim@epita.fr>
12133
12134 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
12135 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
12136 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
12137 (yyresolveStates, yyresolveAction, yyresolveStack)
12138 (yyprocessOneStack): Use them.
12139 (yy_reduce_print): New.
12140 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
12141
0245f82d
AD
121422002-10-20 Akim Demaille <akim@epita.fr>
12143
12144 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
12145 arguments and output `void'.
12146 (b4_c_function): Rename as...
12147 (b4_c_function_def): this.
12148 (b4_c_function_decl, b4_c_ansi_function_def)
12149 (b4_c_ansi_function_decl): New.
12150 Change the interpretation of the arguments: before `int, foo', now
12151 `int foo, foo'.
12152 * data/yacc.c (yyparse): Prototype and define thanks to these.
12153 Adjust b4_c_function_def uses.
12154 * data/glr.c (yyparse): Likewise, but ANSI only.
12155
39912f52
AD
121562002-10-20 Akim Demaille <akim@epita.fr>
12157
12158 * src/output.c (prepare): Move the definition of `tokens_number',
12159 `nterms_number', `undef_token_number', `user_token_number_max'
12160 to...
12161 (prepare_tokens): Here.
12162 (prepare_tokens): Rename as...
12163 (prepare_symbols): this.
12164 (prepare): Move the definition of `rules_number' to...
12165 (prepare_rules): here.
12166 (prepare): Move the definition of `last', `final_state_number',
12167 `states_number' to...
12168 (prepare_states): here.
12169 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
12170
20c1e2ad
AD
121712002-10-20 Akim Demaille <akim@epita.fr>
12172
12173 * src/tables.h, src/tables.c, src/output.c: Comment changes.
12174
21964f43
AD
121752002-10-20 Akim Demaille <akim@epita.fr>
12176
12177 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
12178 * data/c.m4: here.
12179
66d30cd4
AD
121802002-10-20 Akim Demaille <akim@epita.fr>
12181
12182 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
12183 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
12184 `pair'.
12185 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
12186 `name' to...
12187 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
12188 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
12189 These.
12190
95f2c9fe
PE
121912002-10-19 Paul Eggert <eggert@twinsun.com>
12192
12193 Do not create a temporary file, as that involves security and
12194 cleanup headaches. Instead, use a pair of pipes.
12195 Derived from a suggestion by Florian Krohm.
12196 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
12197 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
12198 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
12199 (BISON_PREREQ_SUBPIPE): Add.
12200 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
12201 Add subpipe.h, subpipe.c.
12202 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
12203 * po/POTFILES.in: Add lib/subpipe.c.
12204 * src/output.c: Include "subpipe.h".
12205 (m4_invoke): Remove decl.
12206 (scan_skel): New decl.
12207 (output_skeleton): Use pipe rather than temporary file for m4 input.
12208 Check that m4sugar.m4 is readable, to avoid deadlock.
12209 Check for pipe I/O error.
12210 * src/scan-skel.l (readpipe): Remove decl.
12211 (scan_skel): New function, to be used in place of m4_invoke.
12212 Read from stream rather than file.
66d30cd4 12213
95f2c9fe
PE
12214 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
12215 float, as this generates a warning on Solaris 8 + GCC 3.2 with
12216 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
12217 this generates a more-accurate value anyway.
12218
12219 * lib/timevar.c (timervar_accumulate): Rename locals to
12220 avoid confusion with similarly-named more-global.
12221 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
12222
12223 * src/output.c (prepare): Use xstrdup to convert char const *
12224 to char *, to avoid GCC warning.
12225
c19988b7
AD
122262002-10-19 Akim Demaille <akim@epita.fr>
12227
12228 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
12229 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
12230 Use them to have `calc.y' ready for %pure-parser.
12231 * data/yacc.c (YYLEX): Pass a yylex return type to
12232 b4_c_function_call.
12233
ae7453f2
AD
122342002-10-19 Akim Demaille <akim@epita.fr>
12235
12236 Prototype support of %lex-param and %parse-param.
12237
12238 * src/parse-gram.y: Add the definition of the %lex-param and
12239 %parse-param tokens, plus their rules.
12240 Drop the `_' version of %glr-parser.
12241 Add the "," token.
12242 * src/scan-gram.l (INITIAL): Scan them.
12243 * src/muscle_tab.c: Comment changes.
12244 (muscle_insert, muscle_find): Rename `pair' as `probe'.
12245 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
12246 (muscle_entry_s): The `value' member is no longer const.
12247 Adjust all dependencies.
12248 * src/muscle_tab.c (muscle_init): Adjust: use
12249 MUSCLE_INSERT_STRING.
12250 Initialize the obstack earlier.
12251 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
12252 (muscle_pair_list_grow): New.
12253 * data/c.m4 (b4_c_function_call, b4_c_args): New.
12254 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
12255 * tests/calc.at: Use %locations, not --locations.
12256 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
12257
0e575721
AD
122582002-10-19 Akim Demaille <akim@epita.fr>
12259
12260 * src/getargs.c (usage): Take status as argument and exit
12261 accordingly.
12262 Report the traditional `Try ... --help' message when status != 0.
12263 (usage, version): Don't take a FILE * as arg, it is pointless.
12264 (getargs): When there is an incorrect number of arguments, make it
12265 an error, and report it GNUlically thanks to `usage ()'.
12266
724ce7f5
PE
122672002-10-18 Paul Eggert <eggert@twinsun.com>
12268
3a781eb2
PE
12269 * data/glr.c (yyreportParseError): Don't assume that sprintf
12270 yields the length of the printed string, as this is not true
12271 on SunOS 4.1.4. Reported by Peter Klein.
12272
724ce7f5
PE
12273 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
12274 * tests/conflicts.at (%nonassoc and eof): Likewise.
12275 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
12276
473d0a75
AD
122772002-10-17 Akim Demaille <akim@epita.fr>
12278
12279 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
12280 * src/getargs.c (trace_types, trace_args): Adjust.
12281 * src/reader.c (grammar_current_rule_prec_set)
12282 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
12283 Standardize error messages.
12284 And s/@prec/%prec/!
12285 (reader): Use trace_flag to enable scanner/parser debugging,
12286 instead of an adhoc scheme.
12287 * src/scan-gram.l: Remove trailing debugging code.
12288
e76d2469
PE
122892002-10-16 Paul Eggert <eggert@twinsun.com>
12290
93e2236a
PE
12291 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
12292 MUSCLE_TAB_H.
12293
e76d2469
PE
12294 * NEWS: Officially drop support for building Bison with K&R C,
12295 since it didn't work anyway and it's not worth worrying about.
12296 * Makefile.maint (wget_files): Remove ansi2knr.c.
12297 (ansi2knr.c-url_prefix): Remove.
12298 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
12299 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
12300 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
12301
5bd1c419
PE
123022002-10-15 Paul Eggert <eggert@twinsun.com>
12303
12304 Stop using the "enum_" trick for K&R-style function definitions;
12305 it confused me, and I was the author! Instead, assume that people
12306 who want to use K&R C compilers (when using these modules in GCC,
12307 perhaps?) will run ansi2knr.
12308
12309 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
12310 All uses of "enum_" changed to "enum ".
12311 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
12312 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 12313
5bd1c419
PE
12314 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
12315 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
12316 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
12317 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
12318 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
12319 abitset_not, abitset_ones, abitset_or, abitset_or_and,
12320 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
12321 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
12322 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
12323 Use function prototypes; this removes the need for declaring
12324 static functions simply to provide their prototypes.
12325 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
12326 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
12327 bitset_count_, bitset_create, bitset_dump, bitset_first,
12328 bitset_free, bitset_init, bitset_last, bitset_next,
12329 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
12330 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
12331 bitset_print, bitset_release_memory, bitset_toggle_,
12332 bitset_type_choose, bitset_type_get, bitset_type_name_get,
12333 debug_bitset): Likewise.
12334 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
12335 * lib/bitset_stats.c (bitset_log_histogram_print,
12336 bitset_percent_histogram_print, bitset_stats_and,
12337 bitset_stats_and_cmp, bitset_stats_and_or,
12338 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
12339 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
12340 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
12341 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
12342 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
12343 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
12344 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
12345 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
12346 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
12347 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
12348 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
12349 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
12350 bitset_stats_zero): Likewise.
12351 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
12352 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
12353 bitsetv_dump, debug_bitsetv): Likewise.
12354 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
12355 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
12356 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
12357 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
12358 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
12359 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
12360 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
12361 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
12362 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
12363 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
12364 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
12365 Likewise.
12366 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
12367 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
12368 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
12369 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
12370 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
12371 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
12372 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
12373 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
12374 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
12375 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
12376 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 12377
ae26e1f0
AD
123782002-10-14 Akim Demaille <akim@epita.fr>
12379
12380 Version 1.75.
12381
d43baf71
AD
123822002-10-14 Akim Demaille <akim@epita.fr>
12383
12384 * tests/Makefile.am (maintainer-check-posix): New.
12385
7ebc83e3
AD
123862002-10-14 Akim Demaille <akim@epita.fr>
12387
12388 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
12389 member.
12390
05846dae
AD
123912002-10-14 Akim Demaille <akim@epita.fr>
12392
12393 * src/tables.c (table_ninf_remap): base -> tab.
12394 Reported by Matt Rosing.
12395
1318e37d
PE
123962002-10-14 Paul Eggert <eggert@twinsun.com>
12397
447fbb17
PE
12398 * tests/action.at, tests/calc.at, tests/conflicts.at,
12399 tests/cxx-type.at, tests/headers.at, tests/input.at,
12400 tests/regression.at, tests/synclines.at, tests/torture.at:
12401 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
12402 so that the tests still work even if POSIXLY_CORRECT is set.
12403 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 12404
1318e37d
PE
12405 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
12406 for portability to K&R hosts. Fix typo: signed char is guaranteed
12407 only to 127, not to 128.
12408 * data/glr.c (yysigned_char): New type.
12409 * data/yacc.c (yysigned_char): Likewise.
12410 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
12411
cc0f0794
PE
124122002-10-13 Paul Eggert <eggert@twinsun.com>
12413
5038f418
PE
12414 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
12415 true due to limited range of data type" warning from GCC.
12416
cc0f0794
PE
12417 * data/c.m4 (b4_token_defines): Protect against double-inclusion
12418 by wrapping enum yytokentype's definition inside #ifndef
12419 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
12420
6fed0802
AD
124212002-10-13 Akim Demaille <akim@epita.fr>
12422
12423 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
12424 Un yy- yyrhs to avoid the name clash with the global YYRHS.
12425
32f0598d
AD
124262002-10-13 Akim Demaille <akim@epita.fr>
12427
12428 * Makefile.maint: Update from Autoconf 2.54.
12429 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
12430
7ea9a33f
AD
124312002-10-13 Akim Demaille <akim@epita.fr>
12432
12433 * src/print.c (print_state): Separate the list of solved conflicts
12434 from the other items.
12435 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
12436
ea99527d
AD
124372002-10-13 Akim Demaille <akim@epita.fr>
12438
12439 Let nondeterministic skeletons be usable with deterministic
12440 tables.
12441
12442 With the patch, GAWK compiled by GCC without -O2 passes its test
12443 suite using a GLR parser driven by LALR tables. It fails with -O2
12444 because `struct stat' gives two different answers on my machine:
12445 88 (definition of an auto var) and later 96 (memset on this var).
12446 Hence the stack is badly corrumpted. The headers inclusion is to
12447 blame: if I move the awk.h inclusion before GLR's system header
12448 inclusion, the two struct stat have the same size.
12449
12450 * src/tables.c (pack_table): Always create conflict_table.
12451 (token_actions): Always create conflict_list.
12452 * data/glr.c (YYFLAG): Remove, unused.
12453
f377f69f
AD
124542002-10-13 Akim Demaille <akim@epita.fr>
12455
12456 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
12457 (O0FLAGS): New.
12458 (VALGRIND, GXX): New.
12459 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
12460 * tests/bison.in: Run $PREBISON a pre-command.
12461 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
12462 (maintainer-check-g++): New.
12463 * Makefile.am (maintainer-check): New.
12464
2a1fe6ed
AD
124652002-10-13 Akim Demaille <akim@epita.fr>
12466
12467 * data/glr.c: Formatting changes.
12468 Tweak some trace messages to match yacc.c's.
12469
f50adbbd
AD
124702002-10-13 Akim Demaille <akim@epita.fr>
12471
12472 GLR parsers sometimes raise parse errors instead of performing the
12473 default reduction.
12474 Reported by Charles-Henry de Boysson.
12475
12476 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
ba0fe3c7 12477 check the length of the traces when %glr.
f50adbbd
AD
12478 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
12479 GLR's traces.
12480 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
12481 Test GLR parsers.
12482 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
12483 (yyltype): Remove the yy prefix from the member names.
12484 (yytable): Complete its comment.
12485 (yygetLRActions): Map error action number from YYTABLE from
12486 YYTABLE_NINF to 0.
12487 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
12488 (which was a bug: it should have been YYTABEL_NINF, and yet it was
12489 not satisfying as we could compare an YYACTION computed from
12490 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
12491 only value for error actions.
12492 (yyreportParseError): In verbose parse error messages, don't issue
12493 `error' in the list of expected tokens.
12494 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
12495 next action to perform to match glr.c's decoding.
12496 (yytable): Complete its comment.
12497
bcbad5b9
PE
124982002-10-13 Paul Eggert <eggert@twinsun.com>
12499
12500 Fix problem reported by Henrik Grubbstroem in
161a71f3 12501 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
12502 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
12503 because the Bison parser reads the second action before reducing
12504 the first one.
12505 * src/scan-gram.l (rule_length): New static var.
12506 Use it to keep track of the rule length in the scanner, since
12507 we can't expect the parser to be in lock-step sync with the scanner.
12508 (handle_action_dollar, handle_action_at): Use this var.
12509 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 12510
14904b89
PE
125112002-10-12 Paul Eggert <eggert@twinsun.com>
12512
1fe611e5
PE
12513 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
12514 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
12515 Include <sys/time.h> when checking for clock_t and struct tms.
12516 Use same include order as source.
12517 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
161a71f3 12518 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 12519
1fe611e5
PE
12520 * lib/timevar.c: Update copyright date and clarify comments.
12521 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 12522
1fe611e5
PE
12523 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
12524 GCC version as of today, then merge Bison's changes.
12525 Change "GCC" to "Bison" in copyright notice. timevar.def's
12526 author is Akim, so change that too.
12527
98194095
PE
12528 * src/reader.c (grammar_current_rule_check):
12529 Don't worry about the default action if $$ is untyped.
12530 Prevents bogus warnings reported by Jim Gifford in
161a71f3 12531 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 12532
14904b89
PE
12533 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
12534 * data/glr.c, data/lalr1.cc, data/yacc.c:
12535 Output token definitions before the first part of user declarations.
12536 Fixes compatibility problem reported by Jim Gifford for kbd in
161a71f3 12537 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 12538
ff6dca18
PE
125392002-10-11 Paul Eggert <eggert@twinsun.com>
12540
12541 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
12542 (yyparse): here. This undoes some of the 2002-07-25 change.
12543 Compatibility problem reported by Ralf S. Engelschall with
12544 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
12545
eb714592
AD
125462002-10-11 Akim Demaille <akim@epita.fr>
12547
12548 * tests/regression.at Characters Escapes): New.
12549 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
12550 characters.
12551 Reported by Jan Nieuwenhuizen.
12552
b7195100
AD
125532002-10-11 Akim Demaille <akim@epita.fr>
12554
12555 * po/id.po: New.
12556
f28a0f2d
PE
125572002-10-10 Paul Eggert <eggert@twinsun.com>
12558
12559 Portability fixes for bitsets; this also avoids several GCC
12560 warnings.
12561
12562 * lib/abitset.c: Include <stddef.h>, for offsetof.
12563 * lib/lbitset.c: Likewise.
12564
12565 * lib/abitset.c (abitset_bytes): Return a size that is aligned
12566 properly for vectors of objects. Do not assume that adding a
12567 header size to a multiple of a word size yields a value that is
12568 properly aligned for the whole union.
12569 * lib/bitsetv.c (bitsetv_alloc): Likewise.
12570
12571 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
12572 unique names for structures.
12573 * lib/ebitset.c (ebitset_bytes): Likewise.
12574 * lib/lbitset.c (lbitset_bytes): Likewise.
12575
12576 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
12577 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
12578 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
12579 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
12580 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
12581 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
12582 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
12583 to improve the type-checking that GCC can do.
12584 * lib/bitset.c (bitset_op4_cmp): Likewise.
12585 * lib/bitset_stats.c (bitset_stats_count,
12586 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
12587 bitset_stats_copy, bitset_stats_disjoint_p,
12588 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
12589 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
12590 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
12591 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
12592 bitset_stats_and_or_cmp, bitset_stats_andn_or,
12593 bitset_stats_andn_or_cmp, bitset_stats_or_and,
12594 bitset_stats_or_and_cmp): Likewise.
12595 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
12596 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
12597 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
12598 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
12599
12600 * lib/abitset.h: Include bitset.h, not bbitset.h.
12601 * lib/ebitset.h: Likewise.
12602 * lib/lbitset.h: Likewise.
12603
12604 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
12605 All instances of parameters of type enum bitset_opts are now of
12606 type enum_bitset_opts, to conform to the C Standard, and similarly
12607 for enum_bitset_type.
12608 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
12609 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
12610
12611 Do not use "struct bitset_struct" to mean different things in
12612 different modules. Not only is this confusing, it violates
12613 the C Standard, which requires that structure types in different
12614 modules must be compatible if one is to be passed to the other.
12615 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
12616 All instances of "struct bitset_struct *" replaced with "bitset".
12617 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
12618 (union bitset_union, struct abitset_struct, struct ebitset_struct,
12619 struct lbitset_struct, struct bitset_stats_struct): New types.
12620 All uses of struct bitset_struct changed to union bitset_union,
12621 etc.
ba0fe3c7 12622 * lib/abitset.c (struct abitset_struct, abitset,
f28a0f2d
PE
12623 struct bitset_struct): Remove.
12624 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
12625 struct bitset_struct): Remove.
12626 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
12627 bitset_struct): Remove.
12628 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
12629 Likewise.
12630
12631 Do not call a function of type T using a call that assumes the
12632 function is of a different type U. Standard C requires that a
12633 function must be called with a type that is compatible with its
12634 definition.
12635 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
12636 New decls.
12637 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
12638 New functions.
12639 * lib/ebitset.c (PFV): Remove.
12640 * lib/lbitset.c (PFV): Likewise.
12641 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
12642 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
12643 decls.
12644 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
12645 (ebitset_vtable): Use them.
12646 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
12647 lbitset_xor): New functions.
12648 (lbitset_vtable): Use them.
12649
12650 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
12651 Declare.
12652
12653 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
12654 GCC warning.
12655 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
12656 Use offsetof, for simplicity.
12657
6fbe4984
PE
126582002-10-06 Paul Eggert <eggert@twinsun.com>
12659
12660 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
12661 the same width as int. This reapplies a hunk of the 2002-08-12 patch
161a71f3 12662 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
12663 which was inadvertently undone by the 2002-09-30 patch.
12664 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
12665 the same width as int.
12666
420f93c8
PE
126672002-10-04 Paul Eggert <eggert@twinsun.com>
12668
12669 Version 1.50.
12670
12671 * configure.ac (AC_INIT), NEWS: Increment version number.
12672
12673 * doc/bison.texinfo: Minor spelling, grammar, and white space
12674 fixes.
12675 (Symbols): Mention that any negative value returned from yylex
12676 signifies end-of-input. Warn about negative chars. Mention
12677 the portable Standard C character set.
12678
12679 The GNU coding standard says CFLAGS and YFLAGS are reserved
12680 for the installer to set.
12681 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
12682 * src/Makefile.am (AM_CFLAGS): Likewise.
12683 (AM_YFLAGS): Renamed from YFLAGS.
12684
12685 Fix some MAX and MIN problems.
12686 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
12687 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
12688 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
12689 * src/reader.c (reader): Use it.
12690
12691 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
12692 POSIX 1003.1-2001 has removed fgrep.
12693
126942002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
12695
12696 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
12697 interpreted as signed.
12698 * lib/ebitset.c (ebitset_list): Fix bug.
12699
ff68026d
PE
127002002-10-01 Paul Eggert <eggert@twinsun.com>
12701
12702 More fixes for 64-bit hosts and large bitsets.
12703
12704 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
12705 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
12706 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
12707 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
12708 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
12709 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
12710 bitset_count_): Likewise.
12711 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
12712 bitset_first, bitset_last): Likewise.
12713 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
12714 bitset_stats_list_reverse, bitset_stats_size,
12715 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
12716 Likewise.
12717 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
12718 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
12719 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
12720 bitsetv_reflexive_transitive_closure): Likewise.
12721 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
12722 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
12723 Likewise.
12724 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
12725 Likewise.
420f93c8 12726
ff68026d
PE
12727 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
12728 Use size_t, not unsigned int, to count bytes.
12729 * lib/abitset.h (abitset_bytes): Likewise.
12730 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
12731 Likewise.
12732 * lib/bitset.h (bitset_bytes): Likewise.
12733 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
12734 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
12735 * lib/bitsetv.c (bitsetv_alloc): Likewise.
12736 * lib/ebitset.c (ebitset_bytes): Likewise.
12737 * lib/ebitset.h (ebitset_bytes): Likewise.
12738 * lib/lbitset.c (lbitset_bytes): Likewise.
12739 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 12740
ff68026d
PE
12741 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
12742 abitset_subset_p, abitset_disjoint_p, abitset_and,
12743 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
12744 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
12745 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
12746 abitset_or_and, abitset_or_and_cmp):
12747 Use bitset_windex instead of unsigned int.
12748 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
12749 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
12750 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
12751 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
12752 Likewise.
12753 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 12754
ff68026d
PE
12755 * lib/bitset.c (bitset_print):
12756 Use proper printf formats for widths of integer types.
12757 * lib/bitset_stats.c (bitset_percent_histogram_print,
12758 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
12759 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
12760 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
12761 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 12762
ff68026d
PE
12763 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
12764 BITSET_SIZE_MAX): New macros.
12765 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
12766 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
12767 to BITSET_WINDEX_MAX.
12768
12769 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
12770 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
12771 since we now return the bitset_bindex type (not int).
12772
12773 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
12774 when computing sizes.
12775 * lib/ebitset.c (ebitset_elts_grow): Likewise.
12776
12777 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
12778 and avoid cast to unsigned.
12779
6aa452a6
AD
127802002-09-30 Akim Demaille <akim@epita.fr>
12781
12782 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
12783 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
12784 Updates from Michael Hayes.
12785
927f7817
AD
127862002-09-30 Art Haas <ahaas@neosoft.com>
12787
12788 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
12789 invocations.
12790 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
12791 defined.
12792
9738f41e
AD
127932002-09-27 Akim Demaille <akim@epita.fr>
12794
12795 Version 1.49c.
12796
a5c75d7f
AD
127972002-09-27 Akim Demaille <akim@epita.fr>
12798
12799 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
12800 (Because of AC_LIBSOURCE).
12801
8280e179
AD
128022002-09-27 Akim Demaille <akim@epita.fr>
12803
12804 Playing with Autoscan.
12805
12806 * configure.ac: Remove the old LIBOBJ tweaks.
12807 (AC_REPLACE_FUNCS): Add strrchr and strtol.
12808 * lib/strrchr.c: New.
12809 * lib/strtol.c: New, from the Coreutils 4.5.1.
12810
ae64af35
AD
128112002-09-27 Akim Demaille <akim@epita.fr>
12812
12813 Playing with Autoscan.
12814
12815 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
12816 * lib/Makefile.am (libbison_a_SOURCES): No longer include
12817 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
12818 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
12819 Coreutils 4.5.1.
12820
d1a1114f
AD
128212002-09-24 Akim Demaille <akim@epita.fr>
12822
12823 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
12824 (Frequently Asked Questions, Parser Stack Overflow): New.
12825
b906441c
AD
128262002-09-13 Akim Demaille <akim@epita.fr>
12827
12828 Playing with autoscan.
12829
12830 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
12831 * src/files.c (skeleton_find): Remove, unused.
12832 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
12833 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
12834
bd701811
AD
128352002-09-13 Akim Demaille <akim@epita.fr>
12836
12837 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
12838 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
12839
e0a13e7b
AD
128402002-09-13 Akim Demaille <akim@epita.fr>
12841
12842 * configure.ac: Require 2.54.
12843 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
12844 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
12845 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
12846 Remove, provided by Autoconf macros.
12847
c97011bf
AD
128482002-09-12 Akim Demaille <akim@epita.fr>
12849
12850 * m4/prereq.m4: Update, from Coreutils 4.5.1.
12851
d862b1be
AD
128522002-09-12 Akim Demaille <akim@epita.fr>
12853
12854 * m4/prereq.m4: Update, from Fileutils 4.1.5.
12855 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
12856 Reported by Martin Mokrejs.
12857
3d38c03a
AD
128582002-09-10 Akim Demaille <akim@epita.fr>
12859
12860 * src/parse-gram.y: Associate a human readable string to each
12861 token type.
12862 * tests/regression.at (Invalid inputs): Adjust.
12863
b6347355
AD
128642002-09-10 Gary V. Vaughan <gary@gnu.org>
12865
12866 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
12867 with an Autoconf-2.5x style configure.ac.
12868
09ba4ab2
PE
128692002-09-06 Paul Eggert <eggert@twinsun.com>
12870
12871 * doc/bison.texinfo (Conditions): Make explicit that the GPL
12872 exception applies only to yacc.c. This is a modification of a
12873 patch originally suggested by Akim Demaille.
12874
21846f69
AD
128752002-09-06 Akim Demaille <akim@epita.fr>
12876
09ba4ab2
PE
12877 * data/c.m4 (b4_copyright): Move the GPL exception comment from
12878 here to...
12879 * data/yacc.c: here.
12880
21846f69
AD
12881 * data/lalr1.cc (struct yyltype): Don't define it, since we use
12882 LocationType.
12883 (b4_ltype): Default to yy::Location from location.hh.
12884
c0ad8bf3
AD
128852002-09-04 Jim Meyering <jim@meyering.net>
12886
12887 * data/yacc.c: Guard the declaration of yytoknum also with
12888 `#ifdef YYPRINT', so it is declared only when used.
12889
3a93251e
AD
128902002-09-04 Akim Demaille <akim@epita.fr>
12891
12892 * configure.in: Rename as...
12893 * configure.ac: this.
12894 Bump to 1.49c.
12895
427c0dda
AD
128962002-09-04 Akim Demaille <akim@epita.fr>
12897
12898 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
12899 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
12900 translate maintainer only messages.
12901
6a254321
PE
129022002-08-12 Paul Eggert <eggert@twinsun.com>
12903
645e30d1
PE
12904 Version 1.49b.
12905
6a254321
PE
12906 * Makefile.am (SUBDIRS): Remove intl.
12907 (DISTCLEANFILES): Remove.
12908 * NEWS: Mention that GNU M4 is now required. Clarify what is
12909 meant by "larger grammars". Mention the pt_BR translation.
12910 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
12911 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
12912 Bump version from 0.11.2 to 0.11.5.
12913 (BISON_PREREQ_STAGE): Remove.
12914 (AM_GNU_GETTEXT): Use external gettext.
12915 (AC_OUTPUT): Remove intl/Makefile.
12916
12917 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
12918
12919 * data/glr.c: Include string.h, for strlen.
12920 (yyreportParseError): Use size_t for yysize.
12921 (yy_yypstack): No longer nested inside yypstates, as nested
12922 functions are not portable. Do not assume size_t is the
12923 same width as int.
12924 (yypstates): Do not assume that ptrdiff_t is the same width
12925 as int, and similarly for yyposn and YYINDEX.
12926
12927 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
12928
12929 * lib/Makefile.am (INCLUDES): Do not include from the intl
12930 directory, which has been removed.
12931 * src/Makefile.am (INCLUDES): Likewise.
12932
12933 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
12934 (bitsets_sources, additional_bitsets_sources, timevars_sources):
12935 New vars.
12936
12937 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
12938 * tests/Makefile.am (EXTRA_DIST): Likewise.
12939
12940 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
12941 Do not assume that bitset_windex is the same width as unsigned.
12942
12943 * lib/abitset.c (abitset_unused_clear): Do not assume that
12944 bitset_word is the same width as int.
12945 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
12946 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
12947 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
12948 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
12949 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
12950
12951 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
12952 portability to one's complement hosts!).
12953 * lib/ebitset.c (ebitset_op1): Likewise.
12954 * lib/lbitset.c (lbitset_op1): Likewise.
12955
12956 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
12957 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
12958 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
12959 Sync with fileutils.
12960 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
12961 lib/gettext.h: Sync with diffutils.
12962
12963 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
12964 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
12965
12966 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
12967 PROTOTYPES to check for prototypes, and "defined __STDC__" to
12968 check for void *.
12969
12970 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
12971 size_t; the old version tried to do this but casted improperly.
12972 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
12973 (bitset_test): Now returns int, not unsigned long.
12974
12975 * lib/bitset_stats.c: Include "gettext.h".
12976 (_): New macro.
12977 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
12978 name locals "index", as it generates unnecessary warnings on some
12979 hosts that have an "index" function.
12980
12981 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
12982 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
12983 they need translation.
12984 * src/LR0.c (state_list_append, new_itemsets, get_state,
12985 append_states, generate_states): Likewise.
12986 * src/assoc.c (assoc_to_string): Likewise.
12987 * src/closure.c (print_closure, set_firsts, closure): Likewise.
12988 * src/gram.c (grammar_dump): Likewise.
12989 * src/injections.c (injections_compute): Likewise.
12990 * src/lalr.c (lookaheads_print): Likewise.
12991 * src/relation.c (relation_transpose): Likewise.
12992 * src/scan-gram.l: Likewise.
12993 * src/tables.c (table_grow, pack_vector): Likewise.
12994
12995 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
12996 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
12997 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
12998 * m4/mbstate_t.m4: Sync with fileutils.
12999 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
13000
13001 * po/LINGUAS: Add pt_BR.
13002 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
13003 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
13004 lib/timevar.c.
13005 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
13006 manual recommends.
13007 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
13008
13009 * src/complain.c (strerror_r): Remove decl; not needed.
13010 (strerror): Use same pattern as ../lib/error.c.
13011
13012 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
13013
13014 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
13015
13016 * src/main.c (main): Cast result of bindtextdomain and textdomain
13017 to void, to avoid a GCC warning when --disable-nls is in effect.
13018
13019 * src/scan-gram.l: Use strings rather than escapes when possible,
13020 to minimize the number of warnings from xgettext.
13021 (handle_action_dollar, handle_action_at): Don't use isdigit,
13022 as it mishandles negative chars and it may not work as expected
13023 outside the C locale.
13024
13025 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
13026 this is a GCC extension and is not portable to other compilers.
13027
13028 * src/system.h (alloca): Use same pattern as ../lib/error.c.
13029 Do not include <ctype.h>; no longer needed.
13030 Do not include <malloc.h>; no longer needed (and generates
13031 warnings on OpenBSD 3.0).
13032
13033 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
13034 it's not portable.
13035
13036 * tests/regression.at: Do not use 'cc -c input.c -o input';
13037 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
13038
13039 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
13040 exit status as failure, not just exit status 1. Sun C exits
13041 with status 2 sometimes.
13042
13043 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
13044 Use it for the two large tests.
13045
c8f002c7
AD
130462002-08-02 Akim Demaille <akim@epita.fr>
13047
13048 * src/conflicts.c (conflicts_output): Don't output rules never
13049 reduced here, since anyway that computation doesn't work.
13050 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
13051 (rule_useless_p, rule_never_reduced_p): New.
13052 (grammar_rules_partial_print): Use a filter instead of a range.
13053 Display the title only if needed.
13054 (grammar_rules_print): Adjust.
13055 (grammar_rules_never_reduced_report): New.
13056 * src/tables.c (action_row): Move the computation of rules never
13057 reduced to...
13058 (token_actions): here.
13059 * src/main.c (main): Make the parser before making the report, so
13060 that rules never reduced are computed.
13061 Call grammar_rules_never_reduced_report.
13062 * src/print.c (print_results): Report rules never reduced.
13063 * tests/conflicts.at, tests/reduce.at: Adjust.
13064
cd08e51e
AD
130652002-08-01 Akim Demaille <akim@epita.fr>
13066
13067 Instead of attaching lookaheads and duplicating the rules being
13068 reduced by a state, attach the lookaheads to the reductions.
13069
13070 * src/state.h (state_t): Remove the `lookaheads',
13071 `lookaheads_rule' member.
13072 (reductions_t): Add a `lookaheads' member.
13073 Use a regular array for the `rules'.
13074 * src/state.c (reductions_new): Initialize the lookaheads member
13075 to 0.
13076 (state_rule_lookaheads_print): Adjust.
13077 * src/state.h, src/state.c (state_reductions_find): New.
13078 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
13079 (count_rr_conflicts): Adjust.
13080 * src/lalr.c (LArule): Remove.
13081 (add_lookback_edge): Adjust.
13082 (state_lookaheads_count): New.
13083 (states_lookaheads_initialize): Merge into...
13084 (initialize_LA): this.
13085 (lalr_free): Adjust.
13086 * src/main.c (main): Don't free nullable and derives too early: it
13087 is used by --verbose.
13088 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
13089
bb0027a9
AD
130902002-08-01 Akim Demaille <akim@epita.fr>
13091
13092 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
13093 `rule_number_t**'.
13094 (set_derives, free_derives): Rename as...
13095 (derives_compute, derives_free): this.
13096 Adjust all dependencies.
13097 * src/nullable.c (set_nullable, free_nullable): Rename as...
13098 (nullable_compute, nullable_free): these.
13099 (rule_list_t): Store rule_t *, not rule_number_t.
13100 * src/state.c (state_rule_lookaheads_print): Directly compare rule
13101 pointers, instead of their numbers.
13102 * src/main.c (main): Call nullable_free, and derives_free earlier,
13103 as they were lo longer used.
13104
3325ddc4
AD
131052002-08-01 Akim Demaille <akim@epita.fr>
13106
13107 * lib/timevar.c (get_time): Include children time.
13108 * src/lalr.h (LA, LArule): Don't export them: used with the
13109 state_t.
13110 * src/lalr.c (LA, LArule): Static.
13111 * src/lalr.h, src/lalr.c (lalr_free): New.
13112 * src/main.c (main): Call it.
13113 * src/tables.c (pack_vector): Check whether loc is >= to the
13114 table_size, not >.
13115 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
13116 (tables_generate): do it, since that's also it which allocates
13117 them.
13118 Don't free LA and LArule, main does.
13119
c6f1a33c
AD
131202002-07-31 Akim Demaille <akim@epita.fr>
13121
13122 Separate parser tables computation and output.
13123
13124 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
13125 (conflict_list, conflict_list_cnt, table, check, table_ninf)
13126 (yydefgoto, yydefact, high): Move to...
13127 * src/tables.h, src/tables.c: here.
13128 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
13129 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
13130 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
13131 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
13132 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
13133 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
13134 (action_row, save_row, token_actions, save_column, default_goto)
13135 (goto_actions, sort_actions, matching_state, pack_vector)
13136 (table_ninf_remap, pack_table, prepare_actions): Move to...
13137 * src/tables.c: here.
13138 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
13139 * src/output.c (token_actions, output_base, output_conflicts)
13140 (output_check): Merge into...
13141 (prepare_actions): this.
13142 (actions_output): Rename as...
13143 (user_actions_output): this.
13144 * src/main.c (main): Call tables_generate and tables_free.
13145
1509d42f
AD
131462002-07-31 Akim Demaille <akim@epita.fr>
13147
13148 Steal GCC's --time-report support.
13149
13150 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
13151 stolen/adjusted from GCC.
13152 * m4/stage.m4: Remove time related checks.
13153 * m4/timevar.m4: New.
13154 * configure.in: Adjust.
13155 * src/system.h: Adjust to using timevar.h.
13156 * src/getargs.h, src/getargs.c: Support trace_time for
13157 --trace=time.
13158 * src/main.c (stage): Remove.
13159 (main): Replace `stage' invocations with timevar calls.
13160 * src/output.c: Insert pertinent timevar calls.
13161
273a74fa
AD
131622002-07-31 Akim Demaille <akim@epita.fr>
13163
13164 Let --trace have arguments.
13165
13166 * src/getargs.h (enum trace_e): New.
13167 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
13168 (long_options, short_options): --trace/-T takes an optional
13169 argument.
13170 Change all the uses of trace_flag to reflect the new flags.
13171 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
13172
13173 Strengthen `stage' portability.
13174
13175 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
13176 * configure.in: Use it.
13177 Don't check for malloc.h and sys/times.h.
13178 * src/system.h: Include them when appropriate.
13179 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
13180 times and struct tms are available.
13181
217598da
AD
131822002-07-30 Akim Demaille <akim@epita.fr>
13183
13184 In verbose parse error message, don't report `error' as an
13185 expected token.
13186 * tests/actions.at (Printers and Destructors): Adjust.
13187 * tests/calc.at (Calculator $1): Adjust.
13188 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
13189 error message, do not report the parser accepts the error token in
13190 that state.
13191
52489d44
AD
131922002-07-30 Akim Demaille <akim@epita.fr>
13193
13194 Normalize conflict related messages.
13195
13196 * src/complain.h, src/complain.c (warn, complain): New.
13197 * src/conflicts.c (conflicts_print): Use them.
13198 (conflict_report_yacc): New, extracted from...
13199 (conflicts_print): here.
13200 * tests/conflicts.at, tests/existing.at: Adjust.
13201
e8832397
AD
132022002-07-30 Akim Demaille <akim@epita.fr>
13203
13204 Report rules which are never reduced by the parser: those hidden
13205 by conflicts.
13206
13207 * src/LR0.c (save_reductions): Don't make the final state too
13208 different: save its reduction (accept) instead of having a state
13209 without any action (no shift or goto, no reduce).
13210 Note: the final state is now a ``regular'' state, i.e., the
13211 parsers now contain `reduce 0' as default reduction.
13212 Nevertheless, since they decide to `accept' when yystate =
13213 final_state, they still will not reduce rule 0.
13214 * src/print.c (print_actions, print_reduction): Adjust.
13215 * src/output.c (action_row): Track reduced rules.
13216 (token_actions): Report rules never reduced.
13217 * tests/conflicts.at, tests/regression.at: Adjust.
13218
caf23d24
AD
132192002-07-30 Akim Demaille <akim@epita.fr>
13220
13221 `stage' was accidently included in a previous patch.
13222 Initiate its autoconfiscation.
13223
13224 * configure.in: Look for malloc.h and sys/times.h.
13225 * src/main.c (stage): Adjust.
13226 Report only when trace_flag.
13227
640748ee
AD
132282002-07-29 Akim Demaille <akim@epita.fr>
13229
13230 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
13231 state_number_t.
13232 (errs_t): symbol_t*, not symbol_number_t.
13233 (reductions_t): rule_t*, not rule_number_t.
13234 (FOR_EACH_SHIFT): New.
13235 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
13236 * src/print.c, src/print_graph.c: Adjust.
13237
88bce5a2
AD
132382002-07-29 Akim Demaille <akim@epita.fr>
13239
13240 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
13241
13242 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
13243 (endtoken, accept): these.
13244 * src/reader.c (reader): Set endtoken's default tag to "$end".
13245 Set undeftoken's tag to "$undefined" instead of "$undefined.".
13246 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
13247 Adjust.
13248
1bfb97db
AD
132492002-07-29 Akim Demaille <akim@epita.fr>
13250
13251 * src/reduce.c (reduce_grammar): When the language is empty,
13252 complain about the start symbol, not the axiom.
13253 Use its location.
13254 * tests/reduce.at (Empty Language): New.
13255
fc5734fe
AD
132562002-07-26 Akim Demaille <akim@epita.fr>
13257
13258 * src/reader.h, src/reader.c (gram_error): ... can't get
13259 yycontrol without making too strong assumptions on the parser
13260 itself.
13261 * src/output.c (prepare_tokens): Use the real 0th value of
13262 token_translations instead of `0'.
13263 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
13264 visible here.
13265 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
13266 for the time being: %locations ought to provide it to yyerror.
13267
3650b4b8
AD
132682002-07-25 Akim Demaille <akim@epita.fr>
13269
13270 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
13271 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
13272 * tests/regression.at (Web2c Actions): Adjust.
13273
4b3d3a8e
AD
132742002-07-25 Akim Demaille <akim@epita.fr>
13275
13276 Stop storing rules from 1 to nrules + 1.
13277
13278 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
13279 * src/nullable.c, src/output.c, src/print.c, src/reader.c
13280 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
13281 Iterate from 0 to nrules.
13282 Use rule_number_as_item_number and item_number_as_rule_number.
13283 Adjust to `derive' now containing possibly 0.
13284 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
13285 Handle the `- 1' part in rule numbers from/to item numbers.
13286 * src/conflicts.c (log_resolution): Fix the message which reversed
13287 shift and reduce.
13288 * src/output.c (action_row): Initialize default_rule to -1.
13289 (token_actions): Adjust.
13290 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
13291 expected output.
13292 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
13293
4a2a22f4
AD
132942002-07-25 Akim Demaille <akim@epita.fr>
13295
13296 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
13297 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
13298 (b4_c_knr_arg_decl): New.
13299 * data/yacc.c: Use it to define yysymprint, yydestruct, and
13300 yyreport_parse_error.
13301
b8df3223
AD
133022002-07-25 Akim Demaille <akim@epita.fr>
13303
13304 * data/yacc.c (yyreport_parse_error): New, extracted from...
13305 (yyparse): here.
13306 (yydestruct, yysymprint): Move above yyparse.
13307 Be K&R compliant.
13308
a762e609
AD
133092002-07-25 Akim Demaille <akim@epita.fr>
13310
13311 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
13312 replace...
13313 (b4_sint_type, b4_uint_type): these.
13314 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
13315 * tests/regression.at (Web2c Actions): Adjust.
13316
12b0043a
AD
133172002-07-25 Akim Demaille <akim@epita.fr>
13318
13319 * src/gram.h (TIEM_NUMBER_MAX): New.
13320 (item_number_of_rule_number, rule_number_of_item_number): Rename
13321 as...
13322 (rule_number_as_item_number, item_number_as_rule_number): these.
13323 Adjust dependencies.
13324 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
13325 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
13326 (symbol_number_to_vector_number): New.
13327 (order): Of vector_number_t* type.
13328 (base_t, BASE_MAX, BASE_MIN): New.
13329 (froms, tos, width, pos, check): Of base_t type.
13330 (action_number_t, ACTION_MIN, ACTION_MAX): New.
13331 (actrow): Of action_number_t type.
13332 (conflrow): Of unsigned int type.
13333 (table_ninf, base_ninf): New.
13334 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
13335 (muscle_insert_int_table, muscle_insert_base_table)
13336 (muscle_insert_rule_number_table): New.
13337 (prepare_tokens): Output `toknum' as int_table.
13338 (action_row): Returns a rule_number_t.
13339 Use ACTION_MIN, not SHRT_MIN.
13340 (token_actions): yydefact is rule_number_t*.
13341 (table_ninf_remap): New.
13342 (pack_table): Use it for `base' and `table'.
13343 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
13344 replaced with...
13345 (YYPACT_NINF, YYTABLE_NINF): these.
13346 (yypact, yytable): Compute their types instead of hard-coded
13347 `short'.
13348 * tests/regression.at (Web2c Actions): Adjust.
13349
5dde258a
AD
133502002-07-19 Akim Demaille <akim@epita.fr>
13351
13352 * src/scan-gram.l (id): Can start with an underscore.
13353
a945ec39
AD
133542002-07-16 Akim Demaille <akim@epita.fr>
13355
13356 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
13357 Adjust all former `associativity' dependencies.
13358 * src/symtab.c (symbol_new): Default associativity is `undef', not
13359 `right'.
13360 (symbol_check_alias_consistence): Adjust.
13361
fae437e8
AD
133622002-07-09 Akim Demaille <akim@epita.fr>
13363
13364 * doc/bison.texinfo: Properly set the ``header'' part.
13365 Use @dircategory ``GNU programming tools'' as per Texinfo's
13366 documentation.
13367 Use @copying.
13368
1a715ef2
AD
133692002-07-09 Akim Demaille <akim@epita.fr>
13370
13371 * lib/quotearg.h: Protect against multiple inclusions.
13372 * src/location.h (location_t): Add a `file' member.
13373 (LOCATION_RESET, LOCATION_PRINT): Adjust.
13374 * src/complain.c (warn_at, complain_at, fatal_at): Drop
13375 `error_one_per_line' support.
13376
a5d50994
AD
133772002-07-09 Akim Demaille <akim@epita.fr>
13378
13379 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
13380 * src/reader.c (lineno): Remove.
13381 Adjust all dependencies.
13382 (get_merge_function): Take a location and use complain_at.
13383 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
13384 * tests/regression.at (Invalid inputs, Mixing %token styles):
13385 Adjust.
13386
b275314e
AD
133872002-07-09 Akim Demaille <akim@epita.fr>
13388
13389 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
13390 recovery rule, and forbid extensions when --yacc.
13391 (gram_error): Use complain_at.
13392 * src/reader.c (reader): Exit if there were parse errors.
13393
865b9df1
AD
133942002-07-09 Akim Demaille <akim@epita.fr>
13395
13396 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
13397 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
13398 Reported by R Blake <blakers@mac.com>.
13399
c76e14da
AD
134002002-07-09 Akim Demaille <akim@epita.fr>
13401
13402 * data/yacc.c: Output the copyright notive in the header.
13403
7db2ed2d
AD
134042002-07-03 Akim Demaille <akim@epita.fr>
13405
13406 * src/output.c (froms, tos): Are state_number_t.
13407 (save_column): sp, sp1, and sp2 are state_number_t.
13408 (prepare): Rename `final' as `final_state_number', `nnts' as
13409 `nterms_number', `nrules' as `rules_number', `nstates' as
13410 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
13411 unused.
13412 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
13413 * data/lalr1.cc (nsym_): Remove, unused.
13414
e68e0410
AD
134152002-07-03 Akim Demaille <akim@epita.fr>
13416
13417 * src/lalr.h, src/lalr.c (goto_number_t): New.
13418 * src/lalr.c (goto_list_t): New.
13419 Propagate them.
13420 * src/nullable.c (rule_list_t): New.
13421 Propagate.
13422 * src/types.h: Remove.
13423
e1a4f3a4
AD
134242002-07-03 Akim Demaille <akim@epita.fr>
13425
13426 * src/closure.c (print_fderives): Use rule_rhs_print.
13427 * src/derives.c (print_derives): Use rule_rhs_print.
13428 (rule_list_t): New, replaces `shorts'.
13429 (set_derives): Add comments.
13430 * tests/sets.at (Nullable, Firsts): Adjust.
13431
536545f3
AD
134322002-07-03 Akim Demaille <akim@epita.fr>
13433
13434 * src/output.c (prepare_actions): Free `tally' and `width'.
13435 (prepare_actions): Allocate and free `order'.
13436 * src/symtab.c (symbols_free): Free `symbols'.
13437 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
13438 * src/output.c (m4_invoke): Move to...
13439 * src/scan-skel.l: here.
13440 (<<EOF>>): Close yyout, and free its name.
13441
8b752b00
AD
134422002-07-03 Akim Demaille <akim@epita.fr>
13443
13444 Fix some memory leaks, and fix a bug: state 0 was examined twice.
13445
13446 * src/LR0.c (new_state): Merge into...
13447 (state_list_append): this.
13448 (new_states): Merge into...
13449 (generate_states): here.
13450 (set_states): Don't ensure a proper `errs' state member here, do it...
13451 * src/conflicts.c (conflicts_solve): here.
13452 * src/state.h, src/state.c: Comment changes.
13453 (state_t): Rename member `shifts' as `transitions'.
13454 Adjust all dependencies.
13455 (errs_new): For consistency, also take the values as argument.
13456 (errs_dup): Remove.
13457 (state_errs_set): New.
13458 (state_reductions_set, state_transitions_set): Assert that no
13459 previous value was assigned.
13460 (state_free): New.
13461 (states_free): Use it.
13462 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
13463 temporary storage: use `errs' and `nerrs' as elsewhere.
13464 (set_conflicts): Allocate and free this `errs'.
13465
613f5e1a
AD
134662002-07-02 Akim Demaille <akim@epita.fr>
13467
13468 * lib/libiberty.h: New.
13469 * lib: Update the bitset implementation from upstream.
13470 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
13471 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
13472 * src/main.c: Adjust bitset stats calls.
13473
26e0cadc
PE
134742002-07-01 Paul Eggert <eggert@twinsun.com>
13475
13476 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
13477 char, so that negative chars don't collide with $.
13478
1154cced
AD
134792002-06-30 Akim Demaille <akim@epita.fr>
13480
13481 Have the GLR tests be `warning' checked, and fix the warnings.
13482
13483 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
13484 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
13485 (yyremoveDeletes): `yyi' and `yyj' are size_t.
13486 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
13487 (yyaddDeferredAction): static.
13488 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
13489 (yyreportParseError): yyprefix is const.
13490 yytokenp is used only when verbose.
13491 (yy__GNUC__): Replace with __GNUC__.
13492 (yypdumpstack): yyi is size_t.
13493 (yypreference): Un-yy local variables and arguments, to avoid
13494 clashes with `yyr1'. Anyway, we are not in the user name space.
13495 (yytname_size): be an int, as is compared with ints.
13496 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
13497 Use them.
13498 * tests/cxx-gram.at: Use quotation to protect $1.
13499 Use AT_COMPILE to enable warnings hunts.
13500 Prototype yylex and yyerror.
13501 `Use' argc.
13502 Include `string.h', not `strings.h'.
13503 Produce and prototype stmtMerge only when used.
13504 yylex takes a location.
13505
97650f4e
AD
135062002-06-30 Akim Demaille <akim@epita.fr>
13507
13508 We spend a lot of time in quotearg, in particular when --verbose.
13509
13510 * src/symtab.c (symbol_get): Store a quoted version of the key.
13511 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
13512 Adjust all callers.
13513
d2576365
AD
135142002-06-30 Akim Demaille <akim@epita.fr>
13515
13516 * src/state.h (reductions_t): Rename member `nreds' as num.
13517 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
13518 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
13519
ccaf65bc
AD
135202002-06-30 Akim Demaille <akim@epita.fr>
13521
13522 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
13523 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
13524 (shifts_to): Rename as...
13525 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
13526 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
13527 (TRANSITION_IS_DISABLED, transitions_to): these.
13528
87675353
AD
135292002-06-30 Akim Demaille <akim@epita.fr>
13530
13531 * src/print.c (print_shifts, print_gotos): Merge into...
13532 (print_transitions): this.
13533 (print_transitions, print_errs, print_reductions): Align the
13534 lookaheads columns.
13535 (print_core, print_transitions, print_errs, print_state,
13536 print_grammar): Output empty lines separator before, not after.
13537 (state_default_rule_compute): Rename as...
13538 (state_default_rule): this.
13539 * tests/conflicts.at (Defaulted Conflicted Reduction),
13540 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
13541 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
13542
ce4ccb4b
AD
135432002-06-30 Akim Demaille <akim@epita.fr>
13544
13545 Display items as we display rules.
13546
13547 * src/gram.h, src/gram.c (rule_lhs_print): New.
13548 * src/gram.c (grammar_rules_partial_print): Use it.
13549 * src/print.c (print_core): Likewise.
13550 * tests/conflicts.at (Defaulted Conflicted Reduction),
13551 (Unresolved SR Conflicts): Adjust.
13552 (Unresolved SR Conflicts): Adjust and rename as...
13553 (Resolved SR Conflicts): this, as was meant.
13554 * tests/regression.at (Web2c Report): Adjust.
13555
bc933ef1
AD
135562002-06-30 Akim Demaille <akim@epita.fr>
13557
13558 * src/print.c (state_default_rule_compute): New, extracted from...
13559 (print_reductions): here.
13560 Pessimize, but clarify the code.
13561 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
13562
53d4308d
AD
135632002-06-30 Akim Demaille <akim@epita.fr>
13564
13565 * src/output.c (action_row): Let default_rule be always a rule
13566 number.
13567
574fb2d5
AD
135682002-06-30 Akim Demaille <akim@epita.fr>
13569
13570 * src/closure.c (print_firsts, print_fderives, closure):
13571 Use BITSET_EXECUTE.
13572 * src/lalr.c (lookaheads_print): Likewise.
13573 * src/state.c (state_rule_lookaheads_print): Likewise.
13574 * src/print_graph.c (print_core): Likewise.
13575 * src/print.c (print_reductions): Likewise.
13576 * src/output.c (action_row): Likewise.
13577 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
13578
05811fd7
AD
135792002-06-30 Akim Demaille <akim@epita.fr>
13580
13581 * src/print_graph.c: Use report_flag.
13582
0e4d5753
AD
135832002-06-30 Akim Demaille <akim@epita.fr>
13584
13585 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
13586 to...
13587 * src/relation.h, src/relation.c (traverse, relation_digraph)
13588 (relation_print, relation_transpose): New.
13589
24c7d800
AD
135902002-06-30 Akim Demaille <akim@epita.fr>
13591
13592 * src/state.h, src/state.c (shifts_to): New.
13593 * src/lalr.c (build_relations): Use it.
13594
9222837b
AD
135952002-06-30 Akim Demaille <akim@epita.fr>
13596
13597 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
13598 (item_number_of_rule_number, rule_number_of_item_number): New.
13599 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
13600 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
13601 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
13602 Propagate their use.
13603 Much remains to be done, in particular wrt `shorts' from types.h.
13604
260008e5
AD
136052002-06-30 Akim Demaille <akim@epita.fr>
13606
13607 * src/symtab.c (symbol_new): Initialize the `printer' member.
13608
8a731ca8
AD
136092002-06-30 Akim Demaille <akim@epita.fr>
13610
13611 * src/LR0.c (save_reductions): Remove, replaced by...
13612 * src/state.h, src/state.c (state_reductions_set): New.
13613 (reductions, errs): Rename as...
13614 (reductions_t, errs_t): these.
13615 Adjust all dependencies.
13616
32e1e0a4
AD
136172002-06-30 Akim Demaille <akim@epita.fr>
13618
13619 * src/LR0.c (state_list_t, state_list_append): New.
13620 (first_state, last_state): Now symbol_list_t.
13621 (this_state): Remove.
13622 (new_itemsets, append_states, save_reductions): Take a state_t as
13623 argument.
13624 (set_states, generate_states): Adjust.
13625 (save_shifts): Remove, replaced by...
13626 * src/state.h, src/state.c (state_shifts_set): New.
13627 (shifts): Rename as...
13628 (shifts_t): this.
13629 Adjust all dependencies.
13630 * src/state.h (state_t): Remove the `next' member.
13631
e5fb6710
AD
136322002-06-30 Akim Demaille <akim@epita.fr>
13633
13634 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
13635 escaped in slot 0.
13636
c7ca99d4
AD
136372002-06-30 Akim Demaille <akim@epita.fr>
13638
13639 Use hash.h for the state hash table.
13640
13641 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
13642 (allocate_storage): Use state_hash_new.
13643 (free_storage): Use state_hash_free.
13644 (new_state, get_state): Adjust.
13645 * src/lalr.h, src/lalr.c (states): Move to...
13646 * src/states.h (state_t): Remove the `link' member, no longer
13647 used.
13648 * src/states.h, src/states.c: here.
13649 (state_hash_new, state_hash_free, state_hash_lookup)
13650 (state_hash_insert, states_free): New.
13651 * src/states.c (state_table, state_compare, state_hash): New.
13652 * src/output.c (output_actions): Do not free states now, since we
13653 still need to know the final_state number in `prepare', called
13654 afterwards. Do it...
13655 * src/main.c (main): here: call states_free after `output'.
13656
df0e7316
AD
136572002-06-30 Akim Demaille <akim@epita.fr>
13658
13659 * src/state.h, src/state.c (state_new): New, extracted from...
13660 * src/LR0.c (new_state): here.
13661 * src/state.h (STATE_ALLOC): Move to...
13662 * src/state.c: here.
13663 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
13664 * src/state.h, src/state.c: here.
13665
39f41916
AD
136662002-06-30 Akim Demaille <akim@epita.fr>
13667
13668 * src/reader.c (gensym): Rename as...
13669 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
13670 (getsym): Rename as...
13671 (symbol_get): this.
13672
d57650a5
AD
136732002-06-30 Akim Demaille <akim@epita.fr>
13674
13675 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
13676 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
13677 * src/output.c, src/print.c, src/print_graph.c: Propagate.
13678 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
13679
5a08f1ce
AD
136802002-06-30 Akim Demaille <akim@epita.fr>
13681
13682 Make the test suite pass with warnings checked.
13683
13684 * tests/actions.at (Printers and Destructors): Improve.
13685 Avoid unsigned vs. signed issues.
13686 * tests/calc.at: Don't exercise the scanner here, do it...
13687 * tests/input.at (Torturing the Scanner): here.
13688
720623af
PH
136892002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13690
88e7e941 13691 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
13692 reorganize first lines parallel to yacc.c.
13693
fb8135fa
AD
136942002-06-28 Akim Demaille <akim@epita.fr>
13695
13696 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
13697 (b4_token_enum, b4_token_defines): New, factored from...
13698 * data/lalr1.cc, data/yacc.c, glr.c: here.
13699
41442480
AD
137002002-06-28 Akim Demaille <akim@epita.fr>
13701
13702 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
13703 unused variables.
13704 * src/output.c (merger_output): static.
13705
e0e5bf84
AD
137062002-06-28 Akim Demaille <akim@epita.fr>
13707
ba0fe3c7 13708 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
e0e5bf84
AD
13709 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
13710 pacify GCC.
13711 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 13712
676385e2
PH
137132002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13714
13715 Accumulated changelog for new GLR parsing features.
13716
6a254321 13717 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
13718 conflicts_total_count.
13719 * src/conflicts.h: Ditto.
13720 * src/output.c (token_actions): Use the new name.
13721 (output_conflicts): Change conflp => conflict_list_heads, and
13722 confl => conflict_list for better readability.
13723 * data/glr.c: Use the new names.
13724 * NEWS: Add self to GLR announcement.
e0e5bf84 13725
676385e2
PH
13726 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
13727
13728 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
13729 Akim Demaille.
13730
13731 * data/bison.glr: Change name to glr.c
13732 * data/glr.c: Renamed from bison.glr.
13733 * data/Makefile.am: Add glr.c
e0e5bf84
AD
13734
13735 * src/getargs.c:
13736
676385e2 13737 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
ba0fe3c7 13738 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 13739
676385e2
PH
13740 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13741
13742 * data/bison.glr: Be sure to restore the
13743 current #line when returning to the skeleton contents after having
13744 exposed the input file's #line.
13745
13746 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13747
13748 * data/bison.glr: Bring up to date with changes to bison.simple.
13749
13750 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13751
13752 * data/bison.glr: Correct definitions that use b4_prefix.
13753 Various reformatting.
13754 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
13755 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
13756 yytokenp argument; now part of stack.
13757 (yychar): Define to behave as documented.
13758 (yyclearin): Ditto.
e0e5bf84 13759
676385e2
PH
13760 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13761
13762 * src/reader.h: Add declaration for free_merger_functions.
13763
13764 * src/reader.c (merge_functions): New variable.
13765 (get_merge_function): New function.
13766 (free_merger_functions): New function.
13767 (readgram): Check for %prec that is not followed by a symbol.
13768 Handle %dprec and %merge declarations.
13769 (packgram): Initialize dprec and merger fields in rules array.
13770
13771 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
13772 conflict_list_cnt, conflict_list_free): New variables.
13773 (table_grow): Also grow conflict_table.
e0e5bf84 13774 (prepare_rules): Output dprec and merger tables.
676385e2 13775 (conflict_row): New function.
e0e5bf84 13776 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
13777 default reduction in conflicted states for GLR parser so that there
13778 are spaces for the conflict lists.
13779 (save_row): Also save conflict information.
13780 (token_actions): Allocate conflict list.
13781 (merger_output): New function.
13782 (pack_vector): Pack conflict table, too.
13783 (output_conflicts): New function to output yyconflp and yyconfl.
13784 (output_check): Allocate conflict_tos.
13785 (output_actions): Output conflict tables, also.
13786 (output_skeleton): Output b4_mergers definition.
13787 (prepare): Output b4_max_rhs_length definition.
13788 Use 'bison.glr' as default skeleton for GLR parsers.
13789
13790 * src/gram.c (glr_parser): New flag.
13791 (grammar_free): Call free_merger_functions.
13792
13793 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
13794 all pairs of conflicting reductions, rather than just all tokens
13795 causing conflicts. Needed to size conflict tables.
e0e5bf84 13796 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
13797 interface.
13798 (conflicts_print): Ditto.
13799 (count_total_conflicts): New function.
13800
13801 * src/reader.h (merger_list): New type.
13802 (merge_functions): New variable.
13803
13804 * src/lex.h (tok_dprec, tok_merge): New token types.
13805
13806 * src/gram.h (rule_s): Add dprec and merger fields.
13807 (glr_parser): New flag.
13808
13809 * src/conflicts.h (count_total_conflicts): New function.
13810
13811 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
13812
13813 * doc/bison.texinfo (Generalized LR Parsing): New section.
13814 (GLR Parsers): New section.
13815 (Language and Grammar): Mention GLR parsing.
13816 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
13817 Correct typo ("tge" -> "the").
13818
13819 * data/bison.glr: New skeleton for GLR parsing.
13820
13821 * tests/cxx-gram.at: New tests for GLR parsing.
13822
13823 * tests/testsuite.at: Include cxx-gram.at.
13824
13825 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 13826
676385e2
PH
13827 * src/parse-gram.y:
13828
13829 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
13830
13831 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 13832
b5480d74 138332002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
13834
13835 * src/options.h, src/options.c: Remove.
13836 * src/getargs.c (short_options, long_options): New.
13837
60491a94
AD
138382002-06-27 Akim Demaille <akim@epita.fr>
13839
13840 * data/bison.simple, data/bison.c++: Rename as...
13841 * data/yacc.c, data/lalr1.cc: these.
13842 * doc/bison.texinfo (Environment Variables): Remove.
13843
9be0c25b
AD
138442002-06-25 Raja R Harinath <harinath@cs.umn.edu>
13845
13846 * src/getargs.c (report_argmatch): Initialize strtok().
13847
1ae72863
AD
138482002-06-20 Akim Demaille <akim@epita.fr>
13849
13850 * data/bison.simple (b4_symbol_actions): New, replaces...
13851 (b4_symbol_destructor, b4_symbol_printer): these.
13852 (yysymprint): Be sure to call YYPRINT only for tokens, and using
13853 user token numbers.
13854
87542d29
AD
138552002-06-20 Akim Demaille <akim@epita.fr>
13856
13857 * data/bison.simple (yydestructor): Rename as...
13858 (yydestruct): this.
13859
1a31ed21
AD
138602002-06-20 Akim Demaille <akim@epita.fr>
13861
13862 * src/symtab.h, src/symtab.c (symbol_type_set)
13863 (symbol_destructor_set, symbol_precedence_set): The location is
13864 the last argument.
13865 Adjust all callers.
13866
e776192e
AD
138672002-06-20 Akim Demaille <akim@epita.fr>
13868
13869 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
13870 internals.
13871 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
13872 Takes a location.
13873 * src/symtab.h, src/symtab.c (symbol_class_set)
13874 (symbol_user_token_number_set): Likewise.
13875 Adjust all callers.
13876 Promote complain_at.
13877 * tests/input.at (Type Clashes): Adjust.
13878
5c1180b3
AD
138792002-06-20 Akim Demaille <akim@epita.fr>
13880
13881 * data/bison.simple (YYLEX): Fix the declaration when
13882 %pure-parser.
13883
e3170060
AD
138842002-06-20 Akim Demaille <akim@epita.fr>
13885
13886 * data/bison.simple (yysymprint): Don't print the token number,
13887 just its name.
13888 * tests/actions.at (Destructors): Rename as...
13889 (Printers and Destructors): this.
13890 Also exercise %printer.
13891
253862fd
AD
138922002-06-20 Akim Demaille <akim@epita.fr>
13893
13894 * data/bison.simple (YYDSYMPRINT): New.
13895 Use it to remove many of the #if YYDEBUG/if (yydebug).
13896
366eea36
AD
138972002-06-20 Akim Demaille <akim@epita.fr>
13898
13899 * src/symtab.h, src/symtab.c (symbol_t): printer and
13900 printer_location are new members.
13901 (symbol_printer_set): New.
13902 * src/parse-gram.y (PERCENT_PRINTER): New token.
13903 Handle its associated rule.
13904 * src/scan-gram.l: Adjust.
13905 (handle_destructor_at, handle_destructor_dollar): Rename as...
13906 (handle_symbol_code_at, handle_symbol_code_dollar): these.
13907 * src/output.c (symbol_printers_output): New.
13908 (output_skeleton): Call it.
13909 * data/bison.simple (yysymprint): New. Cannot be named yyprint
13910 since there are already many grammar files with a user `yyprint'.
13911 Replace the calls to YYPRINT to calls to yysymprint.
13912 * tests/calc.at: Adjust.
13913 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
13914 taking advantage of parser very internal details (stack size!).
13915
4f25ebb0
AD
139162002-06-20 Akim Demaille <akim@epita.fr>
13917
13918 * src/scan-gram.l: Complete the scanner with the missing patterns
13919 to pacify Flex.
13920 Use `quote' and `symbol_tag_get' where appropriate.
13921
93b68a0e
AD
139222002-06-19 Akim Demaille <akim@epita.fr>
13923
13924 * tests/actions.at (Destructors): Augment to test locations.
13925 * data/bison.simple (yydestructor): Pass it the current location
13926 if locations are enabled.
13927 Prototype only when __STDC__ or C++.
13928 Change the argument names to move into the yy name space: there is
13929 user code here.
13930
58612f1d
AD
139312002-06-19 Akim Demaille <akim@epita.fr>
13932
74310291
AD
13933 * data/bison.simple (b4_pure_if): New.
13934 Use it instead of #ifdef YYPURE.
13935
139362002-06-19 Akim Demaille <akim@epita.fr>
13937
13938 * data/bison.simple (b4_location_if): New.
58612f1d
AD
13939 Use it instead of #ifdef YYLSP_NEEDED.
13940
f25bfb75
AD
139412002-06-19 Akim Demaille <akim@epita.fr>
13942
13943 Prepare @$ in %destructor, but currently don't bind it in the
13944 skeleton, as %location use is not cleaned up yet.
13945
13946 * src/scan-gram.l (handle_dollar, handle_destructor_at)
13947 (handle_action_at): New.
13948 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
13949 a braced_code_t and a location as additional arguments.
13950 (handle_destructor_dollar): Instead of requiring `b4_eval', just
13951 unquote one when outputting `b4_dollar_dollar'.
13952 Adjust callers.
13953 * data/bison.simple (b4_eval): Remove.
13954 (b4_symbol_destructor): Adjust.
13955 * tests/input.at (Invalid @n): Adjust.
13956
c732d2c6
AD
139572002-06-19 Zack Weinberg <zack@codesourcery.com>
13958
13959 * doc/bison.texinfo: Document ability to have multiple
13960 prologue sections.
13961
8c165d89
AD
139622002-06-18 Akim Demaille <akim@epita.fr>
13963
13964 * src/files.c (compute_base_names): When computing the output file
13965 names from the input file name, strip the directory part.
13966
ca98bf57
AD
139672002-06-18 Akim Demaille <akim@epita.fr>
13968
13969 * data/bison.simple.new: Comment changes.
13970 Reported by Andreas Schwab.
13971
0bfb02ff
AD
139722002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
13973
13974 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
13975 there are no `label `yyoverflowlab' defined but not used' warnings
13976 when yyoverflow is defined.
13977
24c0aad7
AD
139782002-06-18 Akim Demaille <akim@epita.fr>
13979
13980 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
13981 new member.
13982 (symbol_destructor_set): Adjust.
13983 * src/output.c (symbol_destructors_output): Output the destructor
13984 locations.
13985 Output the symbol name.
13986 * data/bison.simple (b4_symbol_destructor): Adjust.
13987
5719c109
AD
139882002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
13989 and Akim Demaille <akim@epita.fr>
13990
13991 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
13992 what's left on the stack when the error recovery hits EOF.
13993 * tests/actions.at (Destructors): Complete to exercise this case.
13994
9280d3ef
AD
139952002-06-17 Akim Demaille <akim@epita.fr>
13996
13997 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
13998 arguments is really empty, not only equal to `[]'.
13999 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
14000 member.
14001 (symbol_destructor_set): New.
14002 * src/output.c (symbol_destructors_output): New.
14003 * src/reader.h (brace_code_t, current_braced_code): New.
14004 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
14005 (handle_dollar): Rename as...
14006 (handle_action_dollar): this.
14007 (handle_destructor_dollar): New.
14008 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
14009 (grammar_declaration): Use it.
14010 * data/bison.simple (yystos): Is always defined.
14011 (yydestructor): New.
14012 * tests/actions.at (Destructors): New.
14013 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
14014
dafdc66f
AD
140152002-06-17 Akim Demaille <akim@epita.fr>
14016
14017 * src/symlist.h, src/symlist.c (symbol_list_length): New.
14018 * src/scan-gram.l (handle_dollar, handle_at): Compute the
14019 rule_length only when needed.
14020 * src/output.c (actions_output, token_definitions_output): Output
14021 the full M4 block.
14022 * src/symtab.c: Don't access directly to the symbol tag, use
14023 symbol_tag_get.
14024 * src/parse-gram.y: Use symbol_list_free.
14025
56c47203
AD
140262002-06-17 Akim Demaille <akim@epita.fr>
14027
14028 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
14029 (symbol_list_prepend, get_type_name): Move to...
14030 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
14031 (symbol_list_prepend, symbol_list_n_type_name_get): here.
14032 Adjust all callers.
14033 (symbol_list_free): New.
14034 * src/scan-gram.l (handle_dollar): Takes a location.
14035 * tests/input.at (Invalid $n): Adjust.
14036
1e0bab92
AD
140372002-06-17 Akim Demaille <akim@epita.fr>
14038
14039 * src/reader.h, src/reader.c (symbol_list_new): Export it.
14040 (symbol_list_prepend): New.
14041 * src/parse-gram.y (%union): `list' is a new member.
14042 (symbols.1): New, replaces...
14043 (terms_to_prec.1, nterms_to_type.1): these.
14044 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
14045 Take a location as additional argument.
14046 Adjust all callers.
14047
04e60654
AD
140482002-06-15 Akim Demaille <akim@epita.fr>
14049
14050 * src/parse-gram.y: Move %token in the declaration section so that
14051 we don't depend upon CVS Bison.
14052
10e5b8bd
AD
140532002-06-15 Akim Demaille <akim@epita.fr>
14054
14055 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
14056 * src/print.c (print_core): Use it.
14057
9801d40c
AD
140582002-06-15 Akim Demaille <akim@epita.fr>
14059
14060 * src/conflicts.c (log_resolution): Accept the rule involved in
14061 the sr conflicts instead of the lookahead number that points to
14062 that rule.
14063 (flush_reduce): Accept the current lookahead vector as argument,
14064 instead of the index in LA.
14065 (resolve_sr_conflict): Accept the current number of lookahead
14066 bitset to consider for the STATE, instead of the index in LA.
14067 (set_conflicts): Adjust.
14068 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
14069
c0263492
AD
140702002-06-15 Akim Demaille <akim@epita.fr>
14071
14072 * src/state.h (state_t): Replace the `lookaheadsp' member, a
14073 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
14074 Adjust all dependencies.
14075 * src/lalr.c (initialize_lookaheads): Split into...
14076 (states_lookaheads_count, states_lookaheads_initialize): these.
14077 (lalr): Adjust.
14078
9757c359
AD
140792002-06-15 Akim Demaille <akim@epita.fr>
14080
14081 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
14082 out of...
14083 (grammar_rules_print): here.
14084 * src/reduce.c (reduce_output): Use it.
14085 * tests/reduce.at (Useless Rules, Reduced Automaton)
14086 (Underivable Rules): Adjust.
14087
6b98e4b5
AD
140882002-06-15 Akim Demaille <akim@epita.fr>
14089
14090 Copy BYacc's nice way to report the grammar.
14091
14092 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
14093 New.
14094 Don't print the rules' location, it is confusing and useless.
14095 (rule_print): Use grammar_rhs_print.
14096 * src/print.c (print_grammar): Use grammar_rules_print.
14097
6b98e4b5
AD
140982002-06-15 Akim Demaille <akim@epita.fr>
14099
14100 Complete and rationalize `useless thing' warnings.
14101
14102 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
14103 (symbol_tag_print): New.
14104 Use them everywhere in place of accessing directly the tag member.
14105 * src/gram.h, src/gram.c (rule_print): New.
14106 Use it where a rule used to be printed `by hand'.
14107 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
14108 (reduce_grammar_tables): Report the useless rules.
14109 (reduce_print): Useless things are a warning, not an error.
14110 Report it as such.
14111 * tests/reduce.at (Useless Nonterminals, Useless Rules):
14112 (Reduced Automaton, Underivable Rules): Adjust.
14113 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
14114 * tests/conflicts.at (Unresolved SR Conflicts)
14115 (Solved SR Conflicts): Adjust.
14116
ee000ba4
AD
141172002-06-15 Akim Demaille <akim@epita.fr>
14118
14119 Let symbols have a location.
14120
14121 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
14122 (getsym): Adjust.
14123 Adjust all callers.
14124 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
14125 Use location_t, not int.
14126 * src/symtab.c (symbol_check_defined): Take advantage of the
14127 location.
14128 * tests/regression.at (Invalid inputs): Adjust.
14129
8efe435c
AD
141302002-06-15 Akim Demaille <akim@epita.fr>
14131
14132 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
14133 (input): Don't try to initialize yylloc here, do it in the
14134 scanner.
14135 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
14136 * src/gram.h (rule_t): Change line and action_line into location
14137 and action_location, of location_t type.
14138 Adjust all dependencies.
14139 * src/location.h, src/location.c (empty_location): New.
14140 * src/reader.h, src/reader.c (grammar_start_symbol_set)
14141 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
14142 (grammar_current_rule_symbol_append)
14143 (grammar_current_rule_action_append): Expect a location as argument.
14144 * src/reader.c (grammar_midrule_action): Adjust to attach an
14145 action's location as dummy symbol location.
14146 * src/symtab.h, src/symtab.c (startsymbol_location): New.
14147 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
14148 the line numbers.
14149
1921f1d7
AD
141502002-06-14 Akim Demaille <akim@epita.fr>
14151
14152 Grammar declarations may be found in the grammar section.
14153
14154 * src/parse-gram.y (rules_or_grammar_declaration): New.
14155 (declarations): Each declaration may end with a semicolon, not
14156 just...
14157 (grammar_declaration): `"%union"'.
14158 (grammar): Branch to rules_or_grammar_declaration.
14159
4515534c
AD
141602002-06-14 Akim Demaille <akim@epita.fr>
14161
14162 * src/main.c (main): Invoke scanner_free.
14163
f958596b
AD
141642002-06-14 Akim Demaille <akim@epita.fr>
14165
14166 * src/output.c (m4_invoke): Extracted from...
14167 (output_skeleton): here.
14168 Free tempfile.
14169
2c569025
AD
141702002-06-14 Akim Demaille <akim@epita.fr>
14171
14172 * src/parse-gram.y (directives, directive, gram)
14173 (grammar_directives, precedence_directives, precedence_directive):
14174 Rename as...
14175 (declarations, declaration, grammar, grammar_declaration)
14176 (precedence_declaration, precedence_declarator): these.
14177 (symbol_declaration): New.
14178
592e8d4d
AD
141792002-06-14 Akim Demaille <akim@epita.fr>
14180
14181 * src/files.c (action_obstack): Remove, unused.
14182 (output_obstack): Remove it, and all its dependencies, as it is no
14183 longer needed.
14184 * src/reader.c (epilogue_set): Build the epilogue in the
14185 muscle_obstack.
14186 * src/output.h, src/output.c (muscle_obstack): Move to...
14187 * src/muscle_tab.h, src/muscle_tab.h: here.
14188 (muscle_init): Initialize muscle_obstack.
14189 (muscle_free): New.
14190 * src/main.c (main): Call it.
14191
0c15323d
AD
141922002-06-14 Akim Demaille <akim@epita.fr>
14193
14194 * src/location.h: New, extracted from...
14195 * src/reader.h: here.
14196 * src/Makefile.am (noinst_HEADERS): Merge into
14197 (bison_SOURCES): this.
14198 Add location.h.
14199 * src/parse-gram.y: Use location_t instead of Bison's.
14200 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
14201 Use location_t instead of ints.
14202
e96c9728
AD
142032002-06-14 Akim Demaille <akim@epita.fr>
14204
14205 * data/bison.simple, data/bison.c++: Be sure to restore the
14206 current #line when returning to the skeleton contents after having
14207 exposed the input file's #line.
14208
75d1fe16
AD
142092002-06-12 Akim Demaille <akim@epita.fr>
14210
14211 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
14212 eager.
14213 * tests/actions.at (Exotic Dollars): New.
14214
6c35d22c
AD
142152002-06-12 Akim Demaille <akim@epita.fr>
14216
14217 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
14218 ['"/] too eagerly.
14219 * tests/input.at (Torturing the Scanner): New.
14220
1d6412ad
AD
142212002-06-11 Akim Demaille <akim@epita.fr>
14222
14223 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
14224 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
14225 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
14226 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
14227 * src/reader.c (reader): Use it.
14228
4cdb01db
AD
142292002-06-11 Akim Demaille <akim@epita.fr>
14230
14231 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
14232 Adjust all callers.
14233 (scanner_last_string_free): New.
14234
44995b2e
AD
142352002-06-11 Akim Demaille <akim@epita.fr>
14236
14237 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
14238 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
14239 (last_string, YY_OBS_FREE): New.
14240 Use them when returning an ID.
14241
e9955c83
AD
142422002-06-11 Akim Demaille <akim@epita.fr>
14243
14244 Have Bison grammars parsed by a Bison grammar.
14245
14246 * src/reader.c, src/reader.h (prologue_augment): New.
14247 * src/reader.c (copy_definition): Remove.
14248
14249 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
14250 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
14251 (grammar_current_rule_prec_set, grammar_current_rule_check)
14252 (grammar_current_rule_symbol_append)
14253 (grammar_current_rule_action_append): Export.
14254 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
14255 (symbol_list_action_append): Remove.
14256 Hook the routines from reader.
14257 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
14258 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
14259
14260 * src/reader.c (read_declarations): Remove, unused.
14261
14262 * src/parse-gram.y: Handle the epilogue.
14263 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
14264 (grammar_start_symbol_set): this.
14265 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
14266 * src/reader.c (readgram): Remove, unused.
14267 (reader): Adjust to insert eoftoken and axiom where appropriate.
14268
14269 * src/reader.c (copy_dollar): Replace with...
14270 * src/scan-gram.h (handle_dollar): this.
14271 * src/parse-gram.y: Remove `%thong'.
14272
14273 * src/reader.c (copy_at): Replace with...
14274 * src/scan-gram.h (handle_at): this.
14275
14276 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
14277 New.
14278
14279 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
14280 time being.
14281
14282 * src/reader.h, src/reader.c (grammar_rule_end): New.
14283
14284 * src/parse.y (current_type, current_class): New.
14285 Implement `%nterm', `%token' support.
14286 Merge `%term' into `%token'.
14287 (string_as_id): New.
14288 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
14289 type name.
14290
14291 * src/parse-gram.y: Be sure to handle properly the beginning of
14292 rules.
14293
14294 * src/parse-gram.y: Handle %type.
14295 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
14296
14297 * src/parse-gram.y: More directives support.
14298 * src/options.c: No longer handle source directives.
14299
14300 * src/parse-gram.y: Fix %output.
14301
14302 * src/parse-gram.y: Handle %union.
14303 Use the prologue locations.
14304 * src/reader.c (parse_union_decl): Remove.
14305
14306 * src/reader.h, src/reader.c (epilogue_set): New.
14307 * src/parse-gram.y: Use it.
14308
14309 * data/bison.simple, data/bison.c++: b4_stype is now either not
14310 defined, then default to int, or to the contents of %union,
14311 without `union' itself.
14312 Adjust.
14313 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
14314
14315 * src/output.c (actions_output): Don't output braces, as they are
14316 already handled by the scanner.
14317
14318 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
14319 characters to themselves.
14320
14321 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
14322 that the epilogue has a proper #line.
14323
14324 * src/parse-gram.y: Handle precedence/associativity.
14325
14326 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
14327 a terminal.
14328 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
14329 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
14330 at all to define terminals that cannot be emitted.
14331
14332 * src/scan-gram.l: Escape M4 characters.
14333
14334 * src/scan-gram.l: Working properly with escapes in user
14335 strings/characters.
14336
14337 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
14338 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
14339 grammar.
14340 Use more modest sizes, as for the time being the parser does not
14341 release memory, and therefore the process swallows a huge amount
14342 of memory.
14343
14344 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
14345 stricter %token grammar.
14346
14347 * src/symtab.h (associativity): Add `undef_assoc'.
14348 (symbol_precedence_set): Do nothing when passed an undef_assoc.
14349 * src/symtab.c (symbol_check_alias_consistence): Adjust.
14350
14351 * tests/regression.at (Invalid %directive): Remove, as it is now
14352 meaningless.
14353 (Invalid inputs): Adjust to the new error messages.
14354 (Token definitions): The new grammar doesn't allow too many
14355 eccentricities.
14356
14357 * src/lex.h, src/lex.c: Remove.
14358 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
14359 (copy_character, copy_string2, copy_string, copy_identifier)
14360 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
14361 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
14362 (parse_action): Remove.
14363 * po/POTFILES.in: Adjust.
14364
2e047461
AD
143652002-06-11 Akim Demaille <akim@epita.fr>
14366
cd05d13c 14367 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
14368 rule's action member: return the action as a string.
14369 Don't require `rule_length' as an argument: compute it.
14370 (grammar_current_rule_symbol_append)
14371 (grammar_current_rule_action_append): New, eved out from
14372 (readgram): here.
14373 Remove `action_flag', `rulelength', unused now.
14374
9af3fbce
AD
143752002-06-11 Akim Demaille <akim@epita.fr>
14376
14377 * src/reader.c (grammar_current_rule_prec_set).
14378 (grammar_current_rule_check): New, eved out from...
14379 (readgram): here.
14380 Remove `xaction', `first_rhs': useless.
14381 * tests/input.at (Type clashes): New.
14382 * tests/existing.at (GNU Cim Grammar): Adjust.
14383
1485e106
AD
143842002-06-11 Akim Demaille <akim@epita.fr>
14385
14386 * src/reader.c (grammar_midrule_action): New, Eved out from
14387 (readgram): here.
14388
da4160c3
AD
143892002-06-11 Akim Demaille <akim@epita.fr>
14390
14391 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
14392 New.
14393 (readgram): Use them as replacement of inlined code, crule and
14394 crule1.
14395
f6d0f937
AD
143962002-06-11 Akim Demaille <akim@epita.fr>
14397
14398 * src/reader.c (grammar_end, grammar_symbol_append): New.
14399 (readgram): Use them.
14400 Make the use of `p' as local as possible.
14401
69078d4b
AD
144022002-06-10 Akim Demaille <akim@epita.fr>
14403
14404 GCJ's parser requires the tokens to be defined before the prologue.
14405
14406 * data/bison.simple: Output the token definition before the user's
14407 prologue.
14408 * tests/regression.at (Braces parsing, Duplicate string)
14409 (Mixing %token styles): Check the output from bison.
14410 (Early token definitions): New.
14411
5e424082
AD
144122002-06-10 Akim Demaille <akim@epita.fr>
14413
14414 * src/symtab.c (symbol_user_token_number_set): Don't complain when
14415 assigning twice the same user number to a token, so that we can
14416 use it in...
14417 * src/lex.c (lex): here.
14418 Also use `symbol_class_set' instead of hand written code.
14419 * src/reader.c (parse_assoc_decl): Likewise.
14420
44536b35
AD
144212002-06-10 Akim Demaille <akim@epita.fr>
14422
14423 * src/symtab.c, src/symtab.c (symbol_class_set)
14424 (symbol_user_token_number_set): New.
14425 * src/reader.c (parse_token_decl): Use them.
14426 Use a switch instead of ifs.
14427 Use a single argument.
14428
8b9f2372
AD
144292002-06-10 Akim Demaille <akim@epita.fr>
14430
14431 Remove `%thong' support as it is undocumented, unused, duplicates
14432 `%token's job, and creates useless e-mail traffic with people who
14433 want to know what it is, why it is undocumented, unused, and
14434 duplicates `%token's job.
14435
14436 * src/reader.c (parse_thong_decl): Remove.
14437 * src/options.c (option_table): Remove "thong".
14438 * src/lex.h (tok_thong): Remove.
14439
3ae2b51f
AD
144402002-06-10 Akim Demaille <akim@epita.fr>
14441
14442 * src/symtab.c, src/symtab.c (symbol_type_set)
14443 (symbol_precedence_set): New.
14444 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
14445 (value_components_used): Remove, unused.
14446
2f1afb73
AD
144472002-06-09 Akim Demaille <akim@epita.fr>
14448
14449 Move symbols handling code out of the reader.
14450
14451 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
14452 (axiom): Move to...
14453 * src/symtab.h, src/symtab.c: here.
14454
14455 * src/gram.c (start_symbol): Remove: use startsymbol->number.
14456 * src/reader.c (startval): Rename as...
14457 * src/symtab.h, src/symtab.c (startsymbol): this.
14458 * src/reader.c: Adjust.
14459
14460 * src/reader.c (symbol_check_defined, symbol_make_alias)
14461 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
14462 (token_translations_init)
14463 Move to...
14464 * src/symtab.c: here.
14465 * src/reader.c (packsymbols): Move to...
14466 * src/symtab.h, src/symtab.c (symbols_pack): here.
14467 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
14468 argument.
14469
e9bca3ad
AD
144702002-06-03 Akim Demaille <akim@epita.fr>
14471
14472 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
14473 then statements.
14474
86eff183
AD
144752002-06-03 Akim Demaille <akim@epita.fr>
14476
14477 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
14478 structs with non literals.
14479 * src/scan-skel.l: never-interactive.
14480 * src/conflicts.c (enum conflict_resolution_e): No trailing
14481 comma.
14482 * src/getargs.c (usage): Split long literal strings.
14483 Reported by Hans Aberg.
14484
717be197
AD
144852002-05-28 Akim Demaille <akim@epita.fr>
14486
14487 * data/bison.c++: Use C++ ostreams.
14488 (cdebug_): New member.
14489
670ddffd
AD
144902002-05-28 Akim Demaille <akim@epita.fr>
14491
14492 * src/output.c (output_skeleton): Be sure to allocate enough room
14493 for `/' _and_ for `\0' in full_skeleton.
14494
769b430f
AD
144952002-05-28 Akim Demaille <akim@epita.fr>
14496
14497 * data/bison.c++: Catch up with bison.simple:
14498 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14499 and Paul Eggert <eggert@twinsun.com>: `error' handing.
14500 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
14501 and popping traces.
14502
7067cb36
PH
145032002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14504
14505 * src/output.c (output_skeleton): Put an explicit path in front of
14506 the skeleton file name, rather than relying on the -I directory,
14507 to partially alleviate effects of having a skeleton file lying around
14508 in the current directory.
769b430f 14509
4a713ec2
PH
145102002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14511
769b430f 14512 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
14513 obstack_printf should be obstack_fgrow1.
14514
b408954b
AD
145152002-05-26 Akim Demaille <akim@epita.fr>
14516
14517 * src/state.h (state_t): `solved_conflicts' is a new member.
14518 * src/LR0.c (new_state): Set it to 0.
14519 * src/conflicts.h, src/conflicts.c (print_conflicts)
14520 (free_conflicts, solve_conflicts): Rename as...
14521 (conflicts_print, conflicts_free, conflicts_solve): these.
14522 Adjust callers.
14523 * src/conflicts.c (enum conflict_resolution_e)
14524 (solved_conflicts_obstack): New, used by...
14525 (log_resolution): this.
14526 Adjust to attach the conflict resolution to each state.
14527 Complete the description with the precedence/associativity
14528 information.
14529 (resolve_sr_conflict): Adjust.
14530 * src/print.c (print_state): Output its solved_conflicts.
14531 * tests/conflicts.at (Unresolved SR Conflicts)
14532 (Solved SR Conflicts): Exercise --report=all.
14533
a49aecd5
AD
145342002-05-26 Akim Demaille <akim@epita.fr>
14535
14536 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
14537 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
14538 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
14539 (token_number_t, item_number_as_token_number)
14540 (token_number_as_item_number, muscle_insert_token_number_table):
14541 Rename as...
14542 (symbol_number_t, item_number_as_symbol_number)
14543 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
14544 these, since it is more appropriate.
14545
5504898e
AD
145462002-05-26 Akim Demaille <akim@epita.fr>
14547
14548 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
14549 `Error:' lines.
14550 * data/bison.simple (yystos) [YYDEBUG]: New.
14551 (yyparse) [YYDEBUG]: Display the symbols which are popped during
14552 error recovery.
14553 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
14554
ec3bc396
AD
145552002-05-25 Akim Demaille <akim@epita.fr>
14556
14557 * doc/bison.texinfo (Debugging): Split into...
14558 (Tracing): this new section, its former contents, and...
14559 (Understanding): this new section.
14560 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
14561 by...
14562 (report_flag): this.
14563 Adjust all dependencies.
14564 (report_args, report_types, report_argmatch): New.
14565 (usage, getargs): Report/support -r, --report.
14566 * src/options.h
14567 (struct option_table_struct): Rename as..,
14568 (struct option_table_s): this.
14569 Rename the `set_flag' member to `flag' to match with getopt_long's
14570 struct.
14571 * src/options.c (option_table): Split verbose into an entry for
14572 %verbose, and another for --verbose.
14573 Support --report/-r, so remove -r from the obsolete --raw.
14574 * src/print.c: Attach full item sets and lookaheads reports to
14575 report_flag instead of trace_flag.
14576 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
14577
78df8250
PE
145782002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14579 and Paul Eggert <eggert@twinsun.com>
769b430f 14580
78df8250
PE
14581 * data/bison.simple (yyparse): Correct error handling to conform to
14582 POSIX and yacc. Specifically, after syntax error is discovered,
14583 do not reduce further before shifting the error token.
14584 Clean up the code a bit by removing the labels yyerrdefault,
14585 yyerrhandle, yyerrpop.
14586 * NEWS: Document the above.
14587
c0c9ea05
PH
145882002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14589
14590 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
14591 type; it isn't always big enough, since it doesn't necessarily
14592 include non-terminals.
769b430f 14593 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
14594 the latter can be removed.
14595 (yy_token_number_type): Remove, only one use.
14596 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
14597 don't use TokenNumberType as element type.
769b430f 14598
c0c9ea05
PH
14599 * tests/regression.at: Modify expected output to agree with change
14600 to yyr1 and yytranslate.
769b430f 14601
6390a83f
FK
146022002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
14603
14604 * src/reader.c (parse_action): Use copy_character instead of
14605 obstack_1grow.
14606
db7c8e9a
AD
146072002-05-13 Akim Demaille <akim@epita.fr>
14608
14609 * tests/regression.at (Token definitions): Prototype yylex and
14610 yyerror.
14611
fcc61800
PH
146122002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14613
158c687b 14614 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
14615 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
14616 32-bit arithmetic.
14617 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
14618
5683e9b2
AD
146192002-05-07 Akim Demaille <akim@epita.fr>
14620
14621 * tests/synclines.at: Be sure to prototype yylex and yyerror to
14622 avoid GCC warnings.
14623
0c2d3f4c
AD
146242002-05-07 Akim Demaille <akim@epita.fr>
14625
14626 Kill GCC warnings.
14627
14628 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
14629 over the RHS of each rule.
14630 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
14631 * src/state.h (state_t): Member `nitems' is unsigned short.
14632 * src/LR0.c (get_state): Adjust.
14633 * src/reader.c (packgram): Likewise.
14634 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
14635 `Type'.
14636 (muscle_insert_int_table): Remove, unused.
14637 (prepare_rules): Remove `max'.
14638
1565b720
AD
146392002-05-06 Akim Demaille <akim@epita.fr>
14640
14641 * src/closure.c (print_firsts): Display of the symbol tags.
14642 (bitmatrix_print): Move to...
14643 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
14644 here.
14645 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
14646
cfaee611
AD
146472002-05-06 Akim Demaille <akim@epita.fr>
14648
14649 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
14650 hash_do_for_each.
14651
458be8e0
AD
146522002-05-06 Akim Demaille <akim@epita.fr>
14653
14654 * src/LR0.c (new_state, get_state): Instead of using the global
14655 `kernel_size' and `kernel_base', have two new arguments:
14656 `core_size' and `core'.
14657 Adjust callers.
14658
a900a624
AD
146592002-05-06 Akim Demaille <akim@epita.fr>
14660
14661 * src/reader.c (packgram): No longer end `ritem' with a 0
14662 sentinel: it is not used.
14663
d4e7d3a1
AD
146642002-05-05 Akim Demaille <akim@epita.fr>
14665
14666 New experimental feature: display the lookaheads in the report and
14667 graph.
14668
14669 * src/print (print_core): When --trace-flag, display the rules
14670 lookaheads.
14671 * src/print_graph.c (print_core): Likewise.
14672 Swap the arguments.
14673 Adjust caller.
14674
39ceb25b
AD
146752002-05-05 Akim Demaille <akim@epita.fr>
14676
14677 * tests/torture.at (Many lookaheads): New test.
14678
5372019f
AD
146792002-05-05 Akim Demaille <akim@epita.fr>
14680
14681 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
14682 (GENERATE_MUSCLE_INSERT_TABLE): this.
14683 (output_int_table, output_unsigned_int_table, output_short_table)
14684 (output_token_number_table, output_item_number_table): Replace with...
14685 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
14686 (muscle_insert_short_table, muscle_insert_token_number_table)
14687 (muscle_insert_item_number_table): these.
14688 Adjust all callers.
14689 (prepare_tokens): Don't free `translations', since...
14690 * src/reader.h, src/reader.c (grammar_free): do it.
14691 Move to...
14692 * src/gram.h, src/gram.c (grammar_free): here.
14693 * data/bison.simple, data/bison.c++: b4_token_number_max is now
14694 b4_translate_max.
14695
5df5f6d5
AD
146962002-05-05 Akim Demaille <akim@epita.fr>
14697
14698 * src/output.c (output_unsigned_int_table): New.
14699 (prepare_rules): `i' is unsigned.
14700 `prhs', `rline', `r2' are unsigned int.
14701 Rename muscle `rhs_number_max' as `rhs_max'.
14702 Output muscles `prhs_max', `rline_max', and `r2_max'.
14703 Free rline and r1.
14704 * data/bison.simple, data/bison.c++: Adjust to use these muscles
14705 to compute types instead of constant types.
14706 * tests/regression.at (Web2c Actions): Adjust.
14707
b87f8b21
AD
147082002-05-04 Akim Demaille <akim@epita.fr>
14709
14710 * src/symtab.h (SALIAS, SUNDEF): Rename as...
14711 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
14712 Adjust dependencies.
14713 * src/output.c (token_definitions_output): Be sure not to output a
14714 `#define 'a'' when fed with `%token 'a' "a"'.
14715 * tests/regression.at (Token definitions): New.
14716
8bb936e4
PE
147172002-05-03 Paul Eggert <eggert@twinsun.com>
14718
14719 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
14720 for K&R C.
14721
147222002-05-03 gettextize <bug-gnu-gettext@gnu.org>
14723
14724 * Makefile.am (SUBDIRS): Remove intl.
14725 (EXTRA_DIST): Add config/config.rpath.
14726
53c71a12
AD
147272002-05-03 Akim Demaille <akim@epita.fr>
14728
14729 * data/bison.simple (m4_if): Don't output empty enums.
14730 And actually, output valid enum definitions :(.
14731
289dd0cf
AD
147322002-05-03 Akim Demaille <akim@epita.fr>
14733
14734 * configure.bat: Remove, completely obsolete.
14735 * Makefile.am (EXTRA_DIST): Adjust.
14736 Don't distribute config.rpath...
14737 * config/Makefile.am (EXTRA_DIST): Do it.
14738
db85e524
AD
147392002-05-03 Akim Demaille <akim@epita.fr>
14740
14741 * configure.in (GETTEXT_VERSION): New.
14742 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
14743
83ccf991
AD
147442002-05-03 Akim Demaille <akim@epita.fr>
14745
14746 * data/bison.simple (b4_token_enum): New.
14747 (b4_token_defines): Use it to output tokens both as #define and
14748 enums.
14749 Suggested by Paul Eggert.
14750 * src/output.c (token_definitions_output): Don't output spurious
14751 white spaces.
14752
1f418995
AD
147532002-05-03 Akim Demaille <akim@epita.fr>
14754
14755 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
14756
45119f04
RA
147572002-05-02 Robert Anisko <robert@lrde.epita.fr>
14758
14759 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
14760 Update the stack class, give a try to deque as the default container.
14761
b2d52318
AD
147622002-05-02 Akim Demaille <akim@epita.fr>
14763
14764 * data/bison.simple (yyparse): Do not implement @$ = @1.
14765 (YYLLOC_DEFAULT): Adjust to do it.
14766 * doc/bison.texinfo (Location Default Action): Fix.
14767
3a8b4109
AD
147682002-05-02 Akim Demaille <akim@epita.fr>
14769
14770 * src/reader.c (parse_braces): Merge into...
14771 (parse_action): this.
14772
84614e13
AD
147732002-05-02 Akim Demaille <akim@epita.fr>
14774
14775 * configure.in (ALL_LINGUAS): Remove.
14776 * po/LINGUAS, hr.po: New.
14777
fdbcd8e2
AD
147782002-05-02 Akim Demaille <akim@epita.fr>
14779
14780 Remove the so called hairy (semantic) parsers.
14781
14782 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
14783 * src/gram.h, src/gram.c (semantic_parser): Remove.
14784 (rule_t): Remove the guard and guard_line members.
14785 * src/lex.h (token_t): remove tok_guard.
14786 * src/options.c (option_table): Remove %guard and %semantic_parser
14787 support.
14788 * src/output.c, src/output.h (guards_output): Remove.
14789 (prepare): Adjust.
14790 (token_definitions_output): Don't output the `T'
14791 tokens (???).
14792 (output_skeleton): Don't output the guards.
14793 * src/files.c, src/files.c (attrsfile): Remove.
14794 * src/reader.c (symbol_list): Remove the guard and guard_line
14795 members.
14796 Adjust dependencies.
14797 (parse_guard): Remove.
14798 * data/bison.hairy: Remove.
14799 * doc/bison.texinfo (Environment Variables): Remove occurrences of
14800 BISON_HAIRY.
14801
82b6cb3f
AD
148022002-05-02 Akim Demaille <akim@epita.fr>
14803
14804 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
14805 (parse_guard): Rename the formal argument `stack_offset' as
14806 `rule_length', which is more readable.
14807 Adjust callers.
14808 (copy_at, copy_dollar): Instead of outputting the hard coded
14809 values of $$, $n and so forth, output invocation to b4_lhs_value,
14810 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
14811 Note: this patch partially drops `semantic-parser' support: it
14812 always does `rule_length - n', where semantic parsers ought to
14813 always use `-n'.
82b6cb3f
AD
14814 * data/bison.simple, data/bison.c++ (b4_lhs_value)
14815 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
14816
6cbfbcc5
AD
148172002-05-02 Akim Demaille <akim@epita.fr>
14818
14819 * configure.in (AC_INIT): Bump to 1.49b.
14820 (AM_INIT_AUTOMAKE): Short invocation.
14821
b8548114
AD
148222002-05-02 Akim Demaille <akim@epita.fr>
14823
14824 Version 1.49a.
14825
c20cd1fa
AD
148262002-05-01 Akim Demaille <akim@epita.fr>
14827
14828 * src/skeleton.h: Remove.
14829
8a9566d4
AD
148302002-05-01 Akim Demaille <akim@epita.fr>
14831
14832 * src/skeleton.h: Fix the #endif.
14833 Reported by Magnus Fromreide.
14834
8c6d399a
PE
148352002-04-26 Paul Eggert <eggert@twinsun.com>
14836
14837 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
14838 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 14839 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 14840
2b7ed18a
RA
148412002-04-25 Robert Anisko <robert@lrde.epita.fr>
14842
14843 * src/scan-skel.l: Postprocess quadrigraphs.
14844
14845 * src/reader.c (copy_character): New function, used to output
14846 single characters while replacing `[' and `]' with quadrigraphs, to
14847 avoid troubles with M4 quotes.
14848 (copy_comment): Output characters with copy_character.
14849 (read_additionnal_code): Likewise.
14850 (copy_string2): Likewise.
14851 (copy_definition): Likewise.
14852
14853 * tests/calc.at: Exercise M4 quoting.
14854
34a89c50
AD
148552002-04-25 Akim Demaille <akim@epita.fr>
14856
14857 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
14858 between `!' and the command.
14859 Reported by Paul Eggert.
14860
0dd1580a
RA
148612002-04-24 Robert Anisko <robert@lrde.epita.fr>
14862
14863 * tests/calc.at: Exercise prologue splitting.
14864
14865 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
14866 `b4_post_prologue' instead of `b4_prologue'.
14867
14868 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
14869 muscles.
14870 (output): Free pre_prologue_obstack and post_prologue_obstack.
14871 * src/files.h, src/files.c (attrs_obstack): Remove.
14872 (pre_prologue_obstack, post_prologue_obstack): New.
14873 * src/reader.c (copy_definition): Add a parameter to specify the
14874 obstack to fill, instead of using attrs_obstack unconditionally.
14875 (read_declarations): Pass pre_prologue_obstack to copy_definition if
14876 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
14877
83c1796f
PE
148782002-04-23 Paul Eggert <eggert@twinsun.com>
14879
14880 * data/bison.simple: Remove unnecessary commentary and white
14881 space differences from 1_29-branch.
14882 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
14883
14884 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
14885 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
14886 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
14887 constructors or destructors.
14888
14889 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
14890
1207eeac
AD
148912002-04-23 Akim Demaille <akim@epita.fr>
14892
14893 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
14894 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
14895 location with columns.
14896 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
14897 All reported by Paul Eggert.
14898
78ab8f67
AD
148992002-04-22 Akim Demaille <akim@epita.fr>
14900
14901 * src/reduce.c (dump_grammar): Move to...
14902 * src/gram.h, src/gram.c (grammar_dump): here.
14903 Be sure to separate long item numbers.
14904 Don't read the members of a rule's prec if its nil.
14905
133c20e2
AD
149062002-04-22 Akim Demaille <akim@epita.fr>
14907
14908 * src/output.c (table_size, table_grow): New.
14909 (MAXTABLE): Remove, replace uses with table_size.
14910 (pack_vector): Instead of dying when the table is too big, grow it.
14911
9515e8a7
AD
149122002-04-22 Akim Demaille <akim@epita.fr>
14913
14914 * data/bison.simple (yyr1): Its type is that of a token number.
14915 * data/bison.c++ (r1_): Likewise.
14916 * tests/regression.at (Web2c Actions): Adjust.
14917
23c5a174
AD
149182002-04-22 Akim Demaille <akim@epita.fr>
14919
14920 * src/reader.c (token_translations_init): 256 is now the default
14921 value for the error token, i.e., it will be assigned another
14922 number if the user assigned 256 to one of her tokens.
14923 (reader): Don't force 256 to error.
14924 * doc/bison.texinfo (Symbols): Adjust.
14925 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
14926 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
14927 etc. instead of 10, 20, 30 (which was used to `jump' over error
14928 (256) and undefined (2)).
14929
5fbb0954
AD
149302002-04-22 Akim Demaille <akim@epita.fr>
14931
14932 Propagate more token_number_t.
14933
14934 * src/gram.h (token_number_as_item_number)
14935 (item_number_as_token_number): New.
14936 * src/output.c (GENERATE_OUTPUT_TABLE): New.
14937 Use it to create output_item_number_table and
14938 output_token_number_table.
14939 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
14940 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
14941 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
14942 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
14943
4f940944
AD
149442002-04-22 Akim Demaille <akim@epita.fr>
14945
14946 * src/output.h, src/output.c (get_lines_number): Remove.
14947
3ded9a63
AD
149482002-04-19 Akim Demaille <akim@epita.fr>
14949
14950 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
14951 as Lex/Flex'.
14952 (Debugging): More details about enabling the debugging features.
14953 (Table of Symbols): Describe $$, $n, @$, and @n.
14954 Suggested by Tim Josling.
14955
e0c471a9
AD
149562002-04-19 Akim Demaille <akim@epita.fr>
14957
14958 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
14959
fecc10cd
AD
149602002-04-10 Akim Demaille <akim@epita.fr>
14961
14962 * src/system.h: Rely on HAVE_LIMITS_H.
14963 Suggested by Paul Eggert.
14964
51dec47b
AD
149652002-04-09 Akim Demaille <akim@epita.fr>
14966
14967 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
14968 full stderr, and strip it according to the bison options, instead
14969 of composing the error message from different bits.
14970 This makes it easier to check for several error messages.
14971 Adjust all the invocations.
14972 Add an invocation exercising the error token.
14973 Add an invocation demonstrating a stupid error message.
14974 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
14975 Adjust the tests.
14976 Error message are for stderr, not stdout.
14977
007a50a4
AD
149782002-04-09 Akim Demaille <akim@epita.fr>
14979
14980 * src/gram.h, src/gram.c (error_token_number): Remove, use
14981 errtoken->number.
14982 * src/reader.c (reader): Don't specify the user token number (2)
14983 for $undefined, as it uselessly prevents using it.
14984 * src/gram.h (token_number_t): Move to...
14985 * src/symtab.h: here.
14986 (state_t.number): Is a token_number_t.
14987 * src/print.c, src/reader.c: Use undeftoken->number instead of
14988 hard coded 2.
14989 (Even though this 2 is not the same as above: the number of the
14990 undeftoken remains being 2, it is its user token number which
14991 might not be 2).
14992 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
14993 `user_token_number_max'.
14994 Output `undef_token_number'.
14995 * data/bison.simple, data/bison.c++: Use them.
14996 Be sure to map invalid yylex return values to
14997 `undef_token_number'. This saves us from gratuitous SEGV.
14998
14999 * tests/conflicts.at (Solved SR Conflicts)
15000 (Unresolved SR Conflicts): Adjust.
15001 * tests/regression.at (Web2c Actions): Adjust.
15002
06446ccf
AD
150032002-04-08 Akim Demaille <akim@epita.fr>
15004
15005 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
15006 Adding #line.
15007 Remove the duplicate `typedefs'.
15008 (RhsNumberType): Fix the declaration and various other typos.
15009 Use __ofile__.
15010 * data/bison.simple: Use __ofile__.
15011 * src/scan-skel.l: Handle __ofile__.
15012
62a3e4f0
AD
150132002-04-08 Akim Demaille <akim@epita.fr>
15014
15015 * src/gram.h (item_number_t): New, the type of item numbers in
15016 RITEM. Note that it must be able to code symbol numbers as
15017 positive number, and the negation of rule numbers as negative
15018 numbers.
15019 Adjust all dependencies (pretty many).
15020 * src/reduce.c (rule): Remove this `short *' pointer: use
15021 item_number_t.
15022 * src/system.h (MINSHORT, MAXSHORT): Remove.
15023 Include `limits.h'.
15024 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
15025 (shortcpy): Remove.
15026 (MAXTABLE): Move to...
15027 * src/output.c (MAXTABLE): here.
15028 (prepare_rules): Use output_int_table to output rhs.
15029 * data/bison.simple, data/bison.c++: Adjust.
15030 * tests/torture.at (Big triangle): Move the limit from 254 to
15031 500.
15032 * tests/regression.at (Web2c Actions): Ajust.
15033
15034 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
15035 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
15036 passes, but produces negative #line number, once fixed, GCC is
15037 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
15038 C), it passes.
15039 * src/state.h (state_h): Code input lines on ints, not shorts.
15040
bb88b0fc
AD
150412002-04-08 Akim Demaille <akim@epita.fr>
15042
15043 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
15044 and then the grammar.
15045
9a636f47
AD
150462002-04-08 Akim Demaille <akim@epita.fr>
15047
15048 * src/system.h: No longer using strndup.
15049
680e8701
AD
150502002-04-07 Akim Demaille <akim@epita.fr>
15051
15052 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
15053 * src/output.c (output_table_data): Return the longest number.
15054 (prepare_tokens): Output `token_number_max').
15055 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
15056 New.
15057 Use them to define yy_token_number_type/TokenNumberType.
15058 Use this type for yytranslate.
15059 * tests/torture.at (Big triangle): Push the limit from 124 to
15060 253.
15061 * tests/regression.at (Web2c Actions): Adjust.
15062
817e9f41
AD
150632002-04-07 Akim Demaille <akim@epita.fr>
15064
15065 * tests/torture.at (Big triangle): New.
15066 (GNU AWK Grammar, GNU Cim Grammar): Move to...
15067 * tests/existing.at: here.
15068
5123689b
AD
150692002-04-07 Akim Demaille <akim@epita.fr>
15070
15071 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
15072 nritems.
15073 Adjust dependencies.
15074
f3849179
AD
150752002-04-07 Akim Demaille <akim@epita.fr>
15076
15077 * src/reader.c: Normalize increments to prefix form.
15078
bd02036a
AD
150792002-04-07 Akim Demaille <akim@epita.fr>
15080
15081 * src/reader.c, symtab.c: Remove debugging code.
15082
db8837cb
AD
150832002-04-07 Akim Demaille <akim@epita.fr>
15084
15085 Rename all the `bucket's as `symbol_t'.
15086
15087 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
15088 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
15089 * src/symtab.c, src/symtab.h (bucket): Rename as...
15090 (symbol_t): this.
15091 (symbol_list_new, bucket_check_defined, bucket_make_alias)
15092 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
15093 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
15094 (buckets_new, buckets_free, buckets_do): Rename as...
15095 (symbol_list_new, symbol_check_defined, symbol_make_alias)
15096 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
15097 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
15098 (symbols_new, symbols_free, symbols_do): these.
15099
72a23c97
AD
151002002-04-07 Akim Demaille <akim@epita.fr>
15101
15102 Use lib/hash for the symbol table.
15103
15104 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
15105 EOF.
15106 * src/lex.c (lex): Set the `number' member of new terminals.
15107 * src/reader.c (bucket_check_defined, bucket_make_alias)
15108 (bucket_check_alias_consistence, bucket_translation): New.
15109 (reader, grammar_free, readgram, token_translations_init)
15110 (packsymbols): Adjust.
15111 (reader): Number the predefined tokens.
15112 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
15113 for predefined tokens.
15114 * src/symtab.h (bucket): Remove all the hash table related
15115 members.
15116 * src/symtab.c (symtab): Replace by...
15117 (bucket_table): this.
15118 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
15119 (buckets_new, buckets_do): New.
15120
280a38c3
AD
151212002-04-07 Akim Demaille <akim@epita.fr>
15122
15123 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
15124 (start_symbol, max_user_token_number, semantic_parser)
15125 (error_token_number): Initialize.
15126 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
15127 Initialize.
15128 (reader): Don't.
15129 (errtoken, eoftoken, undeftoken, axiom): Extern.
15130
03b31c0c
AD
151312002-04-07 Akim Demaille <akim@epita.fr>
15132
15133 * src/gram.h (rule_s): prec and precsym are now pointers
15134 to the bucket giving the priority/associativity.
15135 Member `associativity' removed: useless.
15136 * src/reduce.c, src/conflicts.c: Adjust.
15137
8b3df748
AD
151382002-04-07 Akim Demaille <akim@epita.fr>
15139
15140 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
15141 Properly escape the symbols' TAG when outputting them.
15142
e601aa1d
AD
151432002-04-07 Akim Demaille <akim@epita.fr>
15144
15145 * src/lalr.h (LA): Is a bitsetv, not bitset*.
15146
b0299a2e
AD
151472002-04-07 Akim Demaille <akim@epita.fr>
15148
15149 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
15150 (LArule): this, which is an array to rule_t*.
15151 * src/print.c, src/conflicts.c: Adjust.
15152
d7e1f00c
AD
151532002-04-07 Akim Demaille <akim@epita.fr>
15154
15155 * src/gram.h (rule_t): Rename `number' as `user_number'.
15156 `number' is a new member.
15157 Adjust dependencies.
15158 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
15159
cc9305dd
AD
151602002-04-07 Akim Demaille <akim@epita.fr>
15161
15162 As a result of the previous patch, it is no longer needed
15163 to reorder ritem itself.
15164
15165 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
15166
b0940840
AD
151672002-04-07 Akim Demaille <akim@epita.fr>
15168
15169 Be sure never to walk through RITEMS, but use only data related to
15170 the rules themselves. RITEMS should be banished.
15171
15172 * src/output.c (output_token_translations): Rename as...
15173 (prepare_tokens): this.
15174 In addition to `translate', prepare the muscles `tname' and
15175 `toknum', which were handled by...
15176 (output_rule_data): this.
15177 Remove, and move the remainder of its outputs into...
15178 (prepare_rules): this new routines, which also merges content from
15179 (output_gram): this.
15180 (prepare_rules): Be sure never to walk through RITEMS.
15181 (output_stos): Rename as...
15182 (prepare_stos): this.
15183 (output): Always invoke prepare_states, after all, just don't use it
15184 in the output if you don't need it.
15185
643a5994
AD
151862002-04-07 Akim Demaille <akim@epita.fr>
15187
15188 * src/LR0.c (new_state): Display `nstates' as the name of the
15189 newly created state.
15190 Adjust to initialize first_state and last_state if needed.
15191 Be sure to distinguish the initial from the final state.
15192 (new_states): Create the itemset of the initial state, and use
15193 new_state.
15194 * src/closure.c (closure): Now that the initial state has its
15195 items properly set, there is no need for a special case when
15196 creating `ruleset'.
15197
15198 As a result, now the rule 0, reducing to $axiom, is visible in the
15199 outputs. Adjust the test suite.
15200
15201 * tests/conflicts.at (Solved SR Conflicts)
15202 (Unresolved SR Conflicts): Adjust.
15203 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
15204 * tests/conflicts.at (S/R in initial): New.
15205
b4c4ccc2
AD
152062002-04-07 Akim Demaille <akim@epita.fr>
15207
15208 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
15209 the RHS of the rules.
15210 * src/output.c (output_gram): Likewise.
15211
bba97eb2
AD
152122002-04-07 Akim Demaille <akim@epita.fr>
15213
15214 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
15215 bucket.
15216 Adjust all dependencies.
15217 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
15218 `number' of the buckets too.
15219 * src/gram.h: Include `symtab.h'.
15220 (associativity): Move to...
15221 * src/symtab.h: here.
15222 No longer include `gram.h'.
15223
c3b407f4
AD
152242002-04-07 Akim Demaille <akim@epita.fr>
15225
15226 * src/gram.h, src/gram.c (rules_rhs_length): New.
15227 (ritem_longest_rhs): Use it.
15228 * src/gram.h (rule_t): `number' is a new member.
15229 * src/reader.c (packgram): Set it.
15230 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
15231 the end of `rules', and count them out of `nrules'.
15232 (reduce_output, dump_grammar): Adjust.
15233 * src/print.c (print_grammar): It is no longer needed to check for
15234 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
15235 * tests/reduce.at (Reduced Automaton): New test.
15236
11652ab3
AD
152372002-04-07 Akim Demaille <akim@epita.fr>
15238
15239 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
15240 lacking `+ 1' to nrules, Bison reported as useless a token if it
15241 was used solely to set the precedence of the last rule...
15242
26b23c1a
AD
152432002-04-07 Akim Demaille <akim@epita.fr>
15244
15245 * data/bison.c++, data/bison.simple: Don't output the current file
15246 name in #line, to avoid useless diffs between two identical
15247 outputs under different names.
15248
18bcecb0
AD
152492002-04-07 Akim Demaille <akim@epita.fr>
15250
15251 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
15252 Normalize loops to using `< nrules + 1', not `<= nrules'.
15253
fa770c86
AD
152542002-04-07 Akim Demaille <akim@epita.fr>
15255
15256 * TODO: Update.
15257
d9b739c3
AD
152582002-04-07 Akim Demaille <akim@epita.fr>
15259
15260 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
15261 bucket.value as bucket.number.
15262
99013900
AD
152632002-04-07 Akim Demaille <akim@epita.fr>
15264
15265 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
15266 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
15267 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
15268 RHS, instead of being an index in RITEMS.
15269
e966383b
PE
152702002-04-04 Paul Eggert <eggert@twinsun.com>
15271
15272 * doc/bison.texinfo: Update copyright date.
15273 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
15274 (Symbols): Warn about running Bison in one character set,
15275 but compiling and/or running in an incompatible one.
15276 Warn about character code 256, too.
15277
152782002-04-03 Paul Eggert <eggert@twinsun.com>
15279
15280 * src/bison.data (YYSTACK_ALLOC): Depend on whether
15281 YYERROR_VERBOSE is nonzero, not whether it is defined.
15282
15283 Merge changes from bison-1_29-branch.
c307773e 15284
8d6c48b9
PE
152852002-03-20 Paul Eggert <eggert@twinsun.com>
15286
15287 Merge fixes from Debian bison_1.34-1.diff.
15288
15289 * configure.in (AC_PREREQ): 2.53.
15290
e53c6322
AD
152912002-03-20 Akim Demaille <akim@epita.fr>
15292
15293 * src/conflicts.c (log_resolution): Argument `resolution' is const.
15294
9ffbeca7
PE
152952002-03-19 Paul Eggert <eggert@twinsun.com>
15296
21db0b2a
PE
15297 * src/bison.simple (YYCOPY): New macro.
15298 (YYSTACK_RELOCATE): Use it.
15299 Remove Type arg; no longer needed. All callers changed.
15300 (yymemcpy): Remove; no longer needed.
15301
9ffbeca7
PE
15302 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
15303 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
15304
642cb8f8
AD
153052002-03-19 Akim Demaille <akim@epita.fr>
15306
15307 Test and fix the #line outputs.
15308
15309 * tests/atlocal.at (GCC): New.
15310 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
0ffd4fd1 15311 (Prologue synch line, %union synch line, Postprologue synch line)
642cb8f8
AD
15312 (Action synch line, Epilogue synch line): New tests.
15313 * src/reader.c (parse_union_decl): Define the muscle stype_line.
15314 * data/bison.simple, data/bison.c++: Use it.
15315
3c31a486
AD
153162002-03-19 Akim Demaille <akim@epita.fr>
15317
15318 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
15319 (Solved SR Conflicts, %expect not enough, %expect right)
15320 (%expect too much): Move to...
15321 * tests/conflicts.at: this new file.
15322
0d8bed56
AD
153232002-03-19 Akim Demaille <akim@epita.fr>
15324
15325 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
15326 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
15327 that we can move to enums for instance.
15328 * src/output.c (token_definitions_output): Output a list of
15329 `token-name, token-number' instead of the #define.
15330 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
15331
9208d17f
AD
153322002-03-14 Akim Demaille <akim@epita.fr>
15333
15334 Use Gettext 0.11.1.
15335
af27eacb
RA
153362002-03-09 Robert Anisko <robert@lrde.epita.fr>
15337
15338 * data/bison.c++: Make the user able to add members to the generated
15339 parser by subclassing.
15340
9101a310
RA
153412002-03-05 Robert Anisko <robert@lrde.epita.fr>
15342
15343 * src/reader.c (read_additionnal_code): `c' should be an integer, not
15344 a character.
15345 Reported by Nicolas Tisserand and Nicolas Burrus.
15346
fff9bf0b
RA
153472002-03-04 Robert Anisko <robert@lrde.epita.fr>
15348
15349 * src/reader.c: Warn about lacking semi-colons, do not complain.
15350
64dba31e
RA
153512002-03-04 Robert Anisko <robert@lrde.epita.fr>
15352
15353 * data/bison.c++: Remove a debug line.
15354
374f5a14
RA
153552002-03-04 Robert Anisko <robert@lrde.epita.fr>
15356
15357 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
15358 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
15359 provide a default implementation.
15360
bfcf1f3a
AD
153612002-03-04 Akim Demaille <akim@epita.fr>
15362
15363 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
15364 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
15365 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
15366 * tests/semantic.at (Parsing Guards): Similarly.
15367 * src/reader.at (readgram): Complain if the last rule is not ended
15368 with a semi-colon.
15369
65ccf9fc
AD
153702002-03-04 Akim Demaille <akim@epita.fr>
15371
15372 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
15373 * src/closure.c: here.
15374 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
15375 RTC.
15376 * src/warshall.h, src/warshall.c: Remove.
15377 * tests/sets.at (Broken Closure): Adjust.
15378
d0039cbc
AD
153792002-03-04 Akim Demaille <akim@epita.fr>
15380
15381 * src/output.c (output_skeleton): tempdir is const.
15382 bytes_read is unused.
15383
345cea78
AD
153842002-03-04 Akim Demaille <akim@epita.fr>
15385
15386 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
15387 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
15388 Update.
15389 From Michael Hayes.
15390
564801f7
AD
153912002-03-04 Akim Demaille <akim@epita.fr>
15392
15393 * src/closure.c (closure): `r' is unused.
15394
e5352bc7
AD
153952002-03-04 Akim Demaille <akim@epita.fr>
15396
15397 * tests/sets.at (Broken Closure): Add the ending `;'.
15398 * src/reader.at (readgram): Complain if a rule is not ended with a
15399 semi-colon.
15400
914feea9
AD
154012002-03-04 Akim Demaille <akim@epita.fr>
15402
15403 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
15404 (count_sr_conflicts): Use bitset_count.
15405 * src/reduce.c (inaccessable_symbols): Ditto.
15406 (bits_size): Remove.
15407 * src/warshall.h, src/warshall.c: Convert to bitsetv.
15408
f0250de6
AD
154092002-03-04 Akim Demaille <akim@epita.fr>
15410
15411 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
15412 * src/reduce.c: Remove the `bitset_zero's following the
15413 `bitset_create's, as now it is performed by the latter.
15414
ef017502
AD
154152002-03-04 Akim Demaille <akim@epita.fr>
15416
15417 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
15418 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
15419 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
15420 latest sources from Michael.
15421
76514394
AD
154222002-03-04 Akim Demaille <akim@epita.fr>
15423
15424 * src/output.c (output): Don't free the grammar.
15425 * src/reader.c (grammar_free): New.
15426 * src/main.c (main): Call it and don't free symtab here.
15427
55024580
AD
154282002-03-04 Akim Demaille <akim@epita.fr>
15429
15430 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
15431 before returning.
15432 Reported by Benoit Perrot.
15433
f9abaa2c
AD
154342002-03-04 Akim Demaille <akim@epita.fr>
15435
15436 Use bitset operations when possible, not loops over bits.
15437
15438 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
15439 bitset_or.
15440 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
15441 * src/reduce.c (useless_nonterminals): Formatting changes.
15442 * src/warshall.c (TC): Use bitset_or.
15443
0e721e75
AD
154442002-03-04 Akim Demaille <akim@epita.fr>
15445
15446 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
15447 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
15448 Ditto.
15449
0fb1ffb1
AD
154502002-03-04 Akim Demaille <akim@epita.fr>
15451
15452 * src/lalr.c (F): Now a bitset*.
15453 Adjust all dependencies.
15454
b86796bf
AD
154552002-03-04 Akim Demaille <akim@epita.fr>
15456
15457 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
15458 Adjust all dependencies.
15459
602bbf31
AD
154602002-03-04 Akim Demaille <akim@epita.fr>
15461
15462 * src/L0.c, src/LR0.h (nstates): Be size_t.
15463 Adjust comparisons (signed vs unsigned).
15464 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
15465 bitset*.
15466 Adjust all dependencies.
15467
d8a0245c
AD
154682002-03-04 Akim Demaille <akim@epita.fr>
15469
15470 * src/closure.c (firsts): Now, also a bitset.
15471 Adjust all dependencies.
15472 (varsetsize): Remove, now unused.
15473 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
15474
34ba9743
AD
154752002-03-04 Akim Demaille <akim@epita.fr>
15476
15477 * src/print.c: Convert to use bitset.h, not hand coded iterations
15478 over ints.
15479
ed86e78c
AD
154802002-03-04 Akim Demaille <akim@epita.fr>
15481
15482 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
15483
dfdb1797
AD
154842002-03-04 Akim Demaille <akim@epita.fr>
15485
15486 * src/closure.c (ruleset): Be a bitset.
15487 (rulesetsize): Remove.
15488
7086e707
AD
154892002-03-04 Akim Demaille <akim@epita.fr>
15490
15491 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
15492 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
15493 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
15494 * src/closure.c (fderives): Be an array of bitsets.
15495
98254360
RA
154962002-02-28 Robert Anisko <robert@lrde.epita.fr>
15497
15498 * data/bison.c++: Merge the two generated headers. Insert a copyright
15499 notice in each output file.
15500
a75c057f
AD
155012002-02-28 Akim Demaille <akim@epita.fr>
15502
15503 * data/bison.c++: Copy the prologue of bison.simple to fetch
15504 useful M4 definitions, such as b4_header_guard.
15505
06b00abc
AD
155062002-02-25 Akim Demaille <akim@epita.fr>
15507
15508 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
15509 translator friendly scheme for the bgr
15510 copyright notice.
06b00abc 15511
70e7d534
AD
155122002-02-25 Akim Demaille <akim@epita.fr>
15513
15514 * src/output.c (header_output): Remove, now handled completely via
15515 M4.
15516
abe017f6
AD
155172002-02-25 Akim Demaille <akim@epita.fr>
15518
15519 * m4/m4.m4: New, from CVS Autoconf.
15520 * configure.in: Invoke it.
15521 * src/output.c (output_skeleton): Use its result instead of the
15522 hard coded name.
15523
381fb12e
AD
155242002-02-25 Akim Demaille <akim@epita.fr>
15525
15526 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
15527 Fileutils 4.1.5.
15528 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
15529 * src/output.c (output_skeleton): Use mkstemp to create a real
15530 temporary file.
15531 Move the filling of `skeleton' and its muscle to...
15532 (prepare): here.
15533 (output): Move the definition of the prologue muscle to...
15534 (prepare): here.
15535 * src/system.h (DEFAULT_TMPDIR): New.
15536
6f38107f
PE
155372002-02-14 Paul Eggert <eggert@twinsun.com>
15538
15539 Remove the support for C++ namespace cleanliness; it was
15540 causing more problems than it was curing, since it didn't work
15541 properly on some nonstandard C++ compilers. This can wait
15542 for a proper C++ parser.
15543
15544 * NEWS: Document this.
15545 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
15546 of C++, as it's treated like C now.
15547 * src/bison.simple (YYSTD): Remove.
15548 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
15549 Treat C++ just like Standard C instead of trying to support
15550 namespace cleanliness.
15551
80cce3da
AD
155522002-02-14 Akim Demaille <akim@epita.fr>
15553
15554 * tests/regression.at (else): Adjust to Andreas' change.
15555
842e8679
AD
155562002-02-14 Akim Demaille <akim@epita.fr>
15557
15558 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
15559
4bda3f10
AD
155602002-02-13 Andreas Schwab <schwab@suse.de>
15561
15562 * src/output.c (output_rule_data): Don't output NULL, it might
15563 not be defined yet.
15564
4162fa07 155652002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 15566
4162fa07
RA
15567 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
15568 (Copyright notice): Update.
b418ecd8 15569
bd16a5dc
AD
155702002-02-11 Akim Demaille <akim@epita.fr>
15571
15572 * tests/regression.at (%nonassoc and eof): Don't include
15573 nonportable headers.
15574
8d69a1a3
RA
155752002-02-08 Robert Anisko <robert@lrde.epita.fr>
15576
15577 * data/bison.c++: Correct error recovery. Make the user able to
15578 initialize the starting location.
15579
9b2d0677
AD
155802002-02-07 Akim Demaille <akim@epita.fr>
15581
15582 * tests/input.at: New.
15583
69e2658b
RA
155842002-02-07 Robert Anisko <robert@lrde.epita.fr>
15585
15586 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 15587 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
15588 directives around tables only needed for debugging.
15589
4aacc3a7
RA
155902002-02-07 Robert Anisko <robert@lrde.epita.fr>
15591
15592 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
15593 C++ parsers.
15594 (yy::b4_name::parse): Use print_.
15595
762a801e
RA
155962002-02-07 Robert Anisko <robert@lrde.epita.fr>
15597
15598 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
15599
4bb2bc3f
RA
156002002-02-07 Robert Anisko <robert@lrde.epita.fr>
15601
15602 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
15603 C++ parsers.
15604 (yy::b4_name::parse): Build verbose error messages, and use error_.
15605
6b45a3ca
RA
156062002-02-06 Robert Anisko <robert@lrde.epita.fr>
15607
15608 * data/bison.c++: Fix m4 quoting in comments.
15609
50997c6e
RA
156102002-02-06 Robert Anisko <robert@lrde.epita.fr>
15611
15612 * data/bison.c++: Adjust the parser code. Fix some muscles that were
15613 not expanded by m4.
15614
3f3eed27
AD
156152002-02-05 Akim Demaille <akim@epita.fr>
15616
15617 * data/bison.c++: Adjust to the M4 back end.
15618 More is certainly needed.
15619
be2a1a68
AD
156202002-02-05 Akim Demaille <akim@epita.fr>
15621
15622 Give a try to M4 as a back end.
15623
15624 * lib/readpipe.c: New, from wdiff.
15625 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
15626 BISON_HAIRY.
15627 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
15628 specific values. Now it is m4 that performs the lookup.
15629 * src/parse-skel.y: Remove.
15630 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
15631 * src/output.c (actions_output, guards_output)
15632 (token_definitions_output): No longer keeps track of the output
15633 line number, hence remove the second argument.
15634 (guards_output): Check against the guard member of a rule, not the
15635 action member.
15636 Adjust callers.
15637 (output_skeleton): Don't look for the skeleton location, let m4 do
15638 that.
15639 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
15640 file will be used.
15641 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
15642 (prepare): Given that for the time being changesyntax is not
15643 usable in M4, rename the muscles using `-' to `_'.
15644 Define `defines_flag', `output_parser_name' and `output_header_name'.
15645 * src/output.h (actions_output, guards_output)
15646 (token_definitions_output): Adjust prototypes.
15647 * src/scan-skel.l: Instead of scanning the skeletons, it now
15648 processes the output of m4: `__oline__' and `#output'.
15649 * data/bison.simple: Adjust to be used by M4(sugar).
15650 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
15651 to date.
15652 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
15653 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
15654 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
15655 shamelessly stolen from CVS Autoconf.
15656
beda758b
AD
156572002-02-05 Akim Demaille <akim@epita.fr>
15658
15659 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
15660 * configure.in: Check for the declarations of free and malloc.
15661 * src/muscle_tab.c: Adjust.
15662
5ece6d43
AD
156632002-02-05 Akim Demaille <akim@epita.fr>
15664
15665 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
15666 which have no values.
15667
5bb18f9a
AD
156682002-02-05 Akim Demaille <akim@epita.fr>
15669
15670 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
15671 * data/: here.
15672
894dd62e
PE
156732002-01-29 Paul Eggert <eggert@twinsun.com>
15674
15675 * src/bison.simple (YYSIZE_T): Do not define merely because
15676 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
15677 On some platforms, <alloca.h> does not declare YYSTD (size_t).
15678
82841af7
AD
156792002-01-27 Akim Demaille <akim@epita.fr>
15680
15681 Fix `%nonassoc and eof'.
15682
15683 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
15684 which were not properly copied! Replace
15685 memcpy (res->errs, src->errs, src->nerrs);
15686 with
15687 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
15688 !!!
15689 * tests/regression.at (%nonassoc and eof): Adjust to newest
15690 Autotest: `.' is not in the PATH.
15691
318b76e9
AD
156922002-01-27 Akim Demaille <akim@epita.fr>
15693
15694 * tests/sets.at (AT_EXTRACT_SETS): New.
15695 (Nullable): Use it.
15696 (Firsts): New.
15697
30d2f3d5
AD
156982002-01-26 Akim Demaille <akim@epita.fr>
15699
15700 * tests/actions.at, tests/calc.at, tests/headers.at,
15701 * tests/torture.at: Adjust to the newest Autotest which no longer
15702 forces `.' in the PATH.
15703
30f8c395
AD
157042002-01-25 Akim Demaille <akim@epita.fr>
15705
15706 * tests/regression.at (%nonassoc and eof): New.
15707 Suggested by Robert Anisko.
15708
29ae55f1
AD
157092002-01-24 Akim Demaille <akim@epita.fr>
15710
15711 Bison dumps core when trying to complain about broken input files.
15712 Reported by Cris van Pelt.
15713
15714 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
15715 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
15716 into...
15717 (Invalid inputs): Strengthen: exercise parse_percent_token.
15718
2b548aa6
RA
157192002-01-24 Robert Anisko <robert.anisko@epita.fr>
15720
15721 * src/Makefile.am: Add bison.c++.
15722 * src/bison.c++: New skeleton.
15723
bb0146c2
AD
157242002-01-21 Paolo Bonzini <bonzini@gnu.org>
15725
15726 * po/it.po: New.
15727
bec30531
AD
157282002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
15729
15730 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
15731
fc6edc45
MA
157322002-01-20 Marc Autret <marc@gnu.org>
15733
15734 * src/files.c (compute_output_file_names): Fix
15735
5e5d5415
MA
157362002-01-20 Marc Autret <marc@gnu.org>
15737
15738 * tests/output.at: New test.
15739 * src/files.c (compute_base_names): Don't map extensions when
15740 the YACC flag is set, use defaults.
15741 Reported by Evgeny Stambulchik.
15742
44ea3fbd
MA
157432002-01-20 Marc Autret <marc@gnu.org>
15744
ba0fe3c7
PE
15745 * src/system.h: Need to define __attribute__ away for non-GCC
15746 compilers as well (i.e., the vendor C compiler).
44ea3fbd
MA
15747 Suggested by Albert Chin-A-Young.
15748
338963d1
TVH
157492002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
15750
15751 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
15752 canonical definition.
15753 * src/system.h: Use the canonical definition for PARAMS (avoids
15754 a conflict with the macro from lib/hash.h).
15755
c57b2479
AD
157562002-01-11 Akim Demaille <akim@epita.fr>
15757
15758 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 15759 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 15760
b85810ae
AD
157612002-01-09 Akim Demaille <akim@epita.fr>
15762
15763 * src/files.c, src/files.h (output_infix): New.
15764 (tab_extension): Remove.
15765 (compute_base_names): Compute the former, drop the latter.
15766 * src/output.c (prepare): Insert the muscles `output-infix', and
15767 `output-suffix'.
15768 * src/parse-skel.y (string, string.1): New.
15769 (section.header): Use it.
15770 (section.yacc): Remove.
15771 (prefix): Remove too.
15772 * src/scan-skel.l: Adjust.
15773 * src/bison.simple, src/bison.hairy: Adjust.
15774
cae60122
AD
157752002-01-09 Akim Demaille <akim@epita.fr>
15776
15777 * configure.in (WERROR_CFLAGS): Compute it.
15778 * src/Makefile.am (CFLAGS): Pass it.
15779 * tests/atlocal.in (CFLAGS): Idem.
15780 * src/files.c: Fix a few warnings.
15781 (get_extension_index): Remove, unused.
15782
ae404801
AD
157832002-01-08 Akim Demaille <akim@epita.fr>
15784
15785 * src/getargs.c (AS_FILE_NAME): New.
15786 (getargs): Use it to convert DOSish file names.
15787 * src/files.c (base_name): Rename as full_base_name to avoid
15788 clashes with `base_name ()'.
15789 (filename_split): New.
15790 (compute_base_names): N-th rewrite, using filename_split.
15791
22312b71
AD
157922002-01-08 Akim Demaille <akim@epita.fr>
15793
15794 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
15795 New, stolen from the Fileutils 4.1.
15796 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
15797 * configure.in: Check for the presence of memrchr, and of its
15798 prototype.
15799
a67cef01
TVH
158002002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
15801
15802 * lib/hash.h (__P): Added definition for this macro.
15803 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
15804 BUILT_SOURCES, to ensure they are generated first.
15805 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
15806 %error-verbose to allow bootstrapping with bison 1.30x.
15807
2b25d624
AD
158082002-01-06 Akim Demaille <akim@epita.fr>
15809
15810 * src/reader.c (parse_braces): Don't fetch the next char, the
15811 convention is to fetch on entry.
15812 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
15813 'switch' without a following semicolon.
15814 * tests/regression.at (braces parsing): New.
15815
3460813b
AD
158162002-01-06 Akim Demaille <akim@epita.fr>
15817
15818 Bison is dead wrong in its RR conflict reports.
15819
15820 * tests/torture.at (GNU Cim Grammar): New.
15821 * src/conflicts.c (count_rr_conflicts): Fix.
15822
73784c64
AD
158232002-01-06 Akim Demaille <akim@epita.fr>
15824
15825 Creating package.m4 from configure.ac causes too many problems.
15826
15827 * tests/Makefile.am (package.m4): Create it by hand,
15828 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
15829
25d81090
AD
158302002-01-06 Akim Demaille <akim@epita.fr>
15831
15832 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
15833 skeleton.h.
15834
a9b8959e
PE
158352002-01-04 Paul Eggert <eggert@twinsun.com>
15836
15837 * doc/bison.texinfo (Debugging):
15838 Remove YYSTDERR; it's no longer defined or used.
15839 Also, s/cstdio.h/cstdio/.
15840
25d81090
AD
158412002-01-03 Akim Demaille <akim@epita.fr>
15842
15843 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
15844
1109455c
AD
158452002-01-03 Akim Demaille <akim@epita.fr>
15846
15847 * src/parse-skel.y (process_skeleton): Don't bind the parser's
15848 tracing code to --trace, wait for a better --trace option, with
15849 args.
15850
7ea5e977
AD
158512002-01-03 Akim Demaille <akim@epita.fr>
15852
15853 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
15854 The ISO C++ standard is extremely clear about it: stderr is
15855 considered a macro, not a regular symbol (see table 94 `Header
15856 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
15857 Therefore std:: does not apply to it. It still does with fprintf.
15858 Also, s/cstdio.h/cstdio/.
15859
fab5b110
AD
158602002-01-03 Akim Demaille <akim@epita.fr>
15861
15862 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
15863 for non system headers.
15864
aed7fd9b
AD
158652002-01-02 Akim Demaille <akim@epita.fr>
15866
15867 Equip the skeleton chain with location tracking, runtime trace,
15868 pure parser and scanner.
15869
15870 * src/parse-skel.y: Request a pure parser, locations, and prefix
15871 renaming.
15872 (%union): Having several members with the same type does not help
15873 type mismatches, simplify.
15874 (YYPRINT, yyprint): New.
15875 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
15876 (skel_error): this.
15877 Handle locations.
15878 * src/scan-skel.l: Adjust to these changes.
15879 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
15880 (LOCATION_PRINT, skel_control_t): New.
15881
24fad99e
AD
158822001-12-30 Akim Demaille <akim@epita.fr>
15883
15884 * src/parse-skel.y: Get rid of the shift/reduce conflict:
15885 replace `gb' with BLANKS.
15886 * src/scan-skel.l: Adjust.
15887
a4b36db4
AD
158882001-12-30 Akim Demaille <akim@epita.fr>
15889
15890 * src/system.h: We don't need nor want bcopy.
15891 Throw away MS-DOS crap: we don't need getpid.
15892 * configure.in: We don't need strndup. It was even causing
15893 problems: because Flex includes the headers *before* us,
15894 _GNU_SOURCE is not defined by config.h, and therefore strndup was
15895 not visible.
15896 * lib/xstrndup.c: New.
15897 * src/scan-skel.l: Use it.
15898 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
15899 * src/parse-skel.y: Use %directives instead of #defines.
15900
1239777d
AD
159012001-12-30 Akim Demaille <akim@epita.fr>
15902
15903 * src/skeleton.h: New.
15904 * src/output.c (output_parser, output_master_parser): Remove, dead
15905 code.
15906 * src/output.h (get_lines_number, actions_output, guards_output)
15907 (token_definitions_output): Prototype them.
15908 * src/parse-skel.y: Add the license notice.
15909 Include output.h and skeleton.h.
15910 (process_skeleton): Returns void, and takes a single parameter.
15911 * src/scan-skel.l: Add the license notice.
15912 Include skeleton.h.
15913 Don't use %option yylineno: it seems that then Flex imagines
15914 REJECT has been used, and therefore it won't reallocate its
15915 buffers (which makes no other sense to me than a bug). It results
15916 in warnings for `unused: yy_flex_realloc'.
15917
9b3add5b
RA
159182001-12-30 Robert Anisko <robert.anisko@epita.fr>
15919
15920 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
15921 (MUSCLE_INSERT_PREFIX): ...to there.
15922 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
15923 (MUSCLE_INSERT_PREFIX): Move from here...
15924
15925 * src/bison.hairy: Add a section directive. Put braces around muscle
15926 names. This parser skeleton is still broken, but Bison should not
15927 choke on a bad muscle 'syntax'.
15928 * src/bison.simple: Add a section directive. Put braces around muscle
15929 names.
15930
15931 * src/files.h (strsuffix, stringappend): Add declarations.
15932 (tab_extension): Add declaration.
15933 (short_base_name): Add declaration.
15934
15935 * src/files.c (strsuffix, stringappend): No longer static. These
15936 functions are used in the skeleton parser.
15937 (tab_extension): New.
15938 (compute_base_names): Use the computations done in this function
fab5b110 15939 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
15940 names.
15941 (short_base_name): No longer static.
15942
15943 * src/output.c (output_skeleton): New.
15944 (output): Disable call to output_master_parser, and give a try to
15945 a new skeleton handling system.
15946 (guards_output, actions_output): No longer static.
15947 (token_definitions_output, get_lines_number): No longer static.
15948
15949 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
15950
fab5b110 15951 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
15952 parse-skel.y.
15953
15954 * src/parse-skel.y: New file.
15955 * src/scan-skel.l: New file.
15956
b5b61c61
AD
159572001-12-29 Akim Demaille <akim@epita.fr>
15958
15959 %name-prefix is broken.
15960
15961 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
15962 Adjust all dependencies.
15963 * tests/headers.at (export YYLTYPE): Strengthen this test: use
15964 %name-prefix.
15965
15966 Renaming yylval but not yylloc is not consistent. Now we do.
15967
15968 * src/bison.simple: Prefix yylloc if used.
15969 * doc/bison.texinfo (Decl Summary): Document that.
15970
8c9a50be
AD
159712001-12-29 Akim Demaille <akim@epita.fr>
15972
15973 * doc/bison.texinfo: Promote `%long-directive' over
15974 `%long_directive'.
15975 Remove all references to fixed-output-files, yacc is enough.
15976
d99361e6
AD
159772001-12-29 Akim Demaille <akim@epita.fr>
15978
15979 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
15980 user prologue. These are defaults.
15981 * tests/actions.at (Mid-rule actions): Make sure the user can
15982 define YYDEBUG and YYERROR_VERBOSE.
15983
b9cecb91
AD
159842001-12-29 Akim Demaille <akim@epita.fr>
15985
15986 * src/output.c (header_output): Don't forget to export YYLTYPE and
15987 yylloc.
15988 * tests/headers.at (export YYLTYPE): New, make sure it does.
15989 * tests/regression.at (%union and --defines, Invalid CPP headers):
15990 Move to...
15991 * tests/headers.at: here.
15992
aea13e97
AD
159932001-12-29 Akim Demaille <akim@epita.fr>
15994
15995 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
15996
931394cb
AD
159972001-12-29 Akim Demaille <akim@epita.fr>
15998
15999 * tests/actions.at (Mid-rule actions): Output on a single line
16000 instead of several.
16001
704a47c4
AD
160022001-12-29 Akim Demaille <akim@epita.fr>
16003
16004 * doc/bison.texinfo: Formatting changes.
16005
091e20bb
AD
160062001-12-29 Akim Demaille <akim@epita.fr>
16007
16008 Don't store the token defs in a muscle, just be ready to output it
16009 on command. Now possible via `symbols'. Fixes a memory leak.
16010
16011 * src/output.c (token_definitions_output): New.
16012 (output_parser, header_output): Use it.
16013 * src/reader.c (symbols_save): Remove.
16014
cce71710
AD
160152001-12-29 Akim Demaille <akim@epita.fr>
16016
16017 * src/bison.simple: Do not provide a default for YYSTYPE and
16018 YYLTYPE before the user's prologue. Otherwise it's hardly... a
16019 default.
16020
82c035a8
AD
160212001-12-29 Akim Demaille <akim@epita.fr>
16022
16023 Mid-rule actions are simply... ignored!
16024
16025 * src/reader.c (readgram): Be sure to attach mid-rule actions to
16026 the empty-rule associated to the dummy symbol, not to the host
16027 rule.
16028 * tests/actions.at (Mid-rule actions): New.
16029
8419d367
AD
160302001-12-29 Akim Demaille <akim@epita.fr>
16031
16032 Memory leak.
16033
16034 * src/reader.c (reader): Free grammar.
16035
375d5806
AD
160362001-12-29 Akim Demaille <akim@epita.fr>
16037
16038 Memory leak.
16039
16040 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
16041 since it allocates it for each state, although only one is needed.
16042 (allocate_storage): Do it here.
16043
f51cb8ff
AD
160442001-12-29 Akim Demaille <akim@epita.fr>
16045
16046 * src/options.h, src/options.c (create_long_option_table): Rename
16047 as...
16048 (long_option_table_new): this, with a clearer prototype.
16049 (percent_table): Remove, unused,
16050 * src/getargs.c (getargs): Adjust.
16051
29e88316
AD
160522001-12-29 Akim Demaille <akim@epita.fr>
16053
16054 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
16055 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
16056 as states.
16057
b9f71f19
AD
160582001-12-29 Akim Demaille <akim@epita.fr>
16059
16060 * src/lalr.c (build_relations): Rename `states' as `states1'.
16061 Sorry, I don't understand exactly what it is, no better name...
16062
1a2b5d37
AD
160632001-12-29 Akim Demaille <akim@epita.fr>
16064
16065 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
16066 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
16067 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
16068 as rules.
16069
1cca533e
AD
160702001-12-29 Akim Demaille <akim@epita.fr>
16071
16072 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
16073 ago.
16074
c03ae966
AD
160752001-12-29 Akim Demaille <akim@epita.fr>
16076
16077 * src/reader.c, src/reader.h (user_toknums): Remove.
16078 Adjust all users to use symbols[i]->user_token_number.
16079
5a670b1e
AD
160802001-12-29 Akim Demaille <akim@epita.fr>
16081
16082 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
16083 Adjust all users to use symbols[i]->prec or ->assoc.
16084
ad949da9
AD
160852001-12-29 Akim Demaille <akim@epita.fr>
16086
16087 * src/reader.c, src/reader.h (tags): Remove.
16088 Adjust all users to use symbols[i]->tag.
16089
0e78e603
AD
160902001-12-29 Akim Demaille <akim@epita.fr>
16091
16092 * src/gram.h, src/gram.c (symbols): New, similar to state_table
16093 and rule_table.
16094 * src/reader.c (packsymbols): Fill this table.
16095 Drop sprec.
16096 * src/conflicts.c (resolve_sr_conflict): Adjust.
16097 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
16098 single table.
16099 Use symbols[i]->tag instead of tags[i].
16100
213e640e
AD
161012001-12-29 Akim Demaille <akim@epita.fr>
16102
16103 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
16104 In addition, put a comment in there, to replace...
16105 * tests/regression.at (%union and C comments): Remove.
16106
e7b8bef1
AD
161072001-12-29 Akim Demaille <akim@epita.fr>
16108
16109 * tests/regression.at (Web2c Actions): Blindly move the actual
16110 output as expected output. The contents *seem* right to me, but I
16111 can't pretend reading perfectly parser tables... Nonetheless, all
16112 the other tests pass correctly, the table look OK, even though the
16113 presence of `$axiom' is to be noted: AFAICS it is useless (but
16114 harmless).
16115
b68e7744
AD
161162001-12-29 Akim Demaille <akim@epita.fr>
16117
16118 * src/reader.c (readgram): Don't add the rule 0 if there were no
16119 rules read. In other words, add it _after_ having performed
16120 grammar sanity checks.
16121 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
16122
78d5bae9
AD
161232001-12-29 Akim Demaille <akim@epita.fr>
16124
16125 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
16126 visible, and some states have now a different number.
16127
ff442794
AD
161282001-12-29 Akim Demaille <akim@epita.fr>
16129
16130 * src/reader.c (readgram): Bind the initial rule's lineno to that
16131 of the first rule.
16132 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
16133 (Solved SR Conflicts): Adjust rule 0's line number.
16134
610ab194
AD
161352001-12-29 Akim Demaille <akim@epita.fr>
16136
16137 Fix the `GAWK Grammar' failure.
16138
16139 * src/LR0.c (final_state): Initialize to -1 so that we do compute
16140 the reductions of the first state which was mistakenly confused
16141 with the final state because precisely final_state was initialized
16142 to 0.
16143 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
16144 now noticed by Bison.
16145 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
16146 have a reduction on $default.
16147
29d29c8f
AD
161482001-12-29 Akim Demaille <akim@epita.fr>
16149
16150 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
16151 rule line numbers.
16152 * src/closure.c (print_closure): Likewise.
16153 * src/derives.c (print_derives): Likewise.
16154 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
16155 now.
16156
7c6b64d0
AD
161572001-12-29 Akim Demaille <akim@epita.fr>
16158
16159 * src/lalr.c (lookaheads_print): New.
16160 (lalr): Call it when --trace-flag.
16161 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
16162 are dumped.
16163
3d4daee3
AD
161642001-12-29 Akim Demaille <akim@epita.fr>
16165
16166 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
16167 when walking through ritem, even via rule->rhs.
16168 * src/reduce.c (dump_grammar, useful_production, reduce_output)
16169 (useful_production, useless_nonterminals): Likewise.
16170 (reduce_grammar_tables): Likewise, plus update nritems.
16171 * src/nullable.c (set_nullable): Likewise.
16172 * src/lalr.c (build_relations): Likewise.
16173 * tests/sets.at (Nullable): Adjust.
16174 Fortunately, now, the $axiom is no longer nullable.
16175
9e7f6bbd
AD
161762001-12-29 Akim Demaille <akim@epita.fr>
16177
16178 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
16179 the 0-sentinel.
16180 * src/gram.c (ritem_longest_rhs): Likewise.
16181 * src/reduce.c (nonterminals_reduce): Likewise.
16182 * src/print_graph.c (print_graph): Likewise.
16183 * src/output.c (output_rule_data): Likewise.
16184 * src/nullable.c (set_nullable): Likewise.
16185
255ef638
AD
161862001-12-29 Akim Demaille <akim@epita.fr>
16187
16188 * src/output.c: Comment changes.
16189
0d8a7363
AD
161902001-12-27 Paul Eggert <eggert@twinsun.com>
16191
16192 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
16193 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
16194 Sparc, as they were causing more porting problems than the
16195 (minor) performance improvement was worth.
16196
16197 Also, catch up with 1.31's YYSTD.
16198
3db472b9
AD
161992001-12-27 Akim Demaille <akim@epita.fr>
16200
16201 * src/output.c (output_gram): Rely on nritems, not the
16202 0-sentinel. See below.
16203 Use -1 as separator, not 0.
16204 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
16205 Rely on -1 as separator in yyrhs, instead of 0.
16206 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
16207 twice `Now at end of input', therefore there are two lines less to
16208 expect.
16209
b365aa05
AD
162102001-12-27 Akim Demaille <akim@epita.fr>
16211
16212 * tests/regression.at (Unresolved SR Conflicts):
16213 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
16214 below.
16215
30171f79
AD
162162001-12-27 Akim Demaille <akim@epita.fr>
16217
16218 * src/LR0.c (new_state): Recognize the final state by the fact it
16219 is reached by eoftoken.
16220 (insert_start_shifting_state, insert_eof_shifting_state)
16221 (insert_accepting_state, augment_automaton): Remove, since now
16222 these states are automatically computed from the initial state.
16223 (generate_states): Adjust.
16224 * src/print.c: When reporting a rule number to the user, substract
16225 1, so that the axiom rule is rule 0, and the first user rule is 1.
16226 * src/reduce.c: Likewise.
16227 * src/print_graph.c (print_core): For the time being, just as for
16228 the report, depend upon --trace-flags to dump the full set of
16229 items.
16230 * src/reader.c (readgram): Once the grammar read, insert the rule
16231 0: `$axiom: START-SYMBOL $'.
16232 * tests/set.at: Adjust: rule 0 is now displayed, and since the
16233 number of the states has changed (the final state is no longer
16234 necessarily the last), catch up.
16235
75142d45
AD
162362001-12-27 Akim Demaille <akim@epita.fr>
16237
16238 Try to make the use of the eoftoken valid. Given that its value
16239 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
16240 is used instead of > 0 where appropriate, (ii), depend upon nritems
16241 instead of the 0-sentinel.
16242
16243 * src/gram.h, src/gram.c (nritems): New.
16244 Expected to be duplication of nitems, but for the time being...
16245 * src/reader.c (packgram): Assert nritems and nitems are equal.
16246 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
16247 * src/closure.c (print_closure, print_fderives): Likewise.
16248 * src/gram.c (ritem_print): Likewise.
16249 * src/print.c (print_core, print_grammar): Likewise.
16250 * src/print_graph.c: Likewise.
16251
b7c49edf
AD
162522001-12-27 Akim Demaille <akim@epita.fr>
16253
16254 * src/main.c (main): If there are complains after grammar
16255 reductions, then output the report anyway if requested, then die.
16256 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
16257 * src/reader.c (eoftoken): New.
16258 (parse_token_decl): If the token being defined has value `0', it
16259 is the eoftoken.
16260 (packsymbols): No longer hack `tags' to insert `$' by hand.
16261 Be sure to preserve the value of the eoftoken.
16262 (reader): Make sure eoftoken is defined.
16263 Initialize nsyms to 0: now eoftoken is created just like the others.
16264 * src/print.c (print_grammar): Don't special case the eof token.
16265 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
16266 lie anyway, albeit pleasant.
16267 * tests/calc.at: Exercise error messages with eoftoken.
16268 Change the grammar so that empty input is invalid.
16269 Adjust expectations.
16270 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
16271
ec2da99f
AD
162722001-12-27 Akim Demaille <akim@epita.fr>
16273
16274 * configure.in: Check the protos of strchr ans strspn.
16275 Replace strchr if needed.
16276 * src/system.h: Provide the protos of strchr, strspn and memchr if
16277 missing.
16278 * lib/strchr.c: New.
16279 * src/reader.c (symbols_save): Use strchr.
16280
8adfa272
AD
162812001-12-27 Akim Demaille <akim@epita.fr>
16282
16283 * src/print.c, src/print_graph.c (escape): New.
16284 Use it to quote the TAGS outputs.
16285 * src/print_graph.c (print_state): Now errors are in red, and
16286 reductions in green.
16287 Prefer high to wide: output the state number on a line of its own.
16288
80dac38c
AD
162892001-12-27 Akim Demaille <akim@epita.fr>
16290
16291 * src/state.h, src/state.c (reductions_new): New.
16292 * src/LR0.c (set_state_table): Let all the states have a
16293 `reductions', even if reduced to 0.
16294 (save_reductions): Adjust.
16295 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
16296 * src/print.c (print_reductions, print_actions): Adjust.
16297 * src/output.c (action_row): Adjust.
16298
2cec70b9
AD
162992001-12-27 Akim Demaille <akim@epita.fr>
16300
16301 * src/state.h, src/state.c (errs_new, errs_dup): New.
16302 * src/LR0.c (set_state_table): Let all the states have an errs,
16303 even if reduced to 0.
16304 * src/print.c (print_errs, print_reductions): Adjust.
16305 * src/output.c (output_actions, action_row): Adjust.
16306 * src/conflicts.c (resolve_sr_conflict): Adjust.
16307
13ca549a
AD
163082001-12-27 Akim Demaille <akim@epita.fr>
16309
16310 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
16311
5092aba5
AD
163122001-12-27 Akim Demaille <akim@epita.fr>
16313
16314 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
16315 * src/print.c: here.
16316 (lookaheadset, shiftset): New, used as additional storage by
16317 print_reductions.
16318 (print_results): Adjust.
16319 (print_shifts, print_gotos, print_errs): New, extracted from...
16320 (print_actions): here.
16321 * src/print_graph.c (print_actions): Remove dead code.
16322
11e2beca
AD
163232001-12-27 Akim Demaille <akim@epita.fr>
16324
16325 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
16326 `$n' and `@n'.
16327
dac3c910
AD
163282001-12-27 Akim Demaille <akim@epita.fr>
16329
16330 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
16331 (build_relations): Adjust.
16332
d0b0fefa
AD
163332001-12-27 Akim Demaille <akim@epita.fr>
16334
16335 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
16336 duplication.
16337
adc8c848
AD
163382001-12-27 Akim Demaille <akim@epita.fr>
16339
16340 * src/reader.c (packgram): Catch nitems overflows.
16341
14d293ac
AD
163422001-12-27 Akim Demaille <akim@epita.fr>
16343
16344 * src/files.c, src/files.h (guard_obstack): Remove.
16345 * src/output.c (output): Adjust.
16346 * src/reader.c (parse_braces): New, factoring...
16347 (copy_action, copy_guard): these two which are renamed as...
16348 (parse_action, parse_guard): these.
16349 As a voluntary consequence, using braces around guards is now
16350 mandatory.
16351
f499b062
AD
163522001-12-27 Akim Demaille <akim@epita.fr>
16353
16354 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
16355 * src/reader.c (symbol_list): `guard' and `guard_line' are new
16356 members.
16357 (symbol_list_new): Adjust.
16358 (copy_action): action_line is the first line, not the last.
16359 (copy_guard): Just as for actions, store the `action' only, not
16360 the switch/case/break flesh.
16361 Don't parse the user action that might follow the guard, let...
16362 (readgram): do it, i.e., now, there can be an action after a
16363 guard.
16364 In other words the guard is just explicitly optional.
16365 (packgram): Adjust.
16366 * src/output.c (guards_output): New.
16367 (output_parser): Call it when needed.
16368 (output): Also free the guard and attrs obstacks.
16369 * src/files.c, src/files.h (obstack_save): Remove.
16370 (output_files): Remove.
16371 As a result, if one needs the former `.act' file, using an
16372 appropriate skeleton which requires actions and guards is now
16373 required.
16374 * src/main.c (main): Adjust.
16375 * tests/semantic.at: New.
16376 * tests/regression.at: Use `input.y' as input file name.
16377 Avoid 8+3 problems by requiring input.c when the test needs the
16378 parser.
16379
d945f5cd
AD
163802001-12-27 Akim Demaille <akim@epita.fr>
16381
16382 * src/reader.c (symbol_list_new): Be sure to initialize all the
16383 fields.
16384
d200e455
AD
163852001-12-27 Akim Demaille <akim@epita.fr>
16386
16387 All the hacks using a final pseudo state are now useless.
16388
16389 * src/LR0.c (set_state_table): state_table holds exactly nstates.
16390 * src/lalr.c (nLA): New.
16391 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
16392 instead of lookaheadsp from the pseudo state (nstate + 1).
16393
f9507c28
AD
163942001-12-27 Akim Demaille <akim@epita.fr>
16395
16396 * src/output.c (action_row, token_actions): Use a state_t instead
16397 of a integer, and nlookaheads instead of the following state's
16398 lookaheadsp.
16399
065fbd27
AD
164002001-12-27 Akim Demaille <akim@epita.fr>
16401
16402 * src/conflicts.c (log_resolution, flush_shift)
16403 (resolve_sr_conflict, set_conflicts, solve_conflicts)
16404 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
16405 (conflicts_print, print_reductions): Use a state_t instead of an
16406 integer when referring to a state.
16407 As much as possible, depend upon nlookaheads, instead of the
16408 `lookaheadsp' member of the following state (since lookaheads of
16409 successive states are successive, the difference between state n + 1
16410 and n served as the number of lookaheads for state n).
16411 * src/lalr.c (add_lookback_edge): Likewise.
16412 * src/print.c (print_core, print_actions, print_state)
16413 (print_results): Likewise.
16414 * src/print_graph.c (print_core, print_actions, print_state)
16415 (print_graph): Likewise.
16416 * src/conflicts.h: Adjust.
16417
1b177bd7
AD
164182001-12-27 Akim Demaille <akim@epita.fr>
16419
16420 * src/bison.hairy: Formatting/comment changes.
16421 ANSIfy.
16422 Remove `register' indications.
16423 Add plenty of `static'.
16424
7742ddeb
AD
164252001-12-27 Akim Demaille <akim@epita.fr>
16426
16427 * src/output.c (prepare): Drop the muscle `ntbase' which
16428 duplicates ntokens.
16429 * src/bison.simple: Formatting/comment changes.
16430 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
16431 is an undocumented synonym.
16432
1fa14068
AD
164332001-12-22 Akim Demaille <akim@epita.fr>
16434
16435 * src/output.c (output_table_data): Change the prototype to use
16436 `int' for array ranges: some invocations do pass an int, not a
16437 short.
16438 Reported by Wayne Green.
16439
b9752825
AD
164402001-12-22 Akim Demaille <akim@epita.fr>
16441
16442 Some actions of web2c.y are improperly triggered.
16443 Reported by Mike Castle.
16444
16445 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
16446 * tests/regression.at (Web2c): Rename as...
16447 (Web2c Report): this.
16448 (Web2c Actions): New.
16449
776209d6
AD
164502001-12-22 Akim Demaille <akim@epita.fr>
16451
16452 Reductions in web2c.y are improperly reported.
16453 Reported by Mike Castle.
16454
16455 * src/conflicts.c (print_reductions): Fix.
16456 * tests/regression.at (Web2c): New.
16457
275fc3ad
AD
164582001-12-18 Akim Demaille <akim@epita.fr>
16459
16460 Some host fail on `assert (!"foo")', which expands to
16461 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
16462 Reported by Nelson Beebee.
16463
16464 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
16465 `#define it_succeeded 0' and `assert (it_succeeded)'.
16466
897668ee
MA
164672001-12-17 Marc Autret <autret_m@epita.fr>
16468
16469 * src/bison.simple: Don't hard code the skeleton line and filename.
16470 * src/output.c (output_parser): Rename 'line' as 'output_line'.
16471 New line counter 'skeleton_line' (skeleton-line muscle).
16472
ab3399e0
PE
164732001-12-17 Paul Eggert <eggert@twinsun.com>
16474
16475 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
16476 YYDEBUG must be defined to a nonzero value.
16477
16478 * src/bison.simple (yytname): Do not assume that the user defines
16479 YYDEBUG to a properly parenthesized expression.
16480
3877f72b
AD
164812001-12-17 Akim Demaille <akim@epita.fr>
16482
16483 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
16484 nlookaheads is a new member.
16485 Adjust all users.
16486 * src/lalr.h (nlookaheads): Remove this orphan declaration.
16487 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
16488 state.
776209d6 16489
331dbc1b
AD
164902001-12-17 Akim Demaille <akim@epita.fr>
16491
16492 * src/files.h, src/files.c (open_files, close_files): Remove.
16493 * src/main.c (main): Don't open/close files, nor invoke lex_free,
16494 let...
16495 * src/reader.c (reader): Do it.
776209d6 16496
be750e4c
AD
164972001-12-17 Akim Demaille <akim@epita.fr>
16498
16499 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 16500
709ae8c6
AD
165012001-12-17 Akim Demaille <akim@epita.fr>
16502
16503 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
16504 (flush_reduce): New.
16505 (resolve_sr_conflict): Adjust.
776209d6 16506
f87685c3
AD
165072001-12-17 Akim Demaille <akim@epita.fr>
16508
16509 * src/output.c (output_obstack): Be static and rename as...
16510 (format_obstack): this, to avoid any confusion with files.c's
16511 output_obstack.
16512 * src/reader.h (muscle_obstack): Move to...
16513 * src/output.h: here, since it's defined in output.c.
16514
837491d8
AD
165152001-12-17 Akim Demaille <akim@epita.fr>
16516
16517 * src/output.c (action_row, save_column, default_goto)
16518 (sort_actions, matching_state, pack_vector): Better variable
16519 locality.
16520
796d61fb
AD
165212001-12-17 Akim Demaille <akim@epita.fr>
16522
16523 * src/output.c: Various formatting changes.
776209d6 16524
64d15509
AD
165252001-12-17 Akim Demaille <akim@epita.fr>
16526
16527 * src/files.c (output_files): Free the output_obstack.
16528 * src/main.c (main): Call print and print_graph conditionally.
16529 * src/print.c (print): Work unconditionally.
16530 * src/print_graph.c (print_graph): Work unconditionally.
16531 * src/conflicts.c (log_resolution): Output only if verbose_flag.
16532
fbc8ecb7
MA
165332001-12-16 Marc Autret <autret_m@epita.fr>
16534
16535 * src/output.c (actions_output): Fix. When we use %no-lines,
16536 there is one less line per action.
16537
f0440388
MA
165382001-12-16 Marc Autret <autret_m@epita.fr>
16539
16540 * src/bison.simple: Remove a useless #line directive.
16541 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
16542 * src/output.c (get_lines_number): New.
776209d6 16543 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
16544 output muscles.
16545 Fix line numbering.
16546 (actions_output): Computes the number of lines taken by actions.
16547 (output_master_parser): Insert new skeleton which is the name of
16548 the output parser file name.
16549
a79986b8
MA
165502001-12-15 Marc Autret <autret_m@epita.fr>
16551
16552 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
16553
4ec8e00f
MA
165542001-12-15 Marc Autret <autret_m@epita.fr>
16555
16556 * src/output.c (output_gram): Keep track of the hairy one.
16557
1a4648ff
AD
165582001-12-15 Akim Demaille <akim@epita.fr>
16559
16560 Make `make distcheck' work.
16561
16562 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
16563 system.h which uses libgettext.h.
16564
9c2c67e6
AD
165652001-12-15 Akim Demaille <akim@epita.fr>
16566
16567 * src/nullable.c (set_nullable): Useless rules must be skipped,
16568 otherwise, since we range over their symbols, we might look at a
16569 nonterminal which no longer ``exists'', i.e., it is not counted in
16570 `nvars', hence we overflow our arrays.
16571
93ede233
AD
165722001-12-15 Akim Demaille <akim@epita.fr>
16573
16574 The header can also be produced directly, without any obstack!
16575 Yahoo!
16576
16577 * src/files.c, src/files.h (defines_obstack): Remove.
16578 (compute_header_macro): Global.
16579 (defines_obstack_save): Remove.
16580 * src/reader.c (parse_union_decl): No longer output to
16581 defines_obstack: its content can be found in the `stype' muscle
16582 anyway.
16583 (output_token_translations): Merge into...
16584 (symbols_output): this.
16585 Rename as...
16586 (symbols_save): this.
16587 (reader): Adjust.
16588 * src/output.c (header_output): New.
16589 (output): Call it.
16590
2666f928
AD
165912001-12-15 Akim Demaille <akim@epita.fr>
16592
16593 * src/reader.c (parse_union_decl): Instead of handling two obstack
16594 simultaneously, use one to define the `stype' muscle, and use the
16595 value of the latter to fill defines_obstack.
16596 (copy_comment): Remove.
16597 (copy_comment2): Work for a single obstack.
16598 Rename as...
16599 (copy_comment): this.
16600
428046f8
AD
166012001-12-15 Akim Demaille <akim@epita.fr>
16602
16603 * src/lex.c, src/lex.h (xgetc): No longer static.
16604 * src/reader.c (parse_union_decl): Revamp.
16605
ea52d706
AD
166062001-12-15 Akim Demaille <akim@epita.fr>
16607
16608 Still making progress in separating Bison into (i) input, (ii)
16609 process, (iii) output: now we can directly output the parser file
16610 without using table_obstack at all.
16611
16612 * src/files.c, src/files.h (table_obstack): Bye bye.
16613 (parser_file_name): New.
16614 * src/files.c (compute_output_file_names): Compute it.
16615 * src/output.c (actions_output, output_parser)
16616 (output_master_parser): To a file instead of an obstack.
16617
3f96f4dc
AD
166182001-12-15 Akim Demaille <akim@epita.fr>
16619
16620 Attach actions to rules, instead of pre-outputting them to
16621 actions_obstack.
16622
16623 * src/gram.h (rule_t): action and action_line are new members.
16624 * src/reader.c (symbol_list): Likewise.
16625 (copy_action): Save the actions within the rule.
16626 (packgram): Save them in rule_table.
16627 * src/output.c (actions_output): New.
16628 (output_parser): Use it on `%%actions'.
16629 (output_rule_data): Don't free rule_table.
16630 (output): Do it.
16631 (prepare): Don't save the `action' muscle.
16632 * src/bison.simple: s/%%action/%%actions/.
16633
51576fb3
AD
166342001-12-15 Akim Demaille <akim@epita.fr>
16635
16636 * src/reader.c (copy_action): When --yacc, don't append a `;'
16637 to the user action: let it fail if lacking.
dee049eb 16638 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 16639
2648a72d
AD
166402001-12-14 Akim Demaille <akim@epita.fr>
16641
16642 * src/lex.c (literalchar): Simply return the char you decoded, non
16643 longer mess around with obstacks and int pointers.
16644 Adjust all callers.
16645
92790e5b
AD
166462001-12-14 Akim Demaille <akim@epita.fr>
16647
16648 * src/lex.c (literalchar): Don't escape the special characters,
16649 just decode them, and keep them as char (before, eol was output as
16650 the 2 char string `\n' etc.).
16651 * src/output.c (output_rule_data): Use quotearg to output the
16652 token strings.
16653
927c1557
PE
166542001-12-13 Paul Eggert <eggert@twinsun.com>
16655
16656 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
16657 Do not infringe on the global user namespace when using C++.
16658 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
16659 All uses of `fprintf' and `stderr' changed.
16660
16661 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
16662
ed8e1f68
AD
166632001-12-13 Akim Demaille <akim@epita.fr>
16664
16665 The computation of nullable is broken: it doesn't handle empty
16666 RHS's properly.
16667
16668 * tests/torture.at (GNU AWK Grammar): New.
16669 * tests/sets.at (Nullable): New.
16670 * src/nullable.c (set_nullable): Instead of blindly looping over
16671 `ritems', loop over the rules, and then over their rhs's.
16672
16673 Work around Autotest bugs.
16674
16675 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
16676 frame, because Autotest understand lines starting with a `+' as
16677 traces from the shell. Then, they are not processed properly.
16678 Admittedly an Autotest bug, but we don't have time to wait for
16679 Autotest to catch up.
16680 * tests/regression.at (Broken Closure): Adjust to the new table
16681 frames.
16682 Move to...
16683 * tests/sets.at: here.
16684
cb581495
AD
166852001-12-13 Akim Demaille <akim@epita.fr>
16686
16687 * src/closure.c (closure): Use nrules instead of playing tricks
16688 with BITS_PER_WORD.
16689
2e729273
AD
166902001-12-13 Akim Demaille <akim@epita.fr>
16691
16692 * src/print.c (print_actions): Output the handling of `$' as the
16693 traces do: shifting the token EOF. Before EOF was treated as a
16694 nonterminal.
16695 * tests/regression.at: Adjust some tests.
16696 * src/print_graph.c (print_core): Complete the set of items via
16697 closure. The next-to-final and final states are still unsatisfying,
16698 but that's to be addressed elsewhere.
16699 No longer output the rule numbers, but do output the state number.
16700 A single loop for the shifts + gotos is enough, but picked a
16701 distinct color for each.
16702 (print_graph): Initialize and finalize closure.
16703
107f7dfb
AD
167042001-12-13 Akim Demaille <akim@epita.fr>
16705
16706 * src/reader.c (readgram): Remove dead code, an strip useless
16707 braces.
16708 (get_type): Remove, unused.
16709
9b53a24f
AD
167102001-12-12 Akim Demaille <akim@epita.fr>
16711
16712 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
16713 on that of lib/error.c.
16714
dbfb6dcd
AD
167152001-12-12 Akim Demaille <akim@epita.fr>
16716
16717 Some hosts don't like `/' in includes.
16718
16719 * src/system.h: Include libgettext.h without qualifying the path.
16720 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
16721 $(top_srcdir).
16722
c25fb648
MA
167232001-12-11 Marc Autret <autret_m@epita.fr>
16724
16725 * src/output.c (output_parser): Remove useless muscle.
16726
710ddc4f
MA
167272001-12-11 Marc Autret <autret_m@epita.fr>
16728
16729 * src/bison.simple: Remove #line just before %%epilogue. It
16730 is now handled in ...
16731 * src/reader.c (read_additionnal_code): Add the output of a
16732 #line for the epilogue.
16733
e83d80b8
MA
167342001-12-10 Marc Autret <autret_m@epita.fr>
16735
927c1557 16736 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
16737 replace precedent remove.
16738 * src/bison.simple: Remove #line before %%prologue because
16739 %%input-line is wrong at this time.
16740
971d5158
MA
167412001-12-10 Marc Autret <autret_m@epita.fr>
16742
16743 * src/reader.c (symbols_output): Clean up.
927c1557 16744 * src/output.c (output_gram, output): Clean up.
971d5158 16745
5edafffd
AD
167462001-12-10 Akim Demaille <akim@epita.fr>
16747
16748 * src/lalr.c (initialize_lookaheads): New. Extracted from...
16749 * src/LR0.c (set_state_table): here.
16750 * src/lalr.c (lalr): Call it.
16751
0279f8e9
AD
167522001-12-10 Akim Demaille <akim@epita.fr>
16753
16754 * src/state.h (shifts): Remove the `number' member: shifts are
16755 attached to state, hence no longer need to be labelled with a
16756 state number.
16757
190c4f5f
AD
167582001-12-10 Akim Demaille <akim@epita.fr>
16759
16760 Now that states have a complete set of members, the linked list of
16761 shifts is useless: just fill directly the state's shifts member.
16762
16763 * src/state.h (shifts): Remove the `next' member.
16764 * src/LR0.c (first_state, last_state): Remove.
16765 Adjust the callers.
16766 (augment_automaton): Don't look for the shifts that must be added
16767 a shift on EOF: it is those of the state we looked for! But now,
16768 since shifts are attached, it is no longer needed to looking
16769 merely by its id: its number.
16770
2a73b93d
AD
167712001-12-10 Akim Demaille <akim@epita.fr>
16772
16773 * src/LR0.c (augment_automaton): Better variable locality.
16774 Remove an impossible branch: if there is a state corresponding to
16775 the start symbol being shifted, then there is shift for the start
16776 symbol from the initial state.
16777
74392f6a
AD
167782001-12-10 Akim Demaille <akim@epita.fr>
16779
16780 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
16781 only when appropriate: when insert_start_shifting_state' is not
16782 invoked.
16783 * tests/regression.at (Rule Line Numbers): Adjust.
16784
37c82725
AD
167852001-12-10 Akim Demaille <akim@epita.fr>
16786
16787 * src/LR0.c (augment_automaton): Now that all states have shifts,
16788 merge the two cases addition shifts to the initial state.
16789
6a164e0c
AD
167902001-12-10 Akim Demaille <akim@epita.fr>
16791
16792 * src/lalr.c (set_state_table): Move to...
16793 * src/LR0.c: here.
16794 * src/lalr.c (lalr): Don't call it...
16795 * src/LR0.c (generate_states): do it.
16796 * src/LR0.h (first_state): Remove, only the table is used.
16797
7215de24
AD
167982001-12-10 Akim Demaille <akim@epita.fr>
16799
16800 * src/LR0.h (first_shift, first_reduction): Remove.
16801 * src/lalr.c: Don't use first_shift: find shifts through the
16802 states.
16803
80e25d4d
AD
168042001-12-10 Akim Demaille <akim@epita.fr>
16805
16806 * src/LR0.c: Attach shifts to states as soon as they are
16807 computed.
16808 * src/lalr.c (set_state_table): Instead of assigning shifts to
16809 state, just assert that the mapping was properly done.
16810
0ab3728b
AD
168112001-12-10 Akim Demaille <akim@epita.fr>
16812
16813 * src/LR0.c (insert_start_shift): Rename as...
16814 (insert_start_shifting_state): this.
16815 (insert_eof_shifting_state, insert_accepting_state): New.
16816 (augment_automaton): Adjust.
16817 Better locality of the variables.
16818 When looking if the start_symbol is shifted from the initial
16819 state, using `while (... symbol != start_symbol ...)' sounds
16820 better than `while (... symbol < start_symbol ...)': If fail
16821 to see how the order between symbols could be relevant!
16822
78af9bbc
AD
168232001-12-10 Akim Demaille <akim@epita.fr>
16824
16825 * src/getargs.h: Don't declare `spec_name_prefix' and
16826 `spec_file_prefix', declared by src/files.h.
16827 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
16828 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
16829 * src/output.c (prepare): Adjust.
16830 * src/reader.c (symbols_output): Likewise.
16831 * src/vmsgetargs.c: Vaguely adjust, but who cares?
16832
bdef2a41
AD
168332001-12-10 Akim Demaille <akim@epita.fr>
16834
16835 * src/muscle_tab.c (muscle_init): NULL is a better default than
16836 `"0"'.
16837
3735969c
AD
168382001-12-10 Akim Demaille <akim@epita.fr>
16839
16840 * src/reader.c (reader): Calling symbols_output once is enough.
16841
49701457
AD
168422001-12-10 Akim Demaille <akim@epita.fr>
16843
16844 Now that states have a complete set of members, the linked list of
16845 reductions is useless: just fill directly the state's reductions
16846 member.
16847
16848 * src/state.h (struct reductions): Remove member `number' and
16849 `next'.
16850 * src/LR0.c (first_reduction, last_reduction): Remove.
16851 (save_reductions): Don't link the new reductions, store them in
16852 this_state.
16853 * src/lalr.c (set_state_table): No need to attach reductions to
16854 states, it's already done.
16855 * src/output.c (output_actions): No longer free the shifts, then
16856 the reductions, then the states: free all the states and their
16857 members.
16858
0edad749
AD
168592001-12-10 Akim Demaille <akim@epita.fr>
16860
16861 * src/options.c (OPTN, DRTV, BOTH): New.
16862 (option_table): Use them.
16863
0edad749
AD
16864 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
16865 the job of system.h.
16866 * src/options.c: Don't include stdio.h and xalloc.h for the same
16867 reasons.
16868
5449dd0f
AD
168692001-12-10 Akim Demaille <akim@epita.fr>
16870
16871 * src/output.c (output, prepare): Make sure the values of the
16872 muscles `action' and `prologue' are 0-terminated.
16873
a870c567
AD
168742001-12-10 Akim Demaille <akim@epita.fr>
16875
16876 Clean up GCC warnings.
16877
16878 * src/reader.c (copy_action): `buf' is not used.
16879 (parse_skel_decl): Be static.
16880 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
16881 * src/options.h (create_long_option_table): Have a real prototype.
16882 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
16883 (hash_delete_at): Return const void *.
16884 Adjust casts to preserve the const.
16885
80df8768
AD
168862001-12-10 Akim Demaille <akim@epita.fr>
16887
16888 * configure.in: Require 2.52g.
16889 M4 is not needed, but AUTOM4TE is.
16890 * m4/m4.m4: Remove.
16891 * tests/Makefile.am: Adjust.
16892
f693ad14
AD
168932001-12-10 Akim Demaille <akim@epita.fr>
16894
16895 One structure for states is enough, even though theoretically
16896 there are LR(0) states and LALR(1) states.
16897
16898 * src/lalr.h (state_t): Remove.
16899 (state_table): Be state_t **, not state_t *.
16900 * src/state.h (core, CORE_ALLOC): Rename as...
16901 (state_t, STATE_ALLOC): this.
16902 Add the LALR(1) members: shifts, reductions, errs.
16903 * src/LR0.c (state_table): Rename as...
16904 (state_hash): this, to avoid name clashes with the global
16905 `state_table'.
16906 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
16907 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
16908
74ffbcb6
AD
169092001-12-10 Akim Demaille <akim@epita.fr>
16910
16911 Bison dumps core on bash.y.
16912 Reported by Pascal Bart.
16913
16914 * src/warshall.c (bitmatrix_print): New.
16915 (TC): Use it.
ba0fe3c7 16916 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
74ffbcb6
AD
16917 j must be the outer loop.
16918 * tests/regression.at (Broken Closure): New.
16919
07708e19
AD
169202001-12-05 Akim Demaille <akim@epita.fr>
16921
16922 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
16923 its argument.
ba1ecc07 16924 Reported by Peter Hamorsky.
07708e19 16925
92b16366
AD
169262001-12-05 Akim Demaille <akim@epita.fr>
16927
16928 * src/conflicts.c (err_table): Remove.
16929 (resolve_sr_conflict): Adjust.
16930 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
16931 Rename as...
16932 (state_t.reductions, state_t.shifts): this.
16933
076ab033
AD
169342001-12-05 Akim Demaille <akim@epita.fr>
16935
16936 * src/reduce.c (reduce_grammar_tables): No longer disable the
16937 removal of useless rules via CPP but via `if (0)', so that the
16938 compiler still check the code is valid.
16939 For instance, it should have noticed `rline' no longer exists: use
16940 the `line' member of rule_t.
16941 * src/gram.c (dummy, rline): Remove, unused.
16942
3843c413
AD
169432001-12-05 Akim Demaille <akim@epita.fr>
16944
16945 * src/output.c (pack_vector): Use assert, not berror.
16946 * src/main.c (berror): Remove, unused.
16947
43168960
AD
169482001-12-05 Akim Demaille <akim@epita.fr>
16949
16950 New experimental feature: if --verbose --trace output all the
16951 items of a state, not only its kernel.
16952
16953 * src/print.c (print_core): If `trace_flag', then invoke closure
16954 before outputting the items of the state (print_core is no longer
16955 a correct name them).
16956 (print_results): Invoke new_closure/free_closure if needed.
16957
b2872512
AD
169582001-12-05 Akim Demaille <akim@epita.fr>
16959
16960 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
16961 * src/closure.c, src/closure.h (itemsetsize): Rename as...
16962 (nitemset): for consistency with the rest of the project.
16963
23cbcc6c
AD
169642001-12-05 Akim Demaille <akim@epita.fr>
16965
16966 * src/closure.c (print_closure): Improve.
16967 (closure): Use it for printing input and output.
16968
03ec521c
AD
169692001-12-05 Akim Demaille <akim@epita.fr>
16970
16971 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
16972 indexed by nonterminals.
16973
3a7456dd
AD
169742001-12-05 Akim Demaille <akim@epita.fr>
16975
16976 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
16977 what it was!).
16978 * src/warshall.h: Remove accidental duplication of the content.
16979
1cbcf2e7
AD
169802001-12-05 Akim Demaille <akim@epita.fr>
16981
16982 * src/closure.c (set_fderives): De-obfuscate.
16983
84182270
AD
169842001-12-05 Akim Demaille <akim@epita.fr>
16985
16986 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
16987
3f6f053c
AD
169882001-12-05 Akim Demaille <akim@epita.fr>
16989
16990 * src/closure.c (set_firsts): De-obfuscate.
16991
7a5350ba
AD
169922001-12-05 Akim Demaille <akim@epita.fr>
16993
16994 * src/output.c (action_row): De-obfuscate
16995 using the good o' techniques: arrays not pointers, variable
16996 locality, BITISSET, RESETBIT etc.
16997
d954473d
AD
169982001-12-05 Akim Demaille <akim@epita.fr>
16999
17000 Pessimize the code to simplify it: from now on, all the states
17001 have a valid SHIFTS, which NSHIFTS is possibly 0.
17002
17003 * src/LR0.c (shifts_new): Be global and move to..
17004 * src/state.c, src/state.h: here.
17005 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
17006 * src/print_graph: Adjust.
17007
9839bbe5
AD
170082001-12-05 Akim Demaille <akim@epita.fr>
17009
17010 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
17011 * src/conflicts.c: Use it.
17012 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
17013 incorrectly ``simplified''.
17014
9f136c07
AD
170152001-12-05 Akim Demaille <akim@epita.fr>
17016
17017 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
17018 using the good o' techniques: arrays not pointers, variable
17019 locality, BITISSET, RESETBIT etc.
17020
b608206e
AD
170212001-12-05 Akim Demaille <akim@epita.fr>
17022
17023 * src/state.h (SHIFT_SYMBOL): New.
17024 * src/conflicts.c: Use it to deobfuscate.
17025
52afa962
AD
170262001-12-05 Akim Demaille <akim@epita.fr>
17027
17028 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
17029 (print_reductions): De-obfuscate using the good o' techniques:
17030 arrays not pointers, variable locality, BITISSET.
17031
e74dc321
AD
170322001-12-05 Akim Demaille <akim@epita.fr>
17033
17034 * src/conflicts.c (print_reductions): Arrays, not pointers.
17035 Use BITISSET.
17036
768fca83
AD
170372001-12-05 Akim Demaille <akim@epita.fr>
17038
17039 * src/conflicts.c (print_reductions): Pessimize, but clarify.
17040
a17e599f
AD
170412001-12-05 Akim Demaille <akim@epita.fr>
17042
17043 * src/conflicts.c (print_reductions): Improve variable locality.
17044
a04bc341
AD
170452001-12-05 Akim Demaille <akim@epita.fr>
17046
17047 * src/conflicts.c (print_reductions): Pessimize, but clarify.
17048
c8ea038e
AD
170492001-12-05 Akim Demaille <akim@epita.fr>
17050
17051 * src/conflicts.c (print_reductions): Improve variable locality.
17052
aa2aab3c
AD
170532001-12-05 Akim Demaille <akim@epita.fr>
17054
17055 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
17056 * src/lalr.c: Use them.
17057
b178c8cc
AD
170582001-12-05 Akim Demaille <akim@epita.fr>
17059
17060 * src/LR0.c (augment_automaton): Formatting changes.
17061 Better variable locality.
17062
f67d13aa
AD
170632001-12-05 Akim Demaille <akim@epita.fr>
17064
17065 * src/lalr.c (matrix_print): New.
17066 (transpose): Use it.
17067 Use arrays instead of pointers.
17068
c2713865
AD
170692001-12-05 Akim Demaille <akim@epita.fr>
17070
17071 * src/lalr.c (maxrhs): Move to...
17072 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
17073 * src/lalr.c (build_relations): Adjust.
17074
9887c18a
AD
170752001-12-05 Akim Demaille <akim@epita.fr>
17076
17077 * src/lalr.c (transpose): Free the memory allocated to the
17078 argument, as it is replaced by the results by the unique caller.
17079 (build_relations): Merely invoke transpose: it handles the memory
17080 deallocation.
17081 Improve variable locality.
17082 Avoid variables used as mere abbreviations.
17083 (compute_lookaheads): Use arrays instead of pointers.
17084
4d4f699c
AD
170852001-12-05 Akim Demaille <akim@epita.fr>
17086
17087 * src/lalr.c (initialize_F): Improve variable locality.
17088 Avoid variables used as mere abbreviations.
17089
80a69750
AD
170902001-12-05 Akim Demaille <akim@epita.fr>
17091
17092 * src/derives.c (print_derives): Display the ruleno.
17093 * src/lalr.c (initialize_F, transpose): Better variable locality
17094 to improve readability.
17095 Avoid variables used as mere abbreviations.
17096
fe961097
AD
170972001-12-05 Akim Demaille <akim@epita.fr>
17098
17099 * src/lalr.c (traverse): Use arrays instead of pointers.
17100
e3e4e814
AD
171012001-12-05 Akim Demaille <akim@epita.fr>
17102
17103 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
17104 the handling of squeue.
17105 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
17106
630e182b
AD
171072001-12-05 Akim Demaille <akim@epita.fr>
17108
17109 Because useless nonterminals are now kept alive (instead of being
17110 `destroyed'), we now sometimes examine them, and store information
17111 related to them. Hence we need to know their number, and adjust
17112 memory allocations.
17113
17114 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
17115 static.
17116 * src/LR0.c (allocate_itemsets): The memory allocated to
17117 `symbol_count' was used for two different purpose: once to count
17118 the number of occurrences of each symbol, and later reassigned to
17119 `shift_symbol', containing the symbol that can be shifted from a
17120 given state.
17121 Deobfuscate, i.e., allocate, use and free `symbol_count' here
17122 only, and...
17123 (new_itemsets): Allocate `shift_symbol' here.
17124 (allocate_itemsets): symbol_count includes useless nonterminals.
17125 Make room for them.
17126 (free_storage): Use `free', not `XFREE', for pointers that cannot
17127 be null.
17128
81b51460
AD
171292001-12-05 Akim Demaille <akim@epita.fr>
17130
17131 * src/nullable.c (set_nullable): Deobfuscate the handling of
17132 ritem.
17133 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
17134
3067fbef
AD
171352001-12-05 Akim Demaille <akim@epita.fr>
17136
17137 * src/gram.c, src/gram.h (ritem_print): New.
17138 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
17139 (This useless function was defined only to work around VMS linkers
17140 that can't handle compilation units with variables only).
17141 * src/reduce.c (dump_grammar): Use it to trace the construction of
17142 ritem.
17143
c2bea5f9
PE
171442001-12-04 Paul Eggert <eggert@twinsun.com>
17145
7d27c823
PE
17146 * src/bison.simple (union yyalloc): Change member names
17147 to be the same as the stack names.
17148 (yyparse): yyptr is now union yyalloc *, not char *.
17149 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
17150 and may generate better code on some machines.
c2bea5f9
PE
17151 (yystpcpy): Use prototype if __STDC__ is defined, not just
17152 if __cplusplus is defined.
35687a9d 17153
2c8a9dfa
AD
171542001-11-30 Akim Demaille <akim@epita.fr>
17155
17156 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
17157 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
17158 Gettext doesn't compile cleanly, and dies with -Werror.
17159 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
17160 Include WARNING_CFLAGS here.
17161 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
17162 before being defined.
17163
f4e421e6
AD
171642001-11-27 Paul Eggert <eggert@twinsun.com>
17165
17166 * lib/quotearg.h (quotearg_n, quotearg_n_style):
17167 First arg is int, not unsigned.
17168 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
17169 (SIZE_MAX, UINT_MAX): New macros.
17170 (quotearg_n_options): Abort if N is negative.
17171 Avoid overflow check on hosts where size_t is 64 bits and int
17172 is 32 bits, as overflow is impossible there.
17173 Fix off-by-one typo that caused unnecessary reallocation.
17174
7093d0f5
AD
171752001-11-29 Paul Eggert <eggert@twinsun.com>
17176
17177 Name space cleanup in generated parser.
17178
17179 * doc/bison.texinfo (Bison Parser): Discuss system headers
17180 and their effect on the user name space.
17181
17182 * src/bison.simple:
17183 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
17184 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
17185 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
17186
17187 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
17188 on user names when possible.
17189
17190 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
17191 Simplify test for whather <alloca.h> exists.
17192
17193 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
17194
17195 (<stdio.h>): Include if YYDEBUG.
17196
17197 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
17198 ! defined (yyoverflow) && ! defined (yymemcpy).
17199
17200 (yymemcpy, yyparse): Rename local variables as needed so that
17201 they all begin with 'yy'.
17202
17203 (yystrlen, yystpcpy): New functions.
17204
17205 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
17206 All uses changed.
17207
17208 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
17209 instead of relying on string.h functions. Use YYSTACK_ALLOC
17210 and YYSTACK_FREE instead of malloc and free.
17211
fd51e5ff
AD
172122001-11-30 Akim Demaille <akim@epita.fr>
17213
17214 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
17215 before their first uses.
17216 (YYBISON, YYPURE): Move to the top of the output.
17217
7d13ff5f
AD
172182001-11-30 Akim Demaille <akim@epita.fr>
17219
17220 * tests/reduce.at (Useless Nonterminals): Fix.
17221
892a3995
AD
172222001-11-30 Akim Demaille <akim@epita.fr>
17223
17224 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
17225 if body instead of `;' to pacify GCC's warnings.
17226
68f1e3ed
AD
172272001-11-30 Akim Demaille <akim@epita.fr>
17228
17229 Instead of mapping the LHS of unused rules to -1, keep the LHS
17230 valid, but flag the rules as invalid.
17231
17232 * src/gram.h (rule_t): `useful' is a new member.
17233 * src/print.c (print_grammar): Adjust.
17234 * src/derives.c (set_derives): Likewise.
17235 * src/reader.c (packgram, reduce_output): Likewise.
17236 * src/reduce.c (reduce_grammar_tables): Likewise.
17237 * tests/reduce.at (Underivable Rules, Useless Rules): New.
17238
d2d1b42b
AD
172392001-11-30 Akim Demaille <akim@epita.fr>
17240
17241 * src/reduce.c (reduce_output): Formatting changes.
17242 * src/print.c (print_results, print_grammar): Likewise.
17243 * tests/regression.at (Rule Line Numbers)
17244 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
17245
760b53a8
AD
172462001-11-30 Akim Demaille <akim@epita.fr>
17247
17248 * src/reduce.c (nonterminals_reduce): Instead of throwing away
17249 useless nonterminals, move them at the end of the symbol arrays.
17250 (reduce_output): Adjust.
17251 * tests/reduce.at (Useless Nonterminals): Adjust.
17252
00238958
AD
172532001-11-30 Akim Demaille <akim@epita.fr>
17254
17255 * src/reduce.c: Various comment/formatting changes.
17256 (nonterminals_reduce): New, extracted from...
17257 (reduce_grammar_tables): here.
17258 (reduce_grammar): Call nonterminals_reduce.
17259
396452de
PE
172602001-11-29 Paul Eggert <eggert@twinsun.com>
17261
17262 * src/bison.simple (YYSTACK_REALLOC): Remove.
17263 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
17264 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
17265 New macros.
17266 (union yyalloc): New type.
17267 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
17268 an arbitrary restriction on hosts where size_t is wider than int.
17269
17270 (yyparse): Don't dump core if alloca or malloc fails; instead, report
17271 a parser stack overflow. Allocate just one block of memory for all
17272 three stacks, instead of allocating three blocks; this typically is
17273 faster and reduces fragmentation.
17274
17275 Do not limit the number of items in the stack to a value that fits
17276 in 'int', as this is an arbitrary limit on hosts with 64-bit
17277 size_t and 32-bit int.
17278
147e184c
MA
172792001-11-29 Marc Autret <autret_m@epita.fr>
17280
17281 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
17282 of defining YYERROR_VERBOSE.
17283 [AT_DATA]: $4 is now out of C declarations in the prologue.
17284
426cf563
MA
172852001-11-28 Marc Autret <autret_m@epita.fr>
17286
17287 * src/reader.c (parse_dquoted_param): New.
17288 (parse_skel_decl): Use it.
17289 * src/lex.h: Add its prototype.
17290 * src/lex.c (literalchar): Become not static.
17291
c7925b99
MA
172922001-11-28 Marc Autret <autret_m@epita.fr>
17293
17294 * src/output.h: And put its extern declaration here.
17295 * src/output.c (error_verbose): Define here.
17296 (prepare): Echo name modification.
17297 * src/getargs.h: Clean its extern declaration.
17298 * src/getargs.c (error_verbose_flag): Remove.
17299 (getargs): Remove case 'e'.
17300 * src/options.c (option_table): 'error-verbose' is now seen as simple
17301 percent option.
17302 Include output.h.
17303
17304 * src/reader.c (read_declarations): Remove case tok_include.
17305 (parse_include_decl): Remove.
17306 * src/lex.h (token_t): Remove tok_include.
17307 * src/options.c (option_table): 'include' is now a simple command line
17308 option.
17309
5b5d1929
MA
173102001-11-28 Marc Autret <autret_m@epita.fr>
17311
17312 * src/bison.simple: Adjust muscle names.
17313 * src/muscle_tab.c (muscle_init): Also rename the muscles.
17314 * src/output.c (prepare): s/_/-/ for the muscles names.
17315 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
17316
8850be4b
MA
173172001-11-28 Marc Autret <autret_m@epita.fr>
17318
17319 * src/bison.simple: Fix debug.
17320 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
17321
4a38e613
AD
173222001-11-28 Akim Demaille <akim@epita.fr>
17323
17324 * src/LR0.c (shifts_new): New.
17325 (save_shifts, insert_start_shift, augment_automaton): Use it.
17326
4b35e1c1
AD
173272001-11-28 Akim Demaille <akim@epita.fr>
17328
17329 * src/closure.c (closure): `b' and `ruleno' denote the same value:
17330 keep ruleno only.
17331
d2b04478
AD
173322001-11-28 Akim Demaille <akim@epita.fr>
17333
17334 * src/closure.c (closure): Instead of looping over word in array
17335 then bits in words, loop over bits in array.
17336
2c4c30aa
AD
173372001-11-28 Akim Demaille <akim@epita.fr>
17338
17339 * src/closure.c (closure): No longer optimize the special case
17340 where all the bits of `ruleset[r]' are set to 0, to make the code
17341 clearer.
17342
576890b7
AD
173432001-11-28 Akim Demaille <akim@epita.fr>
17344
17345 * src/closure.c (closure): `r' and `c' are new variables, used to
17346 de-obfuscate accesses to RULESET and CORE.
17347
cb487d7d
AD
173482001-11-28 Akim Demaille <akim@epita.fr>
17349
17350 * src/reduce.c (reduce_print): Use ngettext.
17351 (dump_grammar): Improve the trace accuracy.
17352
6013d43f
AD
173532001-11-28 Akim Demaille <akim@epita.fr>
17354
17355 * src/reduce.c (dump_grammar): Don't translate trace messages.
17356
cb4956ee
AD
173572001-11-28 Akim Demaille <akim@epita.fr>
17358
17359 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
17360 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
17361 as all tags are free'ed afterwards.
17362 From Enrico Scholz.
17363
648185ab
PE
173642001-11-27 Paul Eggert <eggert@twinsun.com>
17365
17366 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
17367 use alloca when we didn't want to, and vice versa.
17368
68254a03
MA
173692001-11-27 Marc Autret <autret_m@epita.fr>
17370
9113b58f
AD
17371 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
17372 initialization.
68254a03
MA
17373 * src/output.c (prepare): Remove its update.
17374
04d843a2
MA
173752001-11-27 Marc Autret <autret_m@epita.fr>
17376
17377 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
17378 Use %error-verbose.
17379
d2079671 173802001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
17381
17382 * src/bison.simple: Remove YYERROR_VERBOSE using.
17383 Use %%error_verbose.
17384 (yyparse): Likewise.
17385 * src/output.c (prepare): Give its final value.
17386 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
17387 * src/getargs.h: Add its extern declaration.
17388 * src/getargs.c (error_verbose_flag): New int.
17389 (getargs): Update to catch new case.
17390 * src/options.c (option_table): 'error-verbose' is a new option.
17391 (shortopts): Update.
17392
e0327bc8
AD
173932001-11-27 Akim Demaille <akim@epita.fr>
17394
17395 * src/system.h: Use intl/libgettext.h.
17396 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
17397
000f1a3c
AD
173982001-11-27 Akim Demaille <akim@epita.fr>
17399
17400 * tests/torture.at (Exploding the Stack Size with Malloc):
17401 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
17402
26cfe0be
AD
174032001-11-27 Akim Demaille <akim@epita.fr>
17404
17405 * src/files.c: Include error.h.
17406 Reported by Hans Aberg.
17407
f6bd5427
MA
174082001-11-26 Marc Autret <autret_m@epita.fr>
17409
d2079671 17410 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
17411 (read_declarations): Add case tok_include.
17412 * src/getargs.h (include): Add its extern definition.
17413 * src/getargs.c (include): New const char *.
17414 (getargs): Add case '-I'.
17415 * src/options.c (option_table): Add include as command line and
17416 percent option.
17417 * src/lex.h (token_t): Add tok_include.
17418
2ca209c1
AD
174192001-11-26 Akim Demaille <akim@epita.fr>
17420
17421 * src/reader.c (readgram): Make sure rules for mid-rule actions
17422 have a lineno equal to that of their host rule.
17423 Reported by Hans Aberg.
17424 * tests/regression.at (Rule Line Numbers): New.
17425
0e41b407
AD
174262001-11-26 Akim Demaille <akim@epita.fr>
17427
17428 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
17429 size_ts.
17430
174312001-11-26 Akim Demaille <akim@epita.fr>
17432
17433 * src/complain.c, src/complain.h (error): Remove, provided by
17434 lib/error.[ch].
17435
e0c40012
AD
174362001-11-26 Akim Demaille <akim@epita.fr>
17437
17438 * src/reader.c (read_declarations): Don't abort on tok_illegal,
17439 issue an error message.
17440 * tests/regression.at (Invalid %directive): New.
17441 Reported by Hans Aberg.
17442
5e147124
AD
174432001-11-26 Akim Demaille <akim@epita.fr>
17444
17445 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
17446 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
17447
a034c8b8
AD
174482001-11-26 Akim Demaille <akim@epita.fr>
17449
17450 * src/conflicts.c (conflicts_print): Don't complain at all when
17451 there are no reduce/reduce conflicts, and as many shift/reduce
17452 conflicts as expected.
17453 * tests/regression.at (%expect right): Adjust.
17454
c64a20f3
AD
174552001-11-23 Akim Demaille <akim@epita.fr>
17456
17457 * lib/alloca.c: Update, from fileutils.
17458
5b0d29bb
AD
174592001-11-23 Akim Demaille <akim@epita.fr>
17460
17461 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
17462
722c4bfe
AD
174632001-11-23 Akim Demaille <akim@epita.fr>
17464
17465 * src/system.h: Include alloca.h.
17466 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
17467
6255b435
AD
174682001-11-23 Akim Demaille <akim@epita.fr>
17469
17470 * src/print_graph.c (print_actions): Remove `rule', unused.
17471 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
17472 pacify GCC's signed < unsigned warnings.
17473 * src/closure.c (itemsetsize): Likewise.
17474 * src/reader.c (symbol_list_new): Static.
17475
b29b2ed5
AD
174762001-11-23 Akim Demaille <akim@epita.fr>
17477
17478 Attaching lineno to buckets is stupid, since only one copy of each
17479 symbol is kept, only the line of the first occurrence is kept too.
17480
17481 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
17482 * src/reader.c (rline_allocated): Remove, unused.
17483 (symbol_list): Have a `line' member.
17484 (symbol_list_new): New.
17485 (readgram): Use it.
17486 * src/print.c (print_grammar): Output the rule line numbers.
17487 * tests/regression.at (Solved SR Conflicts)
17488 (Unresolved SR Conflicts): Adjust.
17489 Reported by Hans Aberg.
17490
a81b1d4a
MA
174912001-11-22 Marc Autret <autret_m@epita.fr>
17492
17493 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
17494
c1ecb3c1
MA
174952001-11-22 Marc Autret <autret_m@epita.fr>
17496
17497 * src/muscle_tab.c (muscle_init): Remove initialization of
17498 skeleton muscle.
17499 * src/output.c (output_master_parser): Do it here.
17500
fbe01355
AD
175012001-11-20 Akim Demaille <akim@epita.fr>
17502
17503 * po/sv.po: New.
17504 * configure.in (ALL_LINGUAS): Adjust.
17505 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
17506 longer contains strings to translate.
17507
81e895c0
AD
175082001-11-19 Akim Demaille <akim@epita.fr>
17509
17510 * src/conflicts.c (conflicts_print): Add a missing \n.
17511
6bb1878b
AD
175122001-11-19 Akim Demaille <akim@epita.fr>
17513
17514 * src/nullable.c (nullable_print): New.
17515 (set_nullable): Call it when tracing.
17516 Better locality of variables.
17517
d9ec2d07
AD
175182001-11-19 Akim Demaille <akim@epita.fr>
17519
17520 * src/print.c (print_actions): Better locality of variables.
17521
720e5c1b
AD
175222001-11-19 Akim Demaille <akim@epita.fr>
17523
17524 * src/derives.c (print_derives): Fix and enrich.
17525 * src/closure.c (print_fderives): Likewise.
17526
fb908786
AD
175272001-11-19 Akim Demaille <akim@epita.fr>
17528
17529 * src/closure.c (itemsetend): Remove, replaced with...
17530 (itemsetsize): new.
17531
125ecb56
AD
175322001-11-19 Akim Demaille <akim@epita.fr>
17533
17534 * src/LR0.c (kernel_end): Remove, replaced with...
17535 (kernel_size): new.
17536
d8cf039f
AD
175372001-11-19 Akim Demaille <akim@epita.fr>
17538
17539 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
17540 to clarify.
17541
7bec0760
AD
175422001-11-19 Akim Demaille <akim@epita.fr>
17543
17544 * src/closure.c (closure): Use arrays instead of pointers to clarify.
17545
c87d4863
AD
175462001-11-19 Akim Demaille <akim@epita.fr>
17547
17548 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
17549 trace messages.
17550 * src/LR0.c: Likewise.
17551 (allocate_itemsets): Use arrays instead of pointers to clarify.
17552
9bfe901c
AD
175532001-11-19 Akim Demaille <akim@epita.fr>
17554
17555 * src/getargs.c (statistics_flag): Replace with...
17556 (trace_flag): New.
17557 (longopts): Accept --trace instead of --statistics.
17558 * src/getargs.h, src/options.c: Adjust.
17559 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
17560 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
17561
97db7bd4
AD
175622001-11-19 Akim Demaille <akim@epita.fr>
17563
cc72668c 17564 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
17565 pointers to clarify the code.
17566 (save_reductions, save_shifts): Factor common parts of alternatives.
17567
2c5f66ed
AD
175682001-11-19 Akim Demaille <akim@epita.fr>
17569
17570 * src/LR0.c (new_state, get_state): Complete TRACE code.
17571 * src/closure.c: Include `reader.h' to get `tags', needed by the
17572 trace code.
17573 Rename the conditional DEBUG as TRACE.
17574 Output consistently TRACEs to stderr, not stdout.
17575 * src/derives.c: Likewise.
17576 * src/reduce.c: (inaccessable_symbols): Using if is better style
17577 than goto.
17578 Use `#if TRACE' instead of `#if 0' for tracing code.
17579
300f275f
AD
175802001-11-19 Akim Demaille <akim@epita.fr>
17581
17582 * src/system.h (LIST_FREE, shortcpy): New.
17583 * src/LR0.c: Use them.
17584 * src/output.c (free_itemsets, free_reductions, free_shifts):
17585 Remove, replaced by LIST_FREE.
17586
f59c437a
AD
175872001-11-19 Akim Demaille <akim@epita.fr>
17588
17589 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
17590 (REDUCTIONS_ALLOC): New.
17591 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
17592 allocation.
17593
6986fd9e
AD
175942001-11-19 Akim Demaille <akim@epita.fr>
17595
17596 * src/LR0.c (new_state): Complete trace code.
17597 * src/nullable.c (set_nullable): Don't translate traces.
17598
4bc30f78
AD
175992001-11-19 Akim Demaille <akim@epita.fr>
17600
17601 * src/print_graph.c (print_core): Better locality of variables.
17602 * src/print.c (print_core): Likewise.
17603
08a946e0
AD
176042001-11-19 Akim Demaille <akim@epita.fr>
17605
17606 * src/vcg.c: You do the output, so you are responsible of the
17607 handling of VCG syntax, in particular: use quotearg.
17608 * src/print_graph.c: Don't.
17609 (print_actions): Don't output the actions as part of the nodes,
17610 since that's the job of the edges.
17611 (print_state): Don't output by hand: fill the node description,
9bfe901c 17612 and ask for its output.
08a946e0 17613
f0473484
AD
176142001-11-19 Akim Demaille <akim@epita.fr>
17615
cc72668c
AD
17616 * src/bison.simple (yyparse): When verbosely reporting an error,
17617 no longer put additional quotes around token names.
f0473484
AD
17618 * tests/calc.at: Adjust.
17619
e41dc700
AD
176202001-11-19 Akim Demaille <akim@epita.fr>
17621
17622 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
17623 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
17624 * src/output.c: Adjust.
17625
652a871c
AD
176262001-11-19 Akim Demaille <akim@epita.fr>
17627
17628 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
17629 (rule_t): this.
17630 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
17631
b2ed6e58
AD
176322001-11-19 Akim Demaille <akim@epita.fr>
17633
17634 * src/gram.h (rule_t): New.
17635 (rule_table): New.
17636 (rrhs, rlhs): Remove, part of state_t.
17637 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
17638 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
17639 * src/reader.c, src/reduce.c: Adjust.
17640
edad7067
AD
176412001-11-19 Akim Demaille <akim@epita.fr>
17642
17643 * src/reader.c (symbols_output): New, extracted from...
17644 (packsymbols): Here.
17645 (reader): Call it.
17646
3feec034
AD
176472001-11-19 Akim Demaille <akim@epita.fr>
17648
17649 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
17650 (maxrhs): this new function.
17651
ddcd5fdf
AD
176522001-11-19 Akim Demaille <akim@epita.fr>
17653
cc72668c 17654 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
17655 Adjust.
17656
bb527fc2
AD
176572001-11-19 Akim Demaille <akim@epita.fr>
17658
cc72668c 17659 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
17660 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
17661 * src/lalr.c: Adjust.
17662
a845a697
AD
176632001-11-19 Akim Demaille <akim@epita.fr>
17664
17665 * src/lalr.c (initialize_LA): Only initialize LA. Let...
17666 (set_state_table): handle the `lookaheads' members.
17667
f004bf6a
AD
176682001-11-19 Akim Demaille <akim@epita.fr>
17669
cc72668c
AD
17670 * src/lalr.h (lookaheads): Removed array, whose contents is now
17671 a member of...
f004bf6a
AD
17672 (state_t): this structure.
17673 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
17674 Adjust.
17675
de326cc0
AD
176762001-11-19 Akim Demaille <akim@epita.fr>
17677
cc72668c
AD
17678 * src/lalr.h (consistent): Removed array, whose contents is now
17679 a member of...
de326cc0
AD
17680 (state_t): this structure.
17681 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
17682 Adjust.
17683
90b4416b
AD
176842001-11-19 Akim Demaille <akim@epita.fr>
17685
cc72668c
AD
17686 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
17687 contents are now members of...
90b4416b
AD
17688 (state_t): this structure.
17689 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
17690 Adjust.
17691
9703cc49
AD
176922001-11-19 Akim Demaille <akim@epita.fr>
17693
17694 * src/lalr.h (state_t): New.
17695 (state_table): Be a state_t * instead of a core **.
17696 (accessing_symbol): Remove, part of state_t.
17697 * src/lalr.c: Adjust.
17698 (set_accessing_symbol): Merge into...
17699 (set_state_table): this.
17700 * src/print_graph.c, src/conflicts.c: Adjust.
17701
d803322e
AD
177022001-11-14 Akim Demaille <akim@epita.fr>
17703
17704 * tests/calc.at, tests/output.at, tests/regression.at,
17705 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
17706 now the tests are run in private dirs, therefore AC_CLEANUP and
17707 family can be simplified to 0-ary.
17708 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
17709 use abs. path to find config.h.
17710 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
17711 stderr, there can be way too much random noise.
17712 Instead pass -Werror to GCC and rely on the exit status.
17713 Reported by Wolfram Wagner.
17714
3d76b07d
AD
177152001-11-14 Akim Demaille <akim@epita.fr>
17716
17717 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
17718 defined only if yyoverflow is defined, to avoid `warning: unused
17719 variable `yyvs1''.
17720 Reported by The Test Suite.
17721
09b503c8
AD
177222001-11-14 Akim Demaille <akim@epita.fr>
17723
17724 * src/print.c: Include reduce.h.
17725 Reported by Hans Aberg.
17726
177272001-11-14 Akim Demaille <akim@epita.fr>
17728
17729 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
17730 Revert a previous patch: these are really const.
17731 * src/conflicts.c (conflict_report): Additional useless pair of
17732 braces to pacify GCC's warnings for `if () if () {} else {}'.
17733 * src/lex.c (parse_percent_token): Replace equal_offset with
17734 arg_offset.
17735 arg is const.
17736 Be sure to strdup `arg' when used, since there is no reason for
17737 token_buffer not to change.
17738
0f37a994
AD
177392001-11-14 Akim Demaille <akim@epita.fr>
17740
17741 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
17742 definition.
17743 * src/main.c (main): Use them.
17744 Suggested by Hans Aberg.
17745
d39d93b8
AD
177462001-11-12 Akim Demaille <akim@epita.fr>
17747
17748 * src/system.h (ngettext): Now that we use ngettext, be sure to
17749 provide a default definition when NLS are not used.
17750
9edcd895
AD
177512001-11-12 Akim Demaille <akim@epita.fr>
17752
17753 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
17754 Use @kbd to denote user input.
17755 (Language and Grammar): ANSIfy the example.
17756 Adjust its layout for info/notinfo.
17757 (Location Tracking Calc): Output error messages to stderr.
17758 Output locations in a more GNUtically correct way.
17759 Fix a couple of Englishos.
17760 Adjust @group/@end group pairs.
17761
7da99ede
AD
177622001-11-12 Akim Demaille <akim@epita.fr>
17763
e3aa65c5 17764 %expect was not functioning at all.
7da99ede
AD
17765
17766 * src/conflicts.c (expected_conflicts): Set to -1.
17767 (conflict_report): Use ngettext.
17768 (conflicts_print): Check %expect and make its violation an error.
17769 * doc/bison.texinfo (Expect Decl): Adjust.
17770 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
17771 * tests/regression.at (%expect not enough, %expect right)
17772 (%expect too much): New.
17773
ba9dda1a
AD
177742001-11-12 Akim Demaille <akim@epita.fr>
17775
17776 * tests/regression.at (Conflicts): Rename as...
17777 (Unresolved SR Conflicts): this.
17778 (Solved SR Conflicts): New.
17779
337c5bd1
AD
177802001-11-12 Akim Demaille <akim@epita.fr>
17781
17782 * src/reduce.c (print_results): Rename as...
17783 (reduce_output): This.
17784 Output to OUT, passed as argument, instead of output_obstack.
17785 (dump_grammar): Likewise.
17786 (reduce_free): New.
17787 Also free V1.
17788 (reduce_grammar): No longer call reduce_output, since...
17789 * src/print.c (print_results): do it.
17790 * src/main.c (main): Call reduce_free;
17791
c73a41af
AD
177922001-11-12 Akim Demaille <akim@epita.fr>
17793
17794 * src/conflicts.c (print_reductions): Accept OUT as argument.
17795 Output to it, not to output_obstack.
17796 * src/print.c (print_actions): Adjust.
17797
0df87bb6
AD
177982001-11-12 Akim Demaille <akim@epita.fr>
17799
17800 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
17801 the result instead of using...
17802 (src_total, rrc_total, src_count, rrc_count): Remove.
17803 (any_conflicts): Remove.
17804 (print_conflicts): Split into...
17805 (conflicts_print, conflicts_output): New.
17806 * src/conflicts.h: Adjust.
17807 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 17808 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
17809 * tests/regression.at (Conflicts): New.
17810 Reported by Tom Lane.
17811
e4d3d4de
AD
178122001-11-12 Akim Demaille <akim@epita.fr>
17813
17814 * tests/regression.at (Invalid input): Remove, duplicate with
17815 ``Invalid input: 1''.
17816
6d7d248e
AD
178172001-11-12 Akim Demaille <akim@epita.fr>
17818
17819 * tests/torture.at (AT_DATA_STACK_TORTURE)
17820 (Exploding the Stack Size with Alloca)
17821 (Exploding the Stack Size with Malloc): New.
17822
e9e4c321
AD
178232001-11-12 Akim Demaille <akim@epita.fr>
17824
17825 * src/bison.simple (YYSTACK_REALLOC): New.
17826 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 17827 Reported by Per Allansson.
e9e4c321 17828
5f7e0832
AD
178292001-11-12 Pascal Bart <pascal.bart@epita.fr>
17830
17831 * src/bison.simple: Define type yystype instead of YYSTYPE, and
17832 define CPP macro, which substitute YYSTYPE by yystype.
17833 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
17834 with yyltype/YYLTYPE. This allows inclusion of the generated
17835 header within the parser if the compiler, such as GGC, accepts
17836 multiple equivalent #defines.
17837 From Akim.
17838
e3f1699f
AD
178392001-11-05 Akim Demaille <akim@epita.fr>
17840
17841 * src/reader.c (symbols_output): New, extracted from...
17842 (packsymbols): here.
17843 (reader): Adjust.
17844
65be0866
AD
178452001-11-05 Akim Demaille <akim@epita.fr>
17846
17847 * src/lex.c (parse_percent_token): s/quotearg/quote/.
17848
e4d910bf
AD
178492001-11-05 Akim Demaille <akim@epita.fr>
17850
17851 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
17852 pattern.
17853
951366c1
AD
178542001-11-05 Akim Demaille <akim@epita.fr>
17855
17856 * src/options.h (struct option_table_struct): set_flags is void*.
17857 * src/options.c (longopts): Support `--output' and `%output'.
17858 (usage): Adjust.
17859 * src/lex.h (tok_setopt): Remove, replaced with...
17860 (tok_intopt, tok_stropt): these new guys.
17861 * src/lex.c (getopt.h): Not needed.
17862 (token_buffer, unlexed_token_buffer): Not const.
17863 (percent_table): Promote `-' over `_' in directive names.
17864 Active `%name-prefix', `file-prefix', and `output'.
17865 (parse_percent_token): Accept possible arguments to directives.
17866 Promote `-' over `_' in directive names.
17867
d8988b2f
AD
178682001-11-04 Akim Demaille <akim@epita.fr>
17869
17870 * doc/bison.texinfo (Decl Summary): Split the list into
17871 `directives for grammars' and `directives for bison'.
17872 Sort'em.
17873 Add description of `%name-prefix', `file-prefix', and `output'.
17874 Promote `-' over `_' in directive names.
17875 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
17876 Simplify the description of `--name-prefix'.
17877 Promote `-' over `_' in directive names.
17878 Promote `--output' over `--output-file'.
17879 Fix the description of `--defines'.
17880 * tests/output.at: Exercise %file-prefix and %output.
17881
6468d18e
AD
178822001-11-02 Akim Demaille <akim@epita.fr>
17883
17884 * doc/refcard.tex: Update.
17885
6b7e85b9
AD
178862001-11-02 Akim Demaille <akim@epita.fr>
17887
17888 * src/symtab.h (SUNDEF): New.
17889 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
17890 stand for `uninitialized', instead of 0.
17891 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
17892 * src/lex.c (lex): Adjust.
17893
17894 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
17895 Number it 0.
17896 Let yylex return it instead of a plain 0.
17897 Reported by Dick Streefland.
17898
cd5aafcf
AD
178992001-11-02 Akim Demaille <akim@epita.fr>
17900
17901 * tests/regression.at (Mixing %token styles): New test.
17902
037ca2f1
AD
179032001-11-02 Akim Demaille <akim@epita.fr>
17904
17905 * src/reader.c (parse_thong_decl): Formatting changes.
17906 (token_translations_init): New, extracted from...
17907 (packsymbols): Here.
17908 Adjust.
17909
270a173c
AD
179102001-11-01 Akim Demaille <akim@epita.fr>
17911
17912 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
17913 Check that `9foo.y' produces correct cpp guards.
17914 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
17915 guards.
17916 Reported by Wwp.
17917
561f9a30
AD
179182001-11-01 Akim Demaille <akim@epita.fr>
17919
17920 * tests/regression.at (Invalid input: 2): New.
17921 * src/lex.c (unlexed_token_buffer): New.
17922 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
17923 too.
17924 Reported by Wwp.
17925
f987e9d2
AD
179262001-11-01 Akim Demaille <akim@epita.fr>
17927
17928 * tests/calc.at: Catch up with 1.30.
17929 * configure.in: Bump to 1.49a.
17930 Adjust to newer Autotest.
17931
0846f581
PB
179322001-10-19 Pascal Bart <pascal.bart@epita.fr>
17933
17934 * src/conflicts.c: Move global variables rrc_total and src_total ...
17935 (print_conflicts): here.
17936 * src/output.c (output): Free global variable user_toknums.
17937 * src/lex.c (token_obstack): Become static.
17938
3c1a79b3
AD
179392001-10-18 Akim Demaille <akim@epita.fr>
17940
17941 * tests/atlocal.in (GCC): Add.
17942 * tests/calc.at: s/m4_match/m4_bmatch/.
17943 s/m4_patsubst/m4_bpatsubst/.
17944 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
17945 * configure.in: AC_SUBST(GCC).
17946
5d52e7d0
MA
179472001-10-14 Marc Autret <autret_m@epita.fr>
17948
17949 * src/options.c (create_long_option_table): Fix.
17950
631aa1d3
AD
179512001-10-10 Akim Demaille <akim@epita.fr>
17952
17953 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
17954
f6ec6d13
AD
179552001-10-04 Akim Demaille <akim@epita.fr>
17956
17957 * src/reader.c (parse_union_decl): Push the caracters in
17958 union_obstack, not attrs_obstack.
17959
342b8b6e
AD
179602001-10-04 Akim Demaille <akim@epita.fr>
17961
17962 Merge in the branch 1.29.
17963
17964 * src/reader.c (packsymbols): Use a temporary obstack for
17965 `%%tokendef', since output_stack is already used elsewhere.
17966
17967 2001-10-02 Akim Demaille <akim@epita.fr>
17968
17969 Bump 1.29d.
17970
17971 2001-10-02 Akim Demaille <akim@epita.fr>
17972
17973 Version 1.29c.
17974
17975 2001-10-02 Akim Demaille <akim@epita.fr>
17976
17977 * tests/regression.at (Invalid CPP headers): New.
17978 From Alexander Belopolsky.
17979 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
17980
17981 2001-10-02 Akim Demaille <akim@epita.fr>
17982
17983 * tests/regression.at (Invalid input): New.
17984 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
17985 Reported by Shura.
17986
17987 2001-10-02 Akim Demaille <akim@epita.fr>
17988
17989 * tests/calc.at: Now that --debug works, the tests must be adjusted.
17990
17991 2001-10-02 Akim Demaille <akim@epita.fr>
17992
17993 * src/output.c (output_parser): Assert `skeleton'.
17994 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
17995 systems.
17996 From Shura.
17997
17998 2001-10-01 Marc Autret <autret_m@epita.fr>
17999
18000 * src/lex.h: Echo modifications.
18001 * src/lex.c (unlex): Parameter is now token_t.
18002 From Hans Aberg.
18003
18004 2001-10-01 Marc Autret <autret_m@epita.fr>
18005
18006 * src/main.c: Include lex.h.
18007 From Hans Aberg.
18008
18009 2001-09-29 Akim Demaille <akim@epita.fr>
18010
18011 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
18012
18013 2001-09-28 Akim Demaille <akim@epita.fr>
18014
18015 * tests/testsuite.at: Update to newer Autotest.
18016 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
18017
18018 2001-09-27 Akim Demaille <akim@epita.fr>
18019
18020 Position independent wrapper.
18021
18022 * tests/bison: Remove.
18023 * tests/bison.in: New.
18024 * configure.in: Adjust.
18025
18026 2001-09-27 Paul Eggert <eggert@twinsun.com>
18027
18028 Port quotearg fixes from tar 1.13.24.
18029
18030 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
18031 tm to be declared.
18032 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
18033 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
18034
18035 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
18036 * m4/mbrtowc.m4: New file.
18037 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
18038 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
18039
18040 2001-09-27 Akim Demaille <akim@epita.fr>
18041
18042 Bump to 1.29c.
18043
18044 2001-09-27 Akim Demaille <akim@epita.fr>
18045
18046 Version 1.29b.
18047
18048 2001-09-25 Akim Demaille <akim@epita.fr>
18049
18050 * src/system.h: Include `xalloc.h'.
18051 Remove it from the C files.
18052 * src/files.c (output_files): Free the obstacks.
18053 * src/lex.c (init_lex): Rename as...
18054 (lex_init): this.
18055 (lex_free): New.
18056 * src/main.c (main): Use it.
18057
18058 2001-09-24 Marc Autret <autret_m@epita.fr>
18059
18060 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
18061 to output informations in fout (FILE*).
18062 (open_graph, close_graph): Likewise.
18063 (output_graph, output_edge, output_node): Likewise.
18064 * src/vcg.h: Update function prototypes.
18065 * src/print_graph.c (print_graph): Open output graph file.
18066 (print_actions): Adjust.
18067 * src/files.h: Remove extern declaration.
18068 * src/files.c: Remove graph_obstack declaration.
18069 (open_files): Remove graph_obstack initialization.
18070 (output_files): Remove graph_obstack saving.
18071
18072 2001-09-24 Marc Autret <autret_m@epita.fr>
18073
18074 * src/files.c (compute_output_file_names): Fix.
18075
18076 2001-09-24 Marc Autret <autret_m@epita.fr>,
18077 Akim Demaille <akim@epita.fr>
18078
18079 * src/reader.c (reader): Remove call to free_symtab ().
18080 * src/main.c (main): Call it here.
18081 Include symtab.h.
18082 * src/conflicts.c (initialize_conflicts): Rename as...
18083 (solve_conflicts): this.
18084 * src/print.c (print_core, print_actions, print_state)
18085 (print_grammar): Dump to a file instead a `output_obstack'.
18086 (print_results): Dump `output_obstack', and then proceed with the
18087 FILE *.
18088 * src/files.c (compute_output_file_names, close_files): New.
18089 (output_files): Adjust.
18090 * src/main.c (main): Adjust.
18091
18092 2001-09-23 Marc Autret <autret_m@epita.fr>
18093
18094 * src/files.c (compute_header_macro): Computes header macro name
18095 from spec_defines_file when given.
18096
18097 2001-09-23 Marc Autret <autret_m@epita.fr>
18098
18099 * src/files.c (output_files): Add default extensions.
18100
18101 2001-09-22 Akim Demaille <akim@epita.fr>
18102
18103 * src/conflicts.c (finalize_conflicts): Rename as...
18104 (free_conflicts): this.
18105
18106 2001-09-22 Akim Demaille <akim@epita.fr>
18107
18108 * src/gram.c (gram_free): Rename back as...
18109 (dummy): this.
18110 (output_token_translations): Free `token_translations'.
18111 * src/symtab.c (free_symtab): Free the tag field.
18112
18113 2001-09-22 Akim Demaille <akim@epita.fr>
18114
18115 Remove `translations' as it is always set to true.
18116
18117 * src/gram.h: Adjust.
18118 * src/reader.c (packsymbols, parse_token_decl): Adjust
18119 * src/print.c (print_grammar): Adjust.
18120 * src/output.c (output_token_translations): Adjust.
18121 * src/lex.c (lex): Adjust.
18122 * src/gram.c: Be sure the set pointers to NULL.
18123 (dummy): Rename as...
18124 (gram_free): this.
18125
18126 2001-09-22 Akim Demaille <akim@epita.fr>
18127
18128 * configure.in: Invoke AM_LIB_DMALLOC.
18129 * src/system.h: Use dmalloc.
18130 * src/LR0.c: Be sure to have pointers initialized to NULL.
18131 (allocate_itemsets): Allocate kernel_items only if needed.
18132
18133 2001-09-22 Akim Demaille <akim@epita.fr>
18134
18135 * configure.in: Bump to 1.29b.
18136 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
18137 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
18138 need xmalloc.c in calc.y.
18139 From Pascal Bart.
18140
18141 2001-09-21 Akim Demaille <akim@epita.fr>
18142
18143 Version 1.29a.
18144 * Makefile.maint, config/config.guess, config/config.sub,
18145 * config/missing: Update from masters.
18146 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
18147 upon package.m4.
18148 * configure.in (ALL_LINGUAS): Add `tr'.
18149
18150 2001-09-21 Akim Demaille <akim@epita.fr>
18151
18152 * tests/Makefile.am (package.m4): Move to...
18153 ($(srcdir)/$(TESTSUITE)): here.
18154
18155 2001-09-20 Akim Demaille <akim@epita.fr>
18156
18157 * src/complain.c: No longer try to be standalone: use system.h.
18158 Don't assume __STDC__ is defined to 1. Just test if it is defined.
18159 * src/complain.h: Likewise.
18160 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
18161 Remove the unused variable `n'.
18162 From Albert Chin-A-Young.
18163
18164 2001-09-18 Marc Autret <autret_m@epita.fr>
18165
18166 * doc/bison.1: Update.
18167 * doc/bison.texinfo (Bison Options): Update --defines and --graph
18168 descriptions.
18169 (Option Cross Key): Update.
18170 Add --graph.
18171
18172 2001-09-18 Marc Autret <autret_m@epita.fr>
18173
18174 * tests/regression.at: New test (comment in %union).
18175
18176 2001-09-18 Marc Autret <autret_m@epita.fr>
18177
18178 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
18179 do that.
18180 Reported by Keith Browne.
18181
18182 2001-09-18 Marc Autret <autret_m@epita.fr>
18183
18184 * tests/output.at: Add tests for --defines and --graph.
18185
18186 2001-09-18 Marc Autret <autret_m@epita.fr>
18187
18188 * tests/output.at: Removes tests of %{header,src}_extension features.
18189
18190 2001-09-18 Akim Demaille <akim@epita.fr>
18191
18192 * tests/Makefile.am (package.m4): New.
18193 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
18194 (_AT_CHECK_CALC_ERROR): Likewise.
18195 Factor the `, ' part of verbose error messages.
18196
18197 2001-09-18 Marc Autret <autret_m@epita.fr>
18198
18199 * src/getargs.c (longopts): Declare --defines and --graph as options
18200 with optional arguments.
18201 * src/files.h: Add extern declarations.
18202 * src/files.c (spec_graph_file, spec_defines_file): New.
18203 (output_files): Update.
18204 Remove CPP-outed code.
18205
18206 2001-09-18 Marc Autret <autret_m@epita.fr>
18207
18208 Turn off %{source,header}_extension feature.
18209
18210 * src/files.c (compute_exts_from_gf): Update.
18211 (compute_exts_from_src): Update.
18212 (output_files): CPP-out useless code.
18213 * src/files.h: Remove {header,source}_extension extern declarations.
18214 * src/reader.c (parse_dquoted_param): CPP-out.
18215 (parse_header_extension_decl): Remove.
18216 (parse_source_extension_decl): Remove.
18217 (read_declarations): Remove cases tok_{hdrext,srcext}.
18218 * src/lex.c (percent_table): Remove {header,source}_extension entries.
18219 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
18220
18221 2001-09-10 Akim Demaille <akim@epita.fr>
18222
18223 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
18224 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
18225 (AT_CHECK_OUTPUT): this.
18226 Merely check ls' exit status, its output is useless.
18227
18228 2001-09-10 Akim Demaille <akim@epita.fr>
18229
18230 * tests/calc.at: Use m4_match.
18231 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
18232
18233 2001-09-10 Marc Autret <autret_m@epita.fr>,
18234 Akim Demaille <akim@epita.fr>
18235
18236 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
18237 enum color_e.
18238 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
18239 to `normal'.
18240 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
18241 * src/lex.h: Adjust prototype.
18242 (token_t): Add `tok_undef'.
18243 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
18244 (parse_percent_token): Now returns token_t.
18245 Add default statement in switch.
18246 (lex): Separate `c' as an input variable, from the token_t result
18247 part.
18248 (unlexed): Is a token_t.
18249
18250 2001-09-10 Akim Demaille <akim@epita.fr>
18251
18252 * configure.in: Bump to 1.29a.
18253
18254 2001-09-07 Akim Demaille <akim@epita.fr>
18255
18256 Version 1.29.
18257
18258 2001-08-30 Akim Demaille <akim@epita.fr>
18259
18260 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
18261 * m4/atconfig.m4: Remove.
18262 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
18263 * tests/bison: New.
18264 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
18265 m4_if, m4_patsubst, and m4_regexp.
18266 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
18267 `input' file instead of echo.
18268
18269 2001-08-29 Akim Demaille <akim@epita.fr>
18270
18271 Bump to 1.28e.
18272
18273 2001-08-29 Akim Demaille <akim@epita.fr>
18274
18275 Version 1.28d.
18276
18277 2001-08-29 Paul Eggert <eggert@twinsun.com>
18278
18279 * src/bison.simple (yyparse): Don't take the address of an
18280 item before the start of an array, as that doesn't conform to
18281 the C Standard.
18282
18283 2001-08-29 Robert Anisko <anisko_r@epita.fr>
18284
18285 * doc/bison.texinfo (Location Tracking Calc): New node.
18286
18287 2001-08-29 Paul Eggert <eggert@twinsun.com>
18288
18289 * src/output.c (output): Do not define const, as this now
18290 causes more problems than it cures.
18291
18292 2001-08-29 Akim Demaille <akim@epita.fr>
18293
18294 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
18295 the nodes.
18296 Be sure to tag the `detailmenu'.
18297
18298 2001-08-29 Akim Demaille <akim@epita.fr>
18299
18300 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
18301 download in a tmp dir.
18302
18303 2001-08-28 Marc Autret <autret_m@epita.fr>
18304
18305 * config/depcomp: New file.
18306
18307 2001-08-28 Marc Autret <autret_m@epita.fr>
18308
18309 * doc/bison.1 (mandoc): Adjust.
18310 From Juan Manuel Guerrero.
18311
18312 2001-08-28 Marc Autret <autret_m@epita.fr>
18313
18314 * src/print_graph.c (print_state): Fix.
18315
18316 2001-08-27 Marc Autret <autret_m@epita.fr>
18317
18318 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
18319 char * members.
18320 Echo modifications to the functions prototypes.
18321 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
18322
18323 2001-08-27 Marc Autret <autret_m@epita.fr>
18324
18325 * src/vcg.c: Include `xalloc.h'.
18326 (add_colorentry): New.
18327 (add_classname): New.
18328 (add_infoname): New.
18329 * src/vcg.h: Add new prototypes.
18330
18331 2001-08-27 Akim Demaille <akim@epita.fr>
18332
18333 * Makefile.maint: Sync. again with CVS Autoconf.
18334
18335 2001-08-27 Akim Demaille <akim@epita.fr>
18336
18337 * Makefile.maint: Formatting changes.
18338 (po-update, cvs-update, update): New targets.
18339 (AMTAR): Remove.
18340
18341 2001-08-27 Akim Demaille <akim@epita.fr>
18342
18343 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
18344 * Makefile.maint: Sync. with CVS Autoconf.
18345
18346 2001-08-27 Marc Autret <autret_m@epita.fr>
18347
18348 * src/vcg.h (struct infoname_s): New.
18349 (struct colorentry_s): New.
18350 (graph_s): New fields {vertical,horizontal}_order in structure.
18351 Add `infoname' field.
18352 Add `colorentry' field;
18353 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
18354 (G_HORIZONTAL_ORDER): New.
18355 (G_INFONAME): New.
18356 (G_COLORENTRY): New.
18357 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
18358 Add output of `infoname'.
18359 Add output of `colorentry'.
18360
18361 2001-08-27 Marc Autret <autret_m@epita.fr>
18362
18363 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
18364 This one shadowed a global parameter.
18365
18366 2001-08-24 Marc Autret <autret_m@epita.fr>
18367
18368 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
18369 instead of `unsigned'.
18370 (print_state): Do not call obstack_object_size () in obstack_grow ()
18371 to avoid macro variables shadowing.
18372
18373 2001-08-23 Marc Autret <autret_m@epita.fr>
18374
18375 * src/lex.c (percent_table): Typo: s/naem/name/.
18376 Add graph option.
18377 Normalize new options declarations.
18378
18379 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
18380
18381 * tests/suite.at: Exercise %header_extension and %source_extension.
18382
18383 2001-08-16 Marc Autret <autret_m@epita.fr>
18384
18385 * src/reader.c (parse_dquoted_param): New.
18386 (parse_header_extension_decl): Use it.
18387 (parse_source_extension_decl): Likewise.
18388
18389 2001-08-16 Marc Autret <autret_m@epita.fr>
18390
18391 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
18392 (get_xxxx_str): Use assert () instead of complain ().
18393 Remove return invokations in default cases.
18394 (get_decision_str): Modify default behaviour. Remove second argument.
18395 Echo modifications on calls.
18396 (output_graph): Fix.
18397
18398 2001-08-16 Marc Autret <autret_m@epita.fr>
18399
18400 * src/getargs.c (usage): Update with ``-g, --graph''.
18401
18402 2001-08-16 Marc Autret <autret_m@epita.fr>
18403
18404 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
18405 (Option Cross Key): Likewise.
18406 * doc/bison.1: Update.
18407
1c8c2190
PB
184082001-09-25 Pascal Bart <pascal.bart@epita.fr>
18409
18410 * src/output.c (output_master_parser): Don't finish action_obstack.
18411 (output_parser): Don't care about the muscle action, here.
18412 (prepare): Copy the action_obstack in the action muscle.
18413 (output): Free action_obstack.
18414
180d45ba
PB
184152001-09-23 Pascal Bart <pascal.bart@epita.fr>
18416
18417 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
18418 will contain `%union' declaration.
18419 (parse_union_decl): Delete #line directive output.
18420 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
18421 informations about %union.
18422 (parse_union_decl): Copy the union_obstack in the muscle stype.
18423 * src/bison.simple: Add new #line directive.
18424 Add typdef %%stype YYSTYPE.
18425
c51d1a19
PB
184262001-09-23 Pascal Bart <pascal.bart@epita.fr>
18427
18428 * src/bison.simple: Add new `#line' directive.
18429
6f9344da
PB
184302001-09-22 Pascal Bart <pascal.bart@epita.fr>
18431
18432 * src/bison.simple: New `#line' directive.
18433 * src/output.c (output_parser): Support new dynamic muscle input_line.
18434
652def80
MA
184352001-09-22 Marc Autret <autret_m@epita.fr>
18436
18437 * src/output.c (output_master_parser): New.
18438 (output_parser): Be more re-entrant.
18439
25b222fa
MA
184402001-09-21 Marc Autret <autret_m@epita.fr>
18441
18442 * src/reader.c (copy_definition, parse_union_decl): Update and use
18443 `linef' muscle.
18444 (copy_action): Likewise.
18445 Use obstack_1grow ().
18446 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
18447
6bc35ae5
MA
184482001-09-21 Marc Autret <autret_m@epita.fr>
18449
18450 * src/options.c (option_table): Adjust.
18451 * src/lex.c (parse_percent_token): Fix.
18452
c0629aa1
PB
184532001-09-20 Pascal Bart <pascal.bart@epita.fr>
18454
18455 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 18456
82b6d266
PB
184572001-09-20 Pascal Bart <pascal.bart@epita.fr>
18458
18459 * src/lex.c (parse_percent_token): Change type of variable `tx', which
18460 is now an option_table_struct*.
18461 (option_strcmp): New function option_strcmp.
18462 (parse_percent_token): Call option_strcmp.
18463 * src/getargs.c (xalloc.h, options.h): Include it.
18464 (getargs): Call create_long_option_table.
18465 (getargs): Free longopts at the end of the function.
18466 (shortopts): Move in options.c.
18467 * src/options.c (create_long_option_table): New function. Convert
18468 information from option_table to option structure.
18469 * src/reader.c (options.h): Include it.
18470
18471 * src/Makefile.am: Adjust.
18472 * src/options.c (option_table): Create from longopts and percent_table.
18473 * src/getargs.c (longopts): Delete.
18474 * src/lex.c (struct percent_table_struct): Delete.
18475 (percent_table): Delete.
18476 (options.h): Include it.
18477 * src/options.c: Create.
18478 * src/options.h: Create.
18479 Declare enum opt_access_e.
18480 Define struct option_table_struct.
18481
75f5aaea
MA
184822001-09-20 Marc Autret <autret_m@epita.fr>
18483
18484 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
18485 sections of Bison.
18486
f508cb0a
PB
184872001-09-19 Pascal Bart <pascal.bart@epita.fr>
18488
18489 * src/bison.simple: s/%%filename/%%skeleton.
18490 * src/muscle_tab.c (getargs.h): Include it.
18491 (muscle_init): Insert new muscle skeleton.
18492
13105fc1
PB
184932001-09-18 Pascal Bart <pascal.bart@epita.fr>
18494
18495 * src/output.c (output_parser): Delete unused variable actions_dumped.
18496
b0c4483e
PB
184972001-09-07 Pascal Bart <pascal.bart@epita.fr>
18498
18499 * src/output.c (output): Delete call to reader_output_yylsp.
18500 * src/reader.c (reader): Likewise.
ba0fe3c7 18501 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 18502
11d82f03
MA
185032001-09-02 Marc Autret <autret_m@epita.fr>
18504
18505 * src/reader.c: Include muscle_tab.h.
18506 (parse_union_decl): Update.
18507 (parse_macro_decl): Rename parse_muscle_decl.
18508 Update to use renamed functions and variable.
18509 (read_declarations, copy_action, read_additionnal_code, : Updated
18510 with correct variables and functions names.
18511 (packsymbols, reader): Likewise.
342b8b6e 18512
11d82f03 18513 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 18514
11d82f03
MA
18515 * src/output.c: Include muscle_tab.h
18516 In all functions using macro_insert, change by using muscle_insert ().
18517 (macro_obstack): Rename muscle_obstack.
18518 Echo modifications in the whole file.
18519 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
18520 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
18521 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
18522
18523 * src/muscle_tab.h: Update double inclusion macros.
18524 (macro_entry_s): Rename muscle_entry_s.
18525 Update prototypes.
342b8b6e 18526
11d82f03
MA
18527 * src/muscle_tab.c: Include muscle_tab.h.
18528 Rename macro_tabble to muscle_table.
18529 (mhash1, mhash2, mcmp): Use muscle_entry.
18530 (macro_init): Rename muscle_init. Update.
18531 (macro_insert): Rename muscle_insert. Update.
18532 (macro_find): Rename muscle_find. Update.
18533
18534 * src/main.c: Include muscle_tab.h.
18535 (main): Call muscle_init ().
18536 * src/Makefile.am (bison_SOURCES): Echo modifications.
18537
93a37297
MA
185382001-09-02 Marc Autret <autret_m@epita.fr>
18539
f753cd62 18540 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 18541
f753cd62
MA
18542 * src/muscle_tab.c, src/muscle_tab.h: Add files.
18543
185442001-09-02 Marc Autret <autret_m@epita.fr>
18545
18546 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 18547
682d48cd
PB
185482001-09-01 Pascal Bart <pascal.bart@epita.fr>
18549
342b8b6e 18550 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
18551 filename.
18552
087c8fda
MA
185532001-09-01 Marc Autret <autret_m@epita.fr>
18554
18555 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
18556 to an explicit value to activate the feature. We do it here.
18557
dda680cb
PB
185582001-08-31 Pascal Bart <pascal.bart@epita.fr>
18559
18560 * src/output.c (prepare): Delete the `filename' muscule insertion.
18561 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
18562 (parse_union_decl): Likewise.
18563 * src/macrotab.c (macro_init): Initialize filename by infile.
18564
9e644e64
MA
185652001-08-31 Marc Autret <autret_m@epita.fr>
18566
18567 * src/bison.simple (YYLSP_NEEDED): New definition.
18568 * src/output.c (prepare): Add macro insertion of `locations_flag'
18569
17da6427
PB
185702001-08-31 Pascal Bart <pascal.bart@epita.fr>
18571
18572 * src/output.c (prepare): Delete insertion of previous muscles,
18573 and insert the `prefix' muscles.
18574 * src/macrotab.c (macro_init): Likewise.
18575 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 18576 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
18577 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
18578 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 18579 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
18580 name_prefix.
18581
e8cb70b9
PB
185822001-08-31 Pascal Bart <pascal.bart@epita.fr>
18583
18584 * src/main.c (main): Standardize.
18585 * src/output.c (output_table_data, output_parser): Likewise.
18586 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
18587
63c2d5de
MA
185882001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
18589
342b8b6e 18590 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
18591 %%epilogue.
18592 * src/output.c (output): Rename %%declarations to %%prologue.
18593 * src/bison.simple: Echo modifications.
342b8b6e 18594
d8cb5183
MA
185952001-08-31 Marc Autret <autret_m@epita.fr>
18596
18597 * src/reader.c (readgram): CleanUp.
18598 (output_token_defines): Likewise.
18599 (packsymbols): Likewise.
18600 (reader): Likewise.
18601 * src/output.c (output): CPP-out useless code.
18602
6c686258
PB
186032001-08-31 Pascal Bart <pascal.bart@epita.fr>
18604
342b8b6e 18605 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
18606 output_trailers and output_headers.
18607 * src/output.h: Remove obsolete functions prototypes of output_headers
18608 and output_trailers.
18609
8f451ef7
PB
186102001-08-30 Pascal Bart <pascal.bart@epita.fr>
18611
18612 * src/main.c: Include macrotab.h.
342b8b6e 18613 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
18614 Adjust functions prototypes.
18615 * src/macrotab.c (macro_insert): Constify key and value.
18616 (macro_find): Constify key.
18617 (macro_insert): Include 'xalloc.h'
18618 (macro_insert): Use XMALLOC.
18619 (macro_find): Constify return value.
18620 * src/output.c (output_table_data): Rename table to table_data.
18621 (output_parser): Constify macro_key, macro_value.
18622
997b6fd0 186232001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
18624
18625 * src/reader.c (parse_skel_decl): New.
342b8b6e 18626 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
18627 * src/lex.h (token_t): New token `tok_skel'.
18628 * src/lex.c (percent_table): Add skeleton option entry.
18629 Standardize.
18630
ff48177d
MA
186312001-08-29 Marc Autret <autret_m@epita.fr>
18632
18633 * src/bison.simple: Add %%user_code directive at the end.
18634 * src/reader.c (read_additionnal_code): New.
18635 (reader): Use it.
18636 * src/output.c (output_program): Remove.
18637 (output): Update.
18638
b33160bf
MA
186392001-08-28 Marc Autret <autret_m@epita.fr>
18640
18641 * src/output.c (output_actions): Clean up.
4e5caae2 18642 (output_gram): CPP-out useless code.
b33160bf
MA
18643 * src/reader.c (reader): Clean up, CPP-out useless code.
18644
d1a2daf7
PB
186452001-08-28 Pascal Bart <pascal.bart@epita.fr>
18646
342b8b6e 18647 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 18648 directive.
d1a2daf7
PB
18649 * src/bison.simple: Add `%%definitions'.
18650
2b763dfe
MA
186512001-08-28 Marc Autret <autret_m@epita.fr>
18652
18653 * config/depcomp: New file.
18654
f1a87ef6
PE
186552001-08-27 Paul Eggert <eggert@twinsun.com>
18656
18657 * src/bison.simple (yyparse): Don't take the address of an
18658 item before the start of an array, as that doesn't conform to
18659 the C Standard.
18660
82e236e2
RA
186612001-08-27 Robert Anisko <robert.anisko@epita.fr>
18662
f1a87ef6 18663 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
18664 obstack. It was done too late here.
18665
18666 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
18667 completely wrong.
18668 (reader): Initialize the macro obstack here, since we need it to grow
18669 '%define' directives.
18670
18671 * src/reader.h: Declare the macro obstack as extern.
18672
b0cfa28a
RA
186732001-08-27 Robert Anisko <robert.anisko@epita.fr>
18674
18675 * src/output.c (output_parser): Fix. Store single '%' characters in
18676 the output obstack instead of throwing them away.
18677
6fc74234
AD
186782001-08-27 Akim Demaille <akim@epita.fr>
18679
18680 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
18681
9c76d118
RA
186822001-08-25 Robert Anisko <robert.anisko@epita.fr>
18683
18684 * lib/Makefile.am: Adjust.
18685
a8289c62
RA
186862001-08-25 Robert Anisko <robert.anisko@epita.fr>
18687
18688 * src/bison.simple: Update and add '%%' directives.
18689
b6610515
RA
186902001-08-25 Robert Anisko <robert.anisko@epita.fr>
18691
18692 * src/reader.c (reader): Remove calls to 'output_headers' and
18693 'output_trailers'. Remove some C output.
18694 (readgram): Disable a piece of code that was writing a default
18695 definition for 'YYSTYPE'.
18696 (reader_output_yylsp): Remove.
18697 (packsymbols): Output token defintions to a macro.
18698 (copy_definition): Disable C output.
6fc74234 18699
b6610515
RA
18700 * src/reader.c (parse_macro_decl): New function used to parse macro
18701 declarations.
18702 (copy_string2): Put the body of copy_string into this new function.
18703 Add a parameter to let the caller choose whether he wants to copy the
18704 string delimiters or not.
18705 (copy_string): Be a simple call to copy_string2 with the last argument
18706 bound to true.
18707 (read_declarations): Add case for macro definition.
18708 (copy_identifier): New.
6fc74234 18709 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
18710 rather than lex.
18711
26f609ff
RA
187122001-08-25 Robert Anisko <robert.anisko@epita.fr>
18713
18714 * src/output.c (prepare): Add prefixed names.
18715 (output_parser): Output semantic actions.
18716 (output_parser): Fix bug on '%%line' directives.
6fc74234 18717
26f609ff
RA
18718 * src/output.c (output_headers): Remove. The C code printed by this
18719 function should now be in the skeletons.
18720 (output_trailers): Remove.
18721 (output): Disable call to 'reader_output_yylsp'.
18722 (output_rule_data): Do not output tables to the table obstack.
18723
18724 * src/output.c: Remove some C dedicated output.
18725 Improve the use of macro and output obstacks.
18726 (output_defines): Remove.
6fc74234 18727
26f609ff
RA
18728 * src/output.c (output_token_translations): Associate 'translate'
18729 table with a macro. No output to the table obstack.
18730 (output_gram): Same for 'rhs' and 'prhs'.
18731 (output_stos): Same for 'stos'.
18732 (output_rule_data): Same for 'r1' and 'r2'.
18733 (token_actions): Same for 'defact'.
18734 (goto_actions): Same for 'defgoto'.
18735 (output_base): Same for 'pact' and 'pgoto'.
18736 (output_table): Same for 'table'.
18737 (output_check): Same for 'check'.
6fc74234 18738
26f609ff
RA
18739 * src/output.c (output_table_data): New function.
18740 (output_short_table): Remove.
18741 (output_short_or_char_table): Remove.
6fc74234 18742
26f609ff
RA
18743 * src/output.c (output_parser): Replace most of the skeleton copy code
18744 with something new. Skeletons are now processed character by character
18745 rather than line by line, and Bison looks for '%%' macros. This is the
18746 first step in making Bison's output process (a lot) more flexible.
18747 (output_parser): Use the macro table.
18748
6f43b113
RA
187492001-08-25 Robert Anisko <robert.anisko@epita.fr>
18750
18751 * src/main.c (main): Initialize the macro table.
18752
dd3127cf
RA
187532001-08-25 Robert Anisko <robert.anisko@epita.fr>
18754
18755 * src/lex.c (percent_table): Add tok_define.
18756 * src/lex.h: Add tok_define.
18757
aa321494
RA
187582001-08-25 Robert Anisko <robert.anisko@epita.fr>
18759
18760 * src/macrotab.c: New file.
18761 * src/macrotab.h: New file.
18762 * src/Makefile.am: Update.
18763
68bd3b6b
RA
187642001-08-25 Robert Anisko <robert.anisko@epita.fr>
18765
18766 * lib/hash.c: New file.
18767 * lib/hash.h: New file.
18768 * lib/Makefile.am: Update.
18769
45f8dd1e
AD
187702001-08-15 Akim Demaille <akim@epita.fr>
18771
18772 Version 1.28c.
18773
40a64a7a 187742001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
18775
18776 * src/reader.c (readgram): Indent output macro YYSTYPE.
18777 (packsymbols): Likewise.
18778 (output_token_defines): Likewise.
18779 * src/files.c: Standardize.
18780 (compute_header_macro): New.
18781 (defines_obstack_save): New. Use compute_header_macro.
18782 (output_files): Update. Use defines_obstack_save.
18783
f9a8293a
AD
187842001-08-15 Akim Demaille <akim@epita.fr>
18785
18786 * doc/bison.texinfo (Table of Symbols): Document
18787 YYSTACK_USE_ALLOCA.
18788
150ca7a7
AD
187892001-08-15 Akim Demaille <akim@epita.fr>
18790
18791 * missing: Update from CVS Automake.
18792 * config/config.guess, config/config.sub, config/texinfo.tex:
18793 Update from gnu.org.
18794
69b5cec4
AD
187952001-08-15 Akim Demaille <akim@epita.fr>
18796
18797 * Makefile.maint: Sync with CVS Autoconf.
18798
f2b5126e
PB
187992001-08-14 Pascal Bart <pascal.bart@epita.fr>
18800
69b5cec4 18801 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
18802 `fdl.texi'.
18803 * doc/fdl.texi: Add to package.
18804
4ecbf796
MA
188052001-08-14 Marc Autret <autret_m@epita.fr>
18806
18807 Turn on %{source,header}_extension features.
18808
69b5cec4 18809 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
18810 source_extension.
18811 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 18812 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
18813 between options.
18814
95fb5662
MA
188152001-08-14 Marc Autret <autret_m@epita.fr>
18816
18817 * src/files.c (compute_base_names): Add extensions computing when
18818 `--file-prefix' used.
18819 Standardize function calls.
18820
78d09da9
MA
188212001-08-13 Marc Autret <autret_m@epita.fr>
18822
69b5cec4 18823 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
18824 defining it (defined but null disables alloca).
18825
5a009f2c
MA
188262001-08-13 Marc Autret <autret_m@epita.fr>
18827
18828 * src/bison.simple (_yy_memcpy): CPP reformat.
18829
1e41465a
PB
188302001-08-13 Pascal Bart <pascal.bart@epita.fr>
18831
18832 * tests/atconfig.in (CPPFLAGS): Fix.
18833
c67a198d
PB
188342001-08-10 Pascal Bart <pascal.bart@epita.fr>
18835
79282c6c 18836 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
18837 `gpl.texi'.
18838 * doc/gpl.texi: Add to package.
18839
09a6de7e
MA
188402001-08-10 Marc Autret <autret_m@epita.fr>
18841
18842 * src/print_graph.h: Fix.
18843 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
18844
b77b9ee0
AD
188452001-08-10 Akim Demaille <akim@epita.fr>
18846
18847 * src/system.h: Provide default declarations for stpcpy, strndup,
18848 and strnlen.
18849
3e259915
MA
188502001-08-10 Robert Anisko <anisko_r@epita.fr>
18851
18852 * doc/bison.texinfo (Locations): Update @$ stuff.
18853
ca96bc2d
MA
188542001-08-09 Robert Anisko <anisko_r@epita.fr>
18855
18856 * src/bison.simple (YYLLOC_DEFAULT): Update.
18857 (yyparse): Adjust.
18858
fdc6758b
MA
188592001-08-08 Marc Autret <autret_m@epita.fr>
18860
b77b9ee0 18861 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
18862 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
18863 Reported by Fabrice Bauzac.
957d4dbf 18864
600cad3b
MA
188652001-08-08 Marc Autret <autret_m@epita.fr>
18866
18867 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
18868 * src/vcg.c (output_node): Fix.
18869 * src/vcg.h: Cleanup.
18870 * src/print_graph.c: Add comments.
b77b9ee0 18871 (node_output_size): New global variable. Simplify the formatting of
600cad3b 18872 the VCG graph output.
b77b9ee0 18873 (print_actions): Unused code is now used. It notifies the final state
600cad3b 18874 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 18875 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
18876 blue.
18877 Get the current node name and node_obstack by argument.
18878 (node_obstack): New variable.
18879 (print_state): Manage node_obstack.
18880 (print_core): Use node_obstack given by argument.
18881 A node is not only computed here but in print_actions also.
18882 (print_graph): CPP out useless code instead of commenting it.
18883
976e528f
AD
188842001-08-07 Pascal Bart <pascal.bart@epita.fr>
18885
18886 * tests/atconfig.in (CPPFLAGS): Fix.
18887
20e8e5ca
AD
188882001-08-07 Akim Demaille <akim@epita.fr>
18889
18890 * src/print_graph.c (quote): New.
18891 (print_core): Use it.
18892
957d4dbf 188932001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 18894
3e3da797
AD
18895 * src/vcg.c (complain.h): Include it.
18896 Unepitaize `return' invocations.
c4b66126 18897 [NDEBUG] (main): Remove.
79282c6c 18898 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
18899 * src/files.c (open_files): Initialize graph_obstack.
18900 * src/print_graph.c (print_actions): CPP out useless code.
18901 (print_core): Don't output the last `\n' in labels.
18902 Use `quote'.
18903 * src/files.c (output_files): Output the VCG file.
18904 * src/main.c (main): Invoke print_graph ();
3e3da797 18905
957d4dbf 189062001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
18907
18908 Automaton VCG graph output.
18909 Using option ``-g'' or long option ``--graph'', you can generate
18910 a gram_filename.vcg file containing a VCG description of the LALR (1)
18911 automaton of your grammar.
18912
18913 * src/main.c: Call to print_graph() function.
18914 * src/getargs.h: Update.
18915 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
18916 (graph_flag): New flag.
18917 (longopts): Update.
18918 (getargs): Add case `g'.
18919 * src/files.c (graph_obstack): New obstack struct.
18920 (open_files): Initialize new obstack.
18921 (output_files): Saves graph_obstack if required.
18922 * src/files.h (graph_obstack): New extern declaration.
18923 * src/Makefile.am: Add new source files.
18924
927c1557 189252001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
18926
18927 * src/print_graph.c, src/print_graph.h (graph): New.
18928 * src/vcg.h: New file.
18929 * src/vcg.c: New file, VCG graph handling.
18930
7333d403
AD
189312001-08-06 Marc Autret <autret_m@epita.fr>
18932
18933 Add of %source_extension and %header_extension which specify
18934 the source or/and the header output file extension.
18935
18936 * src/files.c (compute_base_names): Remove initialisation of
18937 src_extension and header_extension.
18938 (compute_exts_from_gf): Update.
18939 (compute_exts_from_src): Update.
18940 (output_files): Update.
18941 * src/reader.c (parse_header_extension_decl): New.
18942 (parse_source_extension_decl): New.
18943 (read_declarations): New case statements for the new tokens.
18944 * src/lex.c (percent_table): Add entries for %source_extension
18945 and %header_extension.
18946 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
18947
84163231
AD
189482001-08-06 Marc Autret <autret_m@epita.fr>
18949
18950 * configure.in: Bump to 1.28c.
18951 * doc/bison.texinfo: Texinfo thingies.
18952
8303fc42
AD
189532001-08-04 Pascal Bart <pascal.bart@epita.fr>
18954
18955 * tests/atconfig.in (CPPFLAGS): Add.
18956 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
18957
70a84437
AD
189582001-08-03 Akim Demaille <akim@epita.fr>
18959
18960 Version 1.28b.
18961
2ce10144
AD
189622001-08-03 Akim Demaille <akim@epita.fr>
18963
18964 * tests/Makefile.am (check-local): Ship testsuite.
18965 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
18966 Include `string.h'.
18967
1e3e4bc1
AD
189682001-08-03 Akim Demaille <akim@epita.fr>
18969
18970 * configure.in: Try using -Wformat when compiling.
18971
42b45b7f
AD
189722001-08-03 Akim Demaille <akim@epita.fr>
18973
18974 * configure.in: Bump to 1.28b.
18975
8f13fe33
AD
189762001-08-03 Akim Demaille <akim@epita.fr>
18977
18978 * src/complain.c: Adjust strerror_r portability issues.
18979
b37ba92c
AD
189802001-08-03 Akim Demaille <akim@epita.fr>
18981
18982 Version 1.28a.
18983
b0ce6046
AD
189842001-08-03 Akim Demaille <akim@epita.fr>
18985
18986 * src/getargs.c, src/getarg.h (skeleton)): Constify.
18987 * src/lex.c (literalchar): Avoid name clashes on `buf'.
18988 * src/getargs.c: Include complain.h.
18989 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
18990 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
18991
d01c415b
AD
189922001-08-03 Akim Demaille <akim@epita.fr>
18993
18994 * src/reader.c (readgram): Display hidden chars in error messages.
18995
459dd1a6
AD
189962001-08-03 Akim Demaille <akim@epita.fr>
18997
18998 Update to gettext 0.10.39.
18999
53b74c0c
AD
190002001-08-03 Akim Demaille <akim@epita.fr>
19001
19002 * lib/strspn.c: New.
19003
234a3be3
AD
190042001-08-01 Marc Autret <autret_m@epita.fr>
19005
19006 * doc/bison.texinfo: Update.
19007 * doc/bison.1 (mandoc): Update.
19008 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
19009 * src/files.c: Support output files extensions computing.
19010 (src_extension): New static variable.
19011 (header_extension): New static variable.
19012 (tr): New function.
19013 (get_extension_index): New function, gets the index of an extension
19014 filename in a string.
19015 (compute_exts_from_gf): New function, computes extensions from the
19016 grammar file extension.
19017 (compute_exts_from_src): New functions, computes extensions from the
19018 C source file extension, file given by ``-o'' option.
19019 (compute_base_names): Update.
19020 (output_files): Update.
19021
847bf1f5
AD
190222001-08-01 Robert Anisko <anisko_r@epita.fr>
19023
d995fee7 19024 * doc/bison.texi: Document @$.
847bf1f5
AD
19025 (Locations): New section.
19026
d074a105
AD
190272001-07-18 Akim Demaille <akim@epita.fr>
19028
19029 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
19030 * config/prev-version.txt, config/move-if-change: New.
19031 * Makefile.am: Adjust.
19032
3419715d
AD
190332001-07-08 Pascal Bart <pascal.bart@epita.fr>
19034
19035 * src/bison.simple (yyparse): Suppress warning `comparaison
19036 between signed and unsigned'.
19037
62ab6972
AD
190382001-07-05 Pascal Bart <pascal.bart@epita.fr>
19039
19040 * src/getargs.h (raw_flag): Remove.
19041 * src/getargs.c: Die on `-r'/`--raw'.
19042 * src/lex.c (parse_percent_token): Die on `%raw'.
19043 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
19044 * tests/calc.at: Suppress test with option `--raw'.
19045
1e24cc5b
AD
190462001-07-14 Akim Demaille <akim@epita.fr>
19047
19048 * config/: New.
19049 * configure.in: Require Autoconf 2.50.
19050 Update to gettext 0.10.38.
19051
32dfccf8
AD
190522001-03-16 Akim Demaille <akim@epita.fr>
19053
19054 * doc/bison.texinfo: ANSIfy the examples.
19055
cd5bd6ac
AD
190562001-03-16 Akim Demaille <akim@epita.fr>
19057
19058 * getargs.c (skeleton): New variable.
19059 (longopts): --skeleton is a new option.
19060 (shortopts, getargs): -S is a new option.
19061 * getargs.h: Declare skeleton.
19062 * output.c (output_parser): Use it.
19063
5141b016
AD
190642001-03-16 Akim Demaille <akim@epita.fr>
19065
19066 * m4/strerror_r.m4: New.
19067 * m4/error.m4: Run AC_FUNC_STRERROR_R.
19068 * lib/error.h, lib/error.c: Update.
19069
447992b9
AD
190702001-03-16 Akim Demaille <akim@epita.fr>
19071
19072 * src/getargs.c (longopts): Clean up.
19073
274d42ce
AD
190742001-02-21 Akim Demaille <akim@epita.fr>
19075
19076 * src/reader.c (gensym): `gensym_count' is your own.
19077 Use a static buf to create the symbol name, as token_buffer is no
19078 longer a buffer.
19079
22c821f3
AD
190802001-02-08 Akim Demaille <akim@epita.fr>
19081
19082 * src/conflicts.c (conflict_report): Be sure not to append to res
19083 between two calls, which could happen if both first sprintf were
19084 skipped, but not the first cp += strlen.
19085
18569462
AD
190862001-02-08 Akim Demaille <akim@epita.fr>
19087
19088 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
19089 New, from fileutils 4.0.37.
19090 * configure.in: Require Autoconf 2.49c. I took some time before
19091 making this decision. This is the only way out for portability
19092 issues in Bison, it would mean way too much duplicate effort to
19093 import in Bison features implemented in 2.49c since 2.13.
19094 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
19095
0d8f3c8a
AD
190962001-02-02 Akim Demaille <akim@epita.fr>
19097
19098 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 19099 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 19100
f17bcd1f
AD
191012001-01-19 Akim Demaille <akim@epita.fr>
19102
19103 Get rid of the ad hoc handling of token_buffer in the scanner: use
19104 the obstacks.
19105
19106 * src/lex.c (token_obstack): New.
19107 (init_lex): Initialize it. No longer call...
19108 (grow_token_buffer): this. Remove it.
19109 Adjust all the places which used it to use the obstack.
19110
511e79b3
AD
191112001-01-19 Akim Demaille <akim@epita.fr>
19112
19113 * src/lex.h: Rename all the tokens:
19114 s/\bENDFILE\b/tok_eof/g;
19115 s/\bIDENTIFIER\b/tok_identifier/g;
19116 etc.
19117 Let them be enums, not #define, to ease debugging.
19118 Adjust all the code.
19119
0d6508ef
AD
191202001-01-18 Akim Demaille <akim@epita.fr>
19121
19122 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
19123 * src/lex.c (maxtoken, grow_token_buffer): Static.
19124
6deb4447
AD
191252001-01-18 Akim Demaille <akim@epita.fr>
19126
19127 Since we now use obstacks, more % directives can be enabled.
19128
19129 * src/lex.c (percent_table): Also accept `%yacc',
19130 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
19131 `%debug'.
19132 Handle the actions for `%semantic_parser' and `%pure_parser' here,
19133 instead of returning a token.
19134 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
19135 * src/reader.c (read_declarations): Adjust.
19136 * src/files.c (open_files): Don't call `compute_base_names', don't
19137 compute `attrsfile' since they depend upon data which might be
19138 *in* the input file now.
19139 (output_files): Do it here.
19140 * src/output.c (output_headers): Document the fact that this patch
19141 introduces a guaranteed SEGV for semantic parsers.
19142 * doc/bison.texinfo: Document them.
19143 * tests/suite.at: Exercise these %options.
19144
ff4423cc
AD
191452000-12-20 Akim Demaille <akim@epita.fr>
19146
19147 Also handle the output file (--verbose) with obstacks.
19148
19149 * files.c (foutput): Remove.
19150 (output_obstack): New.
19151 Adjust all dependencies.
19152 * src/conflicts.c: Return a string.
19153 * src/system.h (obstack_grow_string): Rename as...
19154 (obstack_sgrow): this. Be ready to work with non literals.
19155 (obstack_fgrow4): New.
19156
956dba3a
AD
191572000-12-20 Akim Demaille <akim@epita.fr>
19158
19159 * src/files.c (open_files): Fix the computation of short_base_name
19160 in the case of `-o foo.tab.c'.
19161
337bab46
AD
191622000-12-20 Akim Demaille <akim@epita.fr>
19163
19164 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
19165 (copy_dollar): Now that everything uses obstacks, get rid of the
19166 FILE * parameters.
19167
5d3214b8
AD
191682000-12-20 Akim Demaille <akim@epita.fr>
19169
19170 * src/files.c (open_files): Actually the `.output' file is based
19171 on the short_base_name, not base_name.
19172 * tests/suite.at (Checking output file names): Adjust.
19173
29092a57
AD
191742000-12-20 Akim Demaille <akim@epita.fr>
19175
19176 * src/bison.s1: Remove, we now use directly...
19177 * src/bison.simple: this.
19178 * src/Makefile.am: Use pkgdata instead of data.
19179
ea5607fd
AD
191802000-12-20 Akim Demaille <akim@epita.fr>
19181
19182 * src/files.c (guard_obstack): New.
19183 (open_files): Initialize it.
19184 (output_files): Dump it...
19185 * src/files.h: Export it.
19186 * src/reader.c (copy_guard): Use it.
19187
27110317
AD
191882000-12-19 Akim Demaille <akim@epita.fr>
19189
19190 * src/files.c (outfile, defsfile, actfile): Removed as global
19191 vars.
19192 (open_files): Don't compute them.
19193 (output_files): Adjust.
19194 (base_name, short_base_name): Be global.
19195 Adjust dependencies.
19196
19c50364
AD
191972000-12-19 Akim Demaille <akim@epita.fr>
19198
19199 * src/files.c (strsuffix): New.
19200 (stringappend): Be just like strcat but allocate.
19201 (base_names): Eve out from open_files.
19202 Try to simplify the rather hairy computation of base_name and
19203 short_base_name.
19204 (open_files): Use it.
19205 * tests/suite.at (Checking output file names): New test.
19206
573c1d9f
AD
192072000-12-19 Akim Demaille <akim@epita.fr>
19208
19209 * src/system.h (obstack_grow_literal_string): Rename as...
19210 (obstack_grow_string): this.
19211 * src/output.c (output_parser): Recognize `%% actions' instead of
19212 `$'.
19213 * src/bison.s1: s/$/%% actions/.
19214 * src/bison.hairy: Likewise.
19215
ef7ddedd
AD
192162000-12-19 Akim Demaille <akim@epita.fr>
19217
19218 * src/output.c (output_parser): Compute the `#line' lines when
19219 there are.
19220 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
19221 Suggested by Hans Aberg.
19222
ff61dabd
AD
192232000-12-19 Akim Demaille <akim@epita.fr>
19224
19225 Let the handling of the skeleton files be local to the procedures
19226 that use it.
19227
19228 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
19229 longer static.
19230 (fparser, open_extra_files): Remove.
19231 (open_files, output_files): Don't take care of fparser.
19232 * src/files.h: Adjust.
19233 * src/output.c (output_parser): Open and close the file to the
19234 skeleton.
19235 * src/reader.c (read_declarations): When %semantic_parser, open
19236 fguard.
19237
55b96341
AD
192382000-12-19 Akim Demaille <akim@epita.fr>
19239
19240 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
19241 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
19242
358c15b7
AD
192432000-12-19 Akim Demaille <akim@epita.fr>
19244
19245 * src/files.c (open_files): Yipee! We no longer need all the code
19246 looking for `/tmp' since we have no tmp file.
19247
7de3329e
AD
192482000-12-19 Akim Demaille <akim@epita.fr>
19249
19250 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
19251 New macros.
19252 * src/files.c (open_files): Less dependency on MSDOS etc.
19253
3abcd459
AD
192542000-12-14 Akim Demaille <akim@epita.fr>
19255
19256 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
19257 Provide a default definition.
19258 Use it when executing the default @ action.
19259 * src/reader.c (reader_output_yylsp): No longer include
19260 `timestamp' and `text' in the default YYLTYPE.
19261
2a91a95e
AD
192622000-12-12 Akim Demaille <akim@epita.fr>
19263
19264 * src/reader.c (copy_definition, parse_union_decl, copy_action)
19265 (copy_guard): Quote the file names.
19266 Reported by Laurent Mascherpa.
19267
14d3eb9b
AD
192682000-12-12 Akim Demaille <akim@epita.fr>
19269
19270 * src/output.c (output_headers, output_program, output): Be sure
19271 to escape special characters when outputting filenames.
19272 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
19273 (output_headers): Don't depend on them, Use ACTSTR.
19274
d7045ec6
AD
192752000-11-17 Akim Demaille <akim@epita.fr>
19276
19277 * lib/obstack.h: Formatting changes.
19278 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
19279 prevents type checking.
19280 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
19281 cast the value to (void *): assigning a `foo *' to a `void *'
19282 variable is valid.
19283 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
19284 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
19285 append characters.
19286
6fd54b73
AD
192872000-11-17 Akim Demaille <akim@epita.fr>
19288
19289 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
19290 as...
19291 (suite.m4, regression.m4, calc.m4): these.
19292 * tests/atgeneral.m4: Update from CVS Autoconf.
19293
4c50eae6
AD
192942000-11-17 Akim Demaille <akim@epita.fr>
19295
19296 * tests/regression.m4 (%union and --defines): New test,
19297 demonstrating a current bug in the obstack implementation.
19298
a35f64ea
AD
192992000-11-17 Akim Demaille <akim@epita.fr>
19300
19301 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
19302 macros.
19303 Use them to declare the variables which are global or local to
19304 `yyparse'.
19305
7de23534
AD
193062000-11-17 Akim Demaille <akim@epita.fr>
19307
19308 * acconfig.h: Remove, no longer used.
19309
aa7815f5
AD
193102000-11-07 Akim Demaille <akim@epita.fr>
19311
19312 * src: s/Copyright (C)/Copyright/g.
19313
5af1f549
AD
193142000-11-07 Akim Demaille <akim@epita.fr>
19315
19316 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
19317 defining.
19318 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
19319
553e2b22
AD
193202000-11-07 Akim Demaille <akim@epita.fr>
19321
19322 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
19323 Merge in a single CPP if/else.
19324
8a4f41d6
AD
193252000-11-07 Akim Demaille <akim@epita.fr>
19326
19327 * src/output.c (output): Remove useless variables.
19328 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
19329 argument `data' for consistency with the prototypes.
19330 Qualify it `const'.
19331 (obstack_copy, obstack_copy0): Rename the second argument as
19332 `address' for consistency. Qualify it `const'.
19333 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
19334 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
19335 `const' their input argument (`data' or `address').
19336 Adjust the corresponding macros to include `const' in casts.
19337
095a3fb5
AD
193382000-11-03 Akim Demaille <akim@epita.fr>
19339
19340 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
19341 s/PFILE1/BISON_HAIRY/.
19342 Adjust dependencies.
19343
d1cdce7c
AD
193442000-11-03 Akim Demaille <akim@epita.fr>
19345
090c5ebf 19346 For some reason, this was not applied.
d1cdce7c
AD
19347
19348 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
19349 `unlink': it's no longer used.
19350
9311529b
AD
193512000-11-03 Akim Demaille <akim@epita.fr>
19352
19353 * src/files.c (skeleton_find): New function, eved out of...
19354 (open_files, open_extra_files): here.
19355
d8880f69
AD
193562000-11-03 Akim Demaille <akim@epita.fr>
19357
19358 Don't use `atexit'.
19359
19360 * src/files.c (obstack_save): New function.
19361 (done): Rename as...
19362 (output_files): this.
19363 Use `obstack_save'.
19364 * src/main.c (main): Don't use `atexit' to register `done', since
19365 it no longer has to remove tmp files, just call `output_files'
19366 when there are no errors.
19367
0dbb648e
AD
193682000-11-02 Akim Demaille <akim@epita.fr>
19369
19370 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
19371 `unlink': it's no longer used.
19372 * src/files.h: Formatting changes.
19373
896fe5c1
AD
193742000-11-02 Akim Demaille <akim@epita.fr>
19375
19376 Remove the last uses of mktemp and unlink/delete.
19377
19378 * src/files.c (fdefines, ftable): Removed.
19379 (defines_ostack, table_obstack): New.
19380 Adjust dependencies of the former into uses of the latter.
19381 * src/output.c (output_short_or_char_table, output_short_table):
19382 Convert to using obstacks.
19383 * src/reader.c (copy_comment2): Accept one FILE * and two
19384 obstacks.
19385 (output_token_defines, reader_output_yylsp): Use obstacks.
19386 * src/system.h (obstack_fgrow3): New.
1f65350a 19387 * po/POTFILES.in: Adjust.
896fe5c1 19388
dd60faec
AD
193892000-11-01 Akim Demaille <akim@epita.fr>
19390
19391 Change each use of `fattrs' into a use of `attrs_obstack'.
19392
19393 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
19394 * src/files.c (fattrs): Remove.
19395 (attrs_obstack): New.
19396 Adjust all dependencies.
19397 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
19398
8c7ebe49
AD
193992000-11-01 Akim Demaille <akim@epita.fr>
19400
19401 Introduce obstacks.
19402 Change each use of `faction' into a use of `action_obstack'.
19403
19404 * lib/obstack.h, lib/obstack.c: New files.
19405 * src/files.c (faction): Remove.
19406 (action_obstack): New.
19407 Adjust all dependencies.
19408
77aee789
AD
194092000-10-20 Akim Demaille <akim@epita.fr>
19410
19411 * lib/quote.h (PARAMS): New macro. Use it.
19412
43591cec
AD
194132000-10-16 Akim Demaille <akim@epita.fr>
19414
19415 * src/output.c (output_short_or_char_table): New function.
19416 (output_short_table, output_token_translations): Use it.
19417 (goto_actions): Use output_short_table.
19418
1e9798d5
AD
194192000-10-16 Akim Demaille <akim@epita.fr>
19420
19421 * src/symtab.c (bucket_new): New function.
19422 (getsym): Use it.
19423
19424 * src/output.c (output_short_table): New argument to display the
19425 comment associated with the table.
19426 Adjust dependencies.
19427 (output_gram): Use it.
19428 (output_rule_data): Nicer output layout for YYTNAME.
19429
f282676b
AD
194302000-10-16 Akim Demaille <akim@epita.fr>
19431
19432 * src/lex.c (read_typename): New function.
19433 (lex): Use it.
19434 * src/reader.c (copy_dollar): Likewise.
19435
550a72a3
AD
194362000-10-16 Akim Demaille <akim@epita.fr>
19437
19438 * src/reader.c (copy_comment2): Expect the input stream to be on
19439 the `/' which is suspected to open a comment, instead of being
19440 called after `//' or `/*' was read.
19441 (copy_comment, copy_definition, parse_union_decl, copy_action)
19442 (copy_guard): Adjust.
19443
131e2fef
AD
194442000-10-16 Akim Demaille <akim@epita.fr>
19445
19446 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
19447 `read_signed_integer'.
19448
79282c5a
AD
194492000-10-16 Akim Demaille <akim@epita.fr>
19450
19451 * src/reader.c (copy_dollar): New function.
19452 (copy_guard, copy_action): Use it.
19453
ff4a34be
AD
194542000-10-16 Akim Demaille <akim@epita.fr>
19455
19456 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
19457 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
19458 New files, from Fileutils 4.0.27.
19459 * src/main.c (printable_version): Remove.
19460 * src/lex.c, src/reader.c: Use `quote'.
19461
194622000-10-04 Akim Demaille <akim@epita.fr>
19463
19464 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
19465
14ded682
AD
194662000-10-04 Akim Demaille <akim@epita.fr>
19467
19468 * doc/bison.texinfo: Various typos spotted by Neil Booth.
19469
8e03724b
AD
194702000-10-04 Akim Demaille <akim@epita.fr>
19471
19472 When a literal string is used to define two different tokens,
19473 `bison -v' segfaults.
19474 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
19475
19476 * tests/regression.m4: New file.
19477 Include the core of the sample provided by Piotr Gackiewicz.
19478 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
19479 properly.
19480
a9e64249
AD
194812000-10-04 Akim Demaille <akim@epita.fr>
19482
19483 * src/reader.c (parse_expect_decl): Keep `count' within the size
19484 of `buffer'.
19485 From Neil Booth.
19486
da9abf43
AD
194872000-10-02 Paul Eggert <eggert@twinsun.com>
19488
19489 * bison.s1 (yyparse): Assign the default value
19490 unconditionally, to avoid a GCC warning and make the parser a
19491 tad smaller.
19492
c33638bb
AD
194932000-10-02 Akim Demaille <akim@epita.fr>
19494
19495 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
19496 options.
19497
444c570a
AD
194982000-10-02 Akim Demaille <akim@epita.fr>
19499
19500 * src/derives.c, src/print.c, src/reduce.c: To ease the
19501 translation, move some `\n' out of the translated strings.
19502
89cab50d
AD
195032000-10-02 Akim Demaille <akim@epita.fr>
19504
19505 The location tracking mechanism is precious for parse error
19506 messages. Nevertheless, it is enabled only when `@n' is used in
19507 the grammar, which is a different issue (you can use it in error
19508 message, but not in the grammar per se). Therefore, there should
19509 be another means to enable it.
19510
19511 * src/getargs.c (getargs): Support `--locations'.
19512 (usage): Report it.
19513 * src/getargs.h (locationsflag): Export it.
19514 * src/lex.c (percent_table): Support `%locations'.
19515 * src/reader.c (yylsp_needed): Remove this variable, now replaced
19516 with `locationsflag'.
19517 * doc/bison.texinfo: Document `--locations' and `%locations'.
19518 Sort the options.
19519 * tests/calc.m4: Test it.
19520
19521 For regularity of the names, replace each
19522 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
19523 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
19524 In addition replace each `flag' with `_flag'.
19525
d6c2cba0
AD
195262000-10-02 Akim Demaille <akim@epita.fr>
19527
19528 Also test parse error messages, including with YYERROR_VERBOSE.
19529
19530 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
19531 associative).
19532 Use it to check the computations.
19533 Use it to check `nonassoc' is honored.
19534 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
19535 `--yyerror-verbose'.
19536 (_AT_CHECK_CALC): Adjust to this option.
19537 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
19538
5a35a6cb
AD
195392000-10-02 Akim Demaille <akim@epita.fr>
19540
19541 Test also `--verbose', `--defines' and `--name-prefix'. Testing
19542 the latter demonstrates a flaw in the handling of non debugging
19543 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
19544 was used in order to simplify:
19545
19546 #if YYDEBUG
19547 if (yydebug)
19548 {
19549 ...
19550 }
19551 #endif
19552
19553 into
19554
19555 if (yydebug)
19556 {
19557 ...
19558 }
19559
19560 unfortunately this leads to a CPP conflict when
19561 `--name-prefix=foo' is used since it produces `#define yydebug
19562 foodebug'.
19563
19564 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
19565 (YYDPRINTF): New macro.
19566 Spread its use.
19567 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
19568 the bison options.
19569 Also test `--verbose', `--defines' and `--name-prefix'.
19570
71da9eea
AD
195712000-10-02 Akim Demaille <akim@epita.fr>
19572
19573 Improve the readability of the produced parsers.
19574
19575 * src/bison.s1: Formatting changes.
19576 Improve the comment related to the `$' mark.
19577 (yydefault): Don't fall through to `yyresume': `goto' there.
19578 * src/output.c (output_parser): When the `$' is met, skip the end
19579 of its line.
19580 New variable, `number_of_dollar_signs', to check there's exactly
19581 one `$' in the parser skeleton.
19582
95e36146
AD
195832000-10-02 Akim Demaille <akim@epita.fr>
19584
19585 * lib/xstrdup.c: New file, from the fileutils.
19586 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
19587 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
19588 instead of strlen + xmalloc + strcpy.
19589 * src/symtab.c (copys): Remove, use xstrdup instead.
19590
d7020c20
AD
195912000-10-02 Akim Demaille <akim@epita.fr>
19592
19593 * src/gram.h (associativity): New enum type which replaces the
19594 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
19595 `right_assoc', `left_assoc' and `non_assoc'.
19596 Adjust all dependencies.
19597 * src/reader.c: Formatting changes.
19598 (LTYPESTR): Don't define it, use it as a literal in
19599 `reader_output_yylsp'.
19600 * src/symtab.h (symbol_class): New enum type which replaces the
19601 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
19602 `sunknown', `stoken and `snterm'.
19603
1916f98e
AD
196042000-10-02 Akim Demaille <akim@epita.fr>
19605
19606 * src/getargs.c (fixed_outfiles): Rename as...
19607 (yaccflag): for consistency and accuracy.
19608 Adjust dependencies.
19609
d7913476
AD
196102000-10-02 Akim Demaille <akim@epita.fr>
19611
19612 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
19613 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
19614 difficult and introduced a lot of core dump. It turns out that
19615 Bison used an implementation of `xmalloc' based on `calloc', and
19616 at various places it does depend upon the initialization to 0. I
19617 have not tried to isolate the pertinent places, and all the former
19618 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
19619 someone should address this issue.
19620
19621 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
19622 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
19623 files.
19624 Adjust dependencies.
19625 * src/warshall.h: New file.
19626 Propagate.
19627
340ef489
AD
196282000-10-02 Akim Demaille <akim@epita.fr>
19629
19630 Various anti-`extern in *.c' changes.
19631
19632 * src/system.h: Include `assert.h'.
19633
b2ca4022
AD
196342000-10-02 Akim Demaille <akim@epita.fr>
19635
19636 * src/state.h (nstates, final_state, first_state, first_shift)
19637 (first_reduction): Move their exportation from here...
19638 * src/LR0.h: to here.
19639 Adjust dependencies.
19640 * src/getargs.c (statisticsflag): New variable.
19641 Add support for `--statistics'.
19642 Adjust dependencies.
19643
19644 Remove a lot of now useless `extern' statements in most files.
19645
403b315b
AD
196462000-10-02 Akim Demaille <akim@epita.fr>
19647
19648 * src/LR0.h: New file.
19649 Propagate its use.
19650
07a58c13
AD
196512000-10-02 Akim Demaille <akim@epita.fr>
19652
19653 * src/print.h: New file.
19654 Propagate its use.
19655 * src/print.c: Formatting and ordering changes.
19656 (verbose, terse): Replace with...
19657 (print_results): this new function.
19658 Adjust dependencies.
19659
0619caf0
AD
196602000-10-02 Akim Demaille <akim@epita.fr>
19661
19662 * src/conflicts.c (conflict_report): New function.
19663 (conflict_log, verbose_conflict_log): Replace with...
19664 (print_conflicts): this function.
19665 Adjust dependencies.
19666 * src/conflicts.h: New file.
19667 Propagate its inclusion.
19668
3519ec76
AD
196692000-10-02 Akim Demaille <akim@epita.fr>
19670
19671 * src/nullable.h: New file.
19672 Propagate its inclusion.
19673 * src/nullable.c: Formatting changes.
19674
015acc48
AD
196752000-10-02 Akim Demaille <akim@epita.fr>
19676
19677 * src/reduce.h: New file.
19678 Propagate its inclusion.
19679 * src/reduce.c: Topological sort and other formatting changes.
19680 (bool, TRUE, FALSE): Move their definition to...
19681 * src/system.h: here.
19682
8963a27b
AD
196832000-10-02 Akim Demaille <akim@epita.fr>
19684
19685 * src/files.c: Formatting changes.
19686 (tryopen, tryclose, openfiles): Rename as...
19687 (xfopen, xfclose, open_files): this.
19688 (stringappend): static.
19689 * src/files.h: Complete the list of exported symbols.
19690 Propagate its use.
19691
a70083a3
AD
196922000-10-02 Akim Demaille <akim@epita.fr>
19693
19694 * src/reader.h: New file.
19695 Propagate its use instead of tedious list of `extern' and
19696 prototypes.
19697 * src/reader.c: Formatting changes, topological sort,
19698 s/register//.
19699
abadc117
AD
197002000-10-02 Akim Demaille <akim@epita.fr>
19701
19702 * src/lex.h: Prototype `lex.c' exported functions.
19703 * src/reader.c: Adjust.
19704 * src/lex.c: Formatting changes.
19705 (safegetc): Rename as...
19706 (xgetc): this.
19707
720d742f
AD
197082000-10-02 Akim Demaille <akim@epita.fr>
19709
19710 * src/lalr.h: New file.
19711 Propagate its inclusion instead of prototypes and `extern'.
19712 * src/lalr.c: Formatting changes, topological sorting etc.
19713
f2acea59
AD
197142000-10-02 Akim Demaille <akim@epita.fr>
19715
19716 * src/output.c (token_actions): Introduce a temporary array,
19717 YYDEFACT, that makes it possible for this function to use
19718 output_short_table.
19719
d019d655
AD
197202000-10-02 Akim Demaille <akim@epita.fr>
19721
19722 `user_toknums' is output as a `short[]' in `output.c', while it is
19723 defined as a `int[]' in `reader.c'. For consistency with the
19724 other output tables, `user_toknums' is now defined as a table of
19725 shorts.
19726
19727 * src/reader.c (user_toknums): Be a short table instead of an int
19728 table.
19729 Adjust dependencies.
19730
19731 Factor the short table outputs.
19732
19733 * src/output.c (output_short_table): New function.
19734 * src/output.c (output_gram, output_stos, output_rule_data)
19735 (output_base, output_table, output_check): Use it.
19736
6c89f1c1
AD
197372000-10-02 Akim Demaille <akim@epita.fr>
19738
19739 * src/output.c (output): Topological sort of the functions, in
19740 order to get rid of the `static' prototypes.
19741 No longer use `register'.
19742 * src/output.h: New file.
19743 Propagate its inclusion in files explicitly prototyping functions
19744 from output.c.
19745
d9efd181
AD
197462000-09-21 Akim Demaille <akim@epita.fr>
19747
19748 * src/atgeneral.m4: Update from Autoconf.
19749
c29240e7 197502000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
19751
19752 * src/closure.h: New file.
19753 * src/closure.c: Formatting changes, topological sort over the
19754 functions, use of closure.h.
19755 (initialize_closure, finalize_closure): Rename as...
19756 (new_closure, free_closure): these. Adjust dependencies.
19757 * src/LR0.c: Formatting changes, topological sort, use of
19758 cloture.h.
19759 (initialize_states): Rename as...
19760 (new_states): this.
19761 * src/Makefile.am (noinst_HEADERS): Adjust.
19762
499daa50
AD
197632000-09-20 Akim Demaille <akim@epita.fr>
19764
19765 * src/acconfig.h: Don't protect config.h against multiple
19766 inclusion.
19767 Don't define PARAMS.
19768 * src/system.h: Define PARAMS.
19769 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
19770 purpose of config.h. system.h must not try to fix wrong
19771 definitions in config.h.
19772
cc84fd5d
AD
197732000-09-20 Akim Demaille <akim@epita.fr>
19774
19775 * src/derives.h: New file.
19776 * src/main.c, src/derives.h: Use it.
19777 Formatting changes.
19778 * src/Makefile.am (noinst_HEADERS): Adjust.
19779
db5b3a89
AD
197802000-09-20 Akim Demaille <akim@epita.fr>
19781
19782 * tests/atgeneral.m4: Update from Autoconf.
19783 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
19784 (AT_CHECK_CALC): New macros.
19785 Use these macros to test bison with options `', `--raw',
19786 `--debug', `--yacc', `--yacc --debug'.
19787
ceed8467
AD
197882000-09-19 Akim Demaille <akim@epita.fr>
19789
19790 * src/output.c: Formatting changes.
19791 * src/machine.h: Remove, leaving its contents in...
19792 * src/system.h: here.
19793 Include stdio.h.
19794 Adjust all dependencies on stdio.h and machine.h.
19795 * src/getargs.h: New file.
19796 Let all `extern' declarations about getargs.c be replaced with
19797 inclusion of `getargs.h'.
19798 * src/Makefile.am (noinst_HEADERS): Adjust.
19799
19800 * tests/calc.m4 (yyin): Be initialized in main, not on the global
19801 scope.
19802 (yyerror): Returns void, not int.
19803 * doc/bison.texinfo: Formatting changes.
19804
05a1d24b
AD
198052000-09-19 Akim Demaille <akim@epita.fr>
19806
19807 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
19808 portable.
19809
cbd25751
AD
198102000-09-18 Akim Demaille <akim@epita.fr>
19811
19812 * configure.in: Append WARNING_CFLAGS to CFLAGS.
19813 * src/Makefile.am (INCLUDES): Don't.
19814 Be ready to fetch headers in lib/.
19815
13863333
AD
198162000-09-18 Akim Demaille <akim@epita.fr>
19817
19818 * doc/bison.texinfo: Update the copyright.
19819 ANSIfy and GNUify the examples.
19820 Remove the old menu.
19821
0d533154
AD
198222000-09-18 Akim Demaille <akim@epita.fr>
19823
19824 First set of tests: use the `calc' example from the documentation.
19825
19826 * src/bison.s1 (yyparse): Condition the code using `yytname' which
19827 is defined only when YYDEBUG is.
19828 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
19829 * src/files.c (tryopen, tryclose): Formatting changes.
19830 Move to the top and be static.
19831 * src/reader.c (read_signed_integer): Likewise.
19832 * tests/calc.m4: New file.
19833 * Makefile.am, suite.m4: Adjust.
19834 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
19835
e79137ac
AD
198362000-09-18 Akim Demaille <akim@epita.fr>
19837
19838 Add support for an Autotest test suite for Bison.
19839
19840 * m4/m4.m4, m4/atconfig.m4: New files.
19841 * m4/Makefile.am (EXTRA_DIST): Adjust.
19842 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
19843 files.
19844 * src/getargs.c: Display a more standard --version message.
19845 * src/reader.c (reader): Formatting changes.
19846 No longer depend upon VERSION_STRING.
19847 * configure.in: No longer use `dnl'.
19848 Set up the test suite and the new directory `tests/.
19849 (VERSION_STRING): Remove.
19850
27821bff
AD
198512000-04-14 Akim Demaille <akim@epita.fr>
19852
19853 * src/reader.c (copy_comment2): New function, same as former
19854 `copy_comment', but outputs into two FILE *.
19855 (copy_comment): Use it.
19856 (parse_union_decl): Use it.
19857 (get_type, parse_start_decl): Use the same `invalid' message.
19858 (parse_start_decl, parse_union_decl): Use the same `multiple'
19859 message.
19860 (parse_union_decl, copy_guard, copy_action): Use the same
19861 `unmatched' message.
19862 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
19863
cfe5fbc0
AD
198642000-03-31 Akim Demaille <akim@epita.fr>
19865
19866 * src/files.c (tryopen, tryclose): Move to the top.
19867 Be static.
19868
cb7db13e
AD
198692000-03-31 Akim Demaille <akim@epita.fr>
19870
19871 * src/main.c (main): Don't call `done', exit does it.
19872
a0f6b076
AD
198732000-03-31 Akim Demaille <akim@epita.fr>
19874
36281465
AD
19875 * allocate.c: s/return (foo)/return foo/.
19876 * lalr.c: Likewise.
19877 * LR0.c: Likewise.
19878 * output.c: Likewise.
19879 * reader.c: Likewise.
19880 * symtab.c: Likewise.
19881 * vmsgetargs.c: Likewise.
19882
198832000-03-31 Akim Demaille <akim@epita.fr>
19884
19885 Clean up the error reporting functions.
a0f6b076
AD
19886
19887 * src/report.c: New file.
19888 * src/report.h: Likewise.
19889 * src/Makefile.am: Adjust.
19890 * m4/error.m4: New file.
19891 * m4/Makefile.am: Adjust.
19892 * configure.in (jm_PREREQ_ERROR): Call it.
19893 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
19894 Remove.
19895 (fatal, fatals): Remove. All callers use complain.c::fatal.
19896 (warn, warni, warns, warnss, warnss): Remove. All callers use
19897 complain.c::complain.
19898 (toomany): Remove, use fatal instead.
19899 * src/files.c (done): No argument, use complain_message_count.
19900 * src/main.c (main): Register `done' to `atexit'.
19901
19902 * src/getargs.c (usage): More `fputs', less `fprintf'.
19903
18539825
AD
199042000-03-28 Akim Demaille <akim@epita.fr>
19905
19906 * lib/: New directory.
19907 * Makefile.am (SUBDIRS): Adjust.
19908 * configure.in: Adjust.
19909 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
19910 useless.
19911 * src/alloca.c: Moved to lib/.
19912 * src/getopt.c: Likewise.
19913 * src/getopt1.c: Likewise.
19914 * src/getopt.h: Likewise.
19915 * src/ansi2knr.c: Likewise.
19916 * src/ansi2knr.1: Likewise.
19917 * src/Makefile.am: Adjust.
19918 * lib/Makefile.am: New file.
19919
9f306f2a
AD
199202000-03-28 Akim Demaille <akim@epita.fr>
19921
19922 * src/getargs.c (usage): Refresh the help message.
19923
0ba347b6
AD
199242000-03-17 Akim Demaille <akim@epita.fr>
19925
19926 * src/getopt1.c: Updated from textutils 2.0e
19927 * src/getopt.c: Likewise.
19928 * src/getopt.h: Likewise.
19929
dbe7f271
AD
199302000-03-17 Akim Demaille <akim@epita.fr>
19931
19932 * src/Makefile.am (bison.simple): Fix the awk program: quote only
19933 the file name, not the whole `#line LINE FILE'.
19934
75bbe78d
AD
199352000-03-17 Akim Demaille <akim@epita.fr>
19936
19937 On syntax errors, report the token on which we choked.
19938
aa5fd0ee
AD
19939 * src/bison.s1 (yyparse): In the label yyerrlab, when
19940 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 19941
7b306f52
AD
199422000-03-17 Akim Demaille <akim@epita.fr>
19943
aa5fd0ee 19944 * src/reader.c (copy_at): New function.
7b306f52
AD
19945 (copy_guard): Use it.
19946 (copy_action): Use it.
19947
e87b5700
AD
199482000-03-17 Akim Demaille <akim@epita.fr>
19949
19950 Be kind to translators, save some useless translations.
19951
aa5fd0ee 19952 * src/main.c (banner): New function.
e87b5700
AD
19953 (fatal_banner): Use it.
19954 (warn_banner): Use it.
19955
ae3c3164
AD
199562000-03-17 Akim Demaille <akim@epita.fr>
19957
aa5fd0ee
AD
19958 * src/reader.c (copy_definition): Use copy_string and
19959 copy_comment. Removed now unused `match', `ended',
19960 `cplus_comment'.
ae3c3164
AD
19961 (copy_comment, copy_string): Moved, to be visible from
19962 copy_definition.
19963
4dc58e7c
AD
199642000-03-17 Akim Demaille <akim@epita.fr>
19965
aa5fd0ee
AD
19966 * src/reader.c (copy_string): Declare `static inline'. No
19967 problems with inline, since it is checked by configure.
4dc58e7c
AD
19968 (copy_comment): Likewise.
19969
0a6384c4
AD
199702000-03-17 Akim Demaille <akim@epita.fr>
19971
aa5fd0ee 19972 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 19973
3cef001a
AD
199742000-03-17 Akim Demaille <akim@epita.fr>
19975
aa5fd0ee 19976 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
19977 (copy_action): Use it. Removed now unused `match', `ended',
19978 `cplus_comment'.
19979 (copy_guard): Likewise.
19980
ca36d2ef
AD
199812000-03-17 Akim Demaille <akim@epita.fr>
19982
aa5fd0ee 19983 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
19984 (copy_action): Use it.
19985 (copy_guard): Likewise.
19986
6666f98f
AD
199872000-03-17 Akim Demaille <akim@epita.fr>
19988
19989 Change the handling of @s so that they behave exactly like $s.
19990 There is now a pseudo variable @$ (readble and writable), location
19991 of the lhs of the rule (by default ranging from the location of
19992 the first symbol of the rhs, to the location of the last symbol,
19993 or, if the rhs is empty, YYLLOC).
19994
19995 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
19996 yyval.
19997 (yyparse): When providing a default semantic action, provide a
19998 default location action.
19999 (after the $): No longer change `*YYLSP', just stack YYLOC the
20000 same way you stack YYVAL.
20001 * src/reader.c (read_declarations): Use warns.
20002 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
20003 (copy_action, case '@'): Likewise.
20004 Use a standard error message, to save useless work from
20005 translators.
20006
41aca2e0
AD
200072000-03-17 Akim Demaille <akim@epita.fr>
20008
aa5fd0ee
AD
20009 * src/bison.s1: Formatting and cosmetics changes.
20010 * src/reader.c: Likewise.
41aca2e0
AD
20011 Update the Copyright notice.
20012
dc08c1d5
AD
200132000-03-17 Akim Demaille <akim@epita.fr>
20014
aa5fd0ee
AD
20015 * src/bison.s1 (#line): All set to `#line' only, since the
20016 Makefile now handles them.
dc08c1d5 20017
9ee3c97b
AD
200182000-03-16 Akim Demaille <akim@epita.fr>
20019
20020 * src/output.c (output_rule_data): Output the documentation of
20021 some of the tables.
20022 (Copyright notice): Update.
20023 Formatting changes.
20024
0de741ca
AD
200252000-03-16 Akim Demaille <akim@epita.fr>
20026
20027 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
20028 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
20029 One `#if YYDEBUG' remains, since it uses variables which are
20030 defined only if `YYDEBUG != 0'.
20031
bb10be54
AD
200322000-03-16 Akim Demaille <akim@epita.fr>
20033
20034 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
20035 and related variables so that the similarities are highlighted.
20036
b07b484a
AD
200372000-03-16 Akim Demaille <akim@epita.fr>
20038
20039 * src/bison.s1: Properly indent CPP directives.
20040
361f60b3
AD
200412000-03-16 Akim Demaille <akim@epita.fr>
20042
20043 * src/bison.s1: Properly indent the `alloca' CPP section.
20044
8c44d3ec
AD
200452000-03-16 Akim Demaille <akim@epita.fr>
20046
20047 Do not hard code values of directories in `configure.in'.
20048 Update the `configure' tool chain.
20049
20050 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
20051 src/makefile.am.
20052 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
20053 (AC_OUTPUT): Add m4/Makefile.
20054 Bump to bison 1.28a, 1.29 has never been released.
20055 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
20056 handled via src/Makefile.am.
20057 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
20058 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
20059 autoheader.
20060 * Makefile.am (SUBDIRS): Add m4.
20061 (ACLOCAL_AM_FLAGS): New variable.
20062 (AUTOMAKE_OPTIONS): Add check-news.
20063 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
20064 the proper line number and file name.
20065 (DEFS): Propagate the location of bison library files and of the
20066 locale files.
20067 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
20068 builddir.
20069 * acinclude.m4: Remove, replaced by the directory m4.
20070 * m4/Makefile.am (EXTRA_DIST): New variable.
20071 * m4/gettext.m4: New file, from the fileutils.
20072 * m4/lcmessage.m4: Likewise
20073 * m4/progtest.m4: Likewise.
20074 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
20075
f95997e7
AD
200762000-03-10 Akim Demaille <akim@epita.fr>
20077
20078 * src/closure.c:
20079 Formatting changes of various comments.
20080 Respect the GNU coding standards at various places.
20081 Don't use `_()' when no translation is needed.
20082
200831999-12-13 Jesse Thilo <jthilo@gnu.org>
20084
20085 * src/files.c:
20086 OS/2 honors TMPDIR environment variable.
20087
200881999-12-13 Jesse Thilo <jthilo@gnu.org>
20089
20090 * doc/bison.texinfo: Tweaked spelling and grammar.
20091 Updated ISBN.
20092 Removed reference to price of printed copy.
20093 Mention BISON_SIMPLE and BISON_HAIRY.
20094
200951999-12-13 Jesse Thilo <jthilo@gnu.org>
20096
20097 * configure.in, NEWS:
20098 Bison 1.29 released.
20099
201001999-10-27 Jesse Thilo <jthilo@gnu.org>
20101
20102 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
20103 Added reference card.
20104
201051999-07-26 Jesse Thilo <jthilo@gnu.org>
20106
20107 * po/ru.po: Added Russian translation.
20108
201091999-07-26 Jesse Thilo <jthilo@gnu.org>
20110
20111 * configure.in: Added Russian translation.
20112
201131999-07-06 Jesse Thilo <jthilo@gnu.org>
20114
20115 * configure.in, NEWS, README:
20116 Released version 1.28.
20117
201181999-06-14 Jesse Thilo <jthilo@gnu.org>
20119
20120 * src/system.h:
20121 Squashed redefinition warning on some systems.
20122
20123 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
20124 Have configure build version string instead of relying on ANSI string
20125 concatentation.
20126
201271999-06-14 Jesse Thilo <jthilo@gnu.org>
20128
20129 * po/POTFILES.in: Got rid of version.c.
20130
201311999-06-14 Jesse Thilo <jthilo@gnu.org>
20132
20133 * acconfig.h, configure.in:
20134 Have configure build version string instead of relying on ANSI string
20135 concatentation.
20136
201371999-06-08 Jesse Thilo <jthilo@gnu.org>
20138
20139 * doc/bison.1:
20140 Dropped mention of `+' for long-named options.
20141
201421999-05-30 Jesse Thilo <jthilo@gnu.org>
20143
20144 * src/files.c: Added <unistd.h> for unlink().
20145
20146 * src/Makefile.am, src/system.h:
20147 I18n fixes.
20148
201491999-05-30 Jesse Thilo <jthilo@gnu.org>
20150
20151 * README: Added a FAQ list.
20152
20153 * configure.in, acconfig.h:
20154 I18n fixes.
20155
201561999-05-30 Jesse Thilo <jthilo@gnu.org>
20157
20158 * doc/FAQ, doc/Makefile.am:
20159 Added a FAQ list.
20160
201611999-05-19 Jesse Thilo <jthilo@gnu.org>
20162
20163 * src/alloc.h, src/symtab.h, src/version.c:
20164 Protected inclusion of "config.h" with HAVE_CONFIG_H.
20165
201661999-04-18 Jesse Thilo <jthilo@gnu.org>
20167
20168 * src/.cvsignore, src/Makefile.am:
20169 Reorganized: sources in `src', documentation in `doc'.
20170
20171 * src/lex.c (literalchar):
20172 fixed the code for escaping double quotes (thanks
20173 Jonathan Czisny.)
20174
201751999-04-18 Jesse Thilo <jthilo@gnu.org>
20176
20177 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
20178 Adjusted paths to reflect directory reorganization.
20179
201801999-04-18 Jesse Thilo <jthilo@gnu.org>
20181
20182 * doc/.cvsignore, doc/Makefile.am:
20183 Reorganized: sources in `src', documentation in `doc'.
20184
201851999-04-18 Jesse Thilo <jthilo@gnu.org>
20186
20187 * configure.in:
20188 Updated AC_INIT file to reflect directory reorganization.
20189
20190 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
20191 Reorganized: sources in `src', documentation in `doc'.
20192
201931999-04-13 Jesse Thilo <jthilo@gnu.org>
20194
20195 * src/allocate.c:
20196 Don't declare calloc() and realloc() if not necessary.
20197
201981999-04-13 Jesse Thilo <jthilo@gnu.org>
20199
20200 * configure.in, acconfig.h, acinclude.m4:
20201 Don't declare calloc() and realloc() if not necessary.
20202
202031999-03-23 Jesse Thilo <jthilo@gnu.org>
20204
20205 * po/.cvsignore: Added i18n support.
20206
202071999-03-23 Jesse Thilo <jthilo@gnu.org>
20208
20209 * acconfig.h, configure.in, Makefile.am:
20210 Added i18n support.
20211
202121999-03-22 Jesse Thilo <jthilo@gnu.org>
20213
20214 * src/bison.s1: Fixed #line numbers.
20215
202161999-03-15 Jesse Thilo <jthilo@gnu.org>
20217
20218 * po/es.po, po/fr.po, po/nl.po, po/de.po:
20219 Added PO files from Translation Project.
20220
202211999-03-03 Jesse Thilo <jthilo@gnu.org>
20222
20223 * Makefile.am:
20224 Added support for non-ANSI compilers (ansi2knr).
20225
202261999-02-16 Jesse Thilo <jthilo@gnu.org>
20227
20228 * configure.in: Bumped version number to 1.27.
20229
20230 * Makefile.am:
20231 Added `bison.simple' to list of files removed by `make distclean'.
20232
202331999-02-12 Jesse Thilo <jthilo@gnu.org>
20234
20235 * src/files.c, src/files.h:
20236 Defined locations of parser files in config.h instead of Makefile.
20237
202381999-02-12 Jesse Thilo <jthilo@gnu.org>
20239
20240 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
20241 Defined locations of parser files in config.h instead of Makefile.
20242
202431999-02-09 Jesse Thilo <jthilo@gnu.org>
20244
20245 * Makefile.am:
20246 Removed inappropriate use of $< macro.
20247
202481999-02-05 Jesse Thilo <jthilo@gnu.org>
20249
20250 * po/Makefile.in.in, po/POTFILES.in:
20251 Add `po' directory skeleton.
20252
202531999-01-27 Jesse Thilo <jthilo@gnu.org>
20254
20255 * README: Document help-bison list.
20256
20257 * configure.in: Add check for mkstemp().
20258
202591999-01-20 Jesse Thilo <jthilo@gnu.org>
20260
20261 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
20262 Hush a few compiler warnings.
20263
20264 * src/files.c:
20265 Add tryclose(), which verifies that fclose was successful.
20266 Hush a couple of compiler warnings.
20267
202681999-01-20 Jesse Thilo <jthilo@gnu.org>
20269
20270 * Makefile.am, OChangeLog:
20271 ChangeLog is now automatically generated. Include the old version as
20272 OChangeLog.
20273
202741999-01-14 Jesse Thilo <jthilo@gnu.org>
20275
20276 * 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:
20277 Update FSF address.
20278
202791999-01-14 Jesse Thilo <jthilo@gnu.org>
20280
20281 * doc/bison.texinfo: Fix formatting glitch.
20282
20283 * doc/bison.texinfo: Update FSF address.
20284
202851999-01-14 Jesse Thilo <jthilo@gnu.org>
20286
20287 * acconfig.h: Update FSF address.
20288
202891999-01-08 Jesse Thilo <jthilo@gnu.org>
20290
20291 * src/system.h:
20292 Don't define PACKAGE here, since config.h defines it.
20293
202941998-12-30 Jesse Thilo <jthilo@gnu.org>
20295
20296 * src/reader.c: Update copyright date.
20297
20298 * src/main.c:
20299 Ditch sprintf to statically-sized buffers in fatal/warn functions in
20300 favor of output directly to stderr (avoids buffer overruns).
20301
20302 * src/reader.c: Some checks for premature EOF.
20303
20304 * 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:
20305 Use prototypes if the compiler understands them.
20306
20307 * src/files.c: Honor TMPDIR on Unix hosts.
20308 Use prototypes if the compiler understands them.
20309
20310 * src/reader.c:
20311 Fix a couple of buffer overrun bugs.
20312 Use prototypes if the compiler understands them.
20313
20314 * src/system.h: Include unistd.h and ctype.h.
20315 Use #ifdef instead of #if for NLS symbols.
20316
203171998-12-30 Jesse Thilo <jthilo@gnu.org>
20318
20319 * doc/bison.texinfo:
20320 Delete comment "consider using @set for edition number, etc..." since
20321 we now are doing so.
20322
203231998-12-30 Jesse Thilo <jthilo@gnu.org>
20324
20325 * configure.in:
20326 Use prototypes if the compiler understands them.
20327
20328 * NEWS: Document 1.26 highlights.
20329
20330 * Makefile.am: Require Automake 1.3 or later.
20331
20332 * acconfig.h:
20333 Use prototypes if the compiler understands them.
20334
203351998-12-29 Jesse Thilo <jthilo@gnu.org>
20336
20337 * src/version.c:
20338 Use VERSION symbol from automake for version number.
20339
203401998-12-29 Jesse Thilo <jthilo@gnu.org>
20341
20342 * acconfig.h, configure.in, version.cin:
20343 Use VERSION symbol from automake for version number.
20344
203451998-11-28 Jesse Thilo <jthilo@gnu.org>
20346
20347 * Makefile.am:
20348 Distribute original version of simple parser (bison.s1), not built
20349 version (bison.simple).
20350
203511998-11-28 Jesse Thilo <jthilo@gnu.org>
20352
20353 * doc/bison.texinfo: Add info dir entry.
20354
20355 * doc/bison.texinfo:
20356 Let automake put version number into documentation.
20357
203581998-11-26 Jesse Thilo <jthilo@gnu.org>
20359
20360 * src/bison.cld, src/build.com, src/vmshlp.mar:
20361 Add non-RCS files from /gd/gnu/bison.
20362
203631998-11-26 Jesse Thilo <jthilo@gnu.org>
20364
20365 * doc/bison.1:
20366 Document the BISON_HAIRY and BISON_SIMPLE variables.
20367
203681998-11-25 Jesse Thilo <jthilo@gnu.org>
20369
20370 * src/version.c: Build version.c automatically.
20371
20372 * src/reader.c:
20373 Fix token numbering (used to start at 258, not 257).
20374
20375 * src/system.h: Include config.h.
20376
20377 * src/getargs.c: Update bug report address.
20378
20379 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
20380 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
20381
203821998-11-25 Jesse Thilo <jthilo@gnu.org>
20383
20384 * Makefile.am:
20385 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
20386
20387 * configure.in, version.cin:
20388 Build version.c automatically.
20389
20390 * AUTHORS: Add AUTHORS file.
20391
20392 * README: Update bug report address.
20393
20394 * bison.simple:
20395 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
20396
20397 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
20398 Add automake stuff.
20399
204001998-11-25 Jesse Thilo <jthilo@gnu.org>
20401
20402 * doc/bison.texinfo: Clean up some formatting.
20403
204041998-05-05 Richard Stallman <rms@gnu.org>
20405
20406 * doc/bison.texinfo:
20407 Explain better why to make a pure parser.
20408
204091998-01-05 Richard Stallman <rms@gnu.org>
20410
20411 * src/files.c (openfiles):
20412 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
20413 find a temporary directory, if possible. Do not unlink files while
20414 they are open.
20415
204161997-08-25 Richard Stallman <rms@gnu.org>
20417
20418 * src/reader.c (stack_offset;):
20419 Change some warni to warns.
20420
20421 * src/lex.c (literalchar): Use warns, not warni.
20422
204231997-06-28 Richard Stallman <rms@gnu.org>
20424
20425 * src/bison.s1: Add a Bison version comment.
20426
20427 * src/main.c (fatal, warn, berror):
20428 Use program_name.
20429
204301997-06-28 Richard Stallman <rms@gnu.org>
20431
20432 * Makefile.in (bison_version): New variable.
20433 (dist): Use that variable.
20434 (bison.s1): Substitute the Bison version into bison.simple.
20435
20436 * bison.simple: Add a Bison version comment.
20437
204381997-06-18 Richard Stallman <rms@gnu.org>
20439
20440 * src/main.c (fatal, warn, berror):
20441 Make error messages standard.
20442 (toomany): Improve error message text.
20443
20444 * 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:
20445 new.h renamed to alloc.h.
20446
204471997-06-18 Richard Stallman <rms@gnu.org>
20448
20449 * Makefile.in: new.h renamed to alloc.h.
20450
204511997-05-24 Richard Stallman <rms@gnu.org>
20452
20453 * src/lex.c (literalchar):
20454 Fix the code for escaping \, " and '.
20455
20456 (lex): Avoid trouble when there are many chars
20457 to discard in a char literal with just several chars in it.
20458
204591997-05-17 Richard Stallman <rms@gnu.org>
20460
20461 * src/bison.s1:
20462 Use malloc, if using alloca is troublesome.
20463 (YYSTACK_USE_ALLOCA): New flag macro.
20464 Define it for some systems and compilers.
20465 (YYSTACK_ALLOC): New macro.
20466 (yyparse): Use YYSTACK_ALLOC to allocate stack.
20467 If it was malloc'd, free it.
20468
204691997-05-17 Richard Stallman <rms@gnu.org>
20470
20471 * bison.simple:
20472 Use malloc, if using alloca is troublesome.
20473 (YYSTACK_USE_ALLOCA): New flag macro.
20474 Define it for some systems and compilers.
20475 (YYSTACK_ALLOC): New macro.
20476 (yyparse): Use YYSTACK_ALLOC to allocate stack.
20477 If it was malloc'd, free it.
20478
204791997-04-23 Richard Stallman <rms@gnu.org>
20480
20481 * src/bison.s1:
20482 (alloca) [__hpux]: Always define as __builtin_alloca.
20483
204841997-04-23 Richard Stallman <rms@gnu.org>
20485
20486 * bison.simple:
20487 (alloca) [__hpux]: Always define as __builtin_alloca.
20488
204891997-04-22 Richard Stallman <rms@gnu.org>
20490
20491 * src/bison.s1:
20492 [__hpux]: Include alloca.h (right for HPUX 10)
20493 instead of declaring alloca (right for HPUX 9).
20494
20495 * src/bison.s1 (__yy_memcpy):
20496 Declare arg `count' as unsigned int.
20497 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
20498
204991997-04-22 Richard Stallman <rms@gnu.org>
20500
20501 * bison.simple:
20502 [__hpux]: Include alloca.h (right for HPUX 10)
20503 instead of declaring alloca (right for HPUX 9).
20504
20505 * bison.simple (__yy_memcpy):
20506 Declare arg `count' as unsigned int.
20507 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
20508
205091997-01-03 Richard Stallman <rms@gnu.org>
20510
20511 * src/allocate.c: [__STDC__ or _MSC_VER]:
20512 Declare calloc and realloc to return void *.
20513
205141997-01-02 Richard Stallman <rms@gnu.org>
20515
20516 * src/system.h:
20517 [_MSC_VER]: Include stdlib.h and process.h.
20518 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
20519
20520 * src/main.c (main): Return FAILURE as a value.
20521 (printable_version): Declare arg as int, not char.
20522
205231997-01-02 Richard Stallman <rms@gnu.org>
20524
20525 * Makefile.in (dist):
20526 Explicitly check for symlinks, and copy them.
20527
205281996-12-19 Richard Stallman <rms@gnu.org>
20529
20530 * src/files.c:
20531 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
20532
205331996-12-18 Paul Eggert <eggert@gnu.org>
20534
20535 * src/bison.s1 (yyparse):
20536 If __GNUC__ and YYPARSE_PARAM are both defined,
20537 declare yyparse to have a void * argument.
20538
205391996-12-18 Paul Eggert <eggert@gnu.org>
20540
20541 * bison.simple (yyparse):
20542 If __GNUC__ and YYPARSE_PARAM are both defined,
20543 declare yyparse to have a void * argument.
20544
205451996-12-17 Richard Stallman <rms@gnu.org>
20546
20547 * src/reduce.c (nbits): Add some casts.
20548
205491996-08-12 Richard Stallman <rms@gnu.org>
20550
20551 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
20552
205531996-08-12 Richard Stallman <rms@gnu.org>
20554
20555 * bison.simple: Test _MSDOS as well as _MSDOS_.
20556
205571996-07-31 Richard Stallman <rms@gnu.org>
20558
20559 * src/bison.s1:
20560 [__sun && __i386]: Include alloca.h.
20561
205621996-07-31 Richard Stallman <rms@gnu.org>
20563
20564 * bison.simple:
20565 [__sun && __i386]: Include alloca.h.
20566
205671996-07-30 Richard Stallman <rms@gnu.org>
20568
20569 * src/bison.s1: Comment change.
20570
20571 * src/bison.s1: Test _MSDOS_, not MSDOS.
20572
205731996-07-30 Richard Stallman <rms@gnu.org>
20574
20575 * bison.simple: Comment change.
20576
20577 * bison.simple: Test _MSDOS_, not MSDOS.
20578
205791996-06-01 Richard Stallman <rms@gnu.org>
20580
20581 * 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:
20582 Insert `_' macro around many string constants.
20583
20584 * src/main.c:
20585 Insert `_' macro around many string constants.
20586
20587 (main): Call setlocale, bindtextdomain and textdomain.
20588
20589 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
20590 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
20591 [ENABLE_NLS]: Include libintl.h.
20592 [ENABLE_NLS] (gettext): Define.
20593 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
20594 (N_, PACKAGE, LOCALEDIR): New macros.
20595
205961996-06-01 Richard Stallman <rms@gnu.org>
20597
20598 * POTFILES.in: New file.
20599
20600 * Makefile.in (allocate.o):
20601 Define target explicitly.
20602
20603 * Makefile.in (CFLAGS): Set to @CFLAGS@.
20604 (LDFLAGS): Set to @LDFLAGS@.
20605 (configure): Run autoconf only if preceding `cd' succeeds.
20606 (bison.s1): Redirect output to temporary file then move the
20607 temporary to the target, rather than redirecting directly to bison.s1.
20608 (clean): Remove config.status and config.log.
20609 (distclean): Don't remove config.status here.
20610
206111996-05-12 Richard Stallman <rms@gnu.org>
20612
20613 * src/bison.s1:
20614 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
20615
206161996-05-12 Richard Stallman <rms@gnu.org>
20617
20618 * bison.simple:
20619 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
20620
206211996-05-11 Richard Stallman <rms@gnu.org>
20622
20623 * src/bison.s1 (__yy_memcpy):
20624 Really reorder the args, as was supposedly done on Feb 14 1995.
20625 (yyparse): Calls changed accordingly.
20626
206271996-05-11 Richard Stallman <rms@gnu.org>
20628
20629 * Makefile.in (dist): Don't use $(srcdir).
20630
20631 * bison.simple (__yy_memcpy):
20632 Really reorder the args, as was supposedly done on Feb 14 1995.
20633 (yyparse): Calls changed accordingly.
20634
206351996-01-27 Richard Stallman <rms@gnu.org>
20636
20637 * src/output.c (output_rule_data):
20638 Test YYERROR_VERBOSE in the conditional
20639 around the definition of ttyname.
20640
206411995-12-29 Richard Stallman <rms@gnu.org>
20642
20643 * src/bison.s1:
20644 Fix line numbers in #line commands.
20645
206461995-12-29 Richard Stallman <rms@gnu.org>
20647
20648 * bison.simple:
20649 Fix line numbers in #line commands.
20650
206511995-12-27 Richard Stallman <rms@gnu.org>
20652
20653 * src/bison.s1 (YYPARSE_PARAM_DECL):
20654 In C++, make it always null.
20655 (YYPARSE_PARAM_ARG): New macro.
20656 (yyparse): Use YYPARSE_PARAM_ARG.
20657
206581995-12-27 Richard Stallman <rms@gnu.org>
20659
20660 * bison.simple (YYPARSE_PARAM_DECL):
20661 In C++, make it always null.
20662 (YYPARSE_PARAM_ARG): New macro.
20663 (yyparse): Use YYPARSE_PARAM_ARG.
20664
206651995-11-29 Richard Stallman <rms@gnu.org>
20666
20667 * doc/bison.texinfo:
20668 Describe literal string tokens, %raw, %no_lines, %token_table.
20669
206701995-11-29 Daniel Hagerty <hag@gnu.org>
20671
20672 * doc/bison.texinfo: Fixed update date
20673
206741995-10-16 Richard Stallman <rms@gnu.org>
20675
20676 * src/version.c: Version 1.25.
20677
206781995-10-16 Richard Stallman <rms@gnu.org>
20679
20680 * NEWS: *** empty log message ***
20681
206821995-10-16 Richard Stallman <rms@gnu.org>
20683
20684 * doc/bison.1, doc/bison.rnh:
20685 Add new options.
20686
206871995-10-15 Richard Stallman <rms@gnu.org>
20688
20689 * src/vmsgetargs.c, src/getargs.c:
20690 Added -n, -k, and -raw switches.
20691 (noparserflag, toknumflag, rawtoknumflag): New variables.
20692
20693 * src/symtab.h (SALIAS):
20694 New #define for adding aliases to %token.
20695 (struct bucket): Added `alias' field.
20696
20697 * src/reduce.c (reduce_grammar):
20698 Revise error message.
20699 (print_notices): Remove final `.' from error message.
20700
20701 * src/reader.c (reader_output_yylsp):
20702 New function.
20703 (readgram): Use `#if 0' around code that accepted %command
20704 inside grammar rules: The documentation doesn't allow it,
20705 and it will fail since the %command processors scan for the next %.
20706 (parse_token_decl): Extended the %token
20707 declaration to allow a multi-character symbol as an alias.
20708 (parse_thong_decl): New function.
20709 (read_declarations): Added %thong declarations.
20710 (read_declarations): Handle NOOP to deal with allowing
20711 % declarations as another means to specify the flags.
20712 (readgram): Allow %prec prior to semantics embedded in a rule.
20713 (skip_to_char, read_declarations, copy_definition)
20714 (parse_token_decl, parse_start_decl, parse_type_decl)
20715 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
20716 (get_type_name, copy_guard, copy_action, readgram)
20717 (get_type, packsymbols): Revised most error messages.
20718 Changed `fatal' to `warnxxx' to avoid aborting for error.
20719 Revised and use multiple warnxxx functions to avoid using VARARGS1.
20720 (read_declarations): Improve the error message for
20721 an invalid character. Do not abort.
20722 (read_declarations, copy_guard, copy_action): Use
20723 printable_version to avoid unprintable characters in printed output.
20724 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
20725 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
20726 Allow the type of a non-terminal can be given
20727 more than once, as long as all specifications give the same type.
20728
20729 * src/output.c:
20730 (output_headers, output_trailers, output, output_gram)
20731 (output_rule_data): Implement noparserflag variable.
20732 Implement toknumflag variable.
20733 (output): Call reader_output_yylsp to output LTYPESTR.
20734
20735 * src/main.c (main):
20736 If reader sees an error, don't process the grammar.
20737 (fatals): Updated to not use VARARGS1.
20738 (printable_version, int_to_string, warn, warni, warns, warnss)
20739 (warnsss): New error reporting functions. Avoid abort for error.
20740
20741 * src/lex.h:
20742 Added THONG and NOOP for alias processing.
20743 Added SETOPT for the new code that allows setting options with %flags.
20744
20745 * src/lex.c:
20746 Include getopt.h. Add some extern decls.
20747 (safegetc): New function to deal with EOF gracefully.
20748 (literalchar); new function to deal with reading \ escapes.
20749 (lex): Use literalchar.
20750 (lex): Implemented "..." tokens.
20751 (literalchar, lex, parse_percent_token): Made tokenbuffer
20752 always contain the token. This includes growing the token
20753 buffer while reading an integer.
20754 (parse_percent_token): Replaced if-else statement with percent_table.
20755 (parse_percent_token): Added % declarations as another
20756 way to specify the flags -n, -l, and -r. Also added hooks for
20757 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
20758 major changes to files.c.
20759 (lex) Retain in the incoming stream a character following
20760 an incorrect '/'.
20761 (skip_white_space, lex): Revised most error messages
20762 and changed fatal to warn to avoid aborting.
20763 (percent_table): Added %thong declarations.
20764
20765 * src/gram.h: Comment changes.
20766
20767 * src/files.c (openfiles, open_extra_files, done):
20768 Add faction flag
20769 and actfile file. Handle noparserflag. Both for -n switch.
20770
20771 * src/conflicts.c (resolve_sr_conflict):
20772 Remove use of alloca.
20773
207741995-06-01 Jim Meyering <meyering@gnu.org>
20775
20776 * doc/bison.texinfo: *** empty log message ***
20777
207781995-05-06 Richard Stallman <rms@gnu.org>
20779
20780 * src/bison.s1: Comment change.
20781
207821995-05-06 Richard Stallman <rms@gnu.org>
20783
20784 * bison.simple: Comment change.
20785
207861995-05-03 Richard Stallman <rms@gnu.org>
20787
20788 * src/version.c: Version now 1.24.
20789
20790 * src/bison.s1: Change distribution terms.
20791
20792 * src/version.c: Version now 1.23.
20793
207941995-05-03 Richard Stallman <rms@gnu.org>
20795
20796 * doc/bison.texinfo:
20797 Rewrite "Conditions for Using Bison".
20798 Update version to 1.24.
20799
208001995-05-03 Richard Stallman <rms@gnu.org>
20801
20802 * bison.simple: Change distribution terms.
20803
208041995-02-23 Richard Stallman <rms@gnu.org>
20805
20806 * src/files.c: Test __VMS_POSIX as well as VMS.
20807
208081995-02-14 Jim Meyering <meyering@gnu.org>
20809
20810 * src/bison.s1 (__yy_memcpy):
20811 Renamed from __yy_bcopy to avoid
20812 confusion. Reverse FROM and TO arguments to be consistent with
20813 those of memcpy.
20814
208151995-02-14 Jim Meyering <meyering@gnu.org>
20816
20817 * bison.simple (__yy_memcpy):
20818 Renamed from __yy_bcopy to avoid
20819 confusion. Reverse FROM and TO arguments to be consistent with
20820 those of memcpy.
20821
208221994-11-10 David J. MacKenzie <djm@gnu.org>
20823
20824 * NEWS: reformat
20825
20826 * NEWS: New file.
20827
20828 * Makefile.in (DISTFILES): Include NEWS.
20829
20830 * Makefile.in (DISTFILES):
20831 Include install-sh, not install.sh.
20832
20833 * configure.in: Update to Autoconf v2 macro names.
20834
208351994-10-05 David J. MacKenzie <djm@gnu.org>
20836
20837 * Makefile.in: fix typo
20838
20839 * Makefile.in (prefix, exec_prefix):
20840 Let configure set them.
20841
208421994-09-28 David J. MacKenzie <djm@gnu.org>
20843
20844 * Makefile.in: Set datadir to $(prefix)/share.
20845
208461994-09-15 Richard Stallman <rms@gnu.org>
20847
20848 * src/bison.s1:
20849 Update copyright notice and GPL version.
20850
208511994-09-15 Richard Stallman <rms@gnu.org>
20852
20853 * bison.simple:
20854 Update copyright notice and GPL version.
20855
208561994-07-12 Richard Stallman <rms@gnu.org>
20857
20858 * src/reduce.c, src/reader.c:
20859 entered into RCS
20860
208611994-05-05 David J. MacKenzie <djm@gnu.org>
20862
20863 * Makefile.in: entered into RCS
20864
208651994-03-26 Richard Stallman <rms@gnu.org>
20866
20867 * src/bison.s1: entered into RCS
20868
208691994-03-26 Richard Stallman <rms@gnu.org>
20870
20871 * bison.simple: entered into RCS
20872
208731994-03-25 Richard Stallman <rms@gnu.org>
20874
20875 * src/main.c: entered into RCS
20876
208771994-03-24 Richard Stallman <rms@gnu.org>
20878
20879 * src/conflicts.c: entered into RCS
20880
208811994-01-02 Richard Stallman <rms@gnu.org>
20882
20883 * Makefile.in: *** empty log message ***
20884
208851993-11-21 Richard Stallman <rms@gnu.org>
20886
20887 * src/bison.s1: *** empty log message ***
20888
208891993-11-21 Richard Stallman <rms@gnu.org>
20890
20891 * doc/bison.texinfo: entered into RCS
20892
20893 * doc/bison.texinfo: *** empty log message ***
20894
208951993-11-21 Richard Stallman <rms@gnu.org>
20896
20897 * bison.simple: *** empty log message ***
20898
208991993-10-25 David J. MacKenzie <djm@gnu.org>
20900
20901 * doc/bison.texinfo: *** empty log message ***
20902
209031993-10-19 Richard Stallman <rms@gnu.org>
20904
20905 * src/bison.s1: *** empty log message ***
20906
209071993-10-19 Richard Stallman <rms@gnu.org>
20908
20909 * bison.simple: *** empty log message ***
20910
209111993-10-14 Richard Stallman <rms@gnu.org>
20912
20913 * src/bison.s1: *** empty log message ***
20914
209151993-10-14 Richard Stallman <rms@gnu.org>
20916
20917 * bison.simple: *** empty log message ***
20918
209191993-09-14 David J. MacKenzie <djm@gnu.org>
20920
20921 * doc/bison.texinfo: *** empty log message ***
20922
209231993-09-13 Noah Friedman <friedman@gnu.org>
20924
20925 * Makefile.in: *** empty log message ***
20926
209271993-09-10 Richard Stallman <rms@gnu.org>
20928
20929 * src/conflicts.c: *** empty log message ***
20930
20931 * src/system.h: entered into RCS
20932
209331993-09-10 Richard Stallman <rms@gnu.org>
20934
20935 * doc/bison.1: entered into RCS
20936
209371993-09-06 Noah Friedman <friedman@gnu.org>
20938
20939 * src/version.c: entered into RCS
20940
209411993-09-06 Noah Friedman <friedman@gnu.org>
20942
20943 * Makefile.in: *** empty log message ***
20944
209451993-07-30 David J. MacKenzie <djm@gnu.org>
20946
20947 * Makefile.in: *** empty log message ***
20948
209491993-07-24 Richard Stallman <rms@gnu.org>
20950
20951 * src/bison.s1: *** empty log message ***
20952
209531993-07-24 Richard Stallman <rms@gnu.org>
20954
20955 * bison.simple: *** empty log message ***
20956
209571993-07-08 David J. MacKenzie <djm@gnu.org>
20958
20959 * Makefile.in: *** empty log message ***
20960
209611993-07-04 Richard Stallman <rms@gnu.org>
20962
20963 * src/bison.s1: *** empty log message ***
20964
209651993-07-04 Richard Stallman <rms@gnu.org>
20966
20967 * bison.simple: *** empty log message ***
20968
209691993-06-26 David J. MacKenzie <djm@gnu.org>
20970
20971 * src/getargs.c: entered into RCS
20972
209731993-06-26 David J. MacKenzie <djm@gnu.org>
20974
20975 * doc/bison.texinfo: *** empty log message ***
20976
20977 * doc/bison.1: New file.
20978
209791993-06-25 Richard Stallman <rms@gnu.org>
20980
20981 * src/getargs.c: New file.
20982
209831993-06-16 Richard Stallman <rms@gnu.org>
20984
20985 * src/bison.s1: *** empty log message ***
20986
209871993-06-16 Richard Stallman <rms@gnu.org>
20988
20989 * bison.simple: *** empty log message ***
20990
209911993-06-03 Richard Stallman <rms@gnu.org>
20992
20993 * src/bison.s1: New file.
20994
209951993-06-03 Richard Stallman <rms@gnu.org>
20996
20997 * doc/bison.texinfo: *** empty log message ***
20998
209991993-06-03 Richard Stallman <rms@gnu.org>
21000
21001 * bison.simple: New file.
21002
210031993-05-19 Richard Stallman <rms@gnu.org>
21004
21005 * doc/bison.texinfo: New file.
21006
210071993-05-07 Noah Friedman <friedman@gnu.org>
21008
21009 * Makefile.in: *** empty log message ***
21010
210111993-04-28 Noah Friedman <friedman@gnu.org>
21012
21013 * src/reader.c: *** empty log message ***
21014
210151993-04-23 Noah Friedman <friedman@gnu.org>
21016
21017 * src/alloc.h: entered into RCS
21018
210191993-04-20 David J. MacKenzie <djm@gnu.org>
21020
21021 * src/version.c: *** empty log message ***
21022
21023 * src/files.c, src/allocate.c:
21024 entered into RCS
21025
21026 * src/reader.c: *** empty log message ***
21027
21028 * src/lex.c: entered into RCS
21029
21030 * src/conflicts.c: New file.
21031
21032 * src/symtab.c: entered into RCS
21033
21034 * src/alloc.h: New file.
21035
21036 * src/LR0.c: entered into RCS
21037
210381993-04-18 Noah Friedman <friedman@gnu.org>
21039
21040 * src/reader.c: New file.
21041
21042 * src/version.c: *** empty log message ***
21043
210441993-04-18 Noah Friedman <friedman@gnu.org>
21045
21046 * Makefile.in: *** empty log message ***
21047
210481993-04-17 Noah Friedman <friedman@gnu.org>
21049
21050 * Makefile.in: *** empty log message ***
21051
210521993-04-15 Richard Stallman <rms@gnu.org>
21053
21054 * src/main.c, src/files.c:
21055 New file.
21056
210571993-04-15 Noah Friedman <friedman@gnu.org>
21058
21059 * configure.in: entered into RCS
21060
21061 * configure.in: *** empty log message ***
21062
21063 * configure.in: New file.
21064
210651993-04-14 Richard Stallman <rms@gnu.org>
21066
21067 * Makefile.in: New file.
21068
210691993-04-13 Richard Stallman <rms@gnu.org>
21070
21071 * src/version.c: New file.
21072
210731993-03-25 Richard Stallman <rms@gnu.org>
21074
21075 * src/output.c: entered into RCS
21076
210771992-09-25 Richard Stallman <rms@gnu.org>
21078
21079 * configure.bat: entered into RCS
21080
210811992-06-22 Richard Stallman <rms@gnu.org>
21082
21083 * src/vmsgetargs.c: entered into RCS
21084
210851992-06-22 Richard Stallman <rms@gnu.org>
21086
21087 * doc/bison.rnh: entered into RCS
21088
210891992-04-20 David J. MacKenzie <djm@gnu.org>
21090
21091 * README: entered into RCS
21092
210931992-01-22 Richard Stallman <rms@gnu.org>
21094
21095 * src/machine.h: entered into RCS
21096
210971991-12-21 Richard Stallman <rms@gnu.org>
21098
21099 * src/lalr.c, src/closure.c:
21100 entered into RCS
21101
211021991-12-20 Richard Stallman <rms@gnu.org>
21103
21104 * src/state.h: entered into RCS
21105
211061991-12-18 Richard Stallman <rms@gnu.org>
21107
21108 * src/print.c, src/nullable.c, src/derives.c:
21109 entered into RCS
21110
211111991-11-03 David J. MacKenzie <djm@gnu.org>
21112
21113 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
21114 entered into RCS
21115
211161988-09-09 Richard Stallman <rms@gnu.org>
21117
21118 * src/bison.hairy: entered into RCS
21119
211201987-12-16 Richard Stallman <rms@gnu.org>
21121
21122 * REFERENCES: entered into RCS
dc546b0f 21123
f294a2c2 21124
04098407 21125 -----
f294a2c2 21126
04098407 21127 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
9126263e 21128 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
95021767 21129 Free Software Foundation, Inc.
f294a2c2 21130
04098407
PE
21131 Copying and distribution of this file, with or without
21132 modification, are permitted provided the copyright notice and this
21133 notice are preserved.