]> git.saurik.com Git - bison.git/blame - ChangeLog
Parameterize the extraction of semantic values.
[bison.git] / ChangeLog
CommitLineData
1fa5d8bb
AD
12008-11-03 Akim Demaille <demaille@gostai.com>
2
3 Parameterize the extraction of semantic values.
4 To make future changes easier, no longer rely on ".TYPE" being the
5 way to get a semantic value.
6
7 * data/c.m4 (b4_symbol_value): New.
8 Use it.
9 * data/c++.m4, data/yacc.c: Use it.
10 * data/glr.c: Use b4_symbol_value.
11 (b4_rhs_data): New.
12 Use it.
13
91ba8a55
AD
142008-11-03 Akim Demaille <demaille@gostai.com>
15
16 Prepare easier M4 changes.
17 * data/lalr1.cc: Use escaped [] instead of literals to prepare
18 future changes.
19
c9ba9e59
JD
202008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
21
22 Initiate further development.
23 * NEWS: Create an empty section for new entries.
24 * gnulib: Update submodule to HEAD.
25
bfb40910
JD
262008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
27
28 * NEWS: Version 2.4.
29
241fda7a
JD
302008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
31
32 Prepare for next release.
33 * NEWS: Briefly mention changes since 2.3b.
34 * README: Say GNU m4 1.4.6, which we've been requiring in release
35 announcements already, not 1.4.3, which breaks the build.
36
ed4d67dc
JD
372008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
38
39 Say %language is experimental.
40 We're thinking of extending it's effect on output file naming. See the
41 thread at
42 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
43 * NEWS: Say it's experimental.
44 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
45 recommend it over %skeleton for now.
46 (Bison Options): Likewise.
47 (C++ Bison Interface): Use %skeleton not %language.
48 (Calc++ Parser): Use %skeleton not %language.
49 * src/getargs.c (usage): Say it's experimental.
50
e254a580
DJ
512008-11-01 Di-an Jan <dianj@freeshell.org>
52 Paolo Bonzini <bonzini@gnu.org>
53
54 Support all Java parser class modifiers.
55 * data/java.m4 (b4_percent_define_get3): New.
56 (b4_final_if, b4_strictfp_if): New.
57 * data/lalr1.java (final, strictfp, extends, implements): Support.
58 * doc/bison.texinfo (final, strictfp, extends, implements): Add
59 documentation.
60 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
61 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
62 (AT_CHECK_JAVA_GREP): New.
63 (Java parser class modifiers): New test.
64 (Java parser class extends and implements): New test.
65
66 Model exception propagation better with throws and lex_throws.
67 * data/java.m4 (b4_list2): New.
68 (throws): Change default.
69 * data/lalr1.java (yyaction): Add throws.
70 (parse): Add lex_throws in addition to throws.
71 * doc/bison.texinfo (throws, lex_throws): Add documentation.
72 * tests/java.at (Java throws specifications): New test.
73
74 Improve documentation for Java parsers.
75 * doc/bison.texinfo (Java Parsers): Add subsections.
76 Don't quote first argument of %define.
77 (Java Bison Interface): Document output files. Move documentation
78 of parser class and merge into Java Parser Interface. Document
79 features that error out. Document directives with no effect.
80 Move note about Javadoc higher.
81 (Java Semantic Values): Explicitly mention stype.
82 Document that generic types cannot be used.
83 (Java Location Values): Use @deftypeivar. Document constructors.
84 Correct return value for toString.
85 (Java Parser Interface): List undocumented constants/fields.
86 Move documentation of fields added by %parse-param closer to list
87 of members. Document that token names are added as fields.
88 Document constructors accurately. Remove error method.
89 (Java Scanner Interface): Move note on %pure-parser to Java Bison
90 Interface. Describe %code lexer and yylex accutately.
91 Remove documentation that does not match the code.
92 (Java Action Features): New.
93 (Java Differences): Add reference. Add item on semantic values.
94 Add note about @{ ... @}. Clarify %% epilogue placement.
95 (Java Declarations Summary): New.
96
97 Fix Java skeleton.
98 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
99 (b4_remove_comma): Quote test argument.
100 (b4_identification): Remove "bison" field.
101 * tests/java.at (Java parser class and package names): New test.
102 (Java %parse-param and %lex-param): New test.
103 (Java stype, position_class and location_class): New test.
104
f259e4e6
PB
1052008-10-31 Di-an Jan <dianj@freeshell.org>
106
107 * data/lalr1.jave: Update copyright years.
108 (YYParser): Correct name of "generated from" file in Javadoc:
109 use b4_file_name instead of @ofile@.
110 (Location constructor): Correct Javadoc parameter name.
111 (yylloc): Add missing opening m4 quote after b4_location_if.
112 This removes a stray [ in the Javadoc of Lexer.getStartPos.
113 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
114 (YYParser constructor): Correct Javadoc parameter name.
115
cae5057f
JD
1162008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
117
118 Always put auxiliary code files in the same dir as other output files.
119 * src/files.c (compute_file_name_parts): When the user specifies
120 --output but not --file-prefix, extract the directory prefix from the
121 file prefix not from the grammar file name. This affects the location
122 of files like location.hh generated by the C++ skeleton. The includes
123 in the other output files require this fix.
124 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
125 for expected output files.
126 (Output files): Add a test for the above.
127
4af432ba
JD
1282008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
129
130 * gnulib: Update submodule to HEAD.
131
e26d4e43
JD
1322008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
133
134 Update copyright year.
135 * src/files.c: Here.
136
c0ee9e21
DJ
1372008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
138
139 Don't overwrite the input file.
140 * src/files.c (output_file_name_check): Fatal error if using input file
141 for output.
142 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
143 argument.
144 (Conflicting output files): Add test.
145
482dc52f
AD
1462008-10-28 Akim Demaille <demaille@gostai.com>
147
148 Space changes.
149 * data/lalr1.cc: Formatting changes.
150
52cbbe84
AD
1512008-10-28 Akim Demaille <demaille@gostai.com>
152
153 Don't define debugging functions when !YYDEBUG.
154 * data/lalr1.cc (debug_stream, set_debug_stream)
155 (debug_level_type, debug_level, set_debug_level): Don't
156 declare them when YYDEBUG is not defined.
157 The implementation are already YYDEBUG-aware.
158
0925d5bf
AD
1592008-10-28 Akim Demaille <demaille@gostai.com>
160
161 Prefer "continue" for empty loop bodies.
162 * etc/bench.pl.in: Use "continue" instead of {}.
163
cf98343c
AD
1642008-10-28 Akim Demaille <demaille@gostai.com>
165
166 Space and comments changes.
167 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
168 * data/c.m4, data/lalr1.cc: Space changes.
169
9f467b7d
AD
1702008-10-28 Akim Demaille <demaille@gostai.com>
171
172 Make gnulib a submodule.
173 * gnulib: New.
174 * .gitmodules (gnulib): New.
175
0f0e1ace
JD
1762008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
177
178 Fix yyerror_range for user-defined location type in C++. Reported by
179 Georg Sauthoff at
180 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
181 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
182 * THANKS (Georg Sauthoff): Add.
183
548e2104
JD
1842008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
185
186 Update several administrative files mainly to facilitate releasing.
187 * HACKING (Administrivia): Make the git-merge-changelog notes more
188 helpful.
189 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
190 (Release Procedure): Update for git and add numerous details that were
191 previously missing.
192 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
193 * maint.mk (announcement): Don't list bison as a bootstrap tool so
194 that announcements don't claim we bootstrapped with whatever bison
195 happened to be in PATH. Add flex as a bootstrap tool.
196 * Makefile.maint: Remove, previously replaced by maint.mk.
197 * Makefile.cfg: Remove, and migrate settings to...
198 * cfg.mk: ... here for the sake of `make announcement'.
199 * bootstrap.conf (gnulib_modules): Add announce-gen.
200 * README: Say GNU Bison instead of just Bison. Suggested by Karl
201 Berry.
202
ddf17a6e
PB
2032008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
204
205 Small but important bugfixes for the Java skeleton.
206 * data/lalr1.java (yyerror): Change Location to b4_location_type.
207 (yy_symbol_print): Call toString on yyvaluep.
208
e1145ad8
AD
2092008-08-29 Akim Demaille <demaille@gostai.com>
210
211 Clarify UPDATED use.
212 * doc/bison.texinfo: It refers to the last edition of this file,
213 not to the release date of Bison.
214 Reported by Joel E. Denny.
215
0df72d78
AD
2162008-08-29 Akim Demaille <demaille@gostai.com>
217
218 * README: Update FAQ pointer.
219 Reported by Joel E. Denny.
220
9a90b6bb
EB
2212008-08-27 Eric Blake <ebb9@byu.net>
222
223 Resync m4sugar from autoconf.
224 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
225 (m4_init): Adjust to latest m4.git changes.
226 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
227 effects.
228 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
229 (_m4_list_cmp): Reduce side effects.
230
65015668
AD
2312008-08-27 Akim Demaille <demaille@gostai.com>
232
233 Check yyerrok in calc.at.
234 * tests/calc.at (calc.y): Use yyerrok on "( error )".
235 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
236 expected.
237
98e26a92
AD
2382008-08-27 Akim Demaille <demaille@gostai.com>
239
240 Support yyerrok in lalr1.cc.
241 YYBACKUP is still to import back into lalr1.cc.
242 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
243
86c0e784
JD
2442008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
245
246 For maintainer-check*, don't recompile for a $(VERSION) update.
247 * cfg.mk: New file.
248 (_is-dist-target): Override the one in GNUmakefile.
249 * Makefile.am (EXTRA_DIST): Add cfg.mk.
250
88511166
JD
2512008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
252
253 Update for recent change to gnulib.
254 * src/parse-gram.y: Don't include strverscmp.h. It comes from
255 string.h now.
256
6bbb2ed5
EB
2572008-08-15 Eric Blake <ebb9@byu.net>
258
d67c52e8
EB
259 Remaining m4sugar merge from autoconf.
260 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
261 * data/m4sugar/foreach.m4: New file, copied from autoconf.
262 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
263 * src/output.c (output_skeleton): Tell m4 how to find it.
264
6bbb2ed5
EB
265 Partial m4sugar merge from autoconf: m4_map.
266 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
267 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
268 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
269 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
270 for empty list.
271 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
272 Likewise.
273 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
274 declares it.
275
8dce3875
JD
2762008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
277
278 Keep .version and PACKAGE_VERSION in sync.
279 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
280 dependency, and add comments justifying this in more detail. Discussed
281 starting at
282 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
283
882a1fbf
EB
2842008-08-06 Eric Blake <ebb9@byu.net>
285
a3764451
EB
286 Partial m4sugar merge from autoconf: m4_shiftn.
287 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
288 (m4_shift2, m4_shift3): New macros.
289 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
290 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
291 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
292 * data/java.m4 (b4_remove_comma): Likewise.
293
882a1fbf
EB
294 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
295 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
296 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
297 (m4_init): Consolidate wrapped text into single m4_wrap.
298 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
299 in wrapped text.
300
a30e920d
EB
3012008-08-05 Eric Blake <ebb9@byu.net>
302
dfcc5959
EB
303 Partial m4sugar merge from autoconf: builtins, version.m4.
304 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
305 (m4_prepend): Remove, as it is unused and inherently quadratic,
306 whereas m4_append is linear in newer m4.
307 (m4_mkstemp): New builtin.
308 (m4_symbols): Make rename conditional.
309 (m4_version_prereq): Ensure fatal error if used in bison, which
310 intentionally lacks version.m4.
311
a30e920d
EB
312 Fix comments in m4sugar.
313 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
314
445b7470
JD
3152008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
316
317 Update for recent .gitignore fix in Gnulib.
318 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
319 anchored .gitignore entries.
320
a1e50014
JD
3212008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
322
323 Set gnu or gnits strictness.
324 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
325 development and gnits strictness for releases. Based on Eric Blake's
326 suggestion at
327 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
328
d43f77e7
PB
3292008-07-31 Paolo Bonzini <bonzini@gnu.org>
330
331 * NEWS: Clarify documentation of %language.
332
fee2ed87
PB
3332008-07-31 Paolo Bonzini <bonzini@gnu.org>
334
335 Support usage of git-merge-changelog.
336 * .gitattributes: New.
337 * HACKING: Document usage of git-merge-changelog.
338 * bootstrap: Install git-merge-changelog entries in .git/config
339 if appropriate.
340
78029cd5
JD
3412008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
342
343 Remove remaining dependence on CVS Id keyword.
344 * ChangeLog: For the sake of people still using CVS, don't use dollars
345 when mentioning Id.
346 * data/xslt/bison.xsl: Remove Id from header comments, where it was
347 unusual anyway.
348 * data/xslt/xml2dot.xsl: Likewise.
349 * data/xslt/xml2text.xsl: Likewise.
350 * data/xslt/xml2xhtml.xsl: Likewise.
351 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
352 * doc/Makefile.am (neutralize): Remove, no longer needed.
353 (.x.1): Don't use neutralize.
354 (edit): Don't substitute for ID.
355 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
356
c53d18b1
JD
3572008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
358
359 Fix dependence on computed configure variables.
360 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
361 $(top_srcdir)/configure.ac so that changes to computed variables, such
362 as PACKAGE_VERSION, are seen.
363 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
364
5523ac79
JD
3652008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
366
367 Update copyright dates for recent changes.
368 * Makefile.am: Here.
369 * src/Makefile.am: Here.
370 * src/reduce.c: Here.
371 * tests/reduce.at: Here.
372
8fa36911
JD
3732008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
374
375 Use git-version-gen for version names between releases.
376 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
377 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
378 * .prev-version: New.
379 * .version.in: Remove.
78029cd5 380 * ChangeLog: Remove the Id previously used for capturing the CVS
8fa36911
JD
381 revision.
382 * GNUmakefile: Remove, now copied from Gnulib.
383 * Makefile.am: Add code suggested by comments in
384 build-aux/git-version-gen.
385 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
386 .prev-version, and .version.
387 * NEWS (2.3b+): Rename to...
388 (?.?): ... this because we're dropping the "+" version naming scheme,
389 but, in general, we still can't be sure of our next release name.
390 * bootstrap: Add a quick hack to remove from .gitignore the
391 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
392 entry. This should really be fixed in gnulib instead.
393 * bootstrap.conf (gnulib_modules): Add gnumakefile.
394 * configure.ac (AC_INIT): Set version name by invoking
395 build-aux/git-version-gen.
396 (AC_CONFIG_FILES): Remove .version, now generated by
397 build-aux/git-version-gen.
398 * maint.mk: New, copied from coreutils.
399 * doc/.cvsignore (bison.1): Add.
400 * doc/.gitignore (/bison.1): Add.
401 * doc/bison.1: Remove, generated.
402 * src/.cvsignore (revision.c): Remove.
403 * src/.gitignore (/revision.c): Remove.
404 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
405 (BUILT_SOURCES): Remove revision.c.
406 (revision.c): Remove.
407 * src/getargs.c (version): Don't print revision after the VERSION.
408 * src/revision.h: Remove.
409
bcf07cb7
JD
4102008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
411
412 Fix untranslatable composition of sentences. Reported by Goran
413 Uddeborg at
414 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
415 * THANKS (Goran Uddeborg): Add.
416 * src/reduce.c (reduce_print): Report the number of nonterminals and
417 rules useless in the grammar in separate sentences.
418 * tests/reduce.at (Useless Rules): Update output.
419 (Reduced Automaton): Likewise.
420 (Underivable Rules): Likewise.
421 (Empty Language): Likewise.
422
9aacab9a
JD
4232008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
424
425 Fix some .gitignore and .cvsignore problems.
426 * bootstrap (insert_sorted_if_absent): Replace all uses with...
427 (insert_vc_ignore): ... this new function, which prepends `/' to all
428 .gitignore entries before passing them to insert_sorted_if_absent.
429 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
430 .cvsignore files are maintained even though Bison developers run
431 bootstrap while using Git.
432 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
433 unneeded by Bison.
434 (gnulib): Add.
435 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
436 unneeded. Reported by Eric Blake.
437 * lib/.gitignore (/*~): Add.
438 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
439 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
440 Blake.
441 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
442
a9fc7990
JD
4432008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
444
445 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
446 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
447 * bootstrap.conf (gnulib_modules): Add unsetenv.
448 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
449 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
450 (/setenv.m4): Add.
451 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
452 the first argument because it may become position-dependent, and unset
453 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
454 Add comments explaining these issues in more detail.
455
0f1d6f10
JD
4562008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
457
458 Add .gitignore everywhere based on .cvsignore.
459 * .gitignore: New.
460 * build-aux/.gitignore: New.
461 * data/.gitignore: New.
462 * doc/.gitignore: New.
463 * etc/.gitignore: New.
464 * examples/.gitignore: New.
465 * examples/calc++/.gitignore: New.
466 * lib/.gitignore: New.
467 * m4/.gitignore: New.
468 * po/.gitignore: New.
469 * runtime-po/.gitignore: New.
470 * src/.gitignore: New.
471 * tests/.gitignore: New.
472
7bd1665a
JD
4732008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
474
475 * NEWS (2.3b+): New section, empty for now.
476 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
477
72c5b982
JD
4782008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
479
480 * NEWS (2.3b): Update release date since there has been a delay in
481 getting the announcements and tarballs out.
482
bd02cd5d
JD
4832008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
484
485 * NEWS: Version 2.3b.
486 * configure.ac (AC_INIT): Likewise.
487 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
488
9126263e
JD
4892008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
490
491 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
492 been doing it for years.
493 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
494 (Release Procedure): Add FIXME about make alpha being unmaintained.
495
fa6aa7b3
JD
4962008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
497
498 * data/yacc.c: Reformat m4 a little for readability.
499 * src/lalr.c (build_relations): Correct comment.
500
d30b312d
JMG
5012008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
502
503 DJGPP specific issue.
504 * djgpp/config.sed: Fixes required to run configure scripts generated
505 by autoconf 2.62.
506
138d4cd9
JD
5072008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
508
509 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
510 coordinator@translationproject.org.
511
8f7e2e1f
JD
5122008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
513
514 * THANKS: Add Eric Blake.
515
f55efa38
JD
5162008-04-23 Eric Blake <ebb9@byu.net>
517
518 Revert prior patch, by working around autoconf regression.
519 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
520 ("Output file name: ("): Uncomment test.
521 ("Output file name: )"): Likewise.
522 Based on an idea from Noah Misch.
523
096c9f9d
JD
5242008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
525
526 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
527 2.61. Reported by Juan Manuel Guerrero at
528 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
529 * tests/output.at ("Output file name: ("): Comment out test case for
530 now.
531 ("Output file name: )"): Likewise.
532
0f664b89
JD
5332008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
534
535 * GNUmakefile: Update git-version-gen invocation so make dist
536 succeeds.
537
1cfe6375
JD
5382008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
539
540 Update to the current gnulib CVS repository, and fix trigraph handling
541 in Bison.
542 * bootstrap: Update gnulib CVS repository URL.
543 (symlink_to_dir): Encapsulate the code that guarantees the destination
544 directory exists into...
545 (check_dst_dir): ... this new function, and...
546 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
547 fail when copying files into lib/uniwidth/.
548 * src/output.c (prepare_symbols): When writing yytname muscles, where
549 symbol names will be encoded in C-string literals, tell quotearg to
550 escape trigraphs. This used to be the default in gnulib.
551 * tests/regression.at (Token definitions): Because of the change in
552 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
553 escapes trigraphs in symbol names. Thus, yytname no longer has
554 trigraphs unnecessarily doubly escaped. Update test case output.
555 Extend test case to be sure Bison's own error messages will no longer
556 have trigraphs in symbol names unnecessarily escaped once.
557
74c52fc8
JD
5582008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
559
560 Fix make dist infinite loop reported by Juan Manuel Guerrero at
561 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
562 * .cvsignore: Add .version.
563 * .version.in: New.
564 * bootstrap.conf (gnulib_modules): Add git-version-gen.
565 * configure.ac (AC_CONFIG_FILES): Add .version.
566 * build-aux/.cvsignore: Add git-version-gen.
567
8e55b3aa
JD
5682008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
569
570 * NEWS (2.3a+): Mention that -g now takes an argument.
571 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
572 consistency. Update the -g and -x entries now that they take
573 arguments. Use brackets to indicate optional arguments.
574 * src/getargs.c (usage): Explain the relationship between arguments of
575 long and short options more completely. Document --defines and -d
576 separately since the former takes an argument but, for POSIX Yacc, the
577 latter does not.
578 (short_options): Let -W take an optional argument like --warnings.
8452fdd9 579 (getargs): Sort cases.
8e55b3aa 580
59c5ac72
AD
5812008-02-28 Akim Demaille <demaille@gostai.com>
582
583 * doc/bison.texinfo: Fix a few typos.
584
118d4978
AD
5852008-02-28 Akim Demaille <akim@epita.fr>
586
587 * doc/bison.texinfo (Bison Options): Document -W.
588 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
589
7020f1e9
AD
5902008-02-28 Akim Demaille <akim@epita.fr>
591
592 * src/getargs.c (short_options): Split and sort for readability.
593 -g and -x take optional arguments, just like their long options.
594 * build-aux/cross-options.pl: Use /x to make the regexp easier to
595 understand.
596 Fix the handling of $opt which resulted in all the argument to be
597 considered as optional.
598
59da312b
JD
5992008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
600
601 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
602 say its interface is experimental.
603 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
604 Java.
605 (Bison Options): In the -L and --language entry, mention Java.
606 (Java Bison Interface): Say the interface is experimental.
607 * src/getargs.c (usage): Mention -L and --language.
608
609 * NEWS (2.3a+): Say the push parsing interface is experimental.
610 * doc/bison.texinfo (Push Decl): Likewise.
611 (Decl Summary): Likewise in the "%define api.push_pull" entry.
612 (Push Parser Function): Likewise.
613 (Pull Parser Function): Likewise.
614 (Parser Create Function): Likewise.
615 (Parser Delete Function): Likewise.
616 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
617 yypull_parse, and yypush_parse entries.
618
619 * NEWS (2.3a+): Mention XML support, and say the schema is
620 experimental.
621 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
622 * src/getargs.c (usage): Say the XML schema is experimental.
623
624 * NEWS (2.3a+): Say option instead of flag.
625
2bb3ebec
WP
6262008-02-21 Wojciech Polak <polak@gnu.org>
627
628 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
629 text.
630
333e670c
JD
6312008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
632
633 Fix impure push parser compile error reported by Bob Rossi at
634 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
635 * data/yacc.c: Clean up whitespace in the output a little.
636 (yypstate_allocated): Define for impure push parsers regardless of
637 whether the pull interface is also requested.
638 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
639 check impure push parsers without the pull interface.
640
641 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
642 yyerror takes arguments specified by %parse-param while yypstate_new
643 does not.
644 * doc/bison.texinfo (Parser Create Function): Document that
645 yypstate_new returns 0 for multiple impure parser instances.
646 * tests/push.at (Push Parsing: Multiple impure instances): Update
647 expected stderr output.
648
798096e1
JD
6492008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
650
651 * runtime-po/POTFILES.in (push.c): Remove.
652
9ca7f077
JD
6532008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
654
655 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
656 * data/push.c: Rename to...
657 * data/yacc.c: ... this, overwriting it.
658 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
659 `%push-pull-parser' -> `%define api.push_pull "both"'.
660 Remove old yacc.c tests, and update push.c tests to yacc.c.
661
42ee26bb
JD
6622008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
663
664 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
665 `"%code top" blocks' instead of `%code "top" blocks'.
666 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
667 Clean up whitespace in the output a little.
668
b1cc23c4
JD
6692008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
670
671 Fix documentation problems reported by Tim Josling at
672 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
673 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
674 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
675 integers. Explain the effect of literal string aliases on error
676 messages. Copy token 0 documentation from the C++ skeleton
677 documentation.
678
ab7f29f8
JD
6792008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
680
681 Accept a token number in a %left, %right, or %nonassoc for POSIX
682 conformance. Reported by Tim Josling at
683 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
684 * NEWS (2.3a+): Mention.
685 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
686 and code numbers are treated by precedence declarations.
687 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
688 of symbols.1.
689 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
690 of symbol.
691 (symbol.prec): New, just like symbol but allows INT.
692 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
693 longer holds.
694 * tests/regression.at (Token number in precedence declaration): New
695 test case.
696
a924ef36
JMG
6972008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
698
699 DJGPP specific issues.
700 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
701 be changed. Copyright timestamp adjusted.
702 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
703 be changed. Copyright timestamp adjusted.
704 * djgpp/config.site: Copyright timestamp adjusted.
705 * djgpp/config_h.sed: Copyright timestamp adjusted.
706 * djgpp/djunpack.bat: Copyright timestamp adjusted.
707 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
708 filename translation list.
709 * djgpp/subpipe.c (init_subpipe): Check the environment variables
710 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
711 files shall be created. Before trying to use the temp dir where the
712 environment variable points to check that the dir really exists. If
713 not default to the cwd as temp dir. Copyright timestamp adjusted.
714 * djgpp/subpipe.h: Copyright timestamp adjusted.
715 * djgpp/testsuite.sed: Copyright timestamp adjusted.
716
389c8cfd
PE
7172008-01-30 Paul Eggert <eggert@cs.ucla.edu>
718
719 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
720
5d1cfef4
PE
7212008-01-09 Paul Eggert <eggert@cs.ucla.edu>
722
723 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
724 Problem reported by Claudio Saavedra in
725 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
726
e2dcf996
WP
7272008-01-05 Wojciech Polak <polak@gnu.org>
728
729 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
730 document's title with the input grammar file name.
731
da730230
JD
7322007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
733
734 Automate regression testing of the XML/XSLT implementation. Discussed
735 starting at
736 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
737 * configure.ac (XSLTPROC): New substitution.
738 * Makefile.am (maintainer-xml-check): New phony target invoking...
739 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
740 invoking make maintainer-check with BISON_TEST_XML=1.
741 * tests/atlocal.in (XSLTPROC): New.
742 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
743 not to report reachable memory when Bison is expected to have a
744 non-zero exit status and (2) to compare XML/XSLT output with --graph
745 and --report=all output for every working grammar when
746 BISON_TEST_XML=1.
747 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
748 (AT_BISON_CHECK_XML): New.
749 (AT_QUELL_VALGRIND): New.
750 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
751 (AT_CHECK): ... don't redefine this since this was the old way to
752 quell Valgrind.
753 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
754 AT_BISON_CHECK invocations.
755 * tests/c++.at: Likewise.
756 * tests/calc.at: Likewise.
757 * tests/conflicts.at: Likewise.
758 * tests/cxx-type.at: Likewise.
759 * tests/existing.at: Likewise.
760 * tests/glr-regression.at: Likewise.
761 * tests/headers.at: Likewise.
762 * tests/input.at: Likewise.
763 * tests/java.at: Likewise.
764 * tests/output.at: Likewise.
765 * tests/push.at: Likewise.
766 * tests/reduce.at: Likewise.
767 * tests/regression.at: Likewise.
768 * tests/sets.at: Likewise.
769 * tests/skeletons.at: Likewise.
770 * tests/synclines.at: Likewise.
771 * tests/torture.at: Likewise.
772 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
773 tends to hang xsltproc.
774 (Big horizontal): Likewise.
775
408476bc
JD
7762007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
777
778 In XML output, remove redundant class attribute on symbol element.
779 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
780 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
781 look up a symbol to determine whether it's a nonterminal or terminal.
782 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
783 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
784
785 Add prec/assoc information to XML output.
786 * src/gram.c (grammar_rules_print_xml): For each rule that has a
787 %prec, add a percent_prec attribute.
788 * src/print-xml.c (print_grammar): For each terminal that has a
789 precedence or associativity, add a prec or assoc attribute.
790 (xml_indent): New.
791 (xml_puts): Use xml_indent.
792 (xml_printf): Use xml_indent.
793 * src/print-xml.h (xml_indent): Prototype.
794
795 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
796 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
797
d4a26c48
JD
7982007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
799
800 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
801 (bison:ruleByNumber): ... this for clarity.
802 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
803 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
804 (xsl:template match="reduction"): Update.
805 (xsl:template match="item"): Update.
806 (xsl:template match="reduction"): Update.
807
808 In the XML output, don't print the list of rules where symbols appear.
809 Compute it in XSLT instead. Discussed at
810 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
811 * data/xslt/bison.xsl (bison:ruleByLhs): New.
812 (bison:ruleByRhs): New.
813 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
814 bison:ruleByRhs.
815 (xsl:template match="terminal/rule"): Remove.
816 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
817 bison:ruleByRhs.
818 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
819 Remove.
820 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
821 bison:ruleByRhs and mode="number-link" for rule template.
822 (xsl:template match="terminal/rule"): Remove.
823 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
824 bison:ruleByRhs and mode="number-link" for rule template.
825 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
826 Rewrite as...
827 (xsl:template match="rule" mode="number-link"): ... this.
828 * src/print-xml.c (print_grammar): Don't print the list of rules.
829
ef1b4273
JD
8302007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
831
832 Don't let --report affect XML output; always print all information.
833 Discussed at
834 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
835 * src/conflicts.c (log_resolution): Implement.
836 * src/print-xml.c (print_core): Implement.
837 (print_state): Implement.
838 (print_xml): Implement.
839
840 * NEWS (2.3a+): Fix quotes.
841 * src/parse-gram.y (prologue_declaration): For consistency with -v,
842 don't let %verbose clear the list specified by --report.
843
0f6cd9e3
AD
8442007-11-26 Akim Demaille <akim@epita.fr>
845
846 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
847
d80fb37a
JD
8482007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
849
850 In the XML output, list useless and unused symbols and rules with the
851 useful ones and add a "usefulness" attribute. Discussed starting at
852 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
853 * src/gram.c (grammar_rules_partial_print_xml): Remove.
854 (grammar_rules_print_xml): Print all rules instead of just those
855 useful in the grammar, and add a "usefulness" attribute.
856 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
857 * src/print-xml.c (print_rules_useless_in_parser): Remove.
858 (print_grammar): Print all nonterminals instead of just useful ones,
859 and add a "usefulness" attribute to nonterminals and terminals.
860 (print_xml): Don't print a separate "reductions" or
861 "rules-useless-in-parser" element.
862 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
863 (reduce_xml): Remove.
864 (reduce_token_unused_in_grammar): New.
865 (reduce_nonterminal_useless_in_grammar): New.
866 * src/reduce.h (reduce_xml): Remove prototype.
867 (reduce_token_unused_in_grammar): Add prototype.
868 (reduce_nonterminal_useless_in_grammar): Add prototype.
869 * data/xslt/xml2text.xsl: Update for XML changes.
870 * data/xslt/xml2xhtml.xsl: Update for XML changes.
871 * tests/reduce.at (Useless Terminals): Update output.
872 (Useless Rules): Update output.
873 (Reduced Automaton): Update output.
874
875 Say "Terminals unused in grammar" instead of "Unused terminals".
876 * NEWS (2.3a+): Update.
877 * doc/bison.texinfo (Understanding): Update example output.
878 * src/reduce.c (reduce_output): Implement.
879 * data/xslt/xml2text.xsl: Implement.
880 * data/xslt/xml2xhtml.xsl: Implement.
881
1bb2bd75
JD
8822007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
883
884 Accept --report-file=FILE to override the default `.output' filename.
885 * NEWS (2.3a+): Mention.
886 * doc/bison.texinfo (Bison Options): Add an entry.
887 * src/files.c (compute_output_file_names): Don't override
888 spec_verbose_file if already set.
889 * src/getargs.c (usage): Document --report-file.
890 (REPORT_FILE_OPTION): New anonymous enum member.
891 (long_options): Add entry for it.
892 (getargs): Add case for it setting spec_verbose_file.
893
894 * build-aux/cross-options.pl: Don't record a short option just because
895 there's an arg.
896 * doc/.cvsignore: Add yacc.1.
897
a005a9c4
AD
8982007-11-14 Akim Demaille <akim@epita.fr>
899
900 * doc/yacc.1.in: New.
901 * configure.ac, doc/Makefile.am: Adjust.
902 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
903 config.h symbol.
904 Use AC_SUBST for assignments too.
905 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
906
cff03fb2
JD
9072007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
908
909 * src/gram.c: Remove comments that duplicate comments in gram.h.
910
911 When reporting useless rules and nonterminals, say "useless in grammar"
912 instead of "useless", and say "useless in parser" instead of "never
913 reduced". Discussed starting at
914 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
915 * NEWS (2.3a+): Mention this change.
916 * data/xslt/xml2text.xsl: Update output text and expected input XML
917 element names to match changes below.
918 * data/xslt/xml2xhtml.xsl: Likewise.
919 (xsl:template match="bison-xml-report"): Add missing entry in Table of
920 Contents: "Rules useless in parser due to conflicts".
921 * doc/bison.texinfo (Decl Summary): Reword a little.
922 (Understanding): Update example output for changes below.
923 * src/gram.c: (rule_useful_p): Rename to...
924 (rule_useful_in_grammar_p): ... this.
925 (rule_useless_p): Rename to...
926 (rule_useless_in_grammar_p): ... this.
927 (rule_never_reduced_p): Rename to...
928 (rule_useless_in_parser_p): ... this.
929 (grammar_rules_print): Update for renames.
930 (grammar_rules_print_xml): Update for renames.
931 (grammar_rules_never_reduced_report): Rename to...
932 (grammar_rules_useless_report): ... this since it is used for either
933 kind of useless rule.
934 * src/gram.h: Reword comments and update function names in prototypes.
935 * src/main.c (main): Say "rule useless in parser due to conflicts".
936 * src/print-xml.c (print_rules_never_reduced): Rename to...
937 (print_rules_useless_in_parser): ... this, and rename output XML
938 element "rules-never-reduced" to "rules-useless-in-parser".
939 (print_xml): Update for rename.
940 * src/print.c (print_results): Say "Rules useless in parser due to
941 conflicts".
942 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
943 (nonterminals_reduce): Say "nonterminal useless in grammar".
944 (reduce_output): Say "Nonterminals useless in grammar".
945 Say "Rules useless in grammar".
946 (reduce_xml): Rename output XML element "useless" to
947 "useless-in-grammar".
948 (reduce_print): Don't report the count of grammatically useless rules
949 as "rules never reduced" just because %yacc is specified.
950 In the correct report of this count, say nonterminal(s) and rule(s)
951 "useless in grammar".
952 * tests/conflicts.at (S/R in initial): Update expected output.
953 (Defaulted Conflicted Reduction): Likewise.
954 (Unreachable States After Conflict Resolution): Likewise.
955 * tests/existing.at (GNU pic Grammar): Likewise.
956 * tests/reduce.at (Useless Nonterminals): Likewise.
957 (Useless Rules): Likewise.
958 (Reduced Automaton): Likewise.
959 (Underivable Rules): Likewise.
960 (Empty Language): Likewise.
961
66f0441d
JD
9622007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
963
964 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
965 here document and before the EOF so that BSD's implementation of Bourne
966 shell doesn't parse the delimiter as part of the here document.
967 * doc/.cvsignore: Add cross-options.texi.
968 * src/getargs.c (usage): Add a blank line after the warning categories.
969
d0ee4105
PB
9702007-11-08 Paolo Bonzini <bonzini@gnu.org>
971
972 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
973
e8b1fb9b
AD
9742007-11-05 Akim Demaille <akim@epita.fr>
975
976 Remove Id: from bison.1.
977 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
978 (perl -0777 -pi -e 's/\.PP\nId): New.
979 (.x.1): Use it to ignore the version control revision.
980
2f7a96b5
AD
9812007-11-05 Akim Demaille <demaille@gostai.com>
982
983 * build-aux/Makefile.am: Ship cross-options.pl.
984 * doc/Makefile.am: Always refer to cross-options.texi with
985 $(srcdir).
986 (MAINTAINERCLEANFILES): Add it.
987
f4101aa6
AD
9882007-11-04 Akim Demaille <demaille@gostai.com>
989
990 Generate the long/short option cross-table.
991 * build-aux/cross-options.pl: New.
992 * doc/Makefile.am (cross-options.texi): New.
993 * doc/bison.texinfo: Use it.
994
727a1401
AD
9952007-11-04 Akim Demaille <demaille@gostai.com>
996
997 Generate bison.1 using help2man.
998 * doc/common.x, doc/bison.x: New.
999 * doc/Makefile.am (bison.1, .x.1): New.
1000 The code is taken from autoconf-2.61/man/Makefile.am.
1001 * configure.ac: Look for help2man.
1002
6aeb9c57
AD
10032007-11-04 Akim Demaille <demaille@gostai.com>
1004
1005 Complete --help.
1006 * src/getargs.c (usage): Document -W, make it clear that -d,
1007 -g and -x have optional arguments.
1008
d7be4085
AD
10092007-11-04 Akim Demaille <demaille@gostai.com>
1010
1011 Find sha1sum when named gsha1sum.
1012 * bootstrap (find_tool): New.
1013 ($SHA1SUM): New.
1014
d9df47b6
JD
10152007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1016
1017 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
1018 at
1019 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
1020 * NEWS (2.3a+): Mention.
1021 * data/bison.m4 (b4_pure_if): Don't define it here.
1022 * data/c.m4 (b4_identification): Depend on individual skeletons to
1023 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
1024 values of the %define variables api.pure or api.push_pull. Define
1025 YYPURE, YYPUSH, and YYPULL accordingly.
1026 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
1027 glr.cc has already defined b4_pure_flag.
1028 * data/push.c: Define b4_pure_if based on `%define api.pure'.
1029 Remove YYPUSH and YYPULL since they're back in b4_identification again.
42ee26bb 1030 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
d9df47b6
JD
1031 * doc/bison.texinfo (Pure Decl): Update.
1032 (Push Decl): Update.
1033 (Decl Summary): Add api.pure to %define entry.
1034 In %pure-parser entry, say it's deprecated and reference %define.
1035 (Pure Calling): Update.
1036 (Error Reporting): Update.
1037 (C++ Scanner Interface): Update.
1038 (How Can I Reset the Parser): Update.
1039 (Table of Symbols): In %pure-parser entry, say it's deprecated and
1040 reference %define.
1041 * src/getargs.c (pure_parser): Remove global variable.
1042 * src/getargs.h (pure_parser): Remove extern.
1043 * src/output.c (prepare): Don't define pure_flag muscle.
1044 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
1045 wrapper around `%define api.pure'.
1046 * tests/calc.at (Simple LALR Calculator): Update.
1047 (Simple GLR Calculator): Update.
1048 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
1049 Update.
1050 (GLR: Resolve ambiguity, pure, locations): Update.
1051 (GLR: Merge conflicting parses, pure, no locations): Update.
1052 (GLR: Merge conflicting parses, pure, locations): Update.
1053 * tests/glr-regression.at (Uninitialized location when reporting
1054 ambiguity): Update
1055 * tests/input.at (Unused %define api.pure): New test case.
1056 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
1057 AT_PURE_IF and AT_PURE_AND_LOC_IF.
1058 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
1059
c373bf8b
JD
10602007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1061
1062 %define push_pull -> %define api.push_pull. Discussed starting at
1063 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
1064 * data/push.c: Expect the new name.
1065 * data/yacc.c: Likewise.
1066 * doc/bison.texinfo (Push Decl): Update.
1067 (Decl Summary): Update %define entry.
1068 (Push Parser Function): Update.
1069 (Pull Parser Function): Update.
1070 (Parser Create Function): Update.
1071 (Parser Delete Function): Update.
1072 * tests/calc.at (Simple LALR Calculator): Update.
1073 * tests/input.at (%define enum variables): Update.
1074 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
1075 (Push Parsing: Multiple impure instances): Update.
1076 (Push Parsing: Unsupported Skeletons): Update.
1077 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
1078 (Exploding the Stack Size with Malloc): Update.
1079
1080 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
1081 other entries some.
1082
32f19b6b
JD
10832007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
1084
1085 For the XML output's terminal element, rename @number to @token-number,
1086 and add @symbol-number. In the nonterminal element, rename @number to
1087 @symbol-number. Discussed starting at
1088 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
1089 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
1090 renames.
1091 (xsl:template match="nonterminal"): Likewise.
1092 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
1093 (xsl:template match="nonterminal"): Likewise.
1094 * src/print-xml.c (print_grammar): Implement.
1095
255a6b90
JD
10962007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
1097
1098 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
1099 2007-10-11 change, the child elements here are items not rules.
408476bc 1100 (xsl:template match="item"): New.
255a6b90
JD
1101 (xsl:template match="rule"): Update for new reduced itemset.
1102 (xsl:template match="point"): Remove.
1103 (xsl:template match="empty"): For consistency with --graph, don't
1104 output "/* empty */".
1105 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
1106 line-wrap, don't pass a negative value as first-line-length since this
1107 won't work with the following changes.
1108 (xsl:template name="line-wrap"): Simplify slightly.
1109 (xsl:template name="ws-search"): Eliminate recursion.
1110 * src/print_graph.c (print_core): Don't print a reduction's lookahead
1111 set next to an item whose dot is not at the end of the RHS even if it
1112 happens to be associated with the same rule.
1113
88c78747
JD
11142007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
1115
31984206
JD
1116 Add %define lr.keep_unreachable_states.
1117 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
1118 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
1119 * src/main.c (main): Implement it.
1120 * tests/conflicts.at (Unreachable States After Conflict Resolution):
1121 Extend to test it, and fix a typo.
1122
11232007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
1124
1125 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
88c78747
JD
1126 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
1127 the example .output text.
1128 * tests/regression.at (Extra lookahead sets in report): Improve wording
1129 of comments.
1130
b7a70162
WP
11312007-10-17 Wojciech Polak <polak@gnu.org>
1132
1133 * src/print-xml.c (print_grammar): Renamed
1134 <terminal> and <nonterminal> attributes:
1135 "type" to "number" and "symbol" to "name".
1136 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
1137 Use new attribute names.
1138 (xsl:template match="nonterminal"): Likewise.
1139 * data/xslt/xml2xhtml.xsl: Likewise.
1140
a0de5091
JD
11412007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
1142
1143 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
1144 (Option Cross Key): Likewise.
1145
1146 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
1147 next to an item whose dot is not at the end of the RHS even if it
1148 happens to be associated with the same rule.
1149 * src/print.c (print_core): Likewise.
1150 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
1151 (Resolved SR Conflicts): Update output.
1152 * tests/regression.at (Extra lookahead sets in report): New test case.
1153
4c20d18d
WP
11542007-10-11 Wojciech Polak <polak@gnu.org>
1155
1156 * src/print-xml.c (print_core): Remove item set
1157 redundancy.
1158 * data/xslt/bison.xsl (bison:ruleNumber): New key.
1159 Improve processing time. Suggested by Joel E. Denny.
1160 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
1161 Write xsl:param "required" attribute as comment.
1162 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
1163 (xsl:template match="rule"): Support new reduced itemset.
1164 (xsl:template match="point"): Remove.
1165 * data/xslt/xml2xhtml.xsl: Likewise.
1166
f506ad1c
JD
11672007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
1168
1169 * src/getargs.c (version): Update copyright year.
1170
21f1b063
JD
11712007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
1172
1173 Make xml2dot.xsl and --graph produce the same output.
1174 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
1175 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
1176 escaped later.
1177 (xsl:template name="output-node"): Use the new escape template instead
1178 of the string-replace template directly.
1179 (xsl:template name="output-edge"): Likewise.
1180 (xsl:template name="escape"): New, escapes backslashes and newlines in
1181 addition to quotation marks.
1182 * src/graphviz.c (start_graph, output_node, output_edge): Add
1183 whitespace to output for legibility.
1184
1185 Make xml2text.xsl and --report produce the same output, and remove the
1186 XML "conflicts" element since a conflict summary is easily extracted
1187 from the automaton.
1188 * data/xslt/bison.xsl: New.
1189 (xsl:template match="state" mode="bison:count-conflicts): New.
1190 * data/xslt/xml2text.xsl: Import bison.xsl.
1191 (xsl:template match="bison-xml-report"): Instead of styling the
1192 "conflicts" element, style the "automaton" element with mode
1193 "conflicts". Unlike the former, the latter lists S/R and R/R
1194 conflicts for a state on the same line.
1195 (xsl:template match="conflicts"): Remove.
1196 (xsl:template match="conflict"): Remove.
1197 (xsl:template match="terminal"): Line-wrap the list of rules in which
1198 the terminal is used.
1199 (xsl:template match="nonterminal"): Likewise for nonterminals.
1200 (xsl:template match="automaton" mode="conflicts"): New.
1201 (xsl:template match="state" mode="conflicts"): New.
1202 (xsl:template name="line-wrap"): New.
1203 (xsl:template name="ws-search"): New.
1204 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
1205 (xsl:template match="bison-xml-report"): Instead of styling the
1206 "conflicts" element, style the "automaton" element with mode
1207 "conflicts."
1208 (xsl:template match="conflicts"): Remove.
1209 (xsl:template match="conflict"): Remove.
1210 (xsl:template match="automaton" mode="conflicts"): New.
1211 (xsl:template match="state" mode="conflicts): New.
1212 * src/conflicts.c (conflicts_output_xml): Remove.
1213 * src/conflicts.h (conflicts_output_xml): Remove prototype.
1214 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
1215 * src/print.c (print_grammar): Consistently wrap at the 66th column so
1216 the corresponding XSLT is easier. Also, never wrap between a word and
1217 the comma that follows it.
1218
793fbca5
JD
12192007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
1220
1221 Improve C++ namespace support. Discussed starting at
1222 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
1223 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
1224 b4_namespace_close): New macros that interpret the %define variable
1225 "namespace" so its value can contain "::" to indicate nested
1226 namespaces.
1227 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
1228 the above macros.
1229 * data/lalr1.cc (b4_namespace): Likewise.
1230 * data/location.cc (b4_namespace): Likewise.
1231 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
1232 inside a new table in the general %define entry. Document `%define
1233 namespace' there as well. Point the %name-prefix entry to it since it
1234 explains it more completely in the case of C++.
1235 (C++ Bison Interface): Mention `%define namespace' instead of
1236 %name-prefix.
1237 (Table of Symbols): Remove the `%define push_pull' entry. The %define
1238 entry suffices.
1239 * tests/c++.at (Relative namespace references): New test case.
1240 (Absolute namespace references): New test case.
1241 (Syntactically invalid namespace references): New test case.
1242 * tests/input.at (C++ namespace reference errors): New test case.
1243
35b8730d
JD
12442007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
1245
1246 Add syncline support and location accessor to internal %define
1247 interfaces.
1248 * data/bison.m4 (b4_percent_define_get_loc): New.
1249 (b4_percent_define_get_syncline): New.
1250 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
1251 (b4_percent_define_default): Record defining location as line 1 rather
1252 than 0 for the sake of synchronizing #line's, and define
1253 b4_percent_define_syncline(VARIABLE).
1254 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
1255 * src/muscle_tab.c (muscle_syncline_grow): New.
1256 (muscle_code_grow): Use muscle_syncline_grow.
1257 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
1258 define b4_percent_define_syncline(VARIABLE).
1259 (muscle_percent_define_get_loc): New.
1260 (muscle_percent_define_get_syncline): New.
1261 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
1262 remove some unused variables.
1263 (muscle_percent_define_default): Record defining location as line 1
1264 rather than 0 for the sake of synchronizing #line's, and define
1265 b4_percent_define_syncline(VARIABLE).
1266 (muscle_percent_define_check_values): Use
1267 muscle_percent_define_get_loc.
1268 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
1269 (muscle_percent_define_get_syncline): Prototype.
1270 * tests/skeletons.at (%define Boolean variables: invalid skeleton
1271 defaults): Update output for location change.
1272 (Complaining during macro argument expansion): Extend to test
1273 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
1274
7dc4a694
JD
12752007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
1276
1277 Fix some error-reporting macro bugs.
1278 * data/bison.m4 (b4_cat): New.
1279 (b4_error, b4_error_at): Use b4_cat to send error directives directly
1280 to stdout so they don't become arguments to other macros. Update
1281 comments and add examples.
1282 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
1283 add examples.
1284 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
1285 after printing the error directive so that M4 doesn't report subsequent
1286 problems that are induced by this problem.
1287 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
1288 instead of just in them. Recognize @\n in both places. Both expand to
1289 the empty string. Needed by b4_cat.
1290 * tests/skeletons.at (Complaining during macro argument expansion):
1291 New test case.
1292 (Fatal errors make M4 exit immediately): New test case.
1293
d4bd2295
JD
12942007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
1295
1296 Implement --print-datadir.
1297 * src/getargs.c (usage): Mention.
1298 (PRINT_DATADIR_OPTION): New anonymous enum member.
1299 (long_options): Add entry for it.
1300 (getargs): Add case for it calling compute_pkgdatadir.
1301 * src/output.c (output_skeleton): Encapsulate data directory
1302 computation from here...
1303 (prepare): ... and from here...
1304 (compute_pkgdatadir): ... into this new function.
1305 * src/output.h (compute_pkgdatadir): Prototype.
1306
34cdeddf
JD
13072007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
1308
1309 * src/print-xml.c (escape_bufs): New static global variable
1310 replacing...
1311 (xml_escape_n): ... the static local variable buf here.
1312 (print_xml): Free memory for escape_bufs.
1313 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
1314
d782395d
JD
13152007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
1316
1317 Replace `%push-parser' and `%push-pull-parser' with
1318 `%define push_pull "push"' and `%define push_pull "both"'.
1319 `%define push_pull "pull"' is the default.
1320 * doc/bison.texinfo (Push Decl, Push Parser Function,
1321 Pull Parser Function, Parser Create Function, Parser Delete Function):
1322 Update declarations.
1323 (Decl Summary, Table of Symbols): Replace %push-parser and
1324 %push-pull-parser entries with a %define push_pull entry.
1325 * data/bison.m4 (b4_percent_define_check_values): New macro.
1326 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
1327 definitions...
1328 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
1329 definitions...
1330 * data/push.c: ... to here and compute them from the value of the
1331 %define variable push_pull.
1332 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
1333 parsing requests here...
1334 * data/yacc.c: ... hack this to switch to push.c any time
1335 b4_use_push_pull_flag or the %define variable push_pull is set. This
1336 will go away when we mv push.c yacc.c.
1337 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
1338 push parsing is not supported since unused %define variables are
1339 reported anyway.
1340 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
1341 * src/muscle_tab.h (muscle_percent_define_check_values): Update
1342 comments for consistency with b4_percent_define_check_values.
1343 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
1344 muscles.
1345 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
1346 Remove.
1347 (prologue_declaration): Remove %push-parser and %push-pull-parser
1348 rules.
1349 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
1350 * tests/calc.at: Update declarations.
1351 * tests/input.at (%define enum variables): New test case.
1352 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
1353 declaration.
1354 (Push Parsing: Multiple impure instances): Update declaration.
1355 (Push Parsing: Unsupported Skeletons): New test case.
1356 * tests/torture.at (Exploding the Stack Size with Alloca): Update
1357 declaration.
1358 (Exploding the Stack Size with Malloc): Update declaration.
1359
3f999f78
WP
13602007-09-24 Wojciech Polak <polak@gnu.org>
1361
1362 Add XSLT transformations.
1363
1364 * data/xslt/xml2dot.xsl: Transform XML into DOT.
1365 * data/xslt/xml2text.xsl: Transform XML into plain text.
1366 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
1367 * data/Makefile.am (xsltdir): New variable.
1368 (dist_xslt_DATA): Add xslt/*.xsl files.
1369
a4f75309
PE
13702007-09-23 Paul Eggert <eggert@cs.ucla.edu>
1371
1372 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
1373 Problem reported by Wojciech Polak.
1374 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
1375 (xml_printf): Undo change I made on 21 September; that is,
1376 indent 2 spaces, not 1.
1377
ad5feac4
JD
13782007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
1379
1380 Pacify ./configure --enable-gcc-warnings.
1381 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
1382 `char const *' instead of `char *'.
1383 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
1384 local variable `sep'.
1385
41d7a5f2
PE
13862007-09-21 Paul Eggert <eggert@cs.ucla.edu>
1387
1388 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
1389 elsewhere.
1390 * src/print-xml.c: Prefer "const" after types; that's more consistent.
1391 (xml_printf): Indent just 1 space for level.
1392 (e_char, xlate_char): Remove.
1393 (xml_escape_string): Rewrite to avoid undefined behavior (used
1394 storage that was freed from the stack).
1395 (xml_escape_n): Don't bother checking for subscript error.
1396
3f999f78
WP
13972007-09-21 Wojciech Polak <polak@gnu.org>
1398
1399 Add Bison XML Automaton Report.
41d7a5f2
PE
1400
1401 Add support for an -x option to generate an XML report.
1402 It is not documented yet.
1403 * src/print-xml.c: New file.
1404 * src/print-xml.h: Likewise.
1405 * lib/timevar.def (TV_XML): New var.
1406 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
1407 * src/conflicts.c: Include print-xml.h.
1408 (solved_conflicts_xml_obstack): New var.
1409 (log_resolution, conflicts_solve, conflicts_free):
1410 Add support for XML report.
1411 (conflicts_output_val): New function.
1412 * src/conflicts.h (conflicts_output_val): New decl.
1413 * src/files.c (spec_xml_file): New var.
1414 (compute_output_file_names, output_file_names_free): Add XML support.
1415 * src/files.h (spec_xml_file): New decl.
1416 * src/getargs.c (xml_flag): New var.
1417 (usage, short_options, long_options, getargs): Add XML support.
1418 * src/getargs.h (xml_flag): New decl.
1419 * src/gram.c: Include print-xml.h.
1420 (rule_lhs_print_xml, rule_rhs_print_xml):
1421 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
1422 New functions.
1423 * src/gram.h: Declare external ones.
1424 * src/main.c: Include print-xml.h.
1425 (main): Add XML support.
1426 * src/reduce.c: Include print-xml.h.
1427 (reduce_xml): New function.
1428 * src/reduce.h: Declare it.
1429 * src/state.c: Include print-xml.h.
1430 (state_new): Add XML support.
1431 (state_rule_lookahead_tokens_print_xml): New function.
1432 * src/state.h: Declare it.
1433 (struct state): New member solved_conflicts_xml.
1434 * src/symtab.c (symbol_class_get_string): New function.
1435 * src/symtab.h: Declare it.
1436
6d8e724d
PE
14372007-09-21 Paul Eggert <eggert@cs.ucla.edu>
1438
1439 * GNUmakefile: Switch to coreutils's version.
1440 * bootstrap: Likewise.
1441 * Makefile.cfg: Adjust to new GNUmakefile.
1442 * README-hacking: Likewise.
1443
1444 Import from gnulib:
1445
1446 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
1447 Bruno Haible <bruno@clisp.org>
1448
1449 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
1450 and is a script that invokes bison. Tighten the code. Add comments.
1451
922bdd7f
JD
14522007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
1453
1454 Spell "boolean" as "Boolean". Reported by Akim Demaille.
1455 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
1456 * doc/bison.texinfo (Decl Summary): Fix.
1457 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
1458 * tests/input.at (Boolean %define variables): Update output.
1459 * tests/skeletons.at (%define boolean variables: invalid skeleton
1460 defaults): Rename to...
1461 (%define Boolean variables: invalid skeleton defaults): ... this and
1462 update output.
1463
1b17b01d
JD
14642007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
1465
1466 In impure push mode, don't allow more than one yypstate to be allocated
1467 since multiple impure parsers would corrupt yynerrs.
1468 * data/push.c (yypstate_allocated): New static global variable
1469 initialized to 0.
1470 (yypull_parse): If yypstate_new returns 0, don't report it as memory
1471 exhaustion if yypstate_allocated is 1, but still return 2.
1472 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
1473 already 1. Otherwise, set it to 1.
1474 (yypstate_delete): Set it to 0.
1475 * tests/push.at (Push Parsing: Multiple impure instances): New test
1476 case.
1477
9987d1b3
JD
14782007-08-17 Bob Rossi <bob@brasko.net>
1479
1480 * doc/bison.texinfo (Push Decl): Document the push parser.
1481 (Table of Symbols): Ditto.
1482 (Pure Decl): Ditto.
1483 (Decl Summary): Ditto.
1484 (Multiple Parsers, Push Parser Function, Pull Parser Function,
1485 Parser Create Function, Parser Delete Function):
1486 Add new push parser symbols.
1487 (Table of Symbols): Document push-parser, push-pull-parser,
1488 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
1489
f16b0819
PE
14902007-08-15 Paul Eggert <eggert@cs.ucla.edu>
1491
1492 Update to GPLv3.
1493 * doc/gpl-3.0.texi: New file.
1494 * doc/gpl.texi: Remove.
1495 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
1496 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
1497 * README-hacking, TODO, bootstrap, bootstrap.conf:
1498 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
1499 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
1500 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
1501 * data/lalr1.cc, data/lalr1.java, data/location.cc:
1502 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
1503 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
1504 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
1505 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
1506 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
1507 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
1508 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
1509 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
1510 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
1511 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
1512 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
1513 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
1514 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
1515 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
1516 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
1517 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
1518 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
1519 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
1520 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
1521 * src/complain.c, src/complain.h, src/conflicts.c:
1522 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
1523 * src/files.h, src/flex-scanner.h, src/getargs.c:
1524 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
1525 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
1526 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
1527 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
1528 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
1529 * src/print.c, src/print.h, src/print_graph.c:
1530 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
1531 * src/reduce.h, src/relation.c, src/relation.h:
1532 * src/revision.h, src/scan-code.h, src/scan-code.l:
1533 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
1534 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
1535 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
1536 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
1537 * tests/Makefile.am, tests/actions.at, tests/c++.at:
1538 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
1539 * tests/existing.at, tests/glr-regression.at:
1540 * tests/headers.at, tests/input.at, tests/java.at:
1541 * tests/local.at, tests/output.at, tests/push.at:
1542 * tests/reduce.at, tests/regression.at, tests/sets.at:
1543 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
1544 * tests/torture.at:
1545 Update to GPLv3.
1546
728c4be2
JD
15472007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
1548
1549 Get rid of broken %no-parser, -n, and --no-parser implementation and
1550 documentation.
1551 * TODO: Don't mention them.
1552 * doc/bison.1: Likewise.
1553 * doc/bison.texinfo (Decl Summary): Likewise.
1554 (Bison Options): Likewise.
1555 (Option Cross Key): Likewise.
1556 * src/getargs.c (no_parser_flag): Remove global variable.
1557 (usage): Don't print description of -n and --no-parser.
1558 (long_options): Remove --no-parser entry here.
1559 (getargs): Remove -n case in the switch here.
1560 * src/getargs.h (no_parser_flag): Remove extern.
1561 * tests/regression.at (Web2c Actions): Remove comment that mentions
1562 --no-parser.
1563
5d31a216
JD
15642007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
1565
1566 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
1567 name user variables starting with `yy'. Just pass NULL instead of a
1568 dummy local &yylval to yypush_parse.
1569 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
1570 starting with `yy'.
1571
a2ea208d
JD
15722007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
1573
1574 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
1575 true since it's then always used regardless of whether yyoverflow is
1576 defined. Reported by Christian Burger at
1577 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
1578 * THANKS: Add Christian Burger.
1579
91661ebb
JD
1580 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
1581 node names: say "Decl Summary" not "Bison Declaration Summary".
1582
cbd50549
JD
15832007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
1584
1585 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
1586 determine whether this function has already complained about an invalid
1587 value for a %define boolean variable, don't check whether Bison has
1588 ever examined the value. As written, the check was a tautology.
1589 Instead, record and check for this complaint using a separate muscle.
1590
eb1b0740
JD
15912007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1592
1593 Fix push parsing memory leak reported by Brandon Lucia at
1594 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
1595 * THANKS: Add Brandon Lucia.
1596 * data/push.c (yypstate_delete): Free the stack if it was reallocated
1597 but the parse never completed and thus freed it.
1598 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
1599 * tests/testsuite.at: Include push.at.
1600 * test/push.at: New.
1601 (Push Parsing: Memory Leak for Early Deletion): New test case.
1602
9d774aff
JD
16032007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
1604
1605 Improve handling of multiple S/R conflicts in the same state and of S/R
1606 conflicts involving multiple reductions.
1607 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
1608 set for a state here or Bison will abort if it is reassigned on a
1609 later conflicted reduction in the same state.
1610 Similarly, don't finalize and assign the solved conflicts report here
1611 or it will be lost if it is reassigned on a later conflicted reduction
1612 in the same state.
1613 (set_conflicts): Instead, assign them both here after all S/R conflicts
1614 in the state have been fully examined.
1615 * src/print.c (shift_set): Rename to...
1616 (no_reduce_set): ... this.
1617 (print_reductions): Update for rename, and add %nonassoc error action
1618 tokens to no_reduce_set so that, when printing the first remaining
1619 reduction on an error action token, the reduction is enclosed in
1620 brackets.
1621 (print_results): Update for rename.
1622 * tests/conflicts.at (Solved conflicts report for multiple reductions
1623 in a state): New test case.
1624 (%nonassoc error actions for multiple reductions in a state): New test
1625 case.
1626
1627 * src/main.c (main): Don't depend on C99 features.
1628
10159d2a
JD
16292007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
1630
1631 * build-aux/.cvsignore: Add compile.
b541ffdf
JD
1632 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
1633 uniwidth.
10159d2a 1634
953b3935
JD
16352007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
1636
1637 * bootstrap (slurp): Create target directories that don't exist.
1638 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
1639
6ce2d93a
JD
16402007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
1641
1642 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
1643 than item number.
1644 * closure.c (closure): Likewise.
1645 * state.h (reductions): Comment sorting of rules.
1646 (state): Comment sorting of items.
1647
ce3448d5
JD
16482007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
1649
1650 Fix C++ test cases after recent Gnulib changes. Discussed starting at
1651 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
1652 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
1653 definition in order to avoid Gnulib headers since we don't use config.h
1654 here.
1655 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
1656 rather than AT_DATA so that config.h is included.
1657
8a86eef0
JD
16582007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
1659
1660 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
1661 instead of fprintf. Guard these functions with #if YYDEBUG instead of
1662 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
1663 and so that YYFPRINTF is guaranteed to be defined here.
1664
b1a81613
JD
16652007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
1666
1667 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
1668 with...
1669 (muscle_percent_define_check_values): ... this more helpful function.
1670 Again, it's not used yet, but it will be.
1671 * src/muscle_tab.h: Likewise.
1672
71b61d4d
JD
1673 Improve some comments in parser table construction.
1674 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
1675 (generate_states): Don't mention ruleset, which is internal to closure.
1676 * src/closure.c (closure): Explain sorting of core and itemset, which
1677 is required for this function to behave correctly.
1678 * src/closure.h (closure): Mention sorting.
1679
2a6b783d
JD
16802007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
1681
1682 * src/lalr.c (state_lookahead_tokens_count): For code readability,
1683 move the check for disabled transitions to an aver since conflict
1684 resolution hasn't happened yet.
1685
1686 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
1687 labels a state as inconsistent just because it has error transitions.
1688 The original form of this check appeared in revision 1.1 of lalr.c,
1689 which was committed on 1991-12-21. Now (at least), changing the
1690 consistency label on such a state appears to have no useful effect in
1691 any of the places it is examined, which I enumerate below. The key
1692 point to understanding each item in this enumeration is that a state
1693 with an error transition is labelled consistent in the first place only
1694 if it has no rules, so the check cannot matter for states that have
1695 rules. (1) Labelling a state as inconsistent will cause set_conflicts
1696 to try to identify its conflicts, and a state must have *rules* to have
1697 conflicts. (2) Labelling a state as inconsistent will affect how
1698 action_row sets the default *rule* for the state. (3) Labelling a
1699 state as inconsistent will cause build_relations to add lookback edges
1700 to *rules* in that state.
1701 * src/state.h (struct state): Word the comment for member consistent
1702 more carefully.
1703
14462c2b
JD
17042007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1705
1706 Don't depend on C99 features.
1707 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
1708 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
1709 * src/reader.c (check_and_convert_grammar): Fix for-loop.
1710 * src/state.c (state_mark_reachable_states): Fix for-loop.
1711 (state_remove_unreachable_states): Fix for-loop.
1712
1713 Don't widen struct state with member reachable just to temporarily
1714 record reachability. Instead, use a local bitset.
1715 * src/state.h (struct state): Remove member.
1716 * src/state.c (state_new): Don't initialize it.
1717 (state_mark_reachable_states): Rename to...
1718 (state_record_reachable_states): ... this, and use bitset.
1719 (state_remove_unreachable_states): Use bitset.
1720
5a43d418
JD
17212007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
1722
1723 * src/Makefile.am (yacc): Quote target action commands properly so
1724 that the yacc script isn't corrupt. Reported by Hans Aberg at
1725 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
1726
0c650a20
JD
1727 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
1728 the case of pure parsers. Reported by Frans Englich at
1729 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
1730 * THANKS: Add Frans Englich.
1731
61fee93e
JD
1732 * NEWS (2.3a+): In the %code entry, reference section `Bison
1733 Declaration Summary' from the manual now since the %code summary has
1734 moved there.
1735 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
1736 in the rules section must be terminated by semicolons.
1737
f124d423
JD
17382007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
1739
1740 Extend the front-end API for %define variables to more completely
1741 mirror the back-end. This will be useful in the future.
1742 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
1743 Update comments to mention the new front-end counterparts of these
1744 macros.
1745 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
1746 for muscle_string_decode and muscle_location_decode.
1747 (muscle_string_decode): New static function.
1748 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
1749 (muscle_percent_define_get, muscle_percent_define_ifdef): New
1750 functions.
1751 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
1752 muscle_percent_define_get to mimic the b4_percent_define_flag_if
1753 implementation more closely.
1754 (muscle_percent_define_invalid_value): New function.
1755 * src/muscle_tab.h (muscle_percent_define_get,
1756 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
1757 Prototype.
1758
75ad86ee
JD
17592007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
1760
1761 * NEWS (2.3a+): Mention yesterday's state-removal change.
1762 (2.3a): Remove the %language entry, which was added after 2.3a.
1763 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
1764 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
1765 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
1766 tests/existing.at: Update copyright date.
1767
5967f0cf
JD
17682007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
1769
1770 If conflict resolution makes states unreachable, remove those states,
1771 report rules that are then unused, and don't report conflicts in those
1772 states.
1773 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
1774 New global function.
1775 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
1776 function.
1777 * src/main.c (main): After conflict resolution, remove the unreachable
1778 states and update all data structures that reference states by number.
1779 * src/state.c (state_new): Initialize each state's reachable member to
1780 false.
1781 (state_mark_reachable_states): New static function.
1782 (state_remove_unreachable_states): New global function.
1783 * src/state.h (struct state): Add member bool reachable.
1784 (state_remove_unreachable_states): Prototype.
1785 * tests/conflicts.at (Unreachable States After Conflict Resolution):
1786 New test case.
1787 * tests/existing.at (GNU pic Grammar): Update test case output now that
1788 an unused rule is discovered.
1789
b09f4f48
JD
17902007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
1791
1792 Minor code cleanup in parser table construction.
1793 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
1794 (new_itemsets, save_reductions): Update for rename to nitemset.
1795 * src/closure.c (nritemset): Rename to...
1796 (nitemset): ... this since the "r" appears to meaningless and isn't
1797 used in the comments.
1798 (closure): Update for rename.
1799 * src/closure.h (nritemset): Update extern to...
1800 (nitemset): ... this.
1801 * src/lalr.c (LA): Fix a typo in comments.
1802 * src/print.c (print_core): Update for rename to nitemset.
1803 * src/print_graph.c (print_graph): Likewise.
1804 * src/state.h: Fix some typos in header comments.
1805
bbb44d83
PE
18062007-04-04 Paul Eggert <eggert@cs.ucla.edu>
1807
9b33de72
PE
1808 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
1809 still sticks to ASCII. Sorry!
1810
bbb44d83
PE
1811 * README-hacking: New file, taken mostly from coreutils, with changes
1812 for Bison. Contains much of the contents of:
1813 * README-cvs: Remove.
1814 * bootstrap: Sync from gnulib.
1815 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
1816 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
1817
29553547
JD
18182007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
1819
1820 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
1821 Setzer.
1822 (Java Differences): Fix some typos.
1823 * THANKS: Add Sebastian Setzer.
1824
01b477c6
PB
18252007-03-07 Paolo Bonzini <bonzini@gnu.org>
1826
730739e4
AD
1827 * data/java.m4 (b4_single_class_if): Remove.
1828 (b4_abstract_if): Look at "%define abstract".
1829 (b4_lexer_if): New.
1830 (b4_union_name): Rename...
1831 (b4_yystype): ... to this. Map to "%define stype".
1832 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
1833 b4_maybe_throws): Fix quoting.
1834 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
1835 * data/lalr1.java (Lexer interface): Always define.
1836 (Lexer interface within parser class): Remove.
1837 (YYLexer class): New, used when "%code lexer" is present.
1838 (constructor): When "%code lexer" is used, pass %lex-param
1839 to the lexer constructor.
1840 (yylex, yyparse): Remove %lex-param from method invocations
1841 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
1842
1843 * doc/bison.texinfo (Java Bison Interface): Mention "%define
1844 abstract". Rename "%define union_name" to "%define stype".
1845 Rename method names according to previous patch.
1846 (Java Scanner Interface): Describe "%code lexer" instead of
1847 "%pure-parser" and "%define single_class".
1848 (Java Differences): Mention "%code lexer".
1849
1850 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
1851 Include scanner here, using macros from tests/local.at.
1852 (AT_DATA_CALC_Y): Remove final argument.
1853 (_AT_CHECK_JAVA_CALC): Likewise.
1854 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
1855 of %locations and %error-verbose.
1856 (main): Test with and without %lex-param.
1857 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
1858 (AT_BISON_OPTION_POPDEFS): Pop it.
01b477c6 1859
122bea3a
JMG
18602007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1861
1862 DJGPP spefic issue. Inhibit the use of disallowed characters for
1863 file name genertion on Win98, WinXP, etc. These are |<>":?*\
1864 and concern testsuite case 46.
1865 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
1866 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
1867 * djgpp/config.bat: Inhibit the use of disallowed characters.
1868
9611cfa2
JD
18692007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
1870
1871 Miscellaneous %define and %code cleanup.
1872 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
1873 values are interpreted.
1874 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
1875 documentation a little more.
1876 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
1877 muscle_percent_define_insert, muscle_percent_code_grow): New
1878 functions/macros.
1879 * src/muscle_tab.h (muscle_percent_define_insert,
1880 muscle_percent_code_grow): Prototype.
1881 * src/parse-gram.y (prologue_declaration): Use
1882 muscle_percent_define_insert and muscle_percent_code_grow when parsing
1883 %define and %code directives.
1884
1885 Make it easy to share %define boolean variables between the front-end
1886 and back-end. Though not used yet, this will be useful in the future.
1887 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
1888 Bison uses of names rather than just skeleton uses of names.
1889 (b4_percent_define_get, b4_percent_define_ifdef): Rename
1890 b4_percent_define_skeleton_variables(VARIABLE) to
1891 b4_percent_define_bison_variables(VARIABLE).
1892 (b4_percent_code_get, b4_percent_code_ifdef): Rename
1893 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
1894 b4_percent_code_bison_qualifiers(QUALIFIER).
1895 (b4_check_user_names_wrap): Update for renames.
1896 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
1897 muscle_percent_define_default): New functions mimicking
1898 b4_percent_define_flag_if and b4_percent_define_default.
1899
1900 For %define variables, report locations for invalid values and
bbb44d83 1901 redefinitions.
9611cfa2
JD
1902 * data/bison.m4 (b4_percent_define_flag_if): Read
1903 b4_percent_define_loc(VARIABLE) to report the location of an invalid
1904 value for VARIABLE.
1905 (b4_percent_define_default): Save a special location in
1906 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
1907 must later be reported as invalid.
1908 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
1909 functions.
1910 (muscle_percent_define_insert): Record the location of VARIABLE in
1911 muscle percent_define_loc(VARIABLE), and use it to report the previous
1912 location for a redefinition.
1913 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
1914 (muscle_percent_define_default): Update like b4_percent_define_default.
1915 (muscle_grow_user_name_list): Rename to...
1916 (muscle_user_name_list_grow): ... this for consistency and use
1917 muscle_location_grow.
1918 * src/muscle_tab.h (muscle_location_grow): Prototype.
1919 * tests/input.at (%define errors): Update expected output.
1920 * tests/skeletons.at (%define boolean variables: invalid skeleton
1921 defaults): New test case.
1922
0bf92491
JD
19232007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
1924
1925 * src/print.c (lookahead_set, state_default_rule): Remove.
1926 (print_reductions): Replace state_default_rule invocation with
1927 equivalent use of yydefact, which was computed in token_actions in
1928 tables.c.
1929 (print_results): Don't allocate lookahead_set.
1930
d3b12988
PB
19312007-02-27 Paolo Bonzini <bonzini@gnu.org>
1932
1933 * data/lalr1.java: Prefix all private members with yy.
1934
f57a7536
JD
19352007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
1936
1937 Use YYFPRINTF instead of fprintf where appropriate. Reported by
9b33de72 1938 Sebastien Fricker at
f57a7536 1939 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
9b33de72 1940 * THANKS: Add Sebastien Fricker.
f57a7536
JD
1941 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
1942 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
1943 accept a variable number of arguments.
1944
6404a5bf
JD
19452007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
1946
1947 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
1948
e4e09639
JMG
19492007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1950
1951 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
1952 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
1953 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
1954
d7e0a1a7
PE
19552007-02-11 Paul Eggert <eggert@cs.ucla.edu>
1956
1957 Undo my 2007-02-07 change, switching back to the c-strcase module
1958 introduced in the 2007-02-03 change. Bruno Haible reported that
1959 the 2007-02-07 change would be dangerous in Turkish if we add a
1960 language whose name contains "i", since "i" is not lowercase "I"
1961 in Turkish.
1962 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
1963 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
1964 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
1965 * m4/.cvsignore: Remove strcase.m4.
1966 * src/getargs.c: Revert 2007-02-07 change, as follows.
1967 Include c-strcase.h.
1968 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
1969
deee93a1
JD
19702007-02-11 Bruno Haible <bruno@clisp.org>
1971
1972 Enable the Java related testsuite tests when the only Java compiler
1973 found is a gcj < 4.3. Discussed at
1974 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
1975 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
1976
574add85
JD
19772007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
1978
1979 * data/Makefile.am: Update copyright date.
1980 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
1981 yypstate_new returns NULL.
1982 (yypstate_new): Return NULL if malloc does.
1983 * src/reader.c (packgram): Move translation of rule actions from the
1984 beginning of packgram to...
1985 (check_and_convert_grammar): ... here right before packgram is invoked
1986 so it's easier to write more complete comments, and remove redundant
1987 code.
1988
e785ccf7
JD
19892007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
1990
1991 As in semantic actions, make @$ in %initial-action, %destructor, and
1992 %printer imply %locations.
1993 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
1994 scanning @$.
1995 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
1996 (@$ in %initial-action implies %locations,
1997 @$ in %destructor implies %locations,
1998 @$ in %printer implies %locations): ... these new test cases.
1999
1cfe1ed7
PE
20002007-02-07 Paul Eggert <eggert@cs.ucla.edu>
2001
2002 Undo most of the 2007-02-03 change, switching to the strcase module
2003 now that gnulib strcase has been fixed.
2004 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
2005 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
2006 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
2007 * m4/.cvsignore: Add strcase.m4.
2008 * src/getargs.c: Revert 2007-02-03 change, as follows.
2009 Don't include c-strcase.h.
2010 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
2011 strcasecmp has "unspecified behavior" outside the POSIX locale,
2012 but it works fine in practice if at least one argument is ASCII,
2013 as is the case in Bison.
2014
0049ec86
PB
20152007-02-07 Paolo Bonzini <bonzini@gnu.org>
2016
2017 * tests/java.at: Skip tests if only one of javac/java is present.
2018 Reported by Joel E. Denny.
2019 * tests/atlocal.in: Adjust copyright years.
2020
20212007-02-05 Paolo Bonzini <bonzini@gnu.org>
2022
2023 * data/lalr1.java (Stack): Work around old verifiers that disallow
2024 access to the private fields of an inner class, from the outer class.
2025 We can make Stack's fields public because user code doesn't have access
2026 to the instance of Stack used by parse(). Reported by Paul Eggert.
2027
2c2b7220
PE
20282007-02-03 Paul Eggert <eggert@cs.ucla.edu>
2029
2030 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
2031 the right spot for these files?
2032 * bootstrap.conf (gnulib_modules): Add c-strcase.
2033 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
2034 c-strncasecmp.c.
2035 * src/getargs.c: Include c-strcase.h.
2036 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
2037 to avoid unspecified behavior.
2038
b2b81dae
JD
20392007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
2040
2041 * doc/bison.texinfo (Decl Summary): Correct typo.
2042
c1d19e10
PB
20432007-01-30 Paolo Bonzini <bonzini@gnu.org>
2044
2045 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
2046 Complain if the value does not match empty, "true" or "false".
2047 * data/c++.m4: Adjust default definitions of %define variables.
2048 * data/java.m4: Adjust default definitions of %define variables.
2049 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
2050 to above behavior.
2051 * tests/input.at (Boolean %define variables): Test new behavior.
2052
8405b70c
PB
20532007-01-29 Paolo Bonzini <bonzini@gnu.org>
2054
2055 * NEWS: Mention java.
2056 * TODO: Remove things that are done.
2057 * bootstrap.conf: Add javacomp-script and javaexec-script.
2058 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
2059
2060 * data/Makefile.am: Add new files.
2061 * data/java-skel.m4: New.
2062 * data/java.m4: New.
2063 * data/lalr1.java: New.
2064
2065 * doc/bison.texinfo: Put "A Complete C++ Example" under
2066 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
2067 under Other Languages.
2068
2069 * src/getargs.c (valid_languages): Add Java.
2070 * src/getargs.h (struct bison_language): Update size of string fields.
2071
2072 * tests/Makefile.am: Add java.at.
2073 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
2074 * tests/java.at: New.
2075 * tests/testsuite.at: Include it.
2076
3eb82471
JD
20772007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
2078
2079 Clean up.
2080 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
2081 at_directive_argv arguments so these no longer have to be global
2082 variables. Also, update the implementation for the following changes.
2083 (fail_for_at_directive_too_many_args,
2084 fail_for_at_directive_too_few_args): Add at_directive_name argument.
2085 (at_directive_name): Remove as at_directive_argv[0] will be used for
2086 this now.
2087 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
2088 for the directive name.
2089 (at_directive_argc, at_directive_argv): Make these local within
2090 skel_lex instead of global.
2091 (INITIAL): Update directive start action for above changes.
2092 (SC_AT_DIRECTIVE_ARG): Rename to...
2093 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
2094 (SC_AT_DIRECTIVE_SKIP_WS): Update.
2095 (scan_skel): Move yylex_destroy to...
2096 (skel_scanner_free): ... here.
2097 * tests/skeletons.at (installed skeleton file name): Rename to...
2098 (installed skeleton file names): ... this.
2099
148d66d8
JD
21002007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
2101
2102 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
2103 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
2104 Summary" not "Directives".
2105 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
2106 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
2107 since the former is now the more complete one.
2108 (Prologue Alternatives): Likewise and do the same for %defines.
2109 (Table of Symbols): Add summary of %code, add summary of %define, and
2110 move full %code documentation to...
2111 (Decl Summary): ... here for consistency with other entries in these
2112 sections.
2113 Move %define entry in order to keep this list alphabetized.
2114 Reword %define entry a little to put less emphasis on the skeleton
2115 concept, which most users shouldn't have to think about.
2116
665f0c24
PE
21172007-01-26 Paul Eggert <eggert@cs.ucla.edu>
2118
2119 Adjust to recent gnulib changes.
2120 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
2121 Add string.h, string_.h, unistd_.h, wchar_.h.
2122 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
2123 * src/system.h: Don't include <stpcpy.h>; this is now done by
2124 <string.h>.
2125
592d0b1e
PB
21262007-01-23 Paolo Bonzini <bonzini@gnu.org>
2127
2128 Simplify implementation of unqualified %code, implement macros for
2129 uniform treatment of boolean %define flags. Document %define.
2130 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
2131 b4_percent_code_ifdef): New.
2132 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
2133 * data/c++.m4: Define default value for global_tokens_and_yystype.
2134 * data/glr.cc: Likewise.
2135 * data/location.cc: Use b4_percent_define_flag_if.
2136
148d66d8 2137 * doc/bison.texinfo (Decl Summary): Document %define.
592d0b1e
PB
2138
2139 * src/parse-gram.y (Unqualified %code): Change muscle name to
2140 b4_percent_code().
2141 (content.opt): Default to empty.
2142
a7867f53
JD
21432007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
2144
2145 Implement support for relative and absolute skeleton file names.
2146 Discussed starting at
2147 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
2148 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
2149 (Bison Options): Document in --skeleton entry.
2150 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
2151 full_skeleton can't necessarily hold all of pkgdatadir.
2152 If the specified skeleton file name contains a `/', don't prepend
2153 pkgdatadir.
2154 * src/parse-gram.y (prologue_declaration): If the specified skeleton
2155 file name contains a `/', prepend the grammar file directory.
2156 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
2157 * skeletons.at: New file.
2158 (relative skeleton file names): New test case.
2159 (installed skeleton file names): New test case.
2160 * tests/testsuite.at: Include skeletons.at.
2161
2162 * bootstrap: Update copyright to 2007.
2163
830c9b18
PB
21642007-01-17 Paolo Bonzini <bonzini@gnu.org>
2165
2166 * bootstrap: Remove occurrences of .#bootmp from the files.
2167
a8c2e813
AD
21682007-01-17 Akim Demaille <akim@epita.fr>
2169
2170 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
2171 nonterminals.
2172 Use per-type %printer.
2173
279cabb6
JD
21742007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
2175
2176 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
2177 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
2178 djgpp/config.site, src/files.c, src/files.h, src/main.c,
2179 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
2180 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
2181 tests/glr-regression.at, tests/input.at, tests/local.at,
2182 tests/output.at, tests/torture.at: Update copyright to 2007.
2183
bb32f4f2
AD
21842007-01-16 Akim Demaille <akim@epita.fr>
2185
2186 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
2187 error code.
2188 (Calc++ Scanner): Exit with failure if we can't open the input
2189 file.
2190 Accept "-" standing for stdin.
2191 (Calc++ Top Level): Print the result only if the parsing was
2192 successful.
2193
7cff04b5
AD
21942007-01-16 Akim Demaille <akim@epita.fr>
2195
2196 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
2197
a4e25e1d
JD
21982007-01-15 Paolo Bonzini <bonzini@gnu.org>
2199 and Joel E. Denny <jdenny@ces.clemson.edu>
2200
2201 Clean up %define and %code implementation in M4 some. Most
2202 importantly, rename all related macros to be in the b4_percent_define
2203 and b4_percent_code namespaces. Also, complete support for `.' in
2204 %define variable names and %code qualifiers.
2205 * data/bison.m4 (b4_check_user_names): Check for special
2206 "SKELETON-NAMESPACE(name)" macros instead of using two nested
2207 m4_foreach loops.
2208 (b4_get_percent_define, b4_get_percent_code): Rename to...
2209 (b4_percent_define_get, b4_percent_code_get): ... these.
2210 Extend documentation with examples.
2211 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
2212 b4_percent_define_skeleton_variables and
2213 b4_percent_code_skeleton_qualifiers.
2214 Expect any value for the %define variable `foo' to be stored in the
2215 macro named `b4_percent_define(foo)'; expect any %code blocks for the
2216 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
2217 expect any unqualified %code blocks to be stored in a macro named
2218 `b4_percent_code_unqualified'.
2219 Use m4_indir so that %define variable names and %code qualifiers can
2220 contain `.', which is allowed by the grammar parser.
2221 (b4_percent_define_default): New macro to set a default value for a
2222 %define variable.
2223 (m4_wrap): Update wrapped code, and fix some underquoting.
2224 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
2225 Expect grammar uses of %define variables and %code qualifiers to be
2226 defined in b4_percent_define_user_variables and
2227 b4_percent_code_user_qualifiers.
2228 * data/c++.m4: Use b4_percent_define_default rather than
2229 m4_define_default. Fix some underquoting. Skeleton usage of %define
2230 variable define_location_comparison now implies skeleton usage of
2231 %define variable filename_type.
2232 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
2233 data/push.c, data/yacc.c: Update macro names.
2234 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
2235 muscle names.
2236
e37c665c
JMG
22372007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2238
2239 DJGPP specific issues.
2240
2241 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
2242 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
2243
7d2d521f
JD
22442007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2245
2246 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
2247 run parsers in all tests so that Valgrind is invoked during
2248 maintainer-check-valgrind.
2249 (Duplicate representation of merged trees): Free all semantic values.
2250 (Duplicated user destructor for lookahead): Likewise.
2251
e0ac9b4b
JD
22522007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2253
2254 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
2255 command-line prefix.
2256 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
2257 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
2258 miss Valgrind messages.
2259 (Exploding the Stack Size with Malloc): Likewise.
2260
78143faa
JD
22612007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2262
2263 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
2264 locals. Reported by Juan Manuel Guerrero at
2265 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
2266 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
2267 Fix some indentation also.
2268 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
2269 explaining this issue.
2270
7ecec4dd
JD
22712007-01-09 Paolo Bonzini <bonzini@gnu.org>
2272 and Joel E. Denny <jdenny@ces.clemson.edu>
2273
2274 Simplify union and prologue handling, and escape union and lex/parse
2275 params with digraphs.
2276 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
2277 values to the empty string since these are no longer guaranteed
2278 initialized by the front-end.
2279 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
2280 braces around b4_user_stype since this is no longer done by the
2281 front-end.
2282 * src/files.c, src/files.h (pre_prologue_obstack,
2283 post_prologue_obstack): Remove.
2284 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
2285 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
2286 with digraphs. This fixes lex params and parse params.
2287 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
2288 * src/output.c (prepare): Remove muscle insertion of the prologues.
2289 (output): Remove freeing of pre_prologue_obstack and
2290 post_prologue_obstack.
2291 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
2292 than prologue_augment for prologue parsing so you don't need prologue
2293 obstacks.
5c80250c
JD
2294 (grammar_declaration): For %union RHS, use `braceless' instead of
2295 "{...}" so that braces are already stripped and code is escaped with
2296 digraphs.
7ecec4dd
JD
2297 * src/reader.c (prologue_augment): Remove.
2298 (reader): Remove initialization of pre_prologue_obstack and
2299 post_prologue_obstack.
2300 * src/reader.h (prologue_augment): Remove.
2301
2302 * data/c.m4: Remove stray parenthesis.
2303
16dc6a9e
JD
23042007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2305
2306 Remove quotes from variables names in %define directives and from
2307 qualifiers in %code directives, and restrict the characters that are
2308 allowed in them to M4-friendly ones. For %define, continue to support
2309 the quoted form as a deprecated feature. Discussed starting at
2310 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
2311 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
2312 %code.
2313 * doc/bison.texinfo (Prologue Alternatives): Update.
91661ebb
JD
2314 (Decl Summary): In %defines entry, update mention of `%code requires'
2315 and `%code provides'.
16dc6a9e
JD
2316 (C++ Location Values): Update %define uses.
2317 (Calc++ Parser Interface): Likewise.
2318 (Calc++ Parser): Likewise, and update `%code requires' uses.
148d66d8 2319 (Table of Symbols): Update %code documentation.
16dc6a9e
JD
2320 * src/parse-gram.y (prologue_declaration): For %define variables, use
2321 `variable' instead of `STRING'.
2322 (grammar_declaration): For %code qualifiers, use `ID' instead of
2323 `STRING'.
2324 (variable): New nonterminal that takes an `ID' or a `STRING'.
2325 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
2326 and %define uses.
2327 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
2328 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
2329 (%define errors): Update %define uses.
2330
e9813cd4
JD
23312007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2332
2333 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
2334 instead of muscle_insert for %define values so that M4-special
2335 characters are replaced with digraphs.
2336 * tests/input.at (%define errors): Extend to check weird values.
2337
6afc30cc
JD
23382007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2339
2340 Instead of having skeletons declare all valid %define variables and
2341 %code qualifiers, provide macros that retrieve the associated values
2342 and build these lists automatically. Thus Bison will now warn when a
2343 variable or qualifier is not used by the skeleton in the current
2344 invocation regardless of whether it might sometimes be used by that
2345 skeleton in other invocations. Also, move all %define value macros to
2346 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
2347 form, which is replaced by %code.
2348 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
2349 (b4_check_user_names): ... this, and change the series of valid name
2350 arguments to a single list argument for names used in the skeleton
2351 similar to the existing list argument for names used in the grammar.
2352 Warn instead of complaining.
2353 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
2354 values and %code code, to format %code code properly, and to build
2355 lists of all %define variables and %code qualifiers used in the
2356 skeleton: b4_skeleton_percent_define_variables and
2357 b4_skeleton_percent_code_qualifiers.
2358 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
2359 Remove, and...
2360 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
2361 the skeleton names lists can finish building first. In place of
2362 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
2363 expect the lists b4_user_percent_define_variables and
2364 b4_user_percent_code_qualifiers.
2365 * data/c++.m4: Where setting default values for b4_parser_class_name,
2366 b4_location_type, b4_filename_type, b4_namespace, and
2367 b4_define_location_comparison, update their names to the
2368 b4_percent_define_ namespace.
2369 * data/glr.c: Don't use b4_check_percent_define_variables and
2370 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
2371 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
2372 (b4_parser_class_name, b4_namespace): Define these using
a4e25e1d 2373 b4_get_percent_define for parser_class_name and namespace.
6afc30cc
JD
2374 * data/location.cc: Use b4_get_percent_define.
2375 * data/push.c: Don't use b4_check_percent_define_variables and
2376 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
2377 * data/yacc.c: Likewise, and don't call m4_exit in
2378 b4_use_push_for_pull_if or m4_wrap code will never execute.
2379 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
2380 Rename to...
2381 (muscle_grow_user_name_list): ... this for consistency with the
2382 terminology used in bison.m4.
2383 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
2384 %define variable names, and rename muscle used_percent_define_variables
2385 to user_percent_define_variables.
2386 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
2387 user_percent_code_qualifiers.
2388 (content): Remove.
2389 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
2390 {CODE} form is no longer accepted.
2391 * tests/input.at (Reject bad %code qualifiers): Rename to...
2392 (Reject unused %code qualifiers): ... this, and update test output.
2393 (%define error): Update test output.
2394
7eb8a0bc
JD
23952007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
2396
2397 Check for unrecognized %define variables similar to checking for
2398 unrecognized %code qualifiers. Check for redefined %define variables.
2399 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
2400 generalizes...
2401 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
2402 (b4_check_percent_define_variables): New, also wraps it.
2403 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
2404 variables using b4_check_percent_define_variables.
2405 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
2406 all those exercised in the test suite and all those listed in the
2407 `Default values' section of c++.m4. Are there others?
2408 * data/push.c, data/yacc.c: Declare no valid %define variables.
2409 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
2410 similar to muscle_find, but it works even when the muscle stores a
2411 const value.
2412 (muscle_grow_used_name_list): New function for constructing the used
2413 name list muscles that b4_check_for_unrecognized_names requires.
2414 * src/parse-gram.y (prologue_declaration): Warn if a variable is
2415 %define'd more than once. Define the b4_used_percent_define_variables
2416 muscle with muscle_grow_used_name_list.
2417 (grammar_declaration): Abbreviate %code code with
2418 muscle_grow_used_name_list.
2419 * tests/input.at (%define errors): New.
2420
3fc65ead
JD
24212007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2422
2423 Provide warn_at, complain_at, and fatal_at function callbacks to the
2424 skeletons, and use this for %code qualifier complaints.
2425 * data/bison.m4 (b4_error_at): New, invoked by...
2426 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
2427 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
2428 @fatal_at(...@) directives.
2429 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
2430 qualifiers in b4_used_percent_code_qualifiers and to use
2431 b4_complain_at.
2432 * src/location.c, src/location.h (boundary_set_from_string): New global
2433 function.
2434 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
2435 function.
2436 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
2437 to b4_used_percent_code_qualifiers.
2438 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
2439 function.
2440 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
2441 (lineno): Rename to...
2442 (out_lineno): ... this so I don't misunderstand it again.
2443 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
2444 here; these newlines are in the input but not the output file.
2445 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
2446 (at_directive_perform): ... this new static function, and add handling
2447 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
2448 directives.
2449 * tests/input.at (Reject bad %code qualifiers): Update test output with
2450 locations and extend.
2451
2452 * tests/output.at (Output file name: [, Output file name: ]): Remove
2453 bogus comment about these tests failing.
2454
1c7b7e1d
JD
24552007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2456
2457 Clean up b4_check_percent_code_qualifiers a little.
2458 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
2459 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
2460 documentation and add examples.
2461 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
2462 qualifiers here.
2463
08af01c2
JD
24642007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
2465
2466 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
2467 unreliable -- especially when they're hidden inside another macro.
2468 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
2469 data/c.m4: Remove m4_divert(-1).
2470 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
2471 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
2472 m4_divert_push(0) and m4_divert_pop(0).
279cabb6 2473 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
08af01c2
JD
2474 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
2475 pushed and popped by m4sugar, should be first on the stack.
2476
2477 Provide warn, complain, and fatal function callbacks to the skeletons.
2478 This provides more flexibility than m4_fatal, improves the error
2479 message format, and captures messages for translation. Discussed
2480 starting at
2481 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
2482 * data/bison.m4 (b4_error): New, invoked by...
2483 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
2484 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
2485 directives. Because these M4 macros might be called when the current
2486 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
2487 the previous removal of uses of m4_divert, which caused trouble.
2488 (b4_check_percent_code_qualifiers): Use b4_complain instead of
2489 m4_fatal to report unrecognized %code qualifiers.
2490 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
2491 push parser requests.
2492 * data/glr.c: Use b4_complain instead of m4_fatal to report
2493 non-deterministic push parser requests.
2494 Update @output usage to @output(...@) form.
2495 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
2496 report missing %defines. Update @output usage to @output(...@) form.
2497 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
2498 @output(...@) form.
2499 * src/main.c (main): Invoke skel_scanner_free.
2500 * src/scan-skel.h (skel_scanner_free): Prototype new function.
2501 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
2502 obstack_for_string from flex-scanner.h.
2503 (YY_DECL): Use to declare skel_lex static.
2504 (decode_at_digraphs): Remove; now handled in the new
2505 SC_AT_DIRECTIVE_ARG start condition.
2506 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
2507 functions.
2508 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
2509 at_directive_argv): New static globals.
2510 (INITIAL): Use fail_for_invalid_at.
2511 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
2512 recognize the start of a generalized `@directive(...@)' form and
2513 start...
2514 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
2515 directive args (using the new obstack_for_string), to decode the
2516 contained @ diagraphs, and to perform the directive. It recognizes
2517 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
2518 @output(...@).
2519 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
2520 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
2521 `@,'.
2522 (scan_skel): Initialize obstack_for_string on the first call.
2523 (skel_scanner_free): New function to free obstack_for_string.
2524 * tests/input.at (Reject bad %code qualifiers): Update test output.
2525
8e0a5e9e
JD
25262007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
2527
2528 Consolidate the 4 prologue alternative directives (%code, %requires,
2529 %provides, and %code-top) into a single %code directive with an
2530 optional qualifier field. Discussed at
2531 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
2532 * NEWS (2.3a+): Rewrite the existing entry for the prologue
2533 alternatives.
2534 * doc/bison.texinfo (Prologue Alternatives): Update.
2535 (Decl Summary): Update to %code "requires" and %code "provides".
2536 (Calc++ Parser): Update to %code "requires".
148d66d8 2537 (Table of Symbols): Remove entries for %requires, %provides, and
8e0a5e9e
JD
2538 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
2539 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
2540 are replaced by b4_percent_code_provides and b4_percent_code_requires,
2541 which are skeleton-specific.
2542 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
2543 declare what %code qualifiers it supports and to complain if any other
2544 qualifiers were used in the grammar.
2545 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
2546 and b4_user_code([b4_percent_code_provides]) in place of
2547 b4_user_requires and b4_user_provides.
2548 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
2549 Add b4_user_code([b4_percent_code_top]) and
2550 b4_user_code([b4_percent_code]).
2551 Invoke b4_check_percent_code_qualifiers.
2552 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
2553 PERCENT_REQUIRES): Remove.
2554 (grammar_declaration): Remove RHS's for %code-top, %provides, and
2555 %requires. Rewrite the %code RHS as the unqualified form defining the
2556 muscle b4_percent_code. Add another RHS for the qualified %code form,
2557 which defines muscles of the form b4_percent_code_QUALIFIER and the
2558 b4_used_percent_code_qualifiers muscle.
2559 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
2560 PERCENT_REQUIRES): Remove.
2561 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
2562 %code "requires" and %code "provides".
2563 * tests/input.at (Reject bad %code qualifiers): New.
2564
95021767
JD
25652007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
2566
2567 Use the new code_props interface for destructors and printers.
2568 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
2569 printer_location members, and change the type of the destructor and
2570 printer members to code_props.
2571 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
2572 symbol_printer_get, semantic_type_destructor_set,
2573 semantic_type_printer_set, default_tagged_destructor_set,
2574 default_tagless_destructor_set, default_tagged_printer_set,
2575 default_tagless_printer_set): Use code_props in arguments and return
2576 types in place of char const * and location.
2577 (symbol_destructor_location_get, symbol_printer_location_get): Remove
2578 since the locations are now contained in the return of
2579 symbol_destructor_get and symbol_printer_get.
2580 * src/output.c (symbol_destructors_output, symbol_printers_output):
2581 Replace with...
2582 (symbol_code_props_output): ... this to eliminate duplicate code.
2583 (output_skeleton): Update to use symbol_code_props_output.
2584 * src/reader.c (symbol_should_be_used): Update use of
2585 symbol_destructor_get.
2586 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
2587 Update uses of the various _destructor_set and _printer_set functions.
2588 * src/symtab.c: (default_tagged_destructor_location,
2589 default_tagless_destructor_location, default_tagged_printer_location,
2590 default_tagless_printer_location): Remove since we...
2591 (default_tagged_destructor, default_tagless_destructor,
2592 default_tagged_printer, default_tagless_printer): ... change the type
2593 of these to code_props.
2594 (symbol_new, semantic_type_new, symbol_destructor_set,
2595 semantic_type_destructor_set, symbol_destructor_get,
2596 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
2597 symbol_check_alias_consistency, default_tagged_destructor_set,
2598 default_tagless_destructor_set, default_tagged_printer_set,
2599 default_tagless_printer_set): Update.
2600 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
2601 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
2602 code_props members.
2603 (symbol_print): Use SYMBOL_CODE_PRINT.
2604
f6857bbf
JD
26052007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
2606
2607 Use the new code_props interface for rule actions.
2608 * src/symlist.h (symbol_list): Replace action, action_location, and
2609 used members with a code_props action_props member.
2610 * src/reader.c (symbol_should_be_used, grammar_rule_check,
2611 grammar_midrule_action, grammar_current_rule_merge_set,
2612 grammar_current_rule_symbol_append, packgram): Update.
2613 * src/scan-code.h (translate_rule_action): Remove, no longer used.
2614 * src/scan-code.l (handle_action_dollar): Update.
2615 (translate_rule_action): Remove, no longer used.
2616 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
2617
7c0c6181
JD
26182007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
2619
2620 Use the new code_props interface in parse-gram.y.
2621 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
2622 Update all uses of translate_* functions to use the new code_props
2623 interface and to use gram_scanner_last_string_free and
2624 code_scanner_last_string_free where possible.
2625 (grammar_declaration): symbol_list_destructor_set and
2626 symbol_list_printer_set now perform the translation, so don't do it
2627 here. Use gram_scanner_last_string_free where possible.
2628 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
2629 translate_code): Remove, no longer used.
2630 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
2631 symbol_list_printer_set): Perform code translation here rather than
2632 depending on the caller to do so.
2633
2634 * src/symlist.h (struct symbol_list): Correct some documentation typos.
2635 * src/scan-gram.h (gram_last_string): Remove declaration.
2636 * src/scan-gram.l (last_string): Declare it static.
2637
28e52c0d
JD
26382007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
2639
2640 Encapsulate code properties and related functionality for the various
2641 destructors, printers, and actions into a code_props structure and
2642 interface. This patch merely implements code_props in scan-code.h and
2643 scan-code.l. Future patches will rewrite other modules to use it.
2644 Discussed starting at
2645 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
2646 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
2647 consistently initialize const structs that have an empty location
2648 field.
2649 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
2650 to ensure consistency.
2651 * src/scan-code.h (code_props): New structure.
2652 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
2653 function, macro, and const global variable for initializing a
2654 code_props with no code.
2655 (code_props_plain_init, code_props_symbol_action_init,
2656 code_props_rule_action_init, code_props_translate_code): The rest of
2657 the new code_props functional interface. Among other things, the init
2658 functions set the code_props kind field so that
2659 code_props_translate_code will know whether to behave like
2660 translate_symbol_action, translate_rule_action, or translate_code.
2661 These old translate functions must remain until all other modules are
2662 updated to use the new code_props interface.
2663 (code_scanner_last_string_free): New function similar to
2664 gram_scanner_last_string_free.
2665 (code_scanner_free): Add documentation.
2666 * src/scan-code.l: Implement the new interface.
2667 (code_lex): Make it static, add a code_props* argument, and remove the
2668 rule argument.
2669 (last_string): New static global similar to the one in scan-gram.l.
2670 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
2671 instead of rule.
2672 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
2673 code_props since Bison may one day use this information for destructors
2674 and printers.
2675 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
2676 (handle_action_dollar): Use symbol_list_n_get and set used flag
2677 directly since symbol_list_n_used_set is removed.
2678 (translate_action): Add a code_props* argument and remove the rule,
2679 action, and location arguments. Pass the code_props* on to code_lex.
2680 (translate_rule_action, translate_symbol_action, translate_code):
2681 Rewrite as wrappers around the new code_props interface.
2682 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
2683 it would eventually need to break the encapsulation of code_props.
2684
96034983
JD
26852007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
2686
2687 * etc/.cvsignore: New.
2688
945e396c
JD
26892007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
2690
2691 Add maintainer-push-check to run maintainer-check using push parsing in
2692 place of pull parsing where available.
2693 * Makefile.am (maintainer-push-check): New.
2694 * data/bison.m4 (b4_use_push_for_pull_if): New.
2695 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
2696 appropriately based on their existing values.
2697 (yypush_parse): Don't print push-parser-specific diagnostics if push
2698 parsing is being used in place of pull parsing.
2699 * data/yacc.c: If push parsing should replace pull parsing, redirect to
2700 push.c.
2701 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
2702 variable, and insert b4_use_push_for_pull_flag into muscles.
2703 * tests/Makefile.am (maintainer-push-check): New.
2704
7d596384
JD
27052006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
2706
2707 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
2708 (whether successful or failed) so that yypush_parse can be invoked
2709 again to start a new parse using the same yypstate.
2710 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
2711 check multiple yypull_parse invocations on the same yypstate. For pull
2712 mode, extend to check multiple yyparse invocations.
2713 (Exploding the Stack Size with Alloca): Extend to try with
2714 %push-pull-parser.
2715 (Exploding the Stack Size with Malloc): Likewise.
2716
2717 * tests/calc.at (Simple LALR Calculator): Don't specify
2718 %skeleton "push.c" since %push-pull-parser implies that now.
2719 * tests/headers.at (export YYLTYPE): Don't check for the push
2720 declarations. Otherwise, this test case can't be used to see if push
2721 mode can truly emulate pull mode.
2722 * tests/input.at (Torturing the Scanner): Likewise.
2723 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
2724 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
2725 AT_YACC_IF, which now includes the case of push mode since %skeleton
2726 need not be used for push mode. This will be more intuitive once
2727 push.c is renamed to yacc.c.
2728
7172e23e
JD
27292006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
2730
2731 For push mode, convert yyparse from a macro to a function, invoke yylex
2732 instead of passing a yylexp argument to yypull_parse, and don't
2733 generate yypull_parse or yyparse unless %push-pull-parser is declared.
2734 Discussed starting at
2735 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
2736 * data/bison.m4 (b4_pull_if): New.
2737 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
2738 * data/push.c: Improve M4 quoting a little.
2739 (b4_generate_macro_args, b4_parenthesize): Remove.
2740 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
2741 any time a pull parser is requested.
2742 Don't #define this as a wrapper around yypull_parse. Instead, when
2743 both push and pull are requested, make it a function that does that
2744 same thing.
2745 (yypull_parse): If there's a b4_prefix, #define this to
2746 b4_prefix[pull_parse] when both push and pull are requested.
2747 Don't define this as a function unless both push and pull are
2748 requested.
2749 Remove the yylexp argument and hard-code yylex invocation instead.
2750 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
2751 %push-parser.
2752 * src/getargs.c (pull_parser): New global initialized to true.
2753 * getargs.h (pull_parser): extern it.
2754 * src/output.c (prepare): Insert pull_flag muscle.
2755 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
2756 (prologue_declaration): Set both push_parser and pull_parser = true for
2757 %push-pull-parser. Set push_parser = true and pull_parser = false for
2758 %push-parser.
2759 * src/scan-gram.l: Don't accept %push_parser as an alternative to
2760 %push-parser since there's no backward-compatibility concern here.
2761 Scan %push-pull-parser.
2762 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
2763 instead of %push-parser.
2764 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
2765 prototype it in the module that calls yyparse.
2766 * tests/input.at (Torturing the Scanner): Likewise.
2767 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
2768
2e7944cb
JD
27692006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
2770
2771 Update etc/bench.pl. Optimize push mode a little (the yyn change
2772 deserves most of the credit).
2773 * Makefile.am (SUBDIRS): Add etc subdirectory.
2774 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
2775 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
2776 yytoken, yyval, and yyloc declarations to...
2777 (yyparse or yypush_parse): ... here to improve performance. For
2778 yypush_parse invocations after the first, be sure to assign yyn its old
2779 value again.
2780 (yypstate_new): Don't bother initializing the yyresult field since the
2781 initial value isn't used.
2782 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
2783 remove the #define that, in push mode, set it to yyps->NAME.
2784 * etc/Makefile.am: New.
2785 * etc/bench.pl: Remove and build it instead from...
2786 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
2787 "tests/bison" from the build directory by default rather than just
2788 invoking "bison" from $PATH.
2789 (calc_grammar): Update push parser code: don't declare yylval globally,
2790 don't define yyparse_wrapper, and don't #define yyparse.
2791 (bench_grammar): Update to check all working combinations of yacc.c,
2792 push.c, impure, pure, pull, and push.
2793
c3d50342
JD
27942006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
2795
2796 For push mode, add pull wrappers around yypush_parse.
2797 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
2798 (yypull_parse): New function wrapping yypush_parse.
2799 (yyparse): New #define wrapping yypull_parse.
2800 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
2801 is declared.
2802 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
2803 prototype yylex in the module that calls yyparse, and don't prototype
2804 yyparse there. Otherwise, the yyparse expansion won't compile.
2805 * tests/input.at (Torturing the Scanner): Likewise.
2806
94ebeba5
JD
28072006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
2808
2809 Enable push parsers to operate in impure mode. Thus, %push-parser no
2810 longer implies %pure-parser. The point of this change is to move
2811 towards being able to test the push parser code by running the entire
2812 test suite as if %push-parser had been declared.
2813 * data/push.c (yypush_parse): For impure mode, remove the
2814 yypushed_char, yypushed_val, and yypushed_loc arguments.
2815 Instead, declare these as local variables initialized to the global
2816 yychar, yylval, and yylloc.
2817 For the first yypush_parse invocation only, restore the initial values
2818 of these global variables when it's time to read a token since they
2819 have been overwritten.
2820 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
2821 %push-parser.
2822 * tests/calc.at (Simple LALR(1) Calculator): Always declare
2823 %pure-parser along with %push-parser since this test case was designed
2824 for pure push parsers.
2825 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
2826 (AT_YACC_OR_PUSH_IF): New.
2827 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
2828 add a note that it's still wrong for some cases (as it has been for a
2829 while).
2830 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
2831 %push-parser no longer implies %pure-parser.
2832
a0633178
JD
28332006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
2834
2835 Remove some unnecessary differences between the pull parser code and
2836 the push parser code. This patch enables yynerrs in push mode.
2837 * data/push.c: Reformat M4 a little.
2838 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
2839 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
2840 because push mode is on. Instead, if pure mode is on, move yynerrs
2841 to...
2842 (b4_declare_parser_state_variables): ... here.
2843 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
2844 to yyps->NAME so it can be used in yypush_parse.
2845 (yypush_parse): Don't omit uses of yynerrs in push mode.
2846
8646b6a3
JD
28472006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
2848
2849 Fix bug such that the first pushed token's value and location are
2850 sometimes overwritten (sometimes by %initial-action) before being used.
2851 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
2852 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
2853 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
2854 more closely mimic the pull parser logic.
2855 Don't copy the pushed token to yychar, yylval, and yylloc until it's
2856 time to read a token, which is after any initialization of yylval and
2857 yylloc.
2858 (gottoken): Rename label to...
2859 (yyread_pushed_token): ... for clarity and to avoid infringing on the
2860 user namespace.
2861
9baf4d74
JD
28622006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
2863
2864 Rearrange initialization of the parser state variables so that the
2865 skeleton doesn't have to have a copy for pull mode and another for push
2866 mode. This patch also fixes at least a bug such that yylloc was not
2867 initialized (with b4_location_initial_line and
2868 b4_location_initial_column) upon calling yypush_parse. However, that
2869 initialization now overwrites the first token's location;
2870 %initial-action assigning @$ already did the same thing, and both bugs
2871 will be fixed in a later patch.
2872 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
2873 (b4_declare_parser_state_variables): Remove initialization of yytoken,
2874 yyss, yyvs, yyls, and yystacksize.
2875 (yypstate_new): Remove initialization of some yypstate fields: yystate,
2876 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
2877 yylsp.
2878 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
2879 yyps->NAME so it can be used in yypush_parse.
2880 (yyparse or yypush_parse): For yypush_parse, don't print the
2881 "Starting parse" diagnostic for invocations after the first.
2882 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
2883 yypush_parse, only do it for the first invocation.
2884 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
2885 initialization to occur in yypush_parse but only on the first
2886 invocation.
2887
23522164
JD
28882006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
2889
2890 * data/push.c: Add CPP guards around push parser declarations in both
2891 the header and the code file.
2892 In the code file, move the push parser declarations to the same place
2893 they appear in the header file.
2894 Clean up the M4 some, especially the inconsistent underquoting in
2895 some b4_c_function_def and b4_c_function_decl uses.
2896
bb010fe5
JD
28972006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
2898
2899 Encapsulate the push parser state variables into an M4 macro so the
2900 push skeleton doesn't have to list them again for pull mode's yyparse.
2901 For push mode, remove yypush_parse's local equivalents of these
2902 variables to eliminate unnecessary copying between the two sets at
2903 run-time. This patch also fixes at least a bug related to multiple
2904 %initial-action invocations in push mode.
2905 * data/push.c (b4_declare_parser_variables): Rename to...
2906 (b4_declare_scanner_communication_variables): ... this for clarity and
2907 update both uses.
2908 (b4_declare_yyparse_variables): Remove and move its contents to the one
2909 spot where it was invoked.
2910 (b4_declare_parser_state_variables): New macro containing the parser
2911 state variables required by push mode.
2912 (struct yypstate): Replace all fields but yynew with
2913 b4_declare_parser_state_variables.
2914 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
2915 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
2916 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
2917 (yyparse or yypush_parse): For yyparse in pull mode, replace local
2918 parser state variable declarations with
2919 b4_declare_parser_state_variables.
2920 Don't initialize parser state variables when calling yypush_parse since
2921 yypstate_new already does that.
2922 Invoke the user's initial action only upon the first yypush_parse
2923 invocation.
2924 Remove all code that copies between the local parser state variables
2925 and the yypstate.
2926
2d212f8c
JD
29272006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
2928
2929 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
2930 prevent a name collision in a future patch where these names will
2931 sometimes be #define'd.
2932 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
2933 since it no longer has the same name as the existing argument.
2934 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
2935
e6e704dc
JD
29362006-12-19 Paolo Bonzini <bonzini@gnu.org>
2937 and Joel E. Denny <jdenny@ces.clemson.edu>
2938
2939 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
2940 that the argument is case-insensitive, and there's no `=' here.
2941 For the %skeleton entry, mention that %language is better.
2942 (Bison Options): Likewise for --language and --skeleton. Move the
2943 --skeleton entry so that the `Tuning the parser' section is sorted
2944 alphabetically on long options.
2945 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
2946 %language directive in detail here; cross-reference the %language
2947 documentation instead.
2948 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
2949 `%require "2.3b"' so that the example is always up-to-date.
148d66d8 2950 (Table of Symbols): Add entries for %language and %skeleton.
e6e704dc
JD
2951 * examples/extexi (normalize): Instead of replacing every %require
2952 argument with the current Bison version, just substitute for
2953 `@value{VERSION}'. This guarantees that we're testing what actually
2954 appears in the documentation.
2955 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
2956 rather than `@VERSION@'.
2957
0e021770
PE
29582006-12-18 Paul Eggert <eggert@cs.ucla.edu>
2959
fd575f05
PE
2960 * NEWS: Reword the %language news a bit, and put it earlier.
2961
0e021770
PE
2962 * src/getargs.c (skeleton_arg): Last arg is now location const *.
2963 Rewrite to simplify the logic.
2964 (language_argmatch): Likewise.
fd575f05
PE
2965 (program_name): We now own this var.
2966 * src/getargs.h (struct bison_language): Use char[] rather than
2967 const char *.
0e021770
PE
2968
2969 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
2970 Java is supported.
2971 * src/complain.c (program_name): Remove decl; no longer needed.
2972 * src/main.c (program_name): Remove; now belongs to getargs.
2973
29742006-12-18 Paolo Bonzini <bonzini@gnu.org>
2975
2976 * NEWS: Document %language.
2977
2978 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
2979
2980 * data/c-skel.m4, data/c++-skel.m4: New files.
2981 * data/glr.c: Complain on push parsers.
2982
2983 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
2984 over %skeleton.
148d66d8 2985 (Decl Summary): Document %language and %skeleton.
0e021770
PE
2986 (Command line): Document -L.
2987
2988 * examples/extexi: Rewrite %require directive.
2989 * examples/calc++/Makefile.am: Pass VERSION to extexi.
2990
2991 * src/files.c (compute_exts_from_gc): Look in language structure
2992 for .y extension.
2993 (compute_file_name_parts): Check whether .tab should be added.
2994 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
2995 (language, skeleton_arg, language_argmatch): New.
2996 (long_options): Add --language.
2997 (getargs): Use skeleton_arg, add -L/--language.
2998 * src/getargs.h: Include location.h.
2999 (struct bison_language, language, skeleton_arg, language_argmatch): New.
3000 * src/output.c (prepare): Pick default skeleton from struct language.
3001 Don't dispatch C skeletons here.
3002 * src/parse-gram.y (PERCENT_LANGUAGE): New.
3003 (prologue_declaration): Add "%language" rule, use skeleton_arg.
3004 * src/scan-gram.l ("%language"): New rule.
3005
3006 * tests/calc.at: Test %skeleton and %language.
3007 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
3008 (AT_GLR_IF): Look for %skeleton "glr.cc".
3009 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
3010 (AT_YACC_IF): Reject %language.
3011
5691bf57
PE
30122006-12-18 Paul Eggert <eggert@cs.ucla.edu>
3013
db06f0ce
PE
3014 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
3015 since it wasn't used; only the typedef name 'semantic_type' is needed.
3016 Also, omit trailing white space.
3017
5691bf57
PE
3018 * bootstrap: Sync from coreutils.
3019 (gnulib_extra_files): Add build-aux/announce.gen.
3020 (slurp): Adjust .gitignore files like .cvsignore files.
3021 * build-aux/announce-gen: Remove from CVS, since bootstrap
3022 now creates this.
3023
791934e4
JD
30242006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
3025
3026 Make %push-parser imply %pure-parser. This fixes several bugs; see
3027 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
3028 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
3029 pure_parser = true.
3030 * data/push.c: Don't bother testing b4_push_if when deciding whether
3031 to expand b4_declare_parser_variables globally.
3032 (yypush_parse): Likewise in here.
3033
3034 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
3035 (yy_reduce_print): Reformat M4 for readability.
3036
ee5abb37
JD
30372006-12-15 Bob Rossi <bob@brasko.net>
3038 and Joel Denny <jdenny@ces.clemson.edu>
3039
3040 * data/push.c (yypstate): Add typedef, and update all uses of
3041 struct yypstate to just yypstate.
3042 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
3043
16ca01f9
JD
30442006-12-14 Bob Rossi <bob@brasko.net>
3045
3046 * data/push.c (yypush_parse): Declare prototype regardless of
3047 %locations option.
3048
ab8e7e1a
JD
30492006-12-14 Bob Rossi <bob@brasko.net>
3050
3051 * data/push.c (yyparse): Remove the prototype and the #define when in
3052 push-parser mode.
3053
9bf32be3
JD
30542006-12-13 Bob Rossi <bob@brasko.net>
3055
3056 * data/push.c (yypstate_init): Rename to...
3057 (yypstate_new): ... this and use b4_c_function_def.
3058 (yypstate_delete): New.
3059 (yypush_parse): Change parameters yynval and yynlloc to be const.
3060 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
3061 yypstate_delete functions.
3062
f02e2948
JD
30632006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
3064
3065 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
3066 strange test case titles. Reported by Bob Rossi.
3067
38eb7751
PE
30682006-12-13 Paul Eggert <eggert@cs.ucla.edu>
3069
3070 * TODO: Add pointer to Sylvain Schmitz's work on static detection
3071 of potential ambiguities in GLR grammers.
3072
bd9d212b
JD
30732006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
3074
3075 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
3076 `bison ', use m4_index instead of m4_substr since chopping up a string
3077 containing M4-special characters causes problems here.
3078
3079 Fix a couple of bugs related to special characters in user-specified
3080 file names, and make it easier for skeletons to compute output file
3081 names with the same file name prefix as Bison-computed output file
3082 names.
3083 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
3084 b4_parser_file_name and b4_spec_defines_file instead of
3085 @output_parser_name@ and @output_header_name@, which are now redundant.
3086 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
3087 b4_parser_file_name, b4_spec_defines_file, and the new
3088 @basename(FILENAME@) instead of @output_parser_name@ and
3089 @output_header_name@, which inappropriately escaped the file names as
3090 C string literals.
3091 * src/files.c (all_but_ext): Remove static qualifier.
3092 (compute_output_file_names): Move `free (all_but_ext)' to...
3093 (output_file_names_free): ... here since all_but_ext is needed later.
3094 * src/files.h (all_but_ext): Extern.
3095 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
3096 exactly what MUSCLE_INSERT_STRING used to do.
3097 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
3098 characters are escaped properly.
3099 * src/output.c (prepare): Define muscle file_name_all_but_ext as
3100 all_but_ext.
3101 For pkgdatadir muscle, maintain previous functionality by using
3102 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
3103 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
3104 digraphs would never be expanded. Hopefully no one has M4-special
3105 characters in his Bison installation path.
3106 * src/scan-skel.l: Don't parse @output_header_name@ and
3107 @output_parser_name@ anymore since they're now redundant.
3108 In @output, use decode_at_digraphs.
3109 Parse a new @basename command that invokes last_component.
3110 (decode_at_digraphs): New.
3111 (BASE_QPUTS): Remove unused.
3112 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
3113 (Output file name): New tests.
3114
3f7ca628
JD
31152006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
3116
3117 Warn about output files that are generated by the skeletons and that
3118 conflict with other output files.
3119 * data/glr.c: Don't generate the header file here when glr.cc does.
3120 * src/files.c (file_names, file_names_count): New static globals.
3121 (compute_output_file_names): Invoke output_file_name_check for files
3122 not generated by the skeletons and remove existing checks.
3123 (output_file_name_check): New function that warns about conflicting
3124 output file names.
3125 (output_file_names_free): Free file_names.
3126 * src/files.h (output_file_name_check): Declare.
3127 * src/scan-skel.l: Invoke output_file_name_check for files generated by
3128 the skeletons.
3129 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
3130 (Conflicting output files): New tests.
3131
178e123e
PE
31322006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3133
3134 * doc/bison.texinfo: Fix a couple of typos.
3135
31362006-12-08 Bob Rossi <bob@brasko.net>
8def5cd0
JD
3137
3138 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
3139 Rename to...
3140 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
3141 update all uses.
3142 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
3143 (yypush_parse): Rename yypvars argument to yyps and remove redundant
3144 local pv.
3145 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
3146 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
3147
ea17f233
JD
31482006-12-07 Bob Rossi <bob@brasko.net>
3149 and Joel Denny <jdenny@ces.clemson.edu>
3150
3151 * data/push.c (yypvarsinit): Change return type from void* to struct
3152 yypvars*. No longer cast to void* on return.
3153 (struct yypvars): Remove yylen since it need not be remembered between
3154 yypushparse invocations.
3155 (yypushparse): Don't copy between yylen and pv->yylen.
3156
55a30bda
JD
31572006-12-05 Bob Rossi <bob@brasko.net>
3158
3159 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
3160 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
3161 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
3162 (struct yypvars): Remove b4_declare_parser_variables.
3163 (yypvarsinit): Remove init code for removed variables.
3164 (global scope): Do not declare b4_declare_parser_variables if
3165 push or pure mode.
3166 (yypushparse): Add b4_declare_parser_variables.
3167 Init new local variables, and remove init code for removed
3168 yypvars variables.
3169 (yyparse): Delete.
3170 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
3171 and yyparse for other modes.
3172 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
3173 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
3174 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
3175 (AT_PURE_LEX_IF): True if pure or push parser.
3176
85894313
JD
31772006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
3178
3179 Document Yacc prologue alternatives and default %destructor's and
3180 %printer's as experimental. Don't mention Java yet. Discussed at
3181 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
3182 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
3183 (2.3a): Annotate this entry to say the old forms of these features were
3184 also experimental.
3185 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
148d66d8 3186 Table of Symbols): Say they're experimental. Comment out any mention
85894313
JD
3187 of Java (we'll want this back eventually).
3188
02975b9a
JD
31892006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
3190
3191 Support a file name argument to %defines. Deprecate `=' in
3192 %file-prefix, %name-prefix, and %output. Discussed at
3193 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
3194 * NEWS (2.3a+): Mention.
148d66d8 3195 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
02975b9a
JD
3196 form of %defines, and remove `=' from entries for %file-prefix,
3197 %name-prefix, and %output.
3198 * src/parse-gram.y (prologue_declaration): Implement.
3199 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
3200 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
3201 all but one occurrence of %name-prefix.
3202 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
3203 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
3204 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
3205 occurrence of each of %file-prefix and %output. Add check for %defines
3206 with argument.
3207 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
3208 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
3209 Remove the `=' from %output.
3210
287b314e
JD
32112006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
3212
3213 Don't escape $ in test case titles since Autoconf 2.61 now does that
3214 correctly.
3215 * tests/actions.at (Default %printer and %destructor are not for error
3216 or $undefined): Here.
3217 (Default %printer and %destructor are not for $accept): Here.
3218 * tests/input.at (Invalid $n and @n): Here.
3219
3ebecc24
JD
32202006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
3221
3222 Rename <!> to <>. Discussed starting at
3223 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
3224 * NEWS (2.3a+): Update.
148d66d8 3225 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
3ebecc24
JD
3226 Update.
3227 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
3228 * src/scan-gram.l (INITIAL): Implement.
3229 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
3230 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
3231 comment.
3232 * tests/actions.at (Default tagless %printer and %destructor,
3233 Default tagged and per-type %printer and %destructor,
3234 Default %printer and %destructor are not for error or $undefined,
3235 Default %printer and %destructor are not for $accept,
3236 Default %printer and %destructor for mid-rule values): Update.
3237 * tests/input.at (Default %printer and %destructor redeclared,
3238 Unused values with default %destructor): Update.
3239
26b8a438
JD
32402006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
3241
3242 Don't let %prec take a nonterminal.
3243 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
3244 token.
3245 * tests/input.at (%prec takes a token): New test checking that %prec
3246 won't take a nonterminal.
3247
07c39ae9
JD
32482006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3249
405d53b7
JD
3250 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
3251 it was double-quoted.
07c39ae9
JD
3252 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
3253 grammar is maintained with Bison's highest standards.
3254 * src/getargs.c: Fix some typos in Doxygen comments.
3255
580b8926
JD
32562006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3257
3258 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
3259 later. Reported by Paul Eggert in
3260 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
3261 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
3262 * src/scan-code.l (translate_action): Don't bother invoking
3263 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
3264 (code_scanner_free): Instead of invoking
3265 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
3266 which frees more.
3267 * src/scan-gram.l (gram_scanner_free): Likewise.
3268 * src/scan-skel.l (scan_skel): Likewise.
3269
4502eadc
JD
32702006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
3271
3272 * src/files.c (tr): Change return type to void.
3273 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
3274 has been called previously for the same key.
3275 (muscle_find): Return storage instead of value so that
3276 --enable-gcc-warnings doesn't produce warnings that the return discards
3277 const. aver that the value and storage are the same since storage
3278 could potentially be NULL when value is not.
3279 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
3280 same as 0.
3281
7746c8f6
PE
32822006-11-08 Paul Eggert <eggert@cs.ucla.edu>
3283
3284 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
3285 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
3286 us a slightly cleaner distribution, and also works.
3287 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
3288 gnulib changes.
3289
eb095650
PE
32902006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
3291 and Paul Eggert <eggert@cs.ucla.edu>
3292
3293 Don't let Bison leak memory except when it complains.
3294 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
3295 (spec_defines_file, dir_prefix): Now char *, not const char *,
3296 since they are freed.
3297 * src/files.c: Likewise.
3298 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
3299 Likewise.
3300 (tr): Now operates in-place. All uses changed.
3301 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
3302 values.
3303 (compute_file_name_parts, compute_output_file_names): Don't store
3304 read-only data in variables that will be freed.
3305 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
3306 src_extension, and header_extension.
3307 (output_file_names_free): New public function to free
3308 spec_verbose_file, spec_graph_file, spec_defines_file,
3309 parser_file_name, and dir_prefix.
3310 * src/getargs.c (getargs): Don't store read-only data in variables that
3311 will be freed.
3312 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
3313 (which previously existed but was unused), and quotearg_free.
3314 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
3315 * src/muscle_tab.c: Likewise.
3316 (muscle_entry): Make the value char const *,
3317 and add a new storage member that is char * and can be freed.
3318 (muscle_entry_free): New private function.
3319 (muscle_init): Use it instead of free.
3320 (muscle_insert, muscle_grow): Update and use new storage member.
3321 (muscle_code_grow): Free the string passed to muscle_grow
3322 since it's not needed anymore.
3323 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
3324 add a new `char *code' member.
3325 ("{...}"): Declare semantic type as code.
3326 * src/scan-code.h (translate_rule_action):
3327 (translate_symbol_action, translate_code, translate_action): Return
3328 `char const *' rather than `char *' since external code should not free
3329 these strings.
3330 * src/scan-code.l: Likewise.
3331 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
3332 which is "{...}" in the parser.
3333 * tests/Makefile.am (maintainer-check-valgrind): Set
3334 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
3335 Valgrind.
3336 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
3337 complain.
3338 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
3339 expecting a non-zero exit status sets --leak-check=summary and
3340 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
3341 this case, and we don't want to hear about it.
3342
ac564be4
PE
33432006-11-08 Paul Eggert <eggert@cs.ucla.edu>
3344
3345 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
3346 instead of from the template, to simplify configuration a bit.
3347 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
3348 and m4/wint_t.m4, as they are needed with the latest gnulib.
3349
17bd8a73
JD
33502006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
3351
3352 Disable unset/unused mid-rule value warnings by default, and recognize
3353 --warnings=midrule-values to enable them. Discussed starting at
3354 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
3355 * NEWS (2.3a+): Mention.
3356 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
3357 warnings): Add entry for midrule-values subargument.
3358 * src/reader.c (symbol_should_be_used): Don't return true just because
3359 the value is a set/used mid-rule value unless
3360 --warnings=midrule-values was specified.
3361 * tests/input.at (Unused values, Unused values before symbol
3362 declarations): Run tests with and without --warnings=midrule-values.
3363
3364 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
3365 than LIST_FREE directly.
3366
89eb3c76
JD
33672006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
3368
3369 Finish implementing --warnings=error, which should not be implied by
3370 --warnings=all (or by its synonyms -W and --warnings without
3371 subarguments).
3372 * src/complain.c (set_warning_issued): New function to report that
3373 warnings are being treated as errors and to record an error if so.
3374 Invoke...
3375 (warn_at, warn): ... here.
3376 * src/getargs.c (warnings_args, warnings_types): Reorder so that
3377 "error - warnings are errors" does not appear above "all - all of the
3378 above".
3379 (getargs): For -W and --warnings without subarguments, don't let
3380 FLAGS_ARGMATCH set warnings_error in warnings_flag.
3381 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
3382
ba7560e2
JD
33832006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
3384
3385 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
3386 empty subargument list. For example: `bison --warnings= parser.y'.
3387
31283fc3
JD
33882006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3389
3390 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
3391 the parser header file so that gcc doesn't warn.
3392
12e35840
JD
33932006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3394
3395 Split the default %destructor/%printer into two kinds: <*> and <!>.
3396 Discussed starting at
3397 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
3398 * NEWS (2.3a+): Mention.
3399 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
3400 previous change today related to mid-rules.
148d66d8 3401 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
3ebecc24 3402 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
12e35840
JD
3403 (TYPE_TAG_ANY): Add as <*>.
3404 (TYPE_TAG_NONE): Add as <!>.
3405 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
3406 for <*> and <!>.
3407 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
3408 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
3409 * src/symlist.c (symbol_list_default_new): Split into tagged and
3410 tagless versions.
3411 (symbol_list_destructor_set, symbol_list_printer_set): Split
3412 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
3413 SYMLIST_DEFAULT_TAGLESS.
3414 * src/symlist.h: Update symbol_list_default*_new prototypes.
3415 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
3416 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
3417 * src/symtab.c (default_destructor, default_destructor_location,
3418 default_printer, default_printer_location): Split each into tagged and
3419 tagless versions.
3420 (symbol_destructor_get, symbol_destructor_location_get,
3421 symbol_printer_get, symbol_printer_location_get): Implement tagged
3422 default and tagless default cases.
3423 (default_destructor_set, default_printer_set): Split each into tagged
3424 and tagless versions.
3425 * src/symtab.h: Update prototypes.
3426 * tests/actions.at (Default %printer and %destructor): Rename to...
3427 (Default tagless %printer and %destructor): ... this, and extend.
3428 (Per-type %printer and %destructor): Rename to...
3429 (Default tagged and per-type %printer and %destructor): ... this, and
3430 extend.
3431 (Default %printer and %destructor for user-defined end token): Extend.
3432 (Default %printer and %destructor are not for error or $undefined):
3433 Update.
3434 (Default %printer and %destructor are not for $accept): Update.
3435 (Default %printer and %destructor for mid-rule values): Extend.
3436 * tests/input.at (Default %printer and %destructor redeclared): Extend.
3437 (Unused values with default %destructor): Extend.
3438
f91b1629
JD
34392006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3440
3441 Don't apply the default %destructor/%printer to an unreferenced midrule
3442 value. Mentioned at
3443 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
3444 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
3445 like $@n instead of just @n so that the default %destructor/%printer
3446 logic doesn't see them as user-defined symbols.
3447 (symbol_is_dummy): Check for both forms of the name.
3448 * src/reader.c (packgram): Remove the `$' from each midrule symbol
3449 name for which the midrule value is referenced in any action.
3450 * tests/actions.at (Default %printer and %destructor for mid-rule
3451 values): New test.
3452 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
3453 for change to dummy symbol names.
3454
519d0004
JD
34552006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
3456
3457 Warn about unset midrule $$ if the corresponding $n is used.
3458 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
3459 $n usage.
3460 (packgram): Before invoking grammar_rule_check on any rule, make sure
3461 all actions have already been scanned in order to set `used' flags.
3462 Otherwise, checking that a midrule's $$ is set will not always work
3463 properly because the midrule check must forward-reference the midrule's
3464 parent rule.
3465 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
3466 warning.
3467
a501eca9
JD
34682006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
3469
3470 More improvements to the documentation of the prologue alternatives:
3471 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
3472 Bison manual.
3473 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
3474 some text to clarify the relative importance of the new directives and
3475 to show how these directives may be viewed as code labels.
3476
2cbe6b7f
JD
34772006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
3478
3479 Similar to the recently removed %before-header, add %code-top as the
3480 alternative to the pre-prologue. Mentioned at
3481 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
3482 Also, let the prologue alternatives appear in the grammar section.
3483 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
3484 (prologue_declaration): Move the existing prologue alternatives to...
3485 (grammar_declaration): ... here and add %code-top.
3486 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
3487
3488 Clean up and extend documentation for the prologue alternatives.
3489 * NEWS (2.3a+): Describe prologue alternatives.
3490 * doc/bison.texinfo (Prologue): Move discussion of prologue
3491 alternatives to...
3492 (Prologue Alternatives): ... this new section, and extend it to discuss
3493 all 4 directives in detail.
148d66d8
JD
3494 (Table of Symbols): Clean up discussion of prologue alternatives and
3495 add %code-top.
2cbe6b7f 3496
e557d3ea
JMG
34972006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3498
3499 DJGPP specific issues.
3500
3501 * djgpp/config.bat: config.hin has been moved to lib. Adjust
3502 config.bat accordingly.
3503 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
3504 * djgpp/config.site: Likewise.
3505
136a0f76
PB
35062006-10-16 Paolo Bonzini <bonzini@gnu.org>
3507
27bd5d67
PB
3508 Replace %*-header with %provides, %requires, %code. See discussion at
3509 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
3510
136a0f76
PB
3511 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
3512 (b4_user_start_header): Remove.
3513 * data/glr.c: Use new macros instead of b4_*start_header
3514 and b4_*end_header.
3515 * data/glr.cc: Likewise.
3516 * data/lalr1.cc: Likewise.
3517 * data/push.c: Likewise.
3518 * data/yacc.c: Likewise.
3519
3520 * doc/bison.texinfo: Remove %before-header, rename
3521 %{start,end,after}-header to %requires, %provides, %code.
3522
3523 * src/parse-gram.y: Likewise (also rename token names accordingly).
3524 * src/scan-gram.l: Likewise.
3525 * tests/actions.at: Likewise.
3526
10f429ef
PE
35272006-10-14 Paul Eggert <eggert@cs.ucla.edu>
3528
3529 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
3530 Problem reported by Joel E. Denny.
3531
35322006-10-14 Jim Meyering <jim@meyering.net>
3533
3534 (Sync from coreutils.)
3535 Work also when the working directory (with e.g. coreutils sources)
3536 is version controlled with git, rather than CVS.
3537 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
3538 rather than CVS.
3539 In messages and comments, say e.g., "checked-out sources",
3540 rather than "CVS sources".
3541 (version_controlled_file): New function. Work for git as well as
3542 for CVS. Don't use grep's -q option.
3543 (slurp): Call it here, in place of CVS-specific code.
3544
c4bd5bf7
JD
35452006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
3546
3547 Fix testsuite for ./configure --enable-gcc-warnings:
3548 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
3549 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
3550 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
3551 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
3552 * test/regression.at (Diagnostic that expects two alternatives):
3553 Likewise.
3554
46356ea4
PE
35552006-10-12 Paul Eggert <eggert@cs.ucla.edu>
3556
231ed89a
PE
3557 * bootstrap.conf (gnulib_modules): Add config-h.
3558 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
3559 worry about HAVE_CONFIG_H.
3560 * lib/abitset.c: Likewise.
3561 * lib/bitset.c: Likewise.
3562 * lib/bitset_stats.c: Likewise.
3563 * lib/bitsetv-print.c: Likewise.
3564 * lib/bitsetv.c: Likewise.
3565 * lib/ebitset.c: Likewise.
3566 * lib/get-errno.c: Likewise.
3567 * lib/lbitset.c: Likewise.
3568 * lib/subpipe.c: Likewise.
3569 * lib/timevar.c: Likewise.
3570 * lib/vbitset.c: Likewise.
3571 * lib/bitset.c: Include "bitset.h" first, to test interface.
3572 * lib/bitset_stats.c: Include "bitset_stats.h" first.
3573 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
3574 * lib/bitsetv.c: Include "bitsetv.h" first.
3575 * lib/get-errno.c: Include "get-errno.h" first.
3576 * m4/.cvsignore: Add config-h.m4.
3577 * tests/actions.at (Default %printer and %destructor for ...):
3578 Adjust expected line numbers in output to reflect removal of #if
3579 HAVE_CONFIG_H lines.
3580 * tests/glr-regression.at (Missed %merge type warnings when ...):
3581 Likewise.
3582 * tests/regression.at (Braced code in declaration in rules section):
3583 Likewise.
3584 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
3585 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
3586 Include <config.h> unconditionally.
3587
46356ea4
PE
3588 * bootstrap: Sync from coreutils, as follows:
3589
3590 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
3591
3592 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
3593 variable was sometimes used without being initialized. This
3594 messed up the installation of the INSTALL file in some cases.
3595
3596 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
3597
3598 * bootstrap (usage, main program, symlink_to_gnulib): Add option
3599 --copy. Inspired by a suggestion from Bruno Haible.
3600
3601 2006-10-03 Jim Meyering <jim@meyering.net>
3602
3603 * bootstrap: Undo last change to this file, since now gnulib-tool
3604 sticks with the automake default in generating dependencies.
3605
dd4bf078
PE
36062006-10-12 Paul Eggert <eggert@cs.ucla.edu>
3607
cf2a5f7c
PE
3608 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
3609 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
3610
3611 * doc/bison.1: Add copyright notice.
3612
3613 * data/glr.c: Don't include <stdarg.h>; not used.
3614
35fe0834
PE
3615 * NEWS: The -g and --graph options now output graphs in Graphviz
3616 DOT format, not VCG format.
3617 * doc/bison.1: Likewise.
3618 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
fcab4a2e
PE
3619 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
3620 of this change in
3621 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
35fe0834
PE
3622 * TODO: Remove Graphviz entry.
3623 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
3624 remove vcg.c, vcg.h, vcg_defaults.h.
3625 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
3626 * src/graphviz.c, src/graphviz.h: New files.
3627 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
3628 * src/files.h: Make comment more generic.
3629 * src/main.c (main): Likewise.
3630 * src/print_graph.h: Likewise.
3631 * src/getargs.c (usage): Make usage description more generic.
3632 * src/print_graph.c: Include graphviz.h rather than vcg.h.
3633 (static_graph, fgraph): Remove. All uses changed to pass
3634 arguments instead of sharing a static var.
3635 (print_core, print_actions, print_state, print_graph):
3636 Output graphviz format rather than VCG format.
3637 * tests/.cvsignore: Remove *.vcg; add *.dot.
3638 * tests/output.at: Expect *.dot files, not *.vcg files.
3639
dd4bf078
PE
3640 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
3641 accommodates the 2006-10-08 change.
3642
efdd7421
PE
36432006-10-11 Bob Rossi <bob@brasko.net>
3644
3645 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
3646 (b4_yyssa, b4_yyerror_range): New macros.
3647 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
3648 (yypvarsinit): Remove init of removed fields.
3649 (yypushparse): Remove use of removed fields; use new macros instead.
3650
96a1981a
PE
36512006-10-11 Paul Eggert <eggert@cs.ucla.edu>
3652
3653 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
3654 in a push parser. Reindent slightly to match yacc.c better.
3655
36562006-10-11 Bob Rossi <bob@brasko.net>
3657
46356ea4
PE
3658 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
3659 yymsg_alloc fields.
3660 (yypvarsinit, yypushparse): Remove init of removed fields.
3661 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
96a1981a 3662
c1630a8b
PE
36632006-10-09 Paul Eggert <eggert@cs.ucla.edu>
3664
3665 * THANKS: Add Paolo Bonzini and Bob Rossi.
3666
90b9908d
PB
36672006-10-08 Paolo Bonzini <bonzini@gnu.org>
3668
3669 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
3670 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
3671 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
3672 b4_define_user_cde and uses): Remove.
3673 (b4_comment, b4_prefix, b4_sync_start): New.
3674 * data/bison.m4: New file, with most of the content removed from c.m4.
3675 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
3676 * src/output.c (output_skeleton): Pass bison.m4.
3677 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
3678 only if specified.
3679
cf806753
PE
36802006-10-05 Paul Eggert <eggert@cs.ucla.edu>
3681
3682 Fix test failure reported by Tom Lane in
3683 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
3684 and try to make such failures easier to catch in the future.
3685 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
3686 that's now the caller's responsibility.
3687 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
3688 Set yychar = YYEOF if it's negative.
3689 * tests/actions.at (yylex): Abort if asked to read past EOF.
3690 * tests/conflicts.at (yylex): Likewise.
3691 * tests/cxx-type.at (yylex): Likewise.
3692 * tests/glr-regression.at (yylex): Likewise.
3693 * tests/input.at (yylex): Likewise.
3694 * tests/regression.at (yylex): Likewise.
3695 * tests/torture.at (yylex): Likewise.
3696
0e2f006a
PE
36972006-10-01 Paul Eggert <eggert@cs.ucla.edu>
3698
3699 Fix problems with translating English-language diagnostics.
3700 * bootstrap: Fix bug introduced in recent bootstrap changes, with
3701 respect to bison-runtime pot generation. The YY_ stuff
3702 wasn't being captured.
3703 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
3704 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
3705 * runtime-po/POTFILES.in: Add data/push.c.
3706
e3ddc1e3
PE
37072006-09-29 Paul Eggert <eggert@cs.ucla.edu>
3708
3709 Merge bootstrap changes from coreutils.
3710
3711 2006-09-28 Jim Meyering <jim@meyering.net>
3712
3713 Automatically generated dependencies are important even
3714 when all of the sources in a directory come from gnulib.
3715 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
3716 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
3717
3718 2006-09-23 Jim Meyering <jim@meyering.net>
3719
3720 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
3721
3722 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
3723
3724 * bootstrap: Add support for --force.
3725 (usage): New function. Describe usage less tersely.
3726 (CVS_only_file): New var.
3727
01e972b3
PE
37282006-09-21 Paul Eggert <eggert@cs.ucla.edu>
3729
3730 * data/push.c (YYPUSH_MORE): Make it an enum instead.
3731 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
3732 Adjust white space and comments to match GNU style better.
3733
c63d3e90
PE
37342006-09-20 Bob Rossi <bob@brasko.net>
3735
3736 * data/push.c (yyresult_get): Remove function.
3737 (YYPUSH_MORE): Add #define.
3738 (yypushparse): Modify return value.
3739
e70f46d1
PE
37402006-09-20 Paul Eggert <eggert@cs.ucla.edu>
3741
3742 * stamp-h.in: Remove; no longer needed.
3743 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
3744 Remove config.h, config.hin, intl (no longer created).
3745 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
3746 stamp-h1.
3747
3748 Sync bootstrap from coreutils, as follows:
3749
3750 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
3751
3752 * bootstrap (symlink_to_gnulib): New function.
3753 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
3754 to copies-of-gnulib.
3755 (cp_mark_as_generated, slurp, gnulib_files):
3756 Avoid making a copy if it's the same as the old version.
3757 (gnulib_files): Add support for this variable (used by Bison).
3758
a92be413
PE
37592006-09-20 Paul Eggert <eggert@cs.ucla.edu>
3760
3761 * src/getargs.c (usage): Rework to use conventions similar to
3762 coreutils, to make translation a bit easier and the code a bit
3763 smaller. Problem reported by Tim Van Holder.
3764
4f82b42a
PE
37652006-09-15 Paul Eggert <eggert@cs.ucla.edu>
3766
3b2942e6
PE
3767 Use some of gnulib's new modules, taken from coreutils.
3768
3769 * bootstrap: Sync from coreutils, except add support for gnulib_files.
3770 * bootstrap.conf: New file.
3771 (gnulib_modules): Add configmake, inttypes, unistd.
3772 (XGETTEXT_OPTIONS): Add complain, complain_at,
3773 fatal, fatal_at, warn, warn_at, unexpected_end.
3774 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
3775 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
3776 (gl_EARLY): Add.
3777 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
3778 (gl_INIT): Add
3779 (GNULIB_AUTOCONF_SNIPPET): Remove.
3780 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
3781 the pickiest.
3782 * lib/.cvsignore: Add inttypes_.h.
3783 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
3784 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
3785 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
3786 no-longer-necessary initializations.
3787 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
3788 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
3789 use the unistd module.
3790 * src/system.h: Likewise.
3791 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
3792 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
3793 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
3794 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
3795 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
3796 * src/system.h: Include inttypes.h unconditionally, now that we
3797 use the inttypes module. Don't bother to include stdint.h, since
3798 inttypes.h now does that for us.
3799 (LOCALEDIR): Remove, now that we use the configmake module.
3800 * src/getargs.c: Include configmake.h.
3801 * src/main.c: Likewise.
3802 * src/output.c: Likewise.
3803 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
3804 not from $abs_top_builddir, since config.h moved.
3805
3806
4f82b42a
PE
3807 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
3808 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
3809
3810 * src/parse-gram.y (symbol_declaration): Don't put statements
3811 before declarations; it's not portable to C89.
3812 * src/scan-code.l (handle_action_at): Likewise.
3813
3814 * src/scan-code.l: Always initialize braces_level; the old code
3815 left it uninitialized and therefore had undefined behavior.
3816
3817 Don't attempt to redefine 'assert', since it runs afoul of
3818 systems where standard headers (mistakenly) include <assert.h>.
3819 Instead, define and use our own alternative, called 'aver'.
3820 * src/reader.c: Don't include assert.h, since we no longer
3821 use assert.
3822 * src/scan-code.l: Likewise.
3823 * src/system.h (assert): Remove, replacing with....
3824 (aver): New function, taking a bool arg. All uses changed.
3825 * src/tables.c (pack_vector): Ensure that aver arg is bool,
3826 not merely an integer.
3827
31c10e38
PE
38282006-09-15 Bob Rossi <bob@brasko.net>
3829
3830 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
3831 * data/c.m4 (YYPUSH): New.
3832 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
3833 * src/getargs.c (push_parser): New var.
3834 * src/getargs.h (push_parser): New declaration.
3835 * src/output.c (prepare): Add macro insertion of `push_flag'.
3836 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
3837 (prologue_declaration): Parse %push-parser.
3838 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
3839 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
3840 list of removed lines from the traces observed.
3841 (AT_CHECK_CALC_LALR): Added push parser tests.
3842
fa7b79c0
PE
38432006-09-13 Paul Eggert <eggert@cs.ucla.edu>
3844
21fe08ca
PE
3845 * NEWS: Version 2.3a.
3846 * configure.ac (AC_INIT): Likewise.
3847
e8ec4d9b
PE
3848 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
3849 "#define YYSTYPE int" that caused "make maintainer-check" to fail
3850 due to header ordering dependencies. I don't know why the #define
3851 was there.
3852
fa7b79c0
PE
3853 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
3854 runtime cost when YYDEBUG is not defined, and so that some tests
3855 that used to fail now work. Problem and initial suggestion by
3856 Paolo Bonzini.
3857 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
3858 * data/glr.cc (b4_parser_class_name):
3859 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
3860 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
3861 (yydebug_) [YYDEBUG]: New member.
3862 (yycdebug_): Now defined only if YYDEBUG.
3863 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
3864 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
3865 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
3866 if YYYDEBUG.
3867 (debug_stream, set_debug_stream, debug_level, set_debug_level):
3868 Define only if YYDEBUG.
3869 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
3870 set_debug_level.
3871 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
3872 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
3873 AT_CHECK_CALC_GLR_CC that are working now.
3874
4ec13d60
PE
38752006-09-12 Paul Eggert <eggert@cs.ucla.edu>
3876
3877 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
3878 We don't need them in glr.cc, and glr.c defines them.
3879 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
3880 assumes that defining it to anything is the same as defining
3881 it to 1. Problem reported by Paolo Bonzini.
3882
8e1687ae
PE
38832006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
3884
3885 * data/c.m4 (b4_null, b4_case): Define.
3886 * src/output.c (prepare_symbols): Use b4_null.
3887 (user_actions_output): Use b4_case.
3888
3dc5e96b
PE
38892006-09-11 Paul Eggert <eggert@cs.ucla.edu>
3890
aef3da86
PE
3891 * data/glr.c (b4_shared_declarations): Put start-header first,
3892 before any #includes that we generate, so that feature-test
3893 macros work. Problem reported by Michael Deutschmann in
3894 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
3895 * data/lalr1.cc: Likewise.
3896 * doc/bison.texinfo (Prologue): Document that feature-test macros
3897 should be defined before any Bison declarations.
3898 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
3899 that depend on location.hh after, not before, Bison decls, since
3900 we now include location.hh after the first user prologue.
3901
3dc5e96b
PE
3902 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
3903 Sander Brandenburg in
3904 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
3905 Also, fix minor white space and comment issues.
aef3da86
PE
3906 (Prologue): Mention that it's better to define feature-test macros
3907 before Bison declarations. Problem reported by Michael Deutschmann.
3908
3909 * README-cvs: Fix typo: "&" should be "&&". Problem reported
3910 by Jim Meyering.
3911 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
3912 This adjusts to recent gnulib changes.
3dc5e96b 3913
b2a0b7ca
JD
39142006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
3915
3916 Finish implementation of per-type %destructor/%printer. Discussed
3917 starting at
3918 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
3919 and
3920 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
3921 * NEWS (2.3+): Add a description of this feature to the default
3922 %destructor/%printer description.
3923 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
3924 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
3925 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
3926 list node contains a semantic type.
3927 * src/symtab.c, src/symtab.h: Extend with a table that associates
3928 semantic types with their %destructor's and %printer's.
3929 (semantic_type_from_uniqstr, semantic_type_get,
3930 semantic_type_destructor_set, semantic_type_printer_set): New functions
3931 composing the public interface of that table.
3932 (symbol_destructor_get, symbol_destructor_location_get,
3933 symbol_printer_get, symbol_printer_location_get): If there's no
3934 per-symbol %destructor/%printer, look up the per-type before trying
3935 the default.
3936 * tests/actions.at (Per-type %printer and %destructor): New test case.
3937 * tests/input.at (Default %printer and %destructor redeclared):
3938 Extend to check that multiple occurrences of %symbol-default in a
3939 single %destructor/%printer declaration is an error.
3940 (Per-type %printer and %destructor redeclared, Unused values with
3941 per-type %destructor): New test cases.
3942
3be03b13
JD
39432006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
3944
3945 Require default %destructor/%printer to be declared using
3946 %symbol-default instead of an empty symbol list, and start working on
3947 new per-type %destructor/%printer. Discussed at
3948 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
3949 * NEWS (2.3+): Add %symbol-default to example.
3950 * bison.texinfo (Freeing Discarded Symbols): Likewise.
148d66d8 3951 (Table of Symbols): Add entry for %symbol-default.
3be03b13
JD
3952 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
3953 (generic_symlist, generic_symlist_item): New nonterminals for creating
3954 a list in which each item is a symbol, semantic type, or
3955 %symbol-default.
3956 (grammar_declaration): Use generic_symlist in %destructor and %printer
3957 declarations instead of symbols.1 or an empty list.
3958 (symbol_declaration, precedence_declaration, symbols.1): Update actions
3959 for changes to symbol_list.
3960 * src/reader.c: Update for changes to symbol_list.
3961 * src/scan-code.l: Likewise.
3962 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
3963 * src/symlist.c, src/symlist.h: Extend such that a list node may
3964 represent a semantic type or a %symbol-default in addition to just an
3965 ordinary symbol. Add switched functions for setting %destructor's and
3966 %printer's.
3967 * tests/actions.at, tests/input.at: Add %symbol-default to all default
3968 %destructor/%printer declarations.
3969
3508ce36
JD
39702006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
3971
3972 Whether the default %destructor/%printer applies to a particular symbol
3973 isn't a question of whether the user *declares* that symbol (in %token,
3974 for example). It's a question of whether the user by any means
3975 *defines* the symbol at all (by simply using a char token, for
3976 example). $end is defined by Bison whereas any other token with token
3977 number 0 is defined by the user. The error token is always defined by
3978 Bison regardless of whether the user declares it with %token, but we
3979 may one day let the user define error as a nonterminal instead.
3980 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
3981 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
3982 the meaning of "user-defined".
3983 * tests/actions.at (Default %printer and %destructor for user-declared
3984 end token): Rename to...
3985 (Default %printer and %destructor for user-defined end token): ...
3986 this.
3987
3988 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
3989 computation of whether to apply the default, don't maintain a list of
3990 every Bison-defined symbol. Instead, just check for a first character
3991 of '$', which a user symbol cannot have, and check for the error token.
3992
9350499c
JD
39932006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
3994
3995 Don't apply the default %destructor or %printer to the error token,
3996 $undefined, or $accept. This change fits the general rule that the
3997 default %destructor and %printer are only for user-declared symbols,
3998 and it solves several difficulties that are described in the new test
3999 cases listed below.
4000 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
4001 * tests/actions.at (Default %printer and %destructor are not for error
4002 or $undefined, Default %printer and %destructor are not for $accept):
4003 New test cases.
4004
4d7370cb
JD
40052006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
4006
4007 Allow %start after the first rule.
4008 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
4009 when parsing the first rule.
4010 (check_and_convert_grammar): Search for it here after all grammar
4011 declarations have been parsed. Skip midrules, which have dummy LHS
4012 nonterminals.
4013 * src/symtab.c (symbol_is_dummy): New function.
4014 * src/symtab.h (symbol_is_dummy): Declare it.
4015 * tests/input.at (%start after first rule): New test.
4016
6d0ef4ec
JD
40172006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
4018
4019 Redo some of the previous commit: add back the ability to use
4020 non-aliased/undeclared string literals since it might be useful to
4021 those declaring %token-table.
4022 * src/reader.c (check_and_convert_grammar): Undo changes in previous
4023 commit: don't worry about complaints from symbols_pack.
4024 * src/symtab.c (symbol_new, symbol_class_set,
4025 symbol_check_alias_consistency): Undo changes in previous commit: count
4026 each string literal as a new symbol and token, assign it a symbol
4027 number, and don't complain about non-aliased string literals.
4028 (symbols_pack): Since symbol_make_alias still does not decrement symbol
4029 and token counts but does still set aliased tokens to the same number,
4030 symbol_pack_processor now leaves empty slots in the symbols array.
4031 Remove those slots.
4032 * tests/regression.at (Undeclared string literal): Remove test case
4033 added in previous commit since non-aliased string literals are allowed
4034 again.
4035 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
4036 remove unnecessary string literal declarations.
4037 * tests/sets.at (Firsts): Likewise.
4038
965537bc
JD
40392006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
4040
4041 Don't allow an undeclared string literal, but allow a string literal to
4042 be used before its declaration.
4043 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
4044 symbols_pack complained.
4045 * src/symtab.c (symbol_new): Don't count a string literal as a new
4046 symbol.
4047 (symbol_class_set): Don't count a string literal as a new token, and
4048 don't assign it a symbol number since symbol_make_alias does that.
4049 (symbol_make_alias): It's not necessary to decrement the symbol and
4050 token counts anymore. Don't assume that an alias declaration occurs
4051 before any uses of the identifier or string, and thus don't assert that
4052 one of them has the highest symbol number so far.
4053 (symbol_check_alias_consistency): Complain if there's a string literal
4054 that wasn't declared as an alias.
4055 (symbols_pack): Bail if symbol_check_alias_consistency failed since
4056 symbol_pack asserts that every token has been assigned a symbol number
4057 although undeclared string literals have not.
4058 * tests/regression.at (String alias declared after use, Undeclared
6d0ef4ec 4059 string literal): New test cases.
965537bc
JD
4060 (Characters Escapes, Web2c Actions): Declare string literals as
4061 aliases.
4062 * tests/sets.at (Firsts): Likewise.
4063
47aee066
JD
40642006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
4065
4066 In the grammar scanner, STRING_FINISH unclosed constructs and return
4067 them to the parser in order to improve error messages.
4068 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
4069 SC_BRACED_CODE, SC_PROLOGUE): Implement.
4070 * tests/input.at (Unclosed constructs): New test case.
4071 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
4072 seen.
4073
4074 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
4075 unused global.
4076
1f6b3679
JD
40772006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
4078
4079 Handle string aliases for character tokens correctly.
4080 * src/symtab.c (symbol_user_token_number_set): If the token has an
4081 alias, check and set its alias's user token number instead of its own,
4082 which is set to indicate the alias. Previously, every occurrence of
4083 the character token in the grammar overwrote that alias indicator with
4084 the character code.
4085 * tests/input.at (String aliases for character tokens): New test.
4086
219741d8
JD
40872006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
4088
4089 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
4090
11daa4e7
PE
40912006-08-11 Paul Eggert <eggert@cs.ucla.edu>
4092
4093 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
4094 to prevent failures when building on older platforms.
4095 Check for autopoint failure.
4096 Set XGETTEXT_OPTIONS to values that check for C format strings,
4097 so that translators are warned about them (this also helps
4098 prevent core dumps).
4099
4100 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
4101 function, since it simplifies our code a bit.
4102
4103 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
4104 rather than -W, so we don't get bogus warnings about sign comparisons.
4105 Add -Wpointer-arith, since that warning is useful (it reports code
4106 that does not conform to C89 and that some compilers reject).
4107 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
4108 since it's no longer needed.
4109
f9bfc42a
JD
41102006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
4111
4112 Clean up scanners a bit.
4113 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
4114 definitions so gcc won't warn when obstack_for_string is unused.
4115 * src/scan-code.l: config.h and system.h are already #include'd by
4116 scan-code-c.c, so get rid of them here.
4117 * src/scan-gram.l: Likewise.
4118 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
4119 definitions rather than duplicating the rest of it.
4120 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
4121
06e8700a
JD
41222006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
4123
4124 Suppress signed/unsigned comparison warnings for yycheck.
4125 * data/c.m4 (b4_safest_int_type): New macro.
4126 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
4127 a signed int type, cast it to b4_safest_int_type first.
4128 * data/yacc.c: Likewise.
4129 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
4130 also overwritten.
4131
9c437126
PE
41322006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
4133
4134 * doc/bison.texinfo: Fix some typos.
4135
284d8a13
PE
41362006-08-02 Paul Eggert <eggert@cs.ucla.edu>
4137
4138 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
4139 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
4140
4141 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
4142 the latest gnulib does this a different way.
4143 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
4144 translation was patched, so stop omitting it.
4145
ec5479ce
JD
41462006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
4147
4148 Enable declaration of default %printer/%destructor. Make the parser
4149 use these for all user-declared grammar symbols for which the user does
4150 not declare a specific %printer/%destructor. Thus, the parser uses it
4151 for token 0 if the user declares it but not if Bison generates it as
4152 $end. Discussed starting at
4153 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
4154 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
4155 and
4156 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
4157 * NEWS (2.3+): Mention.
4158 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
4159 declare a %destructor for a mid-rule's semantic value. It's just
4160 impossible to declare one specific to it.
4161 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
4162 code. Describe default %destructor form.
4163 * src/parse-gram.y (grammar_declaration): Parse default
4164 %printer/%destructor declarations.
4165 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
4166 and symbol_destructor_location_get rather than accessing the destructor
4167 and destructor_location members of struct symbol.
4168 (symbol_printers_output): Likewise but for %printer's.
4169 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
4170 again.
4171 * src/symtab.c (default_destructor, default_destructor_location,
4172 default_printer, default_printer_location): New static global
4173 variables to record the default %destructor and %printer.
4174 (symbol_destructor_get, symbol_destructor_location_get,
4175 symbol_printer_get, symbol_printer_location_get): New functions to
4176 compute the appropriate %destructor and %printer for a symbol.
4177 (default_destructor_set, default_printer_set): New functions to set the
4178 default %destructor and %printer.
4179 * src/symtab.h: Prototype all those new functions.
4180 * tests/actions.at (Default %printer and %destructor): New test to
4181 check that the right %printer and %destructor are called, that they're
4182 not called for $end, and that $$ and @$ work correctly.
4183 (Default %printer and %destructor for user-declared end token): New
4184 test to check that the default %printer and %destructor are called for
4185 a user-declared end token.
4186 * tests/input.at (Default %printer and %destructor redeclared, Unused
4187 values with default %destructor): New tests to check related grammar
4188 warnings and errors.
4189
868d2d96
JD
41902006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
4191
4192 Clean up handling of %destructor for the end token (token 0).
4193 Discussed starting at
4194 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
4195 and
4196 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
4197
4198 Make the skeletons consistent in how they pop the end token and invoke
4199 its %destructor.
4200 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
4201 state, which has token number 0, since this would invoke the
4202 %destructor for the end token.
4203 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
4204 until after shifting the end token, or else it won't be popped.
4205 * data/yacc.c (yyparse): Likewise.
4206
4207 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
4208 it's the end token. Upon termination, destroy an unshifted lookahead
4209 even when it's the end token.
4210 * data/lalr1.cc (yy::parser::parse): Likewise.
4211 * data/yacc.c (yyparse): Likewise.
4212
4213 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
4214 value warnings for the end token when the user gives the end token a
4215 %destructor.
4216
4217 * tests/actions.at (Printers and Destructors): Test all the above.
4218
62a9592d
PE
42192006-07-24 Paul Eggert <eggert@cs.ucla.edu>
4220
4221 Update to latest gnulib and gettext versions.
4222 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
4223 Add fopen-safer.
4224 (gnulib_files): Add m4/warning.m4. Don't worry about files
4225 overwritten by autopoint.
4226 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
4227 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
4228 rejects them.
4229 Don't use autoreconf; instead, invoke autopoint etc. by hand,
4230 so that we can remove the intl files at a better time.
4231 (intl_files_to_remove): Remove aclocal.m4, since it gets
4232 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
4233 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
4234 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
4235 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
4236 Remove datarootdir hack; no longer needed.
4237 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
4238 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
4239 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
4240 strdup.h.
4241 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
4242 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
4243
10d6970f
PE
42442006-07-20 Paul Eggert <eggert@cs.ucla.edu>
4245
4246 * bootstrap: Adjust to today's change to gnulib-tool by invoking
4247 it with --assume-autoconf='latest-stable'.
4248
50a33993
JD
42492006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
4250
4251 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
4252 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
4253 YYSTYPE' and `{'.
4254 * src/muscle_tab.h (muscle_grow): Replace the header comments with
4255 those from muscle_tab.c since the old ones are misleading.
4256
2ce4ed68
AD
42572006-07-13 Akim Demaille <akim@epita.fr>
4258
4259 Support %define "KEY" {VALUE}.
4260 * src/scan-code.h, src/scan-code.l (translate_action)
4261 (translate_rule_action, translate_symbol_action, translate_code):
4262 Return char *, not const char *.
4263 * src/parse-gram.y (declaration): Rename as...
4264 (prologue_declaration): this.
4265 (string_content): Remove this nonterminal, use STRING.
4266 (braceless, content, content.opt): New nonterminal.
4267 Use them.
4268 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
4269 as value.
4270 * src/scan-gram.l (getargs.h): Don't include it.
4271
db7e5eb5
PE
42722006-07-12 Paul Eggert <eggert@cs.ucla.edu>
4273
4274 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
4275 rather than a for-loop that declares a local bool variable. This
4276 should work around a compatibility problem with a Cray x1e C++
4277 compiler reported by Hung Nguyen in
4278 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
4279 The for-loop was introduced in the 2004-11-17 change but I don't
4280 know why it was needed.
4281
a5d80ba5
AD
42822006-07-12 Akim Demaille <akim@epita.fr>
4283
4284 * data/c.m4: Comment changes.
4285
23eb2a69
AD
42862006-07-10 Akim Demaille <akim@lrde.epita.fr>
4287
4288 * src/complain.c (error_message, ERROR_MESSAGE): New.
4289 To factor...
4290 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
4291 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
4292
ddc8ede1
PE
42932006-07-09 Paul Eggert <eggert@cs.ucla.edu>
4294
4295 * NEWS: Instead of %union, you can define and use your own union type
4296 YYSTYPE if your grammar contains at least one <type> tag.
4297 Your YYSTYPE need not be a macro; it can be a typedef.
4298 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
4299 (Union Decl, Decl Summary): Document this.
4300 * data/glr.c (YYSTYPE): Implement this.
4301 * data/glr.cc (YYSTYPE): Likewise.
4302 * data/lalr1.cc (YYSTYPE): Likewise.
4303 * data/yacc.c (YYSTYPE): Likewise.
4304 * src/output.c (prepare): Output tag_seen_flag.
4305 * src/parse-gram.y (declaration, grammar_declaration):
4306 Use 'union_seen' rather than 'typed' to determine whether
4307 %union has been seen, since grammars can now be typed without
4308 %union.
4309 (symbol_declaration, type.opt, symbol_def):
4310 Keep track of whether a tag has been seen.
4311 * src/reader.c (union_seen, tag_seen): New vars.
4312 (typed): remove.
4313 * src/reader.h (union_seen, tag_seen, typed): Likewise.
4314 * src/scan-code.l (untyped_var_seen): New variable.
4315 (handle_action_dollar): Adjust to above changes.
4316 (handle_action_dollar, handle_action_at):
4317 Improve overflow checking for outlandish numbers.
4318 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
4319 avoid new diagnostics generated by above changes.
4320 * tests/regression.at (YYSTYPE typedef): Add test to check
4321 for type tags without %union.
4322
4323 * src/symlist.c (symbol_list_length): Return int, not unsigned
4324 int, since callers expect int. This may need to get revisited
4325 once we have proper integer overflow checking.
4326
4327 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
4328 object is now static.
4329
4330 * src/getargs.c (flags_argmatch): Return void, not int,
4331 to pacify ./configure --enable-gcc-warnings.
4332
4333 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
4334 since last_string is already defined to FLEX_PREFIX (last_string).
4335
7b42569e
AD
43362006-07-09 Akim Demaille <akim@lrde.epita.fr>
4337
4338 Implement --warnings/-W.
4339 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
4340 replaced by...
4341 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
4342 Adjust callers.
4343 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
4344 (warnings_args, warnings_types): New.
4345 (getargs, short_options, long_options): Accept -W/--warnings.
4346 Sort the options by alphabetical order, upper case letter right
4347 before its lower case.
4348
3b452f4e
JD
43492006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
4350
4351 Change %merge result type clash warnings to errors. Discussed at
4352 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
4353 * src/reader.c (record_merge_function_type): Use complain_at.
4354 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
4355 declared later): Update test case results.
4356
b8a41559
AD
43572006-07-09 Akim Demaille <akim@lrde.epita.fr>
4358
4359 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
4360 to be in alphabetical order.
4361 (trace_args): Spelling fixes.
4362
cd9e1ba2
PE
43632006-07-09 Paul Eggert <eggert@cs.ucla.edu>
4364
4365 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
4366 so they don't collide with user-defined macros.
4367 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
4368 this was never guaranteed, and now that we're using gnulib stdint,
4369 which defines int_fast16_t to long int, the problem is exposed.
4370
cb48f191
PE
43712006-07-08 Paul Eggert <eggert@cs.ucla.edu>
4372
b8445a15
PE
4373 * data/c.m4 (b4_basename): Simplify a bit, since we don't
4374 need the full POSIX semantics (and weren't implementing them
4375 anyway).
4376
cb48f191
PE
4377 Adjust to Autoconf 2.60 and today's gnulib.
4378 * bootstrap (gnulib_modules): Add stdint.
4379 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
4380 no longer copies it.
4381 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
4382 since stdint needs the former and wcwidth (which is now required
4383 by mbswidth) needs the latter.
4384 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
4385 work around a compatibility glitch between gettext 0.14.6 and
4386 Autoconf 2.60.
4387 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
4388 Do not check for uintptr_t, since new stdint module does the right
4389 thing.
4390 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
4391 Add stdint.h, stdint_.h, wcwidth.h.
4392 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
4393 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
4394 stdint.m4, wchar_t.m4, wcwidth.m4.
4395 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
4396 usual order for ../lib/*.h files.
4397 (file_name_split): Use last_component, not base_name, to adjust
4398 to gnulib changes.
4399 * src/parse-gram.h: Include <strverscmp.h> in the usual order
4400 for ../lib/*.h files.
4401 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
4402 Define unconditionally, since we now assume the stdint module.
4403 * src/scan-skel.l: Include <dirname.h>.
4404 (BASE_QPUTS): Use last_component, not base_name.
4405 * src/system.h: Include <unlocked-io.h> in the usual order
4406 for ../lib/*.h files. Include <stdint.h> unconditionally,
4407 since we now use the stdint module.
4408 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
4409 HAVE_UINTPTR_T, since we now use the stdint module.
4410 (base_name): Remove decl, since files now include <dirname.h>
4411 to get the decl.
4412
cd48d21d
AD
44132006-07-08 Akim Demaille <akim@lrde.epita.fr>
4414
4415 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
4416 New, default to 1.
4417 * data/yacc.c, data/glr.c, data/location.cc: Use them.
4418 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
4419 default.
4420 * tests/calc.at: Adjust.
4421
8ec0a172
AD
44222006-07-08 Akim Demaille <akim@lrde.epita.fr>
4423
b8445a15 4424 * data/c.m4 (b4_basename): New.
8ec0a172
AD
4425 (b4_syncline): Also output the location of its invocation (from
4426 the skeleton).
4427 (b4_user_action, b4_define_user_action, b4_user_actions)
4428 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
4429 (b4_user_stype): New.
4430 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
4431
4a678af8
JD
44322006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
4433
4434 In the grammar file, the first column is 1 not 0 on the first line as
4435 on every other line.
4436 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
4437 * tests/input.at (Torturing the Scanner): Update output.
4438
4439 * src/scan-gram.l (scanner_cursor): Declare it static.
4440
dd60572a
JD
44412006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
4442
4443 In warnings, say "previous declaration" rather than "first
4444 declaration".
4445 * src/symtab.c (redeclaration): Do that here.
4446 * src/reader.c (record_merge_function_type): In the case of a result
4447 type clash, report the previous declaration rather than the very first
4448 one in the grammar file.
4449 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
4450 declared later): Add a third declaration to check this behavior.
4451 * tests/input.at (Incompatible Aliases): Update output.
4452
2073e1b6
AD
44532006-06-27 Akim Demaille <akim@epita.fr>
4454
4455 * doc/Doxyfile.in: New.
4456 * doc/Makefile.am: Use it.
4457 * src/lalr.h, src/symtab.h: Initial doxygenation.
4458
8ee5b538
JD
44592006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
4460
4461 Don't miss %merge result type warnings just because the LHS types are
fab044e6
JD
4462 declared after the %merge. This continues the effort of the previous
4463 patch.
8ee5b538
JD
4464 * src/reader.c (get_merge_function): Don't set the merger type yet.
4465 (record_merge_function_type): New function for setting the merger type
4466 and checking for clashes.
4467 (grammar_current_rule_merge_set): Set the location of the %merge for
4468 the current rule.
4469 (packgram): Invoke record_merge_function_type for each rule now that
4470 all symbol type declarations have been parsed.
4471 * src/reader.h (merger_list.type_declaration_location): New member
4472 storing the location of the first %merge from which the type for this
4473 merging function was derived.
4474 * src/symlist.h (symbol_list.merger_declaration_location): New member
4475 storing the location of a rule's %merge, if any.
4476 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
4477 declared later): New test to catch the error fixed by the above patch.
4478
ffa4ba3a
JD
44792006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
4480
4481 Get action warnings (grammar_rule_check) right even when symbol
fab044e6
JD
4482 declarations appear after the rules. Discussed at
4483 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
4484 and
4485 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
4486 Don't mistake the type of $$ in a midrule to be that of its parent
4487 rule's $$.
ffa4ba3a
JD
4488 * src/reader.c (grammar_current_rule_end): Don't invoke
4489 grammar_rule_check yet since not all symbol declarations may have been
4490 parsed yet.
4491 (grammar_midrule_action): Likewise.
4492 Don't record whether the midrule's $$ has been used yet since actions
4493 haven't been translated yet.
4494 Record the midrule's parent rule and its RHS index within the parent
4495 rule.
4496 (grammar_current_rule_action_append): Don't translate the action yet
4497 since not all symbol declarations may have been parsed yet and, thus,
4498 warnings about types for $$, $n, @$, and @n can't be reported yet.
4499 (packgram): Translate the action and invoke grammar_rule_check now that
4500 all symbol declarations have been parsed.
4501 * src/scan-code.l (handle_action_dollar): Now that this is invoked
4502 after parsing the entire grammar file, the symbol list here in the case
4503 of a midrule is actually the midrule's empty RHS, so reference its
4504 parent rule's RHS where necessary.
4505 On the other hand, now that you can already know it's a midrule, you
4506 aren't forced to think $$ has the same type as its parent rule's $$.
4507 (handle_action_at): In the case of a midrule, reference the parent rule
4508 where necessary.
4509 * src/symlist.c (symbol_list_new): Initialize new midrule-related
4510 members.
4511 (symbol_list_length): Now that this is invoked after all rules have
4512 been parsed, a NULL symbol (rather than a NULL symbol list node)
4513 terminates a rule. symbol_list_print already does this correctly.
4514 * src/symlist.h (symbol_list.midrule_parent_rule,
4515 symbol_list.midrule_parent_rhs_index): New members so that midrules can
4516 remember their relationships with their parents.
4517 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
4518 fixed by the above patch.
4519 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
4520 implementing...
4521 (Unused values): ... this old test case and...
4522 (Unused values before symbol declarations): ... this new test case.
4523 This one is the same as `Unused values' except that all symbol
4524 declarations appear after the rules in order to catch the rest of the
4525 errors fixed by the above patch.
4526
e256e17f
JD
45272006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
4528
300a1930
JD
4529 More cleanup.
4530 * src/reader.c (current_rule): Declare it static since it's no longer
4531 used outside this file.
4532 (grammar_current_rule_action_append): Remove redundant arguments from
4533 translate_rule_action invocation.
4534 * src/reader.h (current_rule): Remove this unused extern.
4535 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
4536 * src/scan-code.l (translate_rule_action): Likewise.
e256e17f 4537
381ecb06
JD
45382006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
4539
4540 Clean up yesterday's patch.
4541 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
4542 to...
4543 * src/reader.c (grammar_current_rule_action_append): ... here for
4544 consistency with grammar_current_rule_symbol_append.
4545 * tests/regression.at (Braced code in declaration in rules section):
4546 Make yyerror and yylex static as usual.
4547
4210cd0b
JD
45482006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
4549
4550 Fix bug that mistakes braced code in a declaration in the rules section
4551 to be a rule action. Mentioned at
4552 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
4553 * src/scan-gram.l: Move midrule action detection from the start of the
4554 scanning of any braced code to...
4555 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
4556 action. For readability, use $2 and @2 rather than the equivalent
4557 global variables.
4558 * tests/regression.at (Braced code in declaration in rules section):
4559 New test to catch the error fixed by the above patch.
4560
4561 Work on code readability some.
4562 * src/scan-code.l (current_rule): Get rid of this misleading and
4563 redundant declaration: it's actually extern'ed in reader.h.
4564 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
4565 translate_action): Add a rule argument and use it instead of the global
4566 current_rule.
4567 (translate_rule_action): This already receives current_rule through an
4568 argument, so pass it on to translate_action instead of assigning
4569 current_rule to current_rule.
4570 (translate_symbol_action, translate_code): Pass rule = NULL to
4571 translate_action.
4572
34f98f46
JD
45732006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
4574
4575 Rename %before-definitions to %start-header and %after-definitions to
4576 %end-header. Don't use these declarations to separate pre-prologue
4577 blocks from post-prologue blocks. Add new order-independent
4578 declarations %before-header and %after-header as alternatives to the
4579 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
4580 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
4581 * NEWS (2.3+): Update for these changes.
4582 * data/glr.c (b4_before_definitions): Update to...
4583 (b4_start_header): ... this.
4584 (b4_after_definitions): Update to...
4585 (b4_end_header): ... this.
4586 * data/glr.cc: Likewise.
4587 * data/lalr1.cc: Likewise.
4588 * data/yacc.c: Likewise.
4589 * doc/bison.texinfo (The prologue): Update names, and replace remaining
4590 prologue blocks with %*-header declarations.
4591 (Calc++ Parser): Likewise.
91661ebb 4592 (Decl Summary): Update names.
148d66d8 4593 (Table of Symbols): Update description.
34f98f46
JD
4594 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
4595 (PERCENT_END_HEADER): ... this.
4596 (PERCENT_BEFORE_DEFINITIONS): Update to...
4597 (PERCENT_START_HEADER): ... this.
4598 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
4599 (declaration): Update token names and m4 macro names.
4600 When parsing %end-header and %start-header, invoke translate_code
4601 before muscle_code_grow, and no longer set global booleans to remember
4602 whether these declarations have been seen.
4603 Parse new %after-header and %before-header.
4604 * src/reader.c (before_definitions, after_definitions): Remove.
4605 (prologue_augment): Accept a new bool argument to specify whether to
4606 augment the pre-prologue or post-prologue.
4607 * src/reader.h (before_definitions, after_definitions): Remove these
4608 extern's.
4609 (prologue_augment): Add new bool argument.
4610 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
4611 (PERCENT_END_HEADER): ... this.
4612 (PERCENT_BEFORE_DEFINITIONS): Update to...
4613 (PERCENT_START_HEADER): ... this.
4614 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
4615 * tests/actions.at (Printers and Destructors): Update names.
4616
31b2b07e
JD
46172006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
4618
4619 Add comparison operators for C++ location classes. Discussed at
4620 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
4621 * data/c++.m4 (b4_define_location_comparison): New boolean %define
4622 declaration indicating whether filename_type has an operator==. If
4623 filename_type is `std::string', it defaults to `1', `0' otherwise.
4624 * data/location.cc: Iff b4_define_location_comparison is `1', add
4625 operator== and operator!= for class position and for class location.
4626
4627 Some minor fixes.
4628 * src/scan-action.l: Remove unused file.
4629 * src/symtab.c (symbol_printer_set): Use printer_location not
4630 destructor_location.
4631 * src/symtab.h (struct symbol): Replace incorrect source comment for
4632 printer members.
4633 * tests/input.at (Incompatible Aliases): Update output with correct
4634 printer location.
4635
9bc0dd67
JD
46362006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
4637
4638 Don't put the pre-prologue in the header file. For the yacc.c code
4639 file and the glr.c header and code files, move the pre-prologue before
4640 the token definitions. Add new %before-definitions and
4641 %after-definitions to declare code that will go in both the header file
4642 and code file. Discussed at
4643 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
4644 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
4645 and
4646 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
4647 * NEWS (2.3+): Describe these changes.
4648 * data/glr.c (b4_pre_prologue): Move from within to before...
4649 (b4_shared_declarations): ... this.
4650 Add new b4_before_definitions before b4_token_enums.
4651 Add new b4_after_definitions at the end.
4652 * data/glr.cc (b4_pre_prologue): Replace with...
4653 (b4_before_definitions): ... this in the header file.
4654 (b4_after_definitions): New near the end of the header file.
4655 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
4656 code file right before including the header file.
4657 (b4_before_definitions): New in the previous position of
4658 b4_pre_prologue in the header file.
4659 (b4_after_definitions): New near the end of the header file.
4660 * data/yacc.c: Clean up some m4 quoting especially in the header file.
4661 (b4_token_enums_defines): In the code file, move to right before
4662 YYSTYPE for consistency with the header file.
4663 (b4_before_definitions): New right before b4_token_enums_defines in
4664 both the header and code file.
4665 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
4666 header and code file.
4667 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
4668 of prologues for %union dependencies.
91661ebb
JD
4669 (Decl Summary): In %defines description, mention the effect of
4670 %before-definitions and %after-definitions on the header file.
9bc0dd67
JD
4671 (Calc++ Parser): Forward declare driver in a %before-definitions rather
4672 than in the pre-prologue so that make check succeeds.
148d66d8 4673 (Table of Symbols): Add entries for %before-definitions and
9bc0dd67
JD
4674 %after-definitions.
4675 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
4676 %before-definitions.
4677 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
4678 (declaration): Parse those declarations and append to
4679 b4_before_definitions and b4_after_definitions, respectively.
4680 * src/reader.c (before_definitions, after_definitions): New bools to
4681 track whether those declarations have been seen.
4682 (prologue_augment): Add to the post-prologue if %union,
4683 %before-definitions, or %after-definitions has been seen.
4684 * src/reader.h (before_definitions, after_definitions): New extern's.
4685 * src/scan-gram.l: Scan the new declarations.
4686 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
4687 prologue block in a %before-definitions or a %after-definitions based
4688 on whether the %union is declared.
4689 * tests/regression.at (Early token definitions with --yacc, Early token
4690 definitions without --yacc): Move tests for token definitions into the
4691 post-prologue since token names are no longer defined in the
4692 pre-prologue.
4693
203b9274
AD
46942006-06-20 Akim Demaille <akim@epita.fr>
4695
4696 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
4697 (symbol_get): Use it.
4698 * src/parse-gram.y: Use it.
4699
a7ee59cf
JD
47002006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
4701
4702 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
4703 build succeeds when configured with --enable-gcc-warnings.
4704
5a2baae7
PE
47052006-06-19 Paul Eggert <eggert@cs.ucla.edu>
4706
33ad1a9c
PE
4707 * src/parse-gram.y (char_name): New function.
4708 (CHAR, STRING, string_content): For %printer, properly escape.
4709 (ID): Prefer fputs to fprintf.
4710 (id): Reindent to be consistent with other rules.
4711 Properly quote char.
4712
5a2baae7
PE
4713 The Translation Project changed its way of publishing translations
4714 to maintainers. I haven't received any responses to my request
4715 for supporting the old way, or for documenting the new way. I
4716 have modified 'bootstrap' to use screen scraping
4717 (in this case, HTML scraping). This is unreliable and inelegant,
4718 but I don't see any better way. Yuck.
4719 * bootstrap (TP_URL, WGET_COMMAND): New vars.
4720 (get_translations): New function, which uses HTML scraping to
4721 deduce locations of latest translations.
4722 Use this function to grab both bison and bison-runtime .po files.
4723 Don't bother priming the pump for the runtime-po domain any more,
4724 as it's now translated better than bison is.
4725
58d7a1a1
AD
47262006-06-19 Akim Demaille <akim@epita.fr>
4727
4728 * src/scan-gram.l: No longer "parse" things after `%union' until
4729 `{'. Rather, return a single "%union" token.
4730 No longer make symbols: return strings, and leave the conversion
4731 to symbols to the parser.
4732 (SC_PRE_CODE, token_type): Remove.
4733 * src/parse-gram.y (%union): New field `character'.
4734 Sort tokens.
4735 (CHAR): New token.
4736 (ID, ID_COLON): Now that the scanner no longer makes them
4737 identifiers, adjust all uses to invoke symbol_get.
4738 (id_colon): New, wraps the conversion from string to symbol.
4739 (%union): Accept a possible union_name.
4740 (symbol): Now can be a char.
4741 * data/c.m4 (b4_union_name): Leave a default value.
4742 * data/glr.c, data/yacc.c: Use it.
4743
b931235e
JD
47442006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
4745
4746 For associating token numbers with token names for "yacc.c", don't use
4747 #define statements unless `--yacc' is specified; always use enum
4748 yytokentype. Most important discussions start at:
4749 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
4750 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
4751 and
4752 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
4753 * NEWS (2.3+): Mention.
4754 * data/c.m4 (b4_yacc_if): New.
4755 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
4756 token #define's.
4757 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
4758 on token name definitions.
4759 * src/getargs.c (usage): Capitalize `Yacc' in English.
4760 * src/output.c (prepare): Define b4_yacc_flag.
4761 * tests/regression.at (Early token definitions): Test that tokens names
4762 are defined before the pre-prologue not just before the post-prologue.
4763 Remove this test case and copy to...
4764 (Early token definitions with --yacc): ... this to test #define's.
4765 (Early token definitions without --yacc): ... and this to test enums.
4766
9e6e7ed2
PE
47672006-06-11 Paul Eggert <eggert@cs.ucla.edu>
4768
4769 * NEWS: Reword the post-2.3 change to not be so optimistic about
4770 removing the old "look-ahead" spelling.
4771 Update previous look-ahead/lookahead change reports.
4772 * REFERENCES: look-ahead -> lookahead (since that's
4773 what he actually wrote).
4774 * doc/refcard.tex: look ahead -> lookahead,
4775 look-ahead -> lookahead
4776
742e4900
JD
47772006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
4778
4779 For consistency, use `lookahead' instead of `look-ahead' or
4780 `look_ahead'. Discussed starting at
4781 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
4782 and then at
4783 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
4784 * NEWS: For the next release, note the change to `--report'.
4785 * TODO, doc/bison.1: Update English.
4786 * doc/bison.texinfo: Update English.
4787 (Understanding Your Parser, Bison Options): Document as
4788 `--report=lookahead' rather than `--report=look-ahead'.
4789 * src/conflicts.c: Update English in comments.
4790 (lookahead_set): Rename from look_ahead_set.
4791 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
4792 (resolve_sr_conflict): Rename local look_ahead_tokens to
4793 lookahead_tokens, and update other uses.
4794 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
4795 count_rr_conflicts, conflicts_free): Update uses.
4796 * src/getargs.c (report_args): Move "lookahead" before alternate
4797 spellings.
4798 (report_types): Update uses.
4799 (usage): For `--report' usage description, state `lookahead' spelling
4800 rather than `look-ahead'.
4801 * src/getargs.h (report.report_lookahead_tokens): Rename from
4802 report_look_ahead_tokens.
4803 * src/lalr.c: Update English in comments.
4804 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
4805 (state_lookahead_tokens_count): Rename from
4806 state_look_ahead_tokens_count.
4807 Rename local n_look_ahead_tokens to n_lookahead_tokens.
4808 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
4809 Rename local n_look_ahead_tokens to n_lookahead_tokens.
4810 Update other uses.
4811 Update English in output.
4812 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
4813 * src/print.c: Update English in comments.
4814 (lookahead_set): Rename from look_ahead_set.
4815 (print_reduction): Rename argument lookahead_token from
4816 look_ahead_token.
4817 (print_core, state_default_rule, print_reductions, print_results):
4818 Update uses.
4819 * src/print_graph.c: Update English in comments.
4820 (print_core): Update uses.
4821 * src/state.c: Update English in comments.
4822 (reductions_new): Update uses.
4823 (state_rule_lookahead_tokens_print): Rename from
4824 state_rule_look_ahead_tokens_print, and update other uses.
4825 * src/state.h: Update English in comments.
4826 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
4827 (state_rule_lookahead_tokens_print): Rename from
4828 state_rule_look_ahead_tokens_print.
4829 * src/tables.c: Update English in comments.
4830 (conflict_row, action_row): Update uses.
4831 * tests/glr-regression.at
4832 (Incorrect lookahead during deterministic GLR,
4833 Incorrect lookahead during nondeterministic GLR): Rename
4834 print_look_ahead to print_lookahead.
4835 * tests/torture.at: Update English in comments.
4836 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
4837 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
4838 (Many lookahead tokens): Update uses.
4839 * data/glr.c: Update English in comments.
4840 * lalr1.cc: Likewise.
4841 * yacc.c: Likewise.
4842 * src/conflicts.h: Likewise.
4843 * src/lalr.h: Likewise.
4844 * src/main.c: Likewise.
4845 * src/output.c: Likewise.
4846 * src/parse-gram.c: Likewise.
4847 * src/tables.h: Likewise.
4848 * tests/calc.at: Likewise.
4849
3c40d0b5
JD
48502006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
4851
4852 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
4853
5d278082
PE
48542006-06-07 Paul Eggert <eggert@cs.ucla.edu>
4855
4856 * TODO: Add request from Nelson H. F. Beebe to be able to install
4857 Bison without installing the yacc script.
4858
9e668899
JD
48592006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
4860
4861 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
4862 and yytext if they're already #define'd.
4863 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
4864 * src/scan-code-c.c: ... here.
4865 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
4866 <config.h>.
4867
0c8e079f
JD
48682006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
4869
4870 Get Bison to build again when configured with --enable-gcc-warnings.
4871 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
4872 missing #include's.
4873 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
4874 loc argument as it shadows a global.
4875 * src/scan-gram.l: Remove stray comma that prevents boundary_set
4876 invocation.
4877
4878 * src/.cvsignore: Add scan-code.c.
4879
2346344a
AD
48802006-06-07 Akim Demaille <akim@epita.fr>
4881
4882 * src/scan-gram.l: Move the "add a trailing ; to actions" code
4883 to...
4884 * src/scan-code.l: here.
4885 * tests/input.at (Torturing the Scanner): Fix another location
4886 error.
4887
4862bdfd
AD
48882006-06-07 Akim Demaille <akim@epita.fr>
4889
4890 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
4891
e9071366
AD
48922006-06-06 Akim Demaille <akim@epita.fr>
4893
4894 Extract the parsing of user actions from the grammar scanner.
4895 As a consequence, the relation between the grammar scanner and
4896 parser is much simpler. We can also split "composite tokens" back
4897 into simple tokens.
4898 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
4899 * src/scan-gram.l (add_column_width, adjust_location): Move to and
4900 rename as...
4901 * src/location.h, src/location.c (add_column_width)
4902 (location_compute): these.
4903 Fix the column count: the initial column is 0.
4904 (location_print): Be robust to ending column being 0.
4905 * src/location.h (boundary_set): New.
4906 * src/main.c: Adjust to scanner_free being renamed as
4907 gram_scanner_free.
4908 * src/output.c: Include scan-code.h.
4909 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
4910 Use boundary_set.
4911 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
4912 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
4913 which is now, again, a separate token.
4914 Adjust all dependencies.
4915 Whereever actions with $ and @ are used, use translate_code.
4916 (action): Remove this nonterminal which is now useless.
4917 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
4918 (grammar_current_rule_action_append): Use translate_code.
4919 (packgram): Bound check ruleno, itemno, and rule_length.
4920 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
4921 (last_string, last_braced_code_loc, max_left_semantic_context)
4922 (scanner_initialize, scanner_free, scanner_last_string_free)
4923 (gram_out, gram_lineno, YY_DECL_): Move to...
4924 * src/scan-gram.h: this new file.
4925 (YY_DECL): Rename as...
4926 (GRAM_DECL): this.
4927 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
4928 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
4929 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
4930 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
4931 Move these declarations, and...
4932 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
4933 these to...
4934 * src/flex-scanner.h: this new file.
4935 * src/scan-gram.l (rule_length, rule_length_overflow)
4936 (increment_rule_length): Remove.
4937 (last_braced_code_loc): Rename as...
4938 (gram_last_braced_code_loc): this.
4939 Adjust to the changes of the parser.
4940 Move all the handling of $ and @ into...
4941 * src/scan-code.l: here.
4942 * src/scan-gram.l (handle_dollar, handle_at): Remove.
4943 (handle_action_dollar, handle_action_at): Move to...
4944 * src/scan-code.l: here.
4945 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
4946 scan-code.h, scan-code-c.c, scan-gram.h.
4947 (EXTRA_bison_SOURCES): Add scan-code.l.
4948 (BUILT_SOURCES): Add scan-code.c.
4949 (yacc): Be robust to white spaces.
4950
4951 * tests/conflicts.at, tests/input.at, tests/reduce.at,
4952 * tests/regression.at: Adjust the column numbers.
4953 * tests/regression.at: Adjust the error message.
7891a7c4 4954
184e42f0
JD
49552006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
4956
4957 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
4958 Use Akim's wording from
4959 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
4960
7891a7c4
JD
49612006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
4962
4963 Between Bison releases, manually append `+' to the previous Bison
4964 release number, and use that as a signal to automatically print the
4965 ChangeLog's CVS Id keyword from --version. Discussed starting at
4966 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
4967 * ChangeLog: Add Id header.
4968 * configure.ac (AC_INIT): Append `+' to `2.3'.
4969 * src/.cvsignore: Add revision.c.
4970 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
4971 (BUILT_SOURCES): Add revision.c.
4972 (revision.c): New target rule. This file defines a new global variable
4973 named revision. It initializes it with either the Id from ChangeLog
4974 or, if VERSION doesn't contain `+', with the empty string.
4975 * src/getargs.c (version): Print the value of revision.
4976 * src/revision.h: Extern revision.
4977
4ad3ed84
PE
49782006-06-05 Paul Eggert <eggert@cs.ucla.edu>
4979
4980 * NEWS: Version 2.3.
4981 * configure.ac (AC_INIT): Likewise.
4982
02103984
PE
49832006-05-30 Paul Eggert <eggert@cs.ucla.edu>
4984
4985 * data/glr.c (YYRECOVERING): Define to be a function-like macro
4986 with no arguments, not as an object-like macro. This is for
4987 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
4988 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
4989 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
4990 Document this.
4991
2c08afa5
JD
49922006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
4993
4994 * src/getargs.c (usage): Back out yesterday's modification of the
4995 --help output so that we don't have to wait for translation before
4996 releasing 2.3.
4997
6077da58
PE
49982006-05-29 Paul Eggert <eggert@cs.ucla.edu>
4999
5000 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
5001 Problem reported by Akim Demaille.
5002
2a26b6c2
JD
50032006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
5004
5005 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
5006
aefef0d6
PE
50072006-05-26 Paul Eggert <eggert@cs.ucla.edu>
5008
5009 * data/yacc.c (yy_reduce_print): Omit trailing white space in
5010 generated source code. Problem reported by Frans Englich in
5011 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
5012
fcd8e201
PE
50132006-05-22 Paul Eggert <eggert@cs.ucla.edu>
5014
5015 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
5016 shell, not within 'make', so that 'make' by an ordinary builder
5017 (using GNU make) does not worry about configuring gzip. This also
5018 works around a bug reported independently by Keith Thompson and by
5019 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
5020 stderr rather than stdout, messing up the build logs.
5021
7b5cdcbd
JD
50222006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
5023
5024 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
5025 to make sure that YYID will never be unused. This fixes a 'make
5026 maintainer-check' failure caused by the recent changes to the 'Trivial
5027 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
5028 not used.
5029 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
5030
5ad0a449
JD
50312006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
5032
5033 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
5034 state before an empty RHS is always resolved here. Only the location
5035 of that state is guaranteed to be resolved, and that's enough. This
5036 fixes the remaining bug reported by Derek M. Jones in
5037 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
5038 * tests/glr-regression.at (Uninitialized location when reporting
5039 ambiguity): Test the above case.
5040 Also, the embedded comments in this test case claim it checks the case
5041 of an empty RHS that has inherited the initial location. However, the
5042 corresponding LHS was already resolved, so yyresolveLocations didn't
5043 actually have reason to modify it. Fix this by forcing
5044 nondeterministic operation at the beginning of the parse.
5045
50cce58e
PE
50462006-05-20 Paul Eggert <eggert@cs.ucla.edu>
5047
5048 * data/c.m4 (b4_yy_symbol_print_generate):
5049 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
5050 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
5051 of the bugs reported today by Derek M Jones in
5052 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
5053 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
5054 defined to be a type name without parens or brackets.
5055 (Location Type): Similarly for YYLTYPE.
5056 * tests/regression.at (Trivial grammars): Put in a test for this
5057 bug that will be caught by 'make maintainer-check' (though not,
5058 alas, by 'make check' unless your compiler is picky).
5059
ab8d9dc5
PE
50602006-05-19 Paul Eggert <eggert@cs.ucla.edu>
5061
0d2c8934 5062 * NEWS: Version 2.2.
ab8d9dc5
PE
5063 * configure.ac (AC_INIT): Likewise.
5064
9138c575
JD
50652006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
5066
5067 * data/glr.c (yyreportTree): Make room in yystates for the state
5068 preceding the RHS. This fixes the segmentation fault reported by Derek
5069 M. Jones in
5070 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
5071 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
5072 to the user. Reported for yyreportTree by Derek M. Jones later in the
5073 same thread.
5074 * THANKS: Add Derek M. Jones.
5075 Update my email address.
5076 Fix typo in Steve Murphy's name.
5077
276f48df
PE
50782006-05-14 Paul Eggert <eggert@cs.ucla.edu>
5079
d6645148
PE
5080 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
5081 checking against YYLAST that caused the parser to miss a potential
5082 alternative in its diagnostic.
5083 Problem reported by Maria Jose Moron Fernandez in
5084 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
5085 * data/lalr1.cc (yysyntax_error_): Likewise.
5086 * data/yacc.c (yysyntax_error): Likewise.
5087 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
5088 tokens, in case we run into an older C compiler.
5089 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
5090 Use them to check for the off-by-one error fixed above.
5091
276f48df
PE
5092 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
5093 YYSIZE_T, not size_t.
5094 * tests/regression.at (Trivial grammars): New test, to catch
5095 the error fixed by the above patch.
5096
cd8b5791
AD
50972006-05-14 Akim Demaille <akim@lrde.epita.fr>
5098
5099 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
5100 scheme.
5101 Reported by Steve Murphy.
5102
34376418
AD
51032006-05-14 Akim Demaille <akim@lrde.epita.fr>
5104
5105 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
5106 * data/glr.cc: b4_location_flag is now b4_locations_flag.
5107
327afc7c
AD
51082006-05-14 Akim Demaille <akim@lrde.epita.fr>
5109
5110 Implement --trace=m4.
5111 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
5112 * src/output.c (output_skeleton): When set, pass -dV to m4.
5113
5114 Factor the handling of flags in m4.
5115 * src/output.c (prepare): Rename the muscle names debug, defines,
5116 error_verbose to debug_flag, defines_flag, error_verbose_flag.
5117 * data/c.m4: Adjust.
5118 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
5119 Use b4_define_flag_if to define other b4_FLAG_if macros.
5120 (b4_location_if): As a consequence, rename as...
5121 (b4_locations_if): this, for consistency.
5122 Adjust all the skeletons.
5123
ba9ecd19
AD
51242006-05-14 Akim Demaille <akim@lrde.epita.fr>
5125
5126 * etc/bench.pm: Shorten bench names.
5127
4e83ea15
AD
51282006-05-14 Akim Demaille <akim@lrde.epita.fr>
5129
5130 * src/output.h, src/output.c (error_verbose): Move to...
5131 * src/getargs.h, src/getargs.c: here.
5132 Sort the flags.
5133 Adjust dependencies.
5134
6e93d810
PE
51352006-05-13 Paul Eggert <eggert@cs.ucla.edu>
5136
5137 * data/c.m4 (b4_copyright): Put the special exception for Bison
5138 skeletons here, so we don't have to put it in each skeleton. All
b15296ff
PE
5139 uses changed. Suggested by Akim Demaille. Also, wrap the
5140 copyright notice, in case it is longer than 80 columns. Replace
5141 comma by newline after title.
6e93d810 5142
eaea13f5
PE
51432006-05-11 Paul Eggert <eggert@cs.ucla.edu>
5144
5145 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
5146 incompatibility, not a bug. Mention that it wasn't fixed as of
5147 flex 2.5.33.
5148
3cf084ec
AD
51492006-05-11 Akim Demaille <akim@lrde.epita.fr>
5150
5151 * examples/extexi: Enforce the precedence of concatenation over
5152 >>.
0a9f1c7d 5153 Reported by Tommy Nordgren.
3cf084ec 5154
32c96bd7
AD
51552006-05-11 Akim Demaille <akim@lrde.epita.fr>
5156
5157 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
5158 with the member "token".
f94705b2 5159 Reported by Martin Nylin.
32c96bd7 5160
eaea13f5
PE
51612006-05-08 Paul Eggert <eggert@cs.ucla.edu>
5162
5163 * data/glr.c: Switch to Bison 2.2 special-exception language in
5164 the copyright notice. Use more-regular format for titles and
5165 copyright notices.
5166 * data/glr.cc: Likewise.
5167 * data/location.cc: Likewise.
5168 * data/yacc.cc: Likewise.
5169 * doc/bison.texinfo (Conditions): Document this.
5170 * NEWS: likewise. Upgrade version to 2.2.
5171
6e2d1146
AD
51722006-04-27 Akim Demaille <akim@lrde.epita.fr>
5173
5174 * data/glr.cc: Remove dead code.
5175
47671055
PE
51762006-04-25 Paul Eggert <eggert@cs.ucla.edu>
5177
5178 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
5179 that variable and the line breaks the bootstrap. Problem reported
5180 by Juan M. Guerrero.
5181
ed2e6384
AD
51822006-04-24 Akim Demaille <akim@lrde.epita.fr>
5183
5184 * doc/bison.texinfo (Multiple start-symbols): New.
5185
3cedc2dc
AD
51862006-04-24 Akim Demaille <akim@lrde.epita.fr>
5187
5188 * etc/README, etc/bench.pl: New.
5189
b2ddc3f3
AD
51902006-04-03 Akim Demaille <akim@lrde.epita.fr>
5191
5192 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
5193 rule.
5194 Reported by Mickael Labau.
5195 * tests/input.at (Torturing the Scanner): Test it.
5196
91e3ac9a
PE
51972006-03-16 Paul Eggert <eggert@cs.ucla.edu>
5198
5199 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
5200 Problem reported by Bob Rossi.
5201
52022006-03-13 Paul Eggert <eggert@cs.ucla.edu>
5203
5204 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
5205 and didn't really work.
5206 For the index, use @ifnotinfo, not @iftex.
5207 Minor cleanups of spacing and terminology.
5208
5cf61e93
AD
52092006-03-12 Akim Demaille <akim@lrde.epita.fr>
5210
5211 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
5212 of AT_NAME_PREFIX when %name-prefix is not used.
5213
aa08666d
AD
52142006-03-12 Akim Demaille <akim@lrde.epita.fr>
5215
5216 Apply --prefix to C++ skeletons too: they change the namespace.
5217 The test suite already exercize these cases.
5218 * data/c++.m4 (b4_namespace): New.
5219 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
5220 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
5221 * data/yacc.c, data/glr.c: Remove a useless `[]'.
5222 * doc/bison.texinfo: Document it.
5223 (Option Cross Key): Use @multitable in all formats. It looks
5224 nicer, even in TeX outputs.
5225 (Rules): Use the same code whatever the output type is.
5226 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
5227 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
5228 * tests/calc.at: Use it, instead of hard coding `yy'.
91e3ac9a 5229
45567173
AD
52302006-03-10 Akim Demaille <akim@lrde.epita.fr>
5231
5232 * TODO: Remove dead items.
5233
e9d8f881 52342006-03-10 Akim Demaille <akim@lrde.epita.fr>
55ba27be
AD
5235
5236 * doc/FAQ: Remove, merged into...
5237 * doc/bison.texinfo (FAQ): this.
5238 * doc/Makefile.am (EXTRA_DIST): Adjust.
5239
c095d689
AD
52402006-03-10 Akim Demaille <akim@lrde.epita.fr>
5241
5242 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
5243 even if empty.
5244 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
5245 * doc/bison.texinfo (Calc++ Scanner): Use it.
5246
6e0f8287
PE
52472006-03-09 Paul Eggert <eggert@cs.ucla.edu>
5248
5249 Fix two nits reported by twlevo, plus one more that I discovered.
5250
5251 * src/assoc.h (assoc_to_string): Give a name to the arg, as
5252 this is the usual Bison style.
5253 * src/location.h (location_print): Likewise.
5254
5255 * src/reader.h (token_name): Likewise.
5256
d6b771c3
PE
52572006-03-08 Paul Eggert <eggert@cs.ucla.edu>
5258
5259 Fix some nits reported by twlevo.
5260 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
5261 and "POSIX". Use more-modern syntax for URLs. Mention C++
5262 and ask for Java. Don't hardwire OS version numbers. Add
5263 copyright notice.
5264 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
5265 * src/conflicts.c (solved_conflicts_obstack): Now static.
5266
1e137b71
JD
52672006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
5268
5269 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
5270 page. Say "you can use it" not "you may use it" as on the web page;
5271 we're describing capabilities not granting permission.
5272
73f2e47e
PE
52732006-03-06 Paul Eggert <eggert@cs.ucla.edu>
5274
6d05403d
PE
5275 * data/glr.c (yyresolveLocations): Rename local variables to avoid
5276 shadowing warnings. Use usual patter for iterating through RHS.
5277 * tests/glr-regression.at
5278 (Uninitialized location when reporting ambiguity):
5279 Modify yylex so that it uses its argument, rather than trying
5280 to rely on ARGSUSED (which doesn't work for gcc with warnings).
5281 const char -> char const.
5282
73f2e47e
PE
5283 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
5284 Don't use tabs inside commands; it messes up 'ps'.
5285 Problem reported by twlevo.
5286
8710fc41
JD
52872006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
5288
5289 * tests/glr-regression.at (Uninitialized location when reporting
5290 ambiguity): New test case.
5291 * data/glr.c (yyresolveLocations): New function, which uses
5292 YYLLOC_DEFAULT.
5293 (yyresolveValue): Invoke yyresolveLocations before reporting an
5294 ambiguity.
5295 * doc/bison.texinfo (Default Action for Locations): Note
5296 YYLLOC_DEFAULT's usage for ambiguity locations.
5297 (GLR Semantic Actions): Cross-reference those notes.
5298
ae952af2
JD
52992006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
5300
5301 * tests/glr-regression.at (Leaked semantic values when reporting
5302 ambiguity): Remove unnecessary union and type declarations.
5303 (Leaked lookahead after nondeterministic parse syntax error): New test
5304 case.
5305 * data/glr.c (yyparse): Check for zero stacks remaining before
5306 attempting to shift the lookahead so that you don't lose it.
5307
35ee866a
JD
53082006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5309
5310 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
5311 * tests/glr-regression.at (Leaked semantic values when reporting
5312 ambiguity): New test case.
5313 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
5314 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
5315 now unnecessary yystackp parameter.
5316 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
5317 destructors can be called.
5318
5319 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
5320 in existing testcases.
5321
520181ab
JD
53222006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5323
5324 Don't leak semantic values for parent RHS when a user action cuts the
5325 parser, and clean up related code a bit.
5326 * tests/glr-regression.at (Leaked merged semantic value if user action
35ee866a
JD
5327 cuts parse): Rename to...
5328 (Leaked semantic values if user action cuts parse): ... this. Add check
520181ab
JD
5329 for leaked parent RHS values.
5330 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
5331 between an unresolved state (non-empty chain of semantic options) and
5332 an incomplete one (signaled by an empty chain).
ae952af2 5333 (yyresolveStates): Document the interface. Move all manipulation of a
520181ab
JD
5334 successfully or unsuccessfully resolved yyGLRState to...
5335 (yyresolveValue): ... here so that yyresolveValue always leaves a
5336 yyGLRState with consistent data and thus is easier to understand.
5337 Remove the yyvalp and yylocp parameters since they are always just
5338 taken from the yys parameter. When reporting a discarded merged value
5339 in debugging output, note that it is incompletely merged. Document the
5340 interface.
5341 (yyresolveAction): If resolving any of the RHS states fails, destroy
5342 them all rather than leaking them. Thus, as long as user actions are
5343 written to clean up the RHS correctly, yyresolveAction always cleans up
5344 the RHS of a semantic option. Document the interface.
5345
18d9185c
PE
53462006-02-27 Paul Eggert <eggert@cs.ucla.edu>
5347
5348 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
5349 led to a segmentation fault in GNU Pascal. Problem reported
5350 by Waldek Hebisch.
5351
841a7737
JD
53522006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
5353
5354 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
5355 mid-rule action inside a nonterminal symbol in order to declare a
5356 destructor for its semantic value.
5357
fc3f467f
PE
53582006-02-16 Paul Eggert <eggert@cs.ucla.edu>
5359
5360 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
5361 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
5362 __cplusplus && ! defined _STDLIB_H && !
5363 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
5364 defined free))]: Include <stdlib.h> rather than rolling our own
5365 declarations of malloc and free, to avoid problems with
5366 incompatible declarations (using 'throw') C++'s stdlib.h. This
5367 should fix Debian bug 340012
5368 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
5369 reported by Guillaume Melquiond.
5370
a3af26dd
PE
53712006-02-13 Paul Eggert <eggert@cs.ucla.edu>
5372
4d7bc38c
PE
5373 * NEWS: Clarify symbols versus types in unused-value warnings.
5374
a3af26dd
PE
5375 * configure.ac (AC_INIT): Bump version number.
5376
4e26c69e
PE
53772006-02-13 Paul Eggert <eggert@cs.ucla.edu>
5378
5379 * NEWS: Version 2.1a.
5380 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
5381 since C99 requires this.
5382
498e897c
PE
53832006-02-11 Paul Eggert <eggert@cs.ucla.edu>
5384
5385 * m4/c-working.m4: New file.
5386 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
5387
57bb17ca
PE
53882006-02-10 Paul Eggert <eggert@cs.ucla.edu>
5389
5390 * Makefile.maint: Merge from coreutils.
5391
0be105dc
PE
53922006-02-09 Paul Eggert <eggert@cs.ucla.edu>
5393
5394 More portability fixes for problems summarized by Nelson H. F. Beebe.
5395
5396 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
5397 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
5398 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
5399 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
5400 messes up because C++ code is compiled in 32-bit mode but linked
5401 in 64-bit mode.
5402
6fc0c024
PE
54032006-02-08 Paul Eggert <eggert@cs.ucla.edu>
5404
5405 More portability fixes for problems summarized by Nelson H. F. Beebe.
5406
7870f699
PE
5407 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
5408 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
5409
6fc0c024
PE
5410 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
5411 nodist_PROGRAMS, since we don't need to actually compile the
5412 example if we're just doing a plain 'make'. This avoids bothering
5413 the installer unnecessarily about problems due to weird C++
5414 compilers.
5415
fe6c2fde
PE
54162006-02-06 Paul Eggert <eggert@cs.ucla.edu>
5417
5418 More portability fixes for problems summarized by Nelson H. F. Beebe.
5419
5420 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
5421 than #include "...", and compile with -I'.'. The old method was
5422 not portable, according to Posix and the C standard, and it does
5423 not work with Sun C 5.7, where previous #line directives affect
5424 the working directory used in later #include "..." directives.
5425
927b425b
JMG
54262006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5427
5428 Various DJGGP specific issues in /djgpp
5429
d9735e9e
PE
54302006-02-02 Paul Eggert <eggert@cs.ucla.edu>
5431
5432 More portability fixes for problems summarized by Nelson H. F. Beebe.
5433
5434 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
5435 '#include <map>' works and that you can apply ++ to iterators.
5436
5a6755af
PE
54372006-02-01 Paul Eggert <eggert@cs.ucla.edu>
5438
67a0dc4f
PE
5439 Work around portability problems summarized by Nelson H. F. Beebe in
5440 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
5441
8c86f0ef
PE
5442 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
5443 that '#include <string>' works.
5444
de35dd59
PE
5445 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
5446 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
5447 "warning: sorry: semantics of inline function static data `const
5448 unsigned char translate_table[262]' are wrong (you'll wind up with
5449 multiple copies)".
5450
67a0dc4f
PE
5451 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
5452 or, xor to not_, and_, or_, and xor_, respectively. This works
5453 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
5454 random system header somewhere that includes the equivalent of
5455 <iso646.h>.
5456
5a6755af
PE
5457 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
5458 -E" works; it apparently doesn't work with PathScale EKO Compiler
67a0dc4f 5459 Suite Version 2.0.
5a6755af 5460
3f001415
JD
54612006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
5462
5463 During deterministic GLR operation, user actions should be able to
5464 influence the parse by changing yychar. To make this easier to fix and
5465 to make glr.c easier to evolve in general, don't maintain yytoken in
5466 parallel with yychar; just compute yytoken when needed.
5467 * tests/glr-regression.at (Incorrect lookahead during deterministic
5468 GLR): Check that setting yychar in a user action has the intended
5469 effect.
5470 * data/glr.c (yyGLRStack): Remove yytokenp member.
5471 (yyclearin): Don't set *yytokenp.
5472 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
5473 yychar rather than *yytokenp to determine the current lookahead.
5474 Compute yytoken locally when needed.
5475 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
5476 point to.
5477
5478 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
5479 after `--report' documentation.
5480
e2a8c0f5
PE
54812006-01-30 Paul Eggert <eggert@cs.ucla.edu>
5482
5483 * src/parse-gram.y (grammar_declaration): Location of printer
5484 symbol is @1, not list->location. Bug reported by twlevo.
5485 * tests/input.at (Incompatible Aliases): Adjust to above change.
5486
6b702268
PE
54872006-01-29 Paul Eggert <eggert@cs.ucla.edu>
5488
27622431
PE
5489 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
5490 all the test at once. This makes the output easier to read in the
5491 normal case.
5492
6b702268
PE
5493 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
5494 got from <http://bro-ids.org/download.html>. The bug is that
5495 when two actions appeared in succession, the second one was
5496 scanned before the first one was added to the grammar rule
5497 as a midrule action. Bison then output the incorrect warning
5498 "parse.y:905.17-906.36: warning: unused value: $3".
5499 * src/parse-gram.y (BRACED_CODE, action): These are no longer
5500 associated with a value.
5501 (rhs): Don't invoke grammar_current_rule_action_append.
5502 (action): Invoke it here instead.
5503 * src/reader.c (grammar_midrule_action): Now extern.
5504 (grammar_current_rule_action_append): Don't invoke
5505 grammar_midrule_action; that is now the scanner's job.
5506 * src/reader.h (last_string, last_braced_code_loc):
5507 (grammar_midrule_action): New decls.
5508 * src/scan-gram.l (last_string): Now extern, sigh.
5509 (last_braced_code_loc): New extern variable.
5510 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
5511 rule already has an action.
5512 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
5513 * tests/input.at (AT_CHECK_UNUSED_VALUES):
5514 Add some tests to check that the above changes fixed the bug.
5515
d40ba6c2
PE
55162006-01-27 Paul Eggert <eggert@cs.ucla.edu>
5517
5518 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
5519 All used changed. Check whether the symbol has a destructor,
5520 not whether it is typed.
5521 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
5522 that the values are still reported as unused. All line numbers
5523 adjusted.
5524
401aace6
PE
55252006-01-23 Paul Eggert <eggert@cs.ucla.edu>
5526
5527 Work around a bug in bro 0.8, which underparenthesizes its
5528 definition of YYLLOC_DEFAULT.
5529 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
5530 their arguments.
5531 * data/lalr1.cc: Likewise.
5532 * data/yacc.cc: Likewise.
5533
06f01bc4
PE
55342006-01-22 Paul Eggert <eggert@cs.ucla.edu>
5535
401aace6
PE
5536 Work around a bug in Pike 7.0, and give the Pike folks a
5537 better way to override the usual int widths.
5538 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
5539 user can override the types.
5540 (short): #undef, to work around a bug in Pike 7.0.
5541 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
5542 (union yyalloc.yyss): Use yytype_int16 rather than short.
5543 All uses changed.
5544 (yysigned_char): Remove.
5545 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
5546 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
5547 * tests/regression.at (Web2c Actions): Adjust to above changes.
5548
5549 * src/reader.c (check_and_convert_grammar): New function.
5550 (reader): Close the input file even if something went wrong during
5551 parsing. Minor file descriptor leak reported by twlevo.
5552
06f01bc4
PE
5553 * src/assoc.c (assoc_to_string): Use a default: abort (); case
5554 to pacify gcc -Wswitch-default.
5555 * src/scan-gram.l (adjust_location): Use a default: break; case
5556 to pacify gcc -Wswitch-default.
5557 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
5558 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
5559 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
5560 Move these decls to scan-skel.l, since they don't need to be
5561 visible elsewhere.
5562 * src/scan-skel.l: Accept the above decls.
5563 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
5564 is used.
5565
02650b7f
PE
55662006-01-21 Paul Eggert <eggert@cs.ucla.edu>
5567
5568 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
5569 since we don't want to insist on a version number at the start
5570 of the changelog every time.
5571 * Makefile.maint: Sync from coreutils a bit better.
5572 (sc_trailing_blank): Renamed from sc_trailing_space.
5573 All uses changed.
5574 (sc_no_if_have_config_h, sc_require_config_h):
5575 (sc_prohibit_assert_without_use): New rules.
5576 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
5577 (sc_dd_max_sym_length): Fix leading spaces in rule.
5578 (sc_system_h_headers): Prefix with @.
5579 (sc_useless_cpp_parens, m4-check): Output line numbers.
5580 (changelog-check): Allow version only in head.
5581 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
5582 satisfy new Makefile.maint rule.
5583 * data/glr.c: Likewise.
5584 * data/glr.cc: Likewise.
5585 * data/lalr1.cc: Likewise.
5586 * data/yacc.c: Likewise.
5587 * lib/ebitsetv.c: Likewise.
5588 * lib/lbitset.c: Likewise.
5589 * lib/subpipe.c: Likewise.
5590 * lib/timevar.c: Likewise.
5591 * src/system.h: Likewise.
5592 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
5593 * djgpp/Makefile.maint: Add copyright notice.
5594 * djgpp/README.in: Likewise.
5595 * djgpp/config.bat: Likewise.
5596 * djgpp/config.site: Likewise.
5597 * djgpp/config_h.sed: Likewise.
5598 * djgpp/djunpack.bat: Likewise.
5599 * djgpp/config.sed: Fix copyright notice to match standard format.
5600 * djgpp/subpipe.h: Likewise.
5601 * lib/bitsetv-print.c: Likewise.
5602 * lib/bitsetv.c: Likewise.
5603 * lib/subpipe.h: Likewise.
5604 * lib/timevar.c: Likewise.
5605 * lib/timevar.h: Likewise.
5606 * djgpp/subpipe.c: Use standard recipe for config.h.
5607 * lib/abitset.c: Likewise.
5608 * lib/bitset.c: Likewise.
5609 * lib/bitset_stats.c: Likewise.
5610 * lib/bitsetv-print.c: Likewise.
5611 * lib/bitsetv.c: Likewise.
5612 * lib/ebitsetv.c: Likewise.
5613 * lib/get-errno.c: Likewise.
5614 * lib/lbitset.c: Likewise.
5615 * lib/subpipe.c: Likewise.
5616 * lib/timevar.c: Likewise.
5617 * lib/vbitset.c: Likewise.
5618 * tests/local.at: Likewise.
5619 * src/scan-gram.l: Don't include verify.h, since system.h does
5620 that for us.
5621 * .x-sc_require_config_h: New file.
5622 * .x-sc_unmarked_diagnostics: New file.
5623
287c78f6
PE
56242006-01-20 Paul Eggert <eggert@cs.ucla.edu>
5625
287c78f6
PE
5626 Be a bit more systematic about using 'abort'.
5627 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
5628 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
5629 Put 'default: abort ();' before some other case, to satisfy older
5630 pedantic compilers.
5631 * lib/bitset_stats.c (bitset_stats_init): Likewise.
5632 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
5633 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
5634 * src/conflicts.c (resolve_sr_conflict): Likewise.
68cae94e
PE
5635 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
5636 (get_decision_str, get_orientation_str, get_node_alignment_str):
5637 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
5638 (get_linestyle_str, get_arrowstyle_str): Likewise.
5639 * src/conflicts.c (resolve_sr_conflict):
5640 Use a default case rather than one for the one remaining enum
5641 value, to catch invalid enum values as well.
5642 * src/lalr.c (set_goto_map, map_goto):
5643 Prefer "assert (FOO);" to "if (!FOO) abort ();".
5644 * src/nullable.c (nullable_compute, token_definitions_output):
5645 Likewise.
5646 * src/reader.c (packgram, reader): Likewise.
5647 * src/state.c (transitions_to, state_new, state_reduction_find):
5648 Likewise.
5649 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
5650 (symbol_pack): Likewise.
5651 * src/tables.c (conflict_row, pack_vector): Likewise.
287c78f6
PE
5652 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
5653 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
68cae94e
PE
5654 * src/system.h: Don't include <assert.h>.
5655 (assert): New macro.
5656
5657 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
5658 (Destructor Decl, Parser Function, Pure Calling):
5659 Describe rules for braces inside C code more carefully.
287c78f6 5660
c66dfadd
PE
56612006-01-19 Paul Eggert <eggert@cs.ucla.edu>
5662
c21493b8
PE
5663 Fix some porting glitches found by Nelson H. F. Beebe.
5664 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
5665 compilers that don't understand that abort () does not return.
5666 * src/state.c (transitions_to): Likewise.
5667 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
5668 that '#include <cstdlib>' works.
5669 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
5670 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
5671 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
5672 for the benefit of some pre-C99 compilers.
5673
b6e3facf
PE
5674 * bootstrap: Undo changes to gnulib files that autoreconf made.
5675
c66dfadd
PE
5676 Minor fixups to get 'make maintainer-check' to work.
5677 * configure.ac: Don't use -Wnested-externs, as it's incompatible
5678 with the new verify.h implementation.
5679 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
5680 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
5681 * data/yacc.c (YYUSE): Likewise.
5682 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
5683 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
5684 * src/parse-gram.y (declaration): Don't pass a string constant
5685 to a function that expects char *, since GCC might complain
5686 about the constant value.
5687 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
5688 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
5689 before #defining them.
5690 * tests/glr-regression.at
5691 (Incorrectly initialized location for empty right-hand side in GLR):
5692 In yyerror, use the msg arg.
5693 (Corrupted semantic options if user action cuts parse):
5694 (Incorrect lookahead during deterministic GLR):
5695 (Incorrect lookahead during nondeterministic GLR):
5696 Don't name a local var 'index'; it shadows string.h's 'index'.
5697
ed94ef2a
AD
56982006-01-19 Akim Demaille <akim@epita.fr>
5699
5700 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
5701 location, not just parts of it.
5702
e9ad4aec
PE
57032006-01-18 Paul Eggert <eggert@cs.ucla.edu>
5704
d6ca7905
PE
5705 * NEWS: Document the fact that multiple %unions are now allowed.
5706 * doc/bison.texinfo (Union Decl): Likewise.
51cbef6f
PE
5707 * TODO: This feature is now implemented, so remove it from
5708 the wishlist.
d6ca7905 5709
ef1b70e0
PE
5710 * Makefile.maint: Merge with coreutils Makefile.maint.
5711 (CVS_LIST): Use build-aux version if available.
5712 (VERSION_REGEXP): New macro.
5713 (syntax-check-rules): Add sc_no_if_have_config_h,
5714 sc_prohibit_assert_without_use, sc_require_config_h,
5715 sc_useless_cpp_parens.
5716 (sc_obsolete_symbols): Check for O_NDELAY.
5717 (sc_dd_max_sym_length): Track coreutils.
5718 (sc_unmarked_diagnostics): Look in all files, not just *.c.
5719 (sc_useless_cpp_parens): New rule.
5720 (news-date-check): Look for version or today's date.
5721 (changelog-check): Don't require version number near head.
5722 (copyright-check): Use current year instead of hardwiring 2005.
5723 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
5724 (announcement): Add --gpg-key-ID.
5725
5726 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
5727 with "file system".
5728
2073ce56 5729 Avoid undefined behavior that addressed just before the start of an
e9ad4aec
PE
5730 array. Problem reported by twlevo.
5731 * src/reader.c (packgram): Prepend a new sentinel before ritem.
5732 * src/lalr.c (build_relations): Rely on new sentinel.
5733 * src/gram.c (gram_free): Adjust to new sentinel.
5734
b7691f15
JD
57352006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
5736
5737 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
5738 yylookaheadNeeds. All uses updated.
5739 (yysplitStack): Rename local yynewLookaheadStatuses to
5740 yynewLookaheadNeeds.
5741 * data/glr-regression.at (Incorrect lookahead during nondeterministic
5742 GLR): In comments, change `lookahead status' to `lookahead need'.
5743
ddee1b06
PH
57442006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
5745
5746 * data/glr.c (yysplitStack): A little stylistic rewrite.
5747
12f4614d
PH
57482006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
5749
5750 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
5751
32c29292
JD
57522006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
5753
5754 * doc/bison.texinfo: Fix some typos.
5755 (GLR Semantic Actions): New subsection discussing special
5756 considerations because GLR semantic actions might be deferred.
5757 (Actions): Mention look-ahead usage of yylval.
5758 (Actions and Locations): Mention look-ahead usage of yylloc.
5759 (Special Features for Use in Actions): Add YYEOF entry and mention it
5760 in the yychar entry.
5761 In the yychar entry, remove mention of the local yychar case (pure
5762 parser) since this is irrelevant information when writing semantic
148d66d8 5763 actions and since it's already discussed in `Table of Symbols' where
32c29292
JD
5764 yychar is otherwise described as an external variable.
5765 In the yychar entry, don't call it the `current' look-ahead since it
5766 isn't when semantic actions are deferred.
5767 In the yychar and yyclearin entries, add note about deferred semantic
5768 actions.
5769 Add yylloc and yylval entries discussing look-ahead usage.
5770 (Look-Ahead Tokens): When discussing yychar, don't call it the
5771 `current' look-ahead, and do mention yylval and yylloc.
5772 (Error Recovery): Cross-reference `Action Features' when mentioning
5773 yyclearin.
148d66d8 5774 (Table of Symbols): In the yychar entry, don't call it the `current'
32c29292
JD
5775 look-ahead.
5776 In the yylloc and yylval entries, mention look-ahead usage.
5777
de366a2f 57782006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2781dbd1
JD
5779
5780 * tests/glr-regression.at: Update copyright year to 2006.
5781
bf70fa87
JD
57822006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5783
5784 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
5785 use during nondeterministic operation to track which stacks have
5786 actually needed the current lookahead.
5787 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
5788 Allocate, deallocate, resize, and otherwise shuffle space for
5789 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
5790 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
5791 appropriately during nondeterministic operation.
5792 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
5793 members to store the current lookahead to be used by the deferred
5794 user action.
5795 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
5796 from which the RHS is taken. Set the lookahead members of the new
5797 yySemanticOption according to the lookahead status for stack yyk.
5798 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
5799 yyaddDeferredAction.
5800 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
5801 members of yySemanticOption before invoking yyuserAction, and then set
5802 them back to their current values afterward.
5803 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
5804 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
5805 * tests/glr-regression.at: Remove `.' from the ends of recent test case
5806 titles for consistency.
5807 (Leaked merged semantic value if user action cuts parse): In order to
5808 suppress lint warnings, use arguments in merge function, and assign
5809 char value < 128 in main.
5810 (Incorrect lookahead during deterministic GLR): New test case.
5811 (Incorrect lookahead during nondeterministic GLR): New test case.
5812
05449a2c
JD
58132006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5814
de366a2f 5815 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
05449a2c
JD
5816 !yyvaluep as signal that no semantic value is available to print.
5817 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
5818 to print a semantic value.
5819
4158e0a1 58202006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
fd2493f7 5821
4158e0a1
JD
5822 * tests/glr-regression.at: For consistency with my newer test cases,
5823 don't thank myself.
5824
d659304d
JD
58252006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
5826
5827 * data/glr.c (yyresolveValue): When merging semantic options, if at
5828 least one user action succeeds but a later one cuts the parse, then
5829 destroy the semantic value before returning rather than leaking it.
5830 (yyresolveStates): If a user action cuts the parse and thus
5831 yyresolveValue fails, ignore the (unset) semantic value rather than
5832 corrupting the yyGLRState, and empty the semantic options list since
5833 the user actions should have called all necessary destructors.
5834 Simplify code with YYCHK.
5835 * tests/glr-regression.at (Corrupted semantic options if user action
5836 cuts parse): New test case.
5837 (Undesirable destructors if user action cuts parse): New test case.
5838 Before applying any of this patch, this test case never actually failed
5839 for me... but only because the corrupted semantic options usually
5840 masked this bug.
5841 (Leaked merged semantic value if user action cuts parse): New test
5842 case.
5843
6ec2c0f2
AD
58442006-01-05 Akim Demaille <akim@epita.fr>
5845
5846 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
5847
1b9c21fb
PE
58482006-01-04 Paul Eggert <eggert@cs.ucla.edu>
5849
5850 * data/c.m4 (b4_c_modern): New macro, with a new provision for
5851 _MSC_VER. Problem reported by Cenzato Marco.
5852 (b4_c_function_def): Use it.
5853 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
5854 b4_c_modern.
5855 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
5856 than rolling our own.
5857
84866159
AD
58582006-01-04 Akim Demaille <akim@epita.fr>
5859
5860 Also warn about non-used mid-rule values.
5861 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
5862 member.
5863 (symbol_list_new): Adjust.
5864 * src/reader.c (symbol_typed_p): New.
5865 (grammar_rule_check): Use it.
5866 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
5867 Check its rule.
5868 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
5869 Use it.
5870 * tests/actions.at (Exotic Dollars): Adjust.
5871
378f4bd8
AD
58722006-01-04 Akim Demaille <akim@epita.fr>
5873
5874 * src/reader.c (grammar_midrule_action): If $$ is set in a
5875 mid-rule, move the `used' bit to its lhs.
5876 * tests/input.at (Unused values): New.
5877 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
5878
e2a21b6f
PE
58792006-01-03 Paul Eggert <eggert@cs.ucla.edu>
5880
54662697
PE
5881 * doc/bison.texinfo (Bison Options): Say more accurately what
5882 --yacc does.
5883 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
5884 about declarations in the grammar when in Yacc mode, as POSIX does
5885 not require a diagnostic when the grammar uses extensions.
5886
5887 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
5888
073f9288
PE
5889 Warn about dubious constructions like "%token T T".
5890 Reported by twlevo.
5891 * src/symtab.h (struct symbol.declared): New member.
5892 * src/symtab.c (symbol_new): Initialize it to false.
5893 (symbol_class_set): New arg DECLARING, specifying whether
5894 this is a declaration that we want to warn about, if there
5895 is more than one of them. All uses changed.
5896
1221b78a
PE
5897 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
5898 Allow multiple %union directives, whose contents concatenate.
5899 * src/parse-gram.y (grammar_declaration): Likewise.
5900 Use muscle_code_grow, so that we don't need stype_line any more.
5901 All uses changed.
5902
5903 * src/muscle_tab.c (muscle_grow): Fix comment.
5904
e2a21b6f
PE
5905 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
5906 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
5907 Update copyright year to 2006.
5908
8f7e3cf9
AD
59092006-01-03 Akim Demaille <akim@epita.fr>
5910
5911 Have glr.cc pass (some of) the calc.at tests.
5912 * data/glr.cc (b4_parse_param_orig): New.
5913 (b4_parse_param): Improve its definition, and bound it more
5914 clearly in the skeleton.
5915 (b4_epilogue): Append, instead of prepending, in order to keep
5916 #line consistency.
5917 Simplify the generation of auxiliary functions: locations and
5918 purity are mandated.
5919 (b4_global_tokens_and_yystype): Honor it.
5920 * data/location.cc (c++.m4): Don't include it.
5921 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
5922 and AT_SKEL_CC_IF.
5923 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
5924 AT_LALR1_CC_IF.
5925 Be sure to initialize the first position's filename.
5926 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
5927 mandated anyway.
5928 (AT_CHECK_CALC_GLR_CC): New.
5929 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
5930
3953ed88
AD
59312006-01-02 Akim Demaille <akim@epita.fr>
5932
5933 * src/output.c (output_skeleton): Don't hard wire the inclusion of
5934 c.m4.
0a96ba81 5935 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
3953ed88
AD
5936 * data/glr.cc: Do not include stack.hh.
5937
9ecafbbf
AD
59382006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
5939
5940 * data/glr.c: Reformat whitespace with tabs.
5941 (b4_lpure_formals): Remove this unused m4 macro.
5942 * tests/cxx-type.at: Reformat whitespace with tabs.
5943 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
5944 since it's a member. Rename type to isNterm for clarity.
5945
c4d497a0
AD
59462005-12-29 Akim <akim@sulaco.local>
5947
5948 Let glr.cc catch up with symbol_value_print.
5949 * data/glr.cc (b4_yysymprint_generate): Replace by...
5950 (b4_yy_symbol_print_generate): this.
5951 (yy_symbol_print, yy_symbol_value_print): Declare them.
5952
4517da37
PE
59532005-12-28 Paul Eggert <eggert@cs.ucla.edu>
5954
5955 * src/location.h (boundary): Note that a line or column equal
5956 to INT_MAX indicates an overflow.
5957 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
5958 (rule_length_overflow, increment_rule_length, add_column_width):
5959 New functions.
5960 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
5961 (<SC_BRACED_CODE>"}"):
5962 Use increment_rule_length rather than incrementing it by hand.
5963 (adjust_location, handle_syncline): Diagnose overflow.
5964 (handle_action_dollar, handle_action_at):
5965 Fix bug with monstrosities like $-2147483648.
5966 Remove now-unnecessary checks.
5967 (scan_integer): Verify assumptions and remove now-unnecessary checks.
5968 (convert_ucn_to_byte): Verify assumptions.
5969 (handle_syncline): New arg LOC. All callers changed.
5970 Don't store through a value derived from char const * pointer.
5971
5972 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
5973 GCC warnings.
5974
e3233bf6
PE
59752005-12-27 Paul Eggert <eggert@cs.ucla.edu>
5976
5977 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
5978 Remove unnecessary forward static decls.
5979
8f3596a6
AD
59802005-12-27 Akim Demaille <akim@epita.fr>
5981
5982 * src/reader.c (grammar_current_rule_check): Also check that $$
5983 is used.
5984 Take the rule to check as argument, hence rename as...
5985 (grammar_rule_check): this.
5986 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
5987 Rename as...
5988 (grammar_rule_begin, grammar_rule_end): these, for consistency.
5989 (grammar_midrule_action, grammar_symbol_append): Now static.
5990 * tests/torture.at (input): Don't rely on the default action
5991 being always performed.
5992 * tests/calc.at: "Set" $$ even when the action is "cut" with
5993 YYERROR or other.
5994 * tests/actions.at (Exotic Dollars): Instead of using unused
5995 values, check that the warning is issued.
5996
721be13c
PE
59972005-12-22 Paul Eggert <eggert@cs.ucla.edu>
5998
5999 * NEWS: Improve wording for unused-value warnings.
6000
a0af42fc
AD
60012005-12-22 Akim Demaille <akim@epita.fr>
6002
6003 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
6004 (b4_yysymprint_generate): Rename as...
6005 (b4_yy_symbol_print_generate): this.
6006 Generate yy_symbol_print instead of yysymprint.
6007 Generate also yy_symbol_value_print, and use it.
6008
affac613
AD
60092005-12-22 Akim Demaille <akim@epita.fr>
6010
721be13c 6011 * NEWS: Warn about unused values.
affac613
AD
6012 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
6013 a `used' member.
6014 (symbol_list_n_get, symbol_list_n_used_set): New.
6015 (symbol_list_n_type_name_get): Use symbol_list_n_get.
6016 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
6017 * src/reader.c (grammar_current_rule_check): Check that values are
6018 used.
6019 * src/symtab.c (symbol_print): Accept 0.
6020 * tests/existing.at: Remove the type information.
6021 Empty the actions.
6022 Remove useless actions (beware of mid-rule actions: perl -000
6023 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
6024 * tests/actions.at (Exotic Dollars): Use unused values.
6025 * tests/calc.at: Likewise.
6026 * tests/glr-regression.at (No users destructors if stack 0 deleted):
6027 Likewise.
6028
6029 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
6030 rule_useful_p.
6031
9d9b8b70
PE
60322005-12-21 Paul Eggert <eggert@cs.ucla.edu>
6033
8bb4c753
PE
6034 Undo 2005-12-01 tentative license wording change. The wording is
6035 still being reviewed by the lawyers, and we don't want to wait for
6036 them before publishing a test release. For now, revert to the
6037 previous wording.
6038 * NEWS: Undo 2005-12-01 change.
6039 * data/glr.c: Revert to previous license wording.
6040 * data/glr.cc: Likewise.
6041 * data/lalr1.cc: Likewise.
6042 * data/location.cc: Likewise.
6043 * data/yacc.c: Likewise.
6044
9d9b8b70
PE
6045 * NEWS: Reword %destructor vs YYABORT etc.
6046 * data/glr.c: Use American spacing, for consistency.
6047 * data/glr.cc: Likewise.
6048 * data/lalr1.cc: Likewise.
6049 * data/yacc.c: Likewise.
6050 * data/yacc.c: Reformat comments slightly.
6051 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
6052 for consistency. Fix some spelling errors and reword recently-included
6053 text slightly.
6054 * tests/cxx-type.at: Cast results of malloc, for C++.
6055
2c3b392a
AD
60562005-12-21 Joel E. Denny <address@hidden>
6057
6058 * tests/cxx-type.at: Construct a tree, count the parents of shared
6059 nodes, and free each node once and only once. Previously, the memory
6060 for semantic values was leaked instead.
6061
d6cff4dc
AD
60622005-12-21 Joel E. Denny <address@hidden>
6063
6064 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
6065 (yylval, yylloc): If pure, #define to yystackp->yyval and
6066 yystackp->yyloc similar to yychar and yynerrs.
6067 (yyparse): If pure, remove local yylval and yylloc. Add local
6068 yystackp to accommodate pure definitions of yylval and yylloc.
6069 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
6070 yylvalp and yyllocp to &yylval and &yylloc.
6071 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
6072 namespace. Previously, nerrs and char were missing, but lval and lloc
6073 weren't necessary.
6074 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
6075 yylvalp and yyllocp parameters since, if pure, these are now always
6076 accessible through yystackp. If not pure, they are still accessible
6077 globally.
6078 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
6079 `if (YYID (N))' to pacify lint.
6080
a85284cf
AD
60812005-12-21 Akim Demaille <akim@epita.fr>
6082
6083 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
6084 destroy the RHS symbols of a rule.
6085 * data/yacc.c (yylen): Initialize to 0.
6086 Keep its value to the number of items to possibly shift.
6087 In particular, a regular successful parse that ends on YYFINAL by
6088 a (internal) YYACCEPT must not have yylen != 0.
6089 (yyerrorlab, yyreturn): Pop the RHS.
6090 Reorder a bit to emphasize the `shifting' bits of code.
6091 (YYPOPSTACK): Now accept a number of items to pop.
6092 * data/lalr1.cc: Likewise.
6093 * data/glr.c: Formatting changes.
6094 Use goto instead of fall through.
6095 * doc/bison.texinfo (Destructor Decl): Complete.
6096
d508c281
JMG
60972005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6098
6099 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
6100 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
6101 * djgpp/config.bat: Replace every occurence of the file name
6102 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
6103 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
6104 * djgpp/config.sed: Replace every occurence of the file name
6105 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
6106 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
6107 * djgpp/djunpack.bat: DJGPP specific file.
6108 * djgpp/fnchange.lst: DJGPP specific file.
6109 * djgpp/README.in: Add new information about how to unpack the bison
6110 source on MSDOS and other systems which have 8.3 file name restrictions
6111 using djunpack.bat and fnchange.lst.
6112
3e7a2cd9
PE
61132005-12-12 Paul Eggert <eggert@cs.ucla.edu>
6114
6115 * bootstrap (build_cvs_prefix): Remove; unused.
6116 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
6117 when getting gnulib.
6118
61192005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
6120
6121 * data/glr.c: Reorder typedef declarations for structs to match order
6122 of struct declarations.
6123 Rename yystack everywhere to yystackp except in yyparse where it's not
6124 a pointer.
6125 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
6126 consistency.
6127 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
6128 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
6129 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
6130 lint.
6131
877519f8
PE
61322005-12-09 Paul Eggert <eggert@cs.ucla.edu>
6133
0eca5a39
PE
6134 * tests/sets.at (Accept): Fix typos in regular expression used to
6135 sed out the final state number.
6136
2cec9080
PE
6137 Work around portability problem on Solaris 10: flex-generated
6138 files include <stdio.h> before <config.h>, which messes up
6139 because the latter defines __EXTENSIONS__. Address the problem
6140 by creating two new little files that include <config.h> first,
6141 then include the flex-generated files. Rewrite everyone else
6142 to include <config.h> first, as well.
6143 * lib/timevar.c: Always include "config.h".
6144 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
6145 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
6146 (EXTRA_bison_SOURCES): New macro.
6147 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
6148 * src/system.h: Don't include config.h.
6149 * src/LR0.c: Include <config.h> first.
6150 * src/assoc.c: Likewise.
6151 * src/closure.c: Likewise.
6152 * src/complain.c: Likewise.
6153 * src/conflicts.c: Likewise.
6154 * src/derives.c: Likewise.
6155 * src/files.c: Likewise.
6156 * src/getargs.c: Likewise.
6157 * src/gram.c: Likewise.
6158 * src/lalr.c: Likewise.
6159 * src/location.c: Likewise.
6160 * src/main.c: Likewise.
6161 * src/muscle_tab.c: Likewise.
6162 * src/nullable.c: Likewise.
6163 * src/output.c: Likewise.
6164 * src/parse-gram.y: Likewise.
6165 * src/print.c: Likewise.
6166 * src/print_graph.c: Likewise.
6167 * src/reader.c: Likewise.
6168 * src/reduce.c: Likewise.
6169 * src/relation.c: Likewise.
6170 * src/state.c: Likewise.
6171 * src/symlist.c: Likewise.
6172 * src/symtab.c: Likewise.
6173 * src/tables.c: Likewise.
6174 * src/uniqstr.c: Likewise.
6175 * src/vcg.c: Likewise.
6176
877519f8
PE
6177 * src/parse-gram.y: Fix minor problems uncovered by lint.
6178 (current_lhs, current_lhs_location): Now static.
6179 (current_assoc): Remove unused variable.
6180
6181 Cleanups so that Bison-generated parsers have less lint.
6182 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
6183 Prepend /*ARGSUSED*/, for lint's sake.
6184 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
6185 definition if 'lint' is defined.
6186 (YYID): New macro (or function, if lint).
6187 All uses of /*CONSTCOND*/0 replaced by YYID(0).
6188 * data/yacc.c: Likewise.
6189 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
6190 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
6191 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
6192 is C++ only.
6193 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
6194 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
6195 Use YYID(0) rather than 0, for lint.
6196 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
6197 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
6198
f5228370
PE
61992005-12-07 Paul Eggert <eggert@cs.ucla.edu>
6200
6201 * tests/glr-regression.at
6202 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
6203 Close memory leak reported by twlevo.
6204
69ce078b
PE
62052005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
6206
6ff99711
PE
6207 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
6208 all stacks.
6209 (yyparse): Iterate another stack in order to call user destructors.
69ce078b
PE
6210 * tests/glr-regression.at (No users destructors if stack 0 deleted):
6211 New test case.
6212 (Duplicated user destructor for lookahead): This test now is expected
6213 to succeed.
6214
af3412cd
PE
62152005-12-01 Paul Eggert <eggert@cs.ucla.edu>
6216
32b5b719 6217 * NEWS: Document the following change.
af3412cd
PE
6218 * data/yacc.c: Say "parser skeleton" rather than "file", since
6219 it's no longer just a file.
6220 * data/glr.c: Grant a special exception for C GLR parsers, that
6221 reads like the already-existing exception for C LALR(1) parsers.
6222 * data/glr.cc: Likewise.
6223 * data/lalr1.cc: Likewise.
6224 * data/location.cc: Likewise.
6225 * data/yacc.c: Reword the "written by" statement to clarify that
6226 it was the parser skeleton, not the entire output file.
6227 * data/glr.c: Written by Paul Hilfinger.
6228 * data/glr.cc: Written by Akim Demaille.
6229 * data/lalr1.cc: Likewise.
6230
035aa4a0
PE
62312005-11-18 Paul Eggert <eggert@cs.ucla.edu>
6232
d9963c85
PE
6233 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
6234 Fix typos in previous change that broke 'make check'.
6235 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
6236 supported in C.
6237 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
6238 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
6239 We can revert this once things settle down.
6240
035aa4a0
PE
6241 * src/conflicts.c (conflicts_print): Don't print file name twice
6242 when %expect fails because there were no conflicts.
6243 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
6244 change.
6245 * tests/conflicts.at (%expect not enough, %expect too much):
6246 (%expect with reduce conflicts): Adjust to new behavior.
6247
62482005-11-18 Akim Demaille <akim@epita.fr>
6249
6250 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
6251 errors.
6252 * NEWS: Document this.
6253 * doc/bison.texinfo (Expect Decl): Likewise.
6254
d1ff7a7c
AD
62552005-11-16 Akim Demaille <akim@epita.fr>
6256
6257 Generalize the display of semantic values and locations in traces.
6258 * data/glr.c (yy_reduce_print): Fix indices (again).
6259 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
6260 literal integers.
6261 * data/lalr1.cc (yyreduce_print): Rename as...
6262 (yy_reduce_print): this.
6263 Display values and locations.
6264 * data/yacc.c (yy_reduce_print): Likewise.
6265 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
6266 (yysymprint): Move higher to be visible from yy_reduce_print).
6267 (yyparse): Adjust.
6268 * tests/calc.at: Adjust the expected length of the traces.
6269
6de5398d
AD
62702005-11-14 Akim Demaille <akim@epita.fr>
6271
6272 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
6273 from 1 to N, while values and location start at 0.
6274 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
6275
a1373f55
AD
62762005-11-14 Akim Demaille <akim@epita.fr>
6277
6278 * data/glr.c (yy_reduce_print): Fix the $ number.
6279
613d8952
AD
62802005-11-14 Akim Demaille <akim@epita.fr>
6281
6282 "Use" parse parameters.
6283 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
6284 * data/glr.c, data/glr.cc: Use them.
6285 * data/glr.c (YYUSE): Have a C++ definition that supports
6286 non-pointer types.
6287
b2741627
AD
62882005-11-14 Akim Demaille <akim@epita.fr>
6289
6290 * data/glr.c (yyexpandGLRStack): Declare only if defined.
6291
5059b5c8
AD
62922005-11-14 Akim Demaille <akim@epita.fr>
6293
42249483
AD
6294 * data/glr.cc: New.
6295 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5059b5c8 6296
4626a15d
AD
62972005-11-12 Akim Demaille <akim@epita.fr>
6298
6299 Let position and location be PODs.
6300 * data/location.cc (position::initialize, location::initialize): New.
6301 (position::position, location::location): Define only if
6302 b4_location_constructors is defined.
6303 * data/lalr1.cc (b4_location_constructors): Define it for backward
6304 compatibility.
6305 * doc/bison.texinfo (Initial Action Decl): Use initialize.
6306
63072005-11-12 Akim Demaille <akim@epita.fr>
98ae9643
AD
6308
6309 * data/lalr1.cc: Move the body of the ctor and dtor into the
6310 parser file (instead of the header).
6311 Wrap the implementations in a "namespace yy".
6312
63132005-11-12 Akim Demaille <akim@epita.fr>
6314
6315 Have glr.c include its header file when created.
6316 * data/glr.c (b4_shared_declarations): New.
6317 Output them verbatim in the parser if !%defines, otherwise
6318 output then in the header file, and include it instead.
6319
1989d947
AD
63202005-11-11 Akim Demaille <akim@epita.fr>
6321
6322 * data/glr.c: Comment changes.
6323
63242005-11-11 Akim Demaille <akim@epita.fr>
62b08cfc
AD
6325
6326 When yydebug, report semantic and location values for reductions.
6327 * data/glr.c (yy_reduce_print): Report the semantic values and the
6328 locations.
6329 (YY_REDUCE_PRINT): Adjust.
6330 (yyglrReduce): Use them.
6331 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
6332 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
6333 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
6334 traces.
6335
02998094
AD
63362005-11-10 Akim Demaille <akim@epita.fr>
6337
6338 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
6339 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
6340 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
6341
5210672f
PE
63422005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
6343
6344 * m4/cxx.m4, examples/Makefile.am: Don't build
6345 examples/calc++ if no C++ compiler is available. (trivial change)
6346
a8991a1d
AD
63472005-11-09 Akim Demaille <akim@epita.fr>
6348
6349 * src/scan-skel.l: Use a couple of asserts.
6350
36b5e963
AD
63512005-11-03 Akim Demaille <akim@epita.fr>
6352
6353 In some (weird) cases, the final state number is incorrect.
6354 Reported by Alexandre Duret-Lutz.
6355 * src/LR0.c (state_list_append): Remove the computation of
6356 final_state.
6357 (save_reductions): Do it here.
6358 (get_state): Alpha conversion.
6359 (generate_states): Use a for loop.
6360 * src/gram.h (item_number_is_rule_number)
6361 (item_number_is_symbol_number): New.
6362 * src/state.c: Use assert.
6363 * src/system.h: Include assert.h.
6364 * tests/sets.at (Accept): New.
6365
44e7ead1
PH
63662005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6367
6368 * data/glr.c (yyfill): Adjust comment.
36b5e963 6369 (yyresolveAction): Initialize default location properly
44e7ead1
PH
6370 for empty right-hand sides.
6371 (yydoAction): Ditto.
6372 Add comment explaining apparently dead code.
36b5e963
AD
6373 * tests/glr-regression.at
6374 (Incorrectly initialized location for empty right-hand side in GLR):
44e7ead1 6375 New test.
36b5e963 6376
e10a80ee
PE
63772005-10-30 Paul Eggert <eggert@cs.ucla.edu>
6378
6379 * bootstrap (cleanup_gnulib): New function. Use it to clean up
6380 gnulib when interrupted. This fixes some race conditions and
6381 works around some portability problems (one noted by Paul
6382 Hilfinger).
6383
067b32ee
AD
63842005-10-22 Akim <akim@epita.fr>
6385
6386 * Makefile.cfg: Adjust to config -> build-aux.
6387 Reported by twledo.
6388
4b367315
AD
63892005-10-21 Akim Demaille <akim@epita.fr>
6390
6391 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
6392 the %parse-params.
6393 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
6394 * data/yacc.c (b4_Pure_if): Rename as...
6395 (b4_yacc_pure_if): this.
6396 (YY_SYMBOL_PRINT, yyparse): Adjust.
6397 * doc/bison.texinfo: Formatting changes.
6398
24cc23d9
AD
63992005-10-21 Akim Demaille <akim@epita.fr>
6400
6401 Finish the transition config -> build-aux.
6402 * configure.ac, Makefile.am: Use build-aux.
6403 * config/prev-version, config/announce-gen, config/Makefile.am:
6404 Move to...
6405 * build-aux/prev-version, build-aux/announce-gen,
6406 * build-aux/Makefile.am: here.
6407
d4476375
AD
64082005-10-14 Akim Demaille <akim@epita.fr>
6409
6410 * examples/calc++/test: Use set -x only when VERBOSE.
6411
302c0aee
PE
64122005-10-13 Paul Eggert <eggert@cs.ucla.edu>
6413
6414 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
6415 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
6416
7625ec2c
AD
64172005-10-13 Akim Demaille <akim@epita.fr>
6418
6419 * src/scan-skel.l: Output the base name parts of the parser and
6420 header file names.
302c0aee 6421 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7625ec2c
AD
6422 additional checks.
6423 Use this to exercise C++ outputs in subdirs.
6424 Reported by Oleg Smolsky.
6425
ba0fe3c7
PE
64262005-10-12 Paul Eggert <eggert@cs.ucla.edu>
6427
6428 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
6429 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
6430 Problem reported by John P. Hartmann.
6431 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
6432 already defined it.
6433
9b8a5ce0
AD
64342005-10-12 Akim Demaille <akim@epita.fr>
6435
6436 * src/parse-gram.y (version_check): Exit 63 to please missing
6437 (stands for "version mismatch).
6438 * tests/input.at, doc/bison.texinfo: Adjust.
6439
4f6e011e
PE
64402005-10-10 Paul Eggert <eggert@cs.ucla.edu>
6441
6442 Work around portability problems with Visual Age C compiler
6443 (xlc and xlC_r) reported by John P. Hartmann.
6444 * data/location.cc (initial_column, initial_line): Remove.
6445 All uses replaced by 0 and 1.
6446 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
6447 that xlc complains about.
6448 * src/scan-skel.l (skel_wrap): Likewise.
4d7aa45e 6449 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
ba0fe3c7 6450 as __STDC__.
4d7aa45e
PE
6451 * data/yacc.c (YYMODERN_C): New macro, which also looks at
6452 __STDC_VERSION__. Use it everywhere instead of looking at
6453 __STDC__ and __cplusplus.
4f6e011e 6454
a1b3bf8c
AD
64552005-10-10 Akim Demaille <akim@epita.fr>
6456
6457 * examples/calc++/test: Be quiet unless VERBOSE.
6458
412e44aa
PE
64592005-10-05 Paul Eggert <eggert@cs.ucla.edu>
6460
2a4647a3
PE
6461 * data/c.m4 (yydestruct, yysymprint):
6462 Use YYUSE instead of casting to void.
6463 * data/glr.c (YYUSE): New macro.
6464 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
6465 Use it instead of rolling our own.
6466 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
6467 (YYCHK1):
6468 Use /*CONSTCOND*/ to suppress lint warnings.
6469 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
6470 (YY_STACK_PRINT): Use 'false' not '0'.
6471 (YYUSE): New macro.
6472 (yysymprint_, yydestruct_): Use it instead of rolling our own.
6473 * data/yacc.c (YYUSE): New macro.
6474 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
6475 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
6476 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
6477
6478
412e44aa
PE
6479 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
6480 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
6481
88c6637f
PE
64822005-10-04 Paul Eggert <eggert@cs.ucla.edu>
6483
2f4f028d
PE
6484 Undo the parts of the unlocked-I/O change that substituted
6485 putc or puts for printf. This might hurt performance a bit,
6486 but some people prefer the printf style.
6487 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
6488 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
6489 All uses replaced by YYFPRINTF and YYDPRINTF.
6490 * data/yacc.c: Likewise.
6491 * lib/bitset.c (bitset_print): Likewise.
6492 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
6493 putc and puts.
6494 * lib/lbitset.c (debug_lbitset): Likewise.
6495 * src/closure.c (print_firsts, print_fderives): Likewise.
6496 * src/gram.c (grammar_dump): Likewise.
6497 * src/lalr.c (look_ahead_tokens_print): Likewise.
6498 * src/output.c (escaped_output): Likewise.
6499 (user_actions_output): Break apart two printfs.
6500 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
6501 * src/reduce.c (reduce_print): Likewise.
6502 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
6503 * src/system.h: Include unlocked-io.h rathe than stdio.h.
6504
88c6637f
PE
6505 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
6506 Use assignments rather than casts-to-void to suppress
6507 unused-variable warnings. This pacifies 'lint'.
6508 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
6509 unused-variable warnings.
6510
fb32e373
JMG
65112005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6512
6513 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
6514
edb8f44f
PE
65152005-10-02 Paul Eggert <eggert@cs.ucla.edu>
6516
fb9c0b33
PE
6517 Use unlocked I/O for a minor performance improvement on hosts like
6518 GNU/Linux and Solaris that support unlocked I/O. The basic idea
6519 is to use the gnlib unlocked-io module, and to prefer putc and
6520 puts to printf when either will work (since the latter doesn't
6521 come in an unlocked flavor).
6522 * bootstrap (gnulib_modules): Add unlocked-io.
6523 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
6524 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
6525 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
6526 and similarly for puts and putc and printf.
6527 * data/yacc.c: Likewise.
6528 * lib/bitset.c (bitset_print): Likewise.
6529 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
6530 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
6531 to printf.
6532 * lib/lbitset.c (debug_lbitset): Likewise.
6533 * src/closure.c (print_firsts, print_fderives): Likewise.
6534 * src/gram.c (grammar_dump): Likewise.
6535 * src/lalr.c (look_ahead_tokens_print): Likewise.
6536 * src/output.c (escaped_output): Likewise.
6537 (user_actions_output): Coalesce two printfs.
2f4f028d 6538 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
fb9c0b33
PE
6539 * src/reduce.c (reduce_print): Likewise.
6540 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2f4f028d 6541 * src/system.h: Include unlocked-io.h rather than stdio.h.
fb9c0b33 6542
edb8f44f
PE
6543 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
6544 this confuses xgettext.
6545
b50d2359
AD
65462005-10-02 Akim Demaille <akim@epita.fr>
6547
6548 * bootstrap (gnulib_modules): Add strverscmp.
6549 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
6550 * m4/.cvsignore: Add strverscmp.m4.
6551 * src/parse-gram.y (%require): New token, new rule.
6552 (version_check): New.
6553 * src/scan-gram.l (%require): Adjust.
6554 * tests/input.at (AT_REQUIRE): New.
6555 Use it.
6556 * doc/bison.texinfo (Require Decl): New.
6557 (Calc++ Parser): Use %require.
6558
21667f64
AD
65592005-10-02 Akim Demaille <akim@epita.fr>
6560
6561 * data/location.cc: New.
6562
2b81e969
AD
65632005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
6564 Akim Demaille <akim@epita.fr>
6565
6566 Make sure -odir/foo.cc creates dir/location.hh etc.
6567 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
6568 (spec_file_prefix, spec_verbose_file, spec_graph_file)
6569 (spec_defines_file): Now const.
6570 (dir_prefix): New.
6571 (short_base_name): Remove.
6572 * src/files.c: Adjust.
6573 (dirname.h): Include.
6574 (base_name): Don't prototype it.
6575 (finput): Remove, duplicates gram_in.
6576 (full_base_name, short_base_name): Replace by...
6577 (all_but_ext, all_but_tab_ext): these.
6578 (compute_base_names): Rename as...
6579 (compute_file_name_parts): this.
6580 Update to compute the new variables, including dir_prefix.
6581 Adjust dependencies.
6582 * src/output.c (prepare): Output them.
6583 * src/reader.c: Adjust to use gram_in, not finput.
6584 * src/scan-skel.l (@dir_prefix@): New.
6585
ad6a9b97
JMG
65862005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6587
6588 * lib/subpipe.c: New function end_of_output_subpipe() added
6589 to allow support for non-posix systems. This is a no-op function
6590 for posix systems.
6591
6592 * lib/subpipe.h: New function end_of_output_subpipe() added
6593 to allow support for non-posix systems. This is a no-op function
6594 for posix systems.
6595
6596 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
6597 handle the lack of pipe/fork functionality on non-posix systems.
6598
6599 * djgpp/Makefile.maint: DJGPP specific file.
6600
6601 * djgpp/README.in: DJGPP specific file.
6602
6603 * djgpp/config.bat: DJGPP specific configuration file.
6604
6605 * djgpp/config.sed: DJGPP specific configuration file.
6606
6607 * djgpp/config.site: DJGPP specific configuration file.
6608
6609 * djgpp/config_h.sed: DJGPP specific configuration file.
6610
6611 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
6612
6613 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
6614
fc695704
AD
66152005-10-02 Akim Demaille <akim@epita.fr>
6616
6617 * data/location.cc: New, extract from...
6618 * data/lalr1.cc: here.
6619 (location.hh): Include it after the user prologue, in case the
6620 filename type is defined by the user.
6621 Forward declation location and position before the pre-prologue.
6622 (yyresult_): Rename as...
6623 (yyresult): this, it's a local variable, not an attribute.
6624 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
6625
66262005-10-01 Akim Demaille <akim@epita.fr>
5215c87f
AD
6627
6628 * examples/extexi: Restore the #line generation.
6629
fb9712a9
AD
66302005-09-30 Akim Demaille <akim@epita.fr>,
6631 Alexandre Duret-Lutz <adl@gnu.org>
6632
6633 Move the token type and YYSTYPE in the parser class.
6634 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
6635 (parser::token): New, from the moved free definition of tokens.
6636 (parser::semantic_value): Now a full definition instead of an
6637 indirection to YYSTYPE.
6638 (b4_post_prologue): No longer included in the header file, but
6639 in the implementation file.
6640 * doc/bison.texi (C+ Language Interface): Update.
6641 * src/parse-gram.y: Support unary %define.
6642 * tests/actions.at: Define global_tokens_and_yystype for backward
6643 compatibility until we update the tests.
6644 * tests/calc.at: Idem.
6645 (first_line, first_column, last_line, last_column): Define for lalr1.cc
6646 to simplify the code.
6647
55f0c7b1
PE
66482005-09-29 Paul Eggert <eggert@cs.ucla.edu>
6649
6650 Port to SunOS 4.1.4, which lacks strtoul and strerror.
6651 Ah, the good old days! Problem reported by Peter Klein.
6652 * bootstrap (gnulib_modules): Add strerror, strtoul.
6653 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
6654 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
6655
fb9712a9 66562005-09-29 Akim Demaille <akim@epita.fr>
d4fb5e3c
AD
6657
6658 * data/c.m4 (b4_error_verbose_if): New.
6659 * data/lalr1.cc: Use it.
6660 (YYERROR_VERBOSE_IF): Remove.
6661 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
6662 parser members, replaced by...
6663 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
6664 local variables.
6665 (yysyntax_error_): Takes the state number as argument.
6666 (yyreduce_print_): Use the argument yyrule, not the former
6667 attribute yyn_.
6668
8a6f72f3
PE
66692005-09-26 Paul Eggert <eggert@cs.ucla.edu>
6670
6671 * bootstrap (gnulib_modules): Add verify.
6672 * lib/.cvsignore: Add verify.h.
6673 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
6674 * src/system.h (verify): Remove.
6675 Include verify.h instead.
6676 * src/tables.c (tables_generate): Use new API for 'verify'.
6677
0d50976f
PE
66782005-09-21 Paul Eggert <eggert@cs.ucla.edu>
6679
ebc3737e
PE
6680 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
6681 local variables whose names begin with 'yy'.
6682 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
6683 Trivial changes from Joel E. Denny.
6684
0d50976f
PE
6685 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
6686 it itself.
6687 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
6688 don't use alloca any more.
6689
6690 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
6691 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
62c4328e 6692 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
0d50976f
PE
6693 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
6694 to match yacc.c, to test more hosts.
6695
a05b79df
PE
66962005-09-20 Paul Eggert <eggert@cs.ucla.edu>
6697
55289366
PE
6698 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
6699 doesn't affect behavior.
6700 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
6701 Solaris, AIX, MSC.
6702 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
6703 This works a bit better with glibc, if user code has already included
6704 stdlib.h.
6705 * doc/bison.texinfo (Bison Parser): Document that users can't
6706 arbitrarily use malloc and free for other purposes. Document
6707 that <alloca.h> and <malloc.h> might be included.
6708 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
6709 user must declare alloca.
6710
a05b79df
PE
6711 * HACKING (release): Forwarn the Translation Project about
6712 stable releses.
6713
3ab2ca22
AD
67142005-09-20 Akim Demaille <akim@epita.fr>
6715
6716 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
6717
a9739e7c
PE
67182005-09-19 Paul Eggert <eggert@cs.ucla.edu>
6719
a702593e
PE
6720 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
6721 (YYSTACK_ALLOC_MAXIMUM): Use it.
6722 (yysyntax_error): New function.
6723 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
6724 multiple syntax errors are reported, and alloca is being used.
6725 Instead, reallocate buffers twice as big each time, so that
6726 we waste at most half the allocated memory. Start with a small
6727 (128-byte) buffer that will suffice in most cases anyway.
6728 Use yysyntax_error to do most of the work.
6729
6730 * doc/bison.texinfo (Error Reporting, Table of Symbols):
6731 yynerrs is the number of errors reported, not the number of
6732 errors encountered.
6733
a9739e7c
PE
6734 * tests/glr-regression.at (Duplicated user destructor for lookahead):
6735 Mark it as expected to fail.
6736 Cast result of malloc; problem reported by twlevo@xs4all.nl.
6737 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
6738 Don't start user-code symbols with "yy", to avoid name space problems.
6739
f479c6c6
AD
67402005-09-19 Akim Demaille <akim@epita.fr>
6741
6742 Remove the traits, failed experiment.
6743 It never proved useful, and anyway because of the current
6744 definition, it was not possible to have several specialization of
6745 this traits, making it useless.
6746 * data/lalr1.cc (yy:traits): Remove.
6747 Inline its definitions in the parser class.
6748
e2586f82
AD
67492005-09-19 Akim Demaille <akim@epita.fr>
6750
6751 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
6752 least Mac OSX with a /usr/local install of gettext.
6753
2e8cf949
AD
67542005-09-19 Akim Demaille <akim@epita.fr>
6755
6756 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
6757 and yytoken for similarity with the other skeletons.
6758
c7fb0b90
AD
67592005-09-19 Akim Demaille <akim@epita.fr>
6760
4e26c69e 6761 * NEWS, configure.ac: update version number to 2.1a.
c7fb0b90 6762
1bd0deda
PE
67632005-09-16 Paul Eggert <eggert@cs.ucla.edu>
6764
6765 * NEWS: Version 2.1.
6766
6767 * NEWS: Remove notice of yytname change, since it was never in an
6768 official release.
6769 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
6770 diagnostic.
6771 * src/output.c (prepare): Likewise.
6772 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
6773 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
6774 is not defined. This is an awful hack, but it's enough for now.
6775 All callers changed.
6776 * tests/glr-regression-at (make_value): Args are const pointers now,
6777 to avoid GCC warning.
6778 (Duplicated user destructor for lookahead): New test. Currently
6779 skipped. It fails on my host but I'm not sure it'll always fail.
6780
67812005-09-16 Akim Demaille <akim@epita.fr>
c1432f65
AD
6782
6783 * src/symtab.h (struct symbol): Declare the printer and destructor
6784 as const, to avoid accidental calls to free.
6785 (symbol_destructor_set, symbol_printer_set): Adjust.
6786 * src/symtab.c: Adjust.
6787
1bd0deda 67882005-09-16 Akim Demaille <akim@epita.fr>
cf147260
AD
6789
6790 * data/c.m4 (b4_token_enums): New.
6791 (b4_token_defines): Rename as...
6792 (b4_token_enums_defines): this.
6793 (b4_token_defines): New, output only the #defines.
6794 * data/yacc.c, data/glr.c: Adjust.
6795 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
6796 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
6797 as default values.
6798
dbcdae2d
AD
67992005-09-16 Akim Demaille <akim@epita.fr>
6800
6801 * data/lalr1.cc (yylex_): Remove, inline its code.
6802 (yyreport_syntax_error_): Remove, replaced by...
6803 (yysyntax_error_): this which returns a string and leaves to the
6804 caller the call to the users' error function.
6805 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
6806 Move from members of the parser object...
6807 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
6808 to local variables of the parse function.
6809
70d8f291
AD
68102005-09-16 Akim Demaille <akim@epita.fr>
6811
6812 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
6813 since it's in Bison's name space.
6814
b47dbebe
PE
68152005-09-15 Paul Eggert <eggert@cs.ucla.edu>
6816
ae199bf1
PE
6817 * data/glr.c (yyresolveValue): Add default case to pacify
6818 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
6819
b47dbebe
PE
6820 * NEWS: Document when yyparse started to return 2.
6821 * doc/bison.texinfo (Parser Function): Document when yyparse
6822 returns 2.
6823
6824 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
6825 (b4_filename_type): Renamed back from b4_file_name_type. All uses
6826 changed.
6827 (class position): file_name -> filename (reverting). All uses changed.
6828
68292005-09-14 Paul Eggert <eggert@cs.ucla.edu>
6830
6831 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
6832 do anything if $@ exists. This reverts part of the 2005-07-07
6833 patch.
6834
00292f66
PE
68352005-09-11 Paul Eggert <eggert@cs.ucla.edu>
6836
6837 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
6838 contains obsolete information and isn't worth distributing as a
6839 separate file anyway.
6840 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
6841 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
6842 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
6843 (yyparse): Abort if user code uses longjmp to throw an unexpected
6844 value.
6845
a420f962
PE
68462005-09-09 Paul Eggert <eggert@cs.ucla.edu>
6847
00292f66
PE
6848 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
6849 Suggested by twlevo@xs4all.nl.
6850
127287e9
PE
6851 * data/glr.c (YYCHK1): Do not assume YYE is in range.
6852 This avoids a diagnostic from gcc -Wswitch-enum.
6853 Problem reported by twlevo@xs4all.nl.
6854
a420f962
PE
6855 * doc/bison.texinfo: Don't use "filename", as per GNU coding
6856 standards. Use "file name" or "file" or "name", depending on
6857 the context.
6858 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
6859 not to hack/foo.tab.c.
6860 (Calc++ Top Level): 2nd arg of main is not const.
48b16bbc
PE
6861 * data/glr.c: b4_filename -> b4_file_name.
6862 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
6863 All uses changed.
6864 (class position): filename -> file_name. All uses changed.
6865 * data/yacc.c: b4_filename -> b4_file_name.
6866 * lib/bitset.h: filename -> file_name in local vars.
6867 * lib/bitset_stats.c: Likewise.
6868 * src/files.c: Likewise.
6869 * src/scan-skel.l ("@output ".*\n): Likewise.
6870 * src/files.c (file_name_split): Renamed from filename_split.
6871 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
a420f962
PE
6872
68732005-09-08 Paul Eggert <eggert@cs.ucla.edu>
6874
6875 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
6876 to accommodate latest gnulib.
6877
6878 * tests/glr-regression.at (Duplicate representation of merged trees):
6879 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
6880
6881 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
6882 needed.
6883
42a6501d
PE
68842005-08-26 Paul Eggert <eggert@cs.ucla.edu>
6885
6886 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
6887 All uses changed. Invoke user destructor after an error during a
6888 split parse (trivial change from Joel E. Denny).
6889
6890 * tests/glr-regression.at
6891 (User destructor after an error during a split parse): New test case.
6892 Problem reported by Joel E. Denny in:
6893 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
6894
ef9a1faf
PE
68952005-08-25 Paul Eggert <eggert@cs.ucla.edu>
6896
5b4aaf78
PE
6897 * README-cvs: Give URLs for recommended tools.
6898 Mention Gzip version problem, and bootstrapping issues.
6899 Remove troubleshooting section, as it's somewhat obsolete.
6900
b5240ba5
PE
6901 * bootstrap (no_cache): New var, to accommodate different wget
6902 variants. Use it instead of '-C off'. Problem reported by
6903 twlevo@xs4all.nl.
6904
ef9a1faf
PE
6905 * data/glr.c (yydestroyStackItem): New function.
6906 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
6907 debugging information. Problem reported by Joel E. Denny.
6908
e6efa9da
AD
69092005-08-25 Akim Demaille <akim@epita.fr>
6910
6911 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
6912
adc90f13
PE
69132005-08-24 Paul Eggert <eggert@cs.ucla.edu>
6914
6915 * data/glr.c (yyrecoverSyntaxError, yyreturn):
6916 Don't invoke destructor on unresolved entries.
6917 * tests/glr-regression.at
6918 (User destructor for unresolved GLR semantic value): New test case.
6919 Problem reported by Joel E. Denny in:
6920 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
6921
f9315de5
PE
69222005-08-21 Paul Eggert <eggert@cs.ucla.edu>
6923
15d29c1f
PE
6924 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
6925 Add strnlen.c.
6926 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
6927 lib-prefix.m4, po.m4.
6928
dd5f2af2
PE
6929 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
6930 in yydestruct diagnostic, since it might not be an error.
6931 Problem reported by Joel Denny near end of
6932 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6250acbd 6933 * data/lalr1.cc (yyerturn): Likewise.
dd5f2af2
PE
6934 * data/yacc.c (yyreturn): Likewise.
6935 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
6936
6937 * src/files.c: Remove obsolete FIXME comment.
6938
6939 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
6940 with the other templates, and to fix bogus run-on messages such
6941 as the one reported at the end of
6942 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6943 All callers changed to avoid the newline.
6944 (yyprocessOneStack): Output two lines rather than one, to accommodate
6945 the above change. This changes the debug output format slightly.
6946
f9315de5
PE
6947 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
6948 reported by Joel E. Denny in
6949 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
6950 (trivial change).
6951 * tests/glr-regression.at (Duplicate representation of merged trees):
6952 New test, from Joel E. Denny in:
6953 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
6954 * THANKS: Add Joel E. Denny.
6955
6956 * configure.ac (AC_INIT): Bump to 2.0c.
6957
04098407
PE
69582005-07-24 Paul Eggert <eggert@cs.ucla.edu>
6959
6960 * NEWS: Version 2.0b.
6961
ca5d2013
PE
6962 * Makefile.am (SUBDIRS): Put examples before tests, so that
6963 "make check" doesn't finish with "All 1 tests passed".
6964
3d54b576
PE
6965 * tests/regression.at (Token definitions): Don't rely on
6966 AT_PARSER_CHECK for data that contains backslashes. It currently
6967 uses 'echo', and 'echo' isn't portable if its argument contains
6968 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
6969 that the byte '\0xff' is not printable in the C locale; it is,
6970 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
6971 not printable, so use '\0x81' to test.
6972
d53ae497
PE
6973 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
6974 version of GCC, since the macro is used with non-GCC compilers.
6975
fc01665e
PE
6976 Fix core dump reported by Pablo De Napoli in
6977 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
6978 * tests/regression.at (Invalid inputs with {}): New test.
6979 * src/parse-gram.y (token_name): Translate type before using
6980 it as an index.
6981
04098407
PE
6982 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
6983 the user's name space. All uses changed to __attribute__
6984 ((__unused__)).
6985 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
6986 Add __attribute__ ((__noreturn__)).
6987
6988 * etc/clcommit: Remove. We weren't using it, and it failed
6989 "make maintainer-distcheck".
6990 * Makefile.maint: Merge from coreutils.
6991 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
6992 (syntax-check-rules): Change list of rules as described below.
6993 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
6994 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
6995 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
6996 (sc_trailing_space): New rules.
6997 (sc_xalloc_h_in_src): Remove.
6998 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
6999 (sc_space_tab, sc_error_exit_success, sc_changelog):
7000 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
7001 (makefile-check, po-check, author_mark_check):
7002 (makefile_path_separator_check, copyright-check):
7003 Use grep -n, to make it easier to find violations.
7004 Use CVS_LIST and CVS_LIST_EXCEPT.
7005 (header_regexp, h_re): Remove.
7006 (dd_c): New macro.
7007 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
7008 (my-distcheck): Use more-modern GCC flags.
7009 (signatures, %.asc): Remove.
7010 (rel-files, announcement): Remove signatures.
7011 Restore old updating code, even though we don't use it, so
7012 that we're the same as coreutils.
7013 (alpha, beta, major): Depend on news-date-check.
7014 Make the upload commands.
7015
7016 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
7017 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
7018 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
7019 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
7020 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
7021 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
7022 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
7023 * tests/sets.at: Likewise.
7024
7025 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
7026 we comment out the Autoconf version number.
7027 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
7028 it's error-prone and "make maintainer-distcheck" rejects it.
7029
7030 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
7031 Indent calls to "error" to pacify "make maintainer-distcheck",
7032 when the calls are not intended to be translated.
7033 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
7034
7035 * src/Makefile.am (DEFS): Use +=, to pacify
7036 "make maintainer-distcheck".
7037 (bison_SOURCES): Add scan-skel.h.
7038 (sc_tight_scope): New rule, from coreutils.
7039
7040 * src/files.c (src_extension, header_extension):
7041 Now static, not extern.
7042 * src/getargs.c (short_options): Likewise.
7043 * src/muscle_tab.c (muscle_table): Likewise.
7044 * src/parse-gram.y (current_class, current_type, current_prec):
7045 Likewise.
7046 * src/reader.c (grammar_end, previous_rule_end): Likewise.
7047 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
7048 * src/main.c (main): Cast bindtextdomain and textdomain calls to
7049 void, to avoid warning when NLS is disabled.
7050 * src/output.c: Include scan-skel.h.
7051 (scan_skel): Remove decl, since scan-skel.h does this.
7052 (output_skeleton):
7053 Indent calls to "error" to pacify "make maintainer-distcheck".
7054 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
7055 * src/reader.h (gram_end, gram_lineno): New decls to pacify
7056 "make maintainer-distcheck".
7057 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
7058 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
7059 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
7060 (skel_lex_destroy, scan_skel): Move these decls to...
7061 * src/scan-skel.h: New file.
7062 * src/uniqstr.c (uniqstr_assert):
7063 Indent calls to "error" to pacify "make maintainer-distcheck".
7064
7065 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
7066 not @VAR@.
7067
7068 * tests/torture.at: Revamp to avoid misuse of atoi that
7069 "make maintainer-distcheck" complained about.
7070
7071 * examples/extexi (message): Don't print a message more than once,
7072 and omit line-number decoration that makes Emacs compile think
7073 that informative messages are worth worrying about.
7074
70752005-07-22 Paul Eggert <eggert@cs.ucla.edu>
7076
7077 * configure.ac: Update version number.
7078
7079 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
7080 accidentally.
7081 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
7082 autogenerated by the maintainer.
7083 * examples/calc++/.cvsignore: Add *.yy.
7084
7085 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
7086 * lib/bitset_stats.c (bitset_stats_init): Likewise.
7087 * lib/bitsetv.c (bitsetv_alloc): Likewise.
7088
7089 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
7090
7091 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
7092 from maintainer-distcheck about casting the argument of 'free'.
7093
7094 * NEWS: Mention recent yytname changes.
7095 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
7096
7097 * bootstrap: For translations that have not yet been upgraded to
7098 the new runtime-po domain, prime the pump by extracting the
7099 relevant strings from the obsolete translations. This code can be
7100 removed once the bison-runtime domain has been translated by each
7101 team.
7102
7103 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
7104 now that token names are already quoted.
7105
7106 Fix problem reported by Anthony Heading.
7107 * data/glr.c (YYTOKEN_TABLE): New macro.
7108 (yytname): Define if YYTOKEN_TABLE.
7109 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
7110 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
7111 (YYERROR_VERBOSE): Define the same way the other skeletons do.
7112 * src/output.c (prepare_symbols): Output token_table_flag.
7113
0ffda363
PE
71142005-07-21 Paul Eggert <eggert@cs.ucla.edu>
7115
7116 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
7117 again if the first call fails.
7118
7119 * data/glr.c (yytnamerr): New function.
7120 (yyreportSyntaxError): Use it to dequote most string literals.
7121 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
7122 with other skeletons. All uses changed.
7123 (yytnameerr_): New function.
7124 (yyreport_syntax_error): Use it to dequote most string literals.
7125 * data/yacc.c (yytnamerr): New function.
7126 (yyerrlab): Use it to decode most string literals.
7127 * doc/bison.texinfo (Decl Summary, Calling Convention):
7128 Clarify quoting convention of yytname.
7129 * src/output.c (prepare_symbols): Quote all names. This undoes
7130 the 2005-04-17 change, which is now accomplished (mostly) via
7131 changes in the parsers as described above.
7132 * tests/regression.at (Token definitions, Web2c Actions):
7133 Undo most 2005-04-17 change here, too.
7134
71352005-07-20 Paul Eggert <eggert@cs.ucla.edu>
7136
7137 Fix more problems reported by twlevo@xs4all.nl.
7138 * tests/cxx-type.at: Don't pipe output of ./types through sed to
7139 remove trailing spaces. This loses the exit status of ./types,
7140 and isn't needed since ./types shouldn't be emitting trailing
7141 spaces.
7142 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
7143 as the stack isn't valid in that case.
7144
7145 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
7146 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
7147 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
7148 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
7149 is used.
7150 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
7151 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
7152 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
7153 Likewise.
7154
7155 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
7156 overly-picky compilers that reject 'char *foo = "bar";'.
7157
7158 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
7159 to FILE * parameter, not to stderr. This fixes a typo introduced
7160 in the 2005-07-12 change.
7161
7162 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
7163 warnings from GCC 4.
7164
7165 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
7166 (yyglrShiftDefer, yysplitStack):
7167 Remove unused parameters b4_pure_formals. All uses changed.
7168 (yyglrShift): Remove unused parameters b4_user_formals.
7169 All uses changed.
7170 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
7171
6100a9aa
PE
71722005-07-18 Paul Eggert <eggert@cs.ucla.edu>
7173
258b75ca
PE
7174 Destructor cleanups and regularization among the three skeletons.
7175 * NEWS: Document the behavior changes.
7176 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
7177 stack before failing, as the cleanup code will do it for us now.
7178 * data/lalr1.cc (yyerrlab): Likewise.
7179 * data/glr.c (yyparse): Pop everything off the stack before
7180 freeing it, so that destructors get called properly.
7181 * data/lalr1.cc (yyreturn): Likewise.
7182 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
7183 This is more consistent.
7184 * doc/bison.texinfo (Destructor Decl): Mention more reasons
7185 why destructors might be called. 1.875 -> 2.1.
7186 (Destructor Decl, Decl Summary, Table of Symbols):
7187 Some English-language cleanups for %destructor.
7188 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
7189 Add output line for destructor of start symbol.
7190 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
7191 because of that same extra output line.
7192
1a059451
PE
7193 * NEWS: Document minor wording changes in diagnostics of
7194 Bison-generated parsers.
7195 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
7196 Remove unused formals. All uses changed.
7197 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
7198 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
7199 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
7200 Rename yyoverflowab to yyexhaustedlab.
7201 When memory exhaustion occurs during syntax-error reporting,
7202 report it separately rather than in a single diagnostic; this
7203 eases translation.
7204 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
7205 (Memory Exhausted): Renamed from Parser Stack Overflow.
7206 Revamp wording slightly to prefer "memory exhaustion".
7207 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
7208
97460c78
PE
7209 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
7210
30757c8c
PE
7211 Add i18n support to the GLR skeleton. Partially fix the C++
7212 skeleton; a C++ expert needs to finish this. Remove debugging
7213 msgids; there's little point to having them translated, since they
7214 can be understood only by someone who can read the
7215 (English-language) source code.
7216
7217 Generate runtime-po/bison-runtime.pot automatically, so that we
7218 don't have to worry about garbage getting in that file. We'll
7219 make sure after the next official release that old msgids don't
7220 get lost. See
7221 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
7222
7223 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
7224 Now auto-generated.
7225 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
7226 Fix typos in explanations of the runtime file.
7227 * bootstrap: Change gettext keyword from YYI18N to YY_.
7228 Use standard Makefile.in.in in runtime-po, since we'll arrange
7229 for backward-compatible bison-runtime.po files in a different way.
7230 * data/glr.c (YY_): New macro, from yacc.c.
7231 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
7232 Translate messages intended for users.
7233 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
7234 the wording in the other skeletons. We don't know that the memory
7235 is virtual.
7236 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
7237 Use same method that yacc.c uses.
7238 Don't translate debugging messages.
7239 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
7240 it doesn't work (yet), and requires C++ expertise to fix.
7241 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
7242 Move defn to a more logical place, to be consistent with other
7243 skeletons.
7244 Don't translate debugging messages.
7245 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
7246 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
7247 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
7248 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
7249
ac8c5689
PE
7250 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
7251 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
7252 void, not int.
7253 * tests/glr-regression.at (Badly Collapsed GLR States):
7254 Likewise.
7255 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7256 yylex should return 0 at EOF rather than aborting.
7257
6100a9aa
PE
7258 Improve tests for stack overflow in GLR parser.
7259 Problem reported by twlevo@xs4all.nl.
7260 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
7261 All uses removed.
7262 (yyStackOverflow): Just longjmp, but with value 2 so that caller
7263 can handle the problem.
7264 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
7265 (yyparse): New local variable yyresult to record the result.
7266 Use result of setjmp to set it, rather than storing itinto
7267 struct.
7268 (yyDone): Remove label.
7269 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
7270 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
7271 if YYABORT is used).
7272 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
7273 yyparse status; put status > 1 into diagnostic.
7274 Check that status==2 works.
7275 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
7276 Use exit status 3 for failure to open (which shouldn't happen).
7277
15f40952
PE
72782005-07-17 Paul Eggert <eggert@cs.ucla.edu>
7279
67fd79c4
PE
7280 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
7281 1 on syntax error; just let yyparse do its thing.
7282 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
7283 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
7284 (Exploding the Stack Size with Alloca):
7285 (Exploding the Stack Size with Malloc):
7286 Expect exit status 2, not 1, since the parser is supposed to blow
7287 its stack. Problem reported by twlevo@xs4all.nl.
7288
15f40952
PE
7289 * data/glr.c (yyparse): Don't assume that the initial calls
7290 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
7291 Print a stack-overflow message and fail instead.
7292 Initialize the line-number information before creating the stack,
7293 so that the stack-overflow message can report line zero safely.
7294
f32c66b5
PE
72952005-07-14 Paul Eggert <eggert@cs.ucla.edu>
7296
a22ff96f 7297 Fix problems reported by twlevo@xs4all.nl.
e2688cd9
PE
7298 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
7299 (yyuserMerge): Provide a default case if b4_mergers is empty.
7300 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
7301 * tests/glr-regression.at
7302 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
c70fdfcd 7303 Add casts to pacify C++ compilers.
1beb0b24
PE
7304 * tests/glr-regression.at (Improper merging of GLR delayed action
7305 sets): Declare yylex before using it.
f32c66b5 7306 * tests/Makefile.am (maintainer-check-g++): Fix a stray
a22ff96f
PE
7307 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
7308 test for valgrind; valgrind is independent of g++.
7309 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
7310 for compatibility with POSIX 1003.1-2001 (if running coreutils).
7311 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
7312 Use a destructor, so that we can expand the stack. Change
7313 YYSTYPE to char * so that we can free it. Cast result of malloc.
f32c66b5 7314
d741bd1b
PE
73152005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
7316
7317 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
7318 a valgrind failure. Problem reported by twlevo@xs4all.nl.
7319
0410a6e0
PE
73202005-07-13 Paul Eggert <eggert@cs.ucla.edu>
7321
7322 * PACKAGING: New file, suggested by Bruno Haible and taken from
7323 similar wording in gettext's PACKAGING file.
7324 * NEWS: Mention PACKAGING.
7325 * Makefile.am (EXTRA_DIST): Add PACKAGING.
7326
f7ab6a50
PE
73272005-07-12 Paul Eggert <eggert@cs.ucla.edu>
7328
baf785db 7329 * NEWS: Document recent i18n improvements.
f7ab6a50
PE
7330 * bootstrap: Get runtime translations into runtime-po.
7331 Create runtime-po files automatically, if possible.
7332 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
7333 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
7334 does not infringe on the user's name space.
7335 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
7336 * doc/bison.texinfo (Internationalization): Revamp the English
7337 and Texinfo syntax a bit, to try to make it clearer.
7338 (Bison Options, Option Cross Key): Mention --print-localedir.
7339 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
7340 YYENABLE_NLS. Quote a bit more.
7341 * runtime-po/.cvsignore: New file.
7342 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
7343 * runtime-po/Rules-quot: Remove; now created by bootstrap.
7344 * runtime-po/quot.sed: Likewise.
7345 * runtime-po/boldquot.sed: Likewise.
7346 * runtime-po/en@quot.header: Likewise.
7347 * runtime-po/en@boldquot.header: Likewise.
7348 * runtime-po/insert-header.sin: Likewise.
7349 * runtime-po/remove-potcdate.sin: Likewise.
7350 * runtime-po/Makevars: Likewise.
7351 * runtime-po/LINGUAS: Likewise.
7352 * runtime-po/de.po: Likewise; we will rely on the translation project
7353 to maintain this, so "bootstrap" should get it.
0410a6e0 7354 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
f7ab6a50
PE
7355 its value.
7356 * src/main.c (main): Bind the bison-runtime domain, too.
7357
73582005-07-12 Bruno Haible <bruno@clisp.org>
7359
7360 * data/yacc.c: Include <libintl.h> when NLS is enabled.
7361 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
7362 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
7363 * runtime-po: New directory.
7364 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
7365 $(DOMAIN).pot-update rule, so that old messages are never dropped.
7366 * runtime-po/Rules-quot: New file, copied from po/.
7367 * runtime-po/quot.sed: Likewise.
7368 * runtime-po/boldquot.sed: Likewise.
7369 * runtime-po/en@quot.header: Likewise.
7370 * runtime-po/en@boldquot.header: Likewise.
7371 * runtime-po/insert-header.sin: Likewise.
7372 * runtime-po/remove-potcdate.sin: Likewise.
7373 * runtime-po/Makevars: New file.
7374 * runtime-po/POTFILES.in: New file.
7375 * runtime-po/LINGUAS: New file.
7376 * runtime-po/bison-runtime.pot: New file.
7377 * runtime-po/de.po: New file.
7378 * m4/bison.m4: New file.
7379 * Makefile.am (SUBDIRS): Add runtime-po.
7380 (aclocaldir, aclocal_DATA): New variables.
7381 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
7382 Define aclocaldir.
7383 * src/getargs.c (usage): Document --print-localedir option.
7384 (PRINT_LOCALEDIR_OPTION): New enum item.
7385 (long_options): Add --print-localedir option.
7386 (getargs): Handle --print-localedir option.
7387 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
7388 (Internationalization): New section.
7389
22dda0f0
AD
73902005-07-12 Akim Demaille <akim@epita.fr>
7391
7392 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
7393 for consistency with the rest of the code.
7394 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
7395 Add separators.
7396
82b248ad
AD
73972005-07-12 Akim Demaille <akim@epita.fr>
7398
7399 * src/parse-gram.y: Use %printer instead of YYPRINT.
7400
fa0e9314
AD
74012005-07-12 Akim Demaille <akim@epita.fr>
7402
867a3e00
AD
7403 * src/symtab.h, src/symtab.c (symbol_print): New.
7404 * src/symlist.h, src/symlist.c (symbol_list_print): New.
7405 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
7406
74072005-07-12 Akim Demaille <akim@epita.fr>
7408
7409 * data/glr.c (b4_syncline): Fix (swap) the definitions of
fa0e9314
AD
7410 b4_at_dollar and b4_dollar_dollar.
7411
e054b190
PE
74122005-07-11 Paul Eggert <eggert@cs.ucla.edu>
7413
7414 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
7415 and Pennello's paper.
7416
34160ec4
PE
74172005-07-09 Paul Eggert <eggert@cs.ucla.edu>
7418
407d4a75
PE
7419 * data/yacc.c (yyparse): Undo previous patch. Instead,
7420 set yylsp[0] and yyvsp[0] only if the initial action
7421 sets yylloc and yylval, respectively.
7422
34160ec4
PE
7423 * data/yacc.c (yyparse): In the initial action, set
7424 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
7425 This avoids the use of undefined variables if the initial
7426 action does not set yylloc and/or yylval.
7427
c3d5a4a7
PE
74282005-07-07 Paul Eggert <eggert@cs.ucla.edu>
7429
b34d96c1
PE
7430 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
7431 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
7432 Remove from CVS. These files are automatically generated.
7433 * examples/extexi: Clarify that this file is now part of Bison,
7434 not GNU M4, and that it works with any POSIX-compatible Awk.
7435 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
7436 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
7437 so that we also get calc++-parser.yy. Geneate it.
7438 Use $(AWK), not gawk, since any conforming Awk will do.
7439 Put comment before action, since older 'make' can't handle comment
7440 in action.
7441 $(BUILT_SOURCES): List all built sources, not just some of them.
7442 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
7443 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
7444 $($(calc_sources_generated)): Remove unnecessary test for existence
7445 of target. (This had a shell syntax error anyway; a stray "x".)
7446 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
7447 calc++-parser.yy.
7448 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
7449
c3d5a4a7
PE
7450 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
7451 implied by the other modules.
7452
828c373b
AD
74532005-07-06 Akim Demaille <akim@epita.fr>
7454
7455 Bind examples/calc++ to the package.
7456 * examples/calc++/Makefile: Remove, replaced by...
7457 * examples/calc++/Makefile.am: ... this new file.
7458 * examples/calc++/test: Remove input.
7459 * examples/calc++/compile: Remove.
7460 * examples/Makefile.am: New.
7461 * configure.ac, Makefile.am: Adjust.
7462 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
7463
63cb01d6
PE
74642005-07-05 Paul Eggert <eggert@cs.ucla.edu>
7465
fd2df2ed
PE
7466 * data/glr.c (yyFail): Drastically simplify; since the format argument
7467 never had any % directives, we can simply pass it to yyerror.
7468 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
7469 be modified later, as that is the usual style in glr.c.
7470 Problems reported by Paul Hilfinger.
7471
63cb01d6
PE
7472 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
7473 and size overflow errors.
7474 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
7475 in case the user prolog sets feature-test macros like _GNU_SOURCE.
7476 (YYSIZEMAX): New macro.
7477 (yystpcpy): New function, taken from yacc.c.
7478 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
7479 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
7480 so that we don't have to maintain their signatures.
7481 (yyFail): Check for buffer overflow, by using vsnprintf rather
7482 than vsprintf. Allocate a bigger buffer if possible.
7483 Report an error if buffer allocation fails.
7484 (yyStackOverflow): New function.
7485 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
7486 the initialization was successful. It might fail if storage was
7487 exhausted.
7488 (yyexpandGLRStack): Add more checks for storage allocation failure.
7489 Use yyStackOverflow to report failures.
7490 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
7491 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
7492 Don't assume stack number fits in int.
7493 (yysplitStack): Check for storage allocation failure.
7494 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
7495 can print diagnostics on storage allocation failure. All callers
7496 changed.
7497 (yyresolveValue): Use yybool for boolean.
7498 (yyreportSyntaxError): Check for size-calculation overflow.
7499 This code is taken from yacc.c.
7500 (yyparse): Check for storage allocation errors when allocating
7501 the initial stack.
7502
1c59e0a1
AD
75032005-07-05 Akim Demaille <akim@epita.fr>
7504
7505 Extract calc++ from the documentation.
7506 * doc/bison.texinfo (Calc++): Add the extraction marks.
7507 * examples/extexi: New, from the aborted GNU Programming 2E.
7508 Separate the different paragraph of a file with empty lines.
7509 * examples/Makefile: Use it to extract the whole calc++ example.
7510
8a0adb01
AD
75112005-06-24 Akim Demaille <akim@epita.fr>
7512
7513 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
7514 class typedefs.
7515
12545799
AD
75162005-06-22 Akim Demaille <akim@epita.fr>
7517
7518 * doc/bison.texinfo (C++ Language Interface): First stab.
7519 (C++ Parsers): Remove.
7520
99be0235
AD
75212005-06-22 Akim Demaille <akim@epita.fr>
7522
7523 * data/lalr1.cc (yylex_): Honor %lex-param.
7524
0ffd4fd1
AD
75252005-06-22 Akim Demaille <akim@epita.fr>
7526
7527 Start a set of simple examples.
7528 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
7529 * examples/calc++/calc++-driver.hh,
7530 * examples/calc++/calc++-parser.yy,
7531 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
7532 * examples/calc++/compile, examples/calc++/test: New.
7533
0925ebb4
PE
75342005-06-09 Paul Eggert <eggert@cs.ucla.edu>
7535
7536 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
7537 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
7538 which stems from the 2005-05-27 patch.
7539
43d3b664
PH
75402005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7541
7542 * data/glr.c: Modify treatment of unused parameters to permit use
7543 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
7544
3062864d
PE
75452005-05-30 Paul Eggert <eggert@cs.ucla.edu>
7546
7547 Fix infringement on user name space reported by Janos Zoltan Szabo.
7548 * data/yacc.c (yyparse): strlen -> yystrlen.
7549
989b5b8e
AD
75502005-05-30 Akim Demaille <akim@epita.fr>
7551
7552 * data/lalr1.cc (_): New.
7553 Translate the various messages.
7554
bedf57f5
PE
75552005-05-27 Paul Eggert <eggert@cs.ucla.edu>
7556
7557 Fix infringement on user name space reported by Bruno Haible.
7558 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
7559 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
7560 the user's name space.
7561 (alloca): Include <stdlib.h> to get it, if it's not built in.
7562 (YYMALLOC, YYFREE): Define only if needed.
7563 (malloc, free): Declare, but only if needed, as this infringes on
7564 the user name space.
7565
4d1801f1
PE
75662005-05-25 Paul Eggert <eggert@cs.ucla.edu>
7567
7568 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
7569 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
7570 with %d format.
7571 * lib/ebitset.c (min, max): Undef before defining.
7572 * lib/vbitset.c (min, max): Likewise.
7573 * lib/subpipe.c (create_subpipe): Save local variables in case
7574 vfork clobbers them.
7575
75762005-05-24 Bruno Haible <bruno@clisp.org>
7577
7578 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
7579 error message syntax used by gcc-4.0.
7580
b94a9e1e
PE
75812005-05-23 Paul Eggert <eggert@cs.ucla.edu>
7582
85ac3861
PE
7583 * README: Mention m4 1.4.3. Remove obsolete advice about
7584 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
7585
b94a9e1e
PE
7586 * bootstrap: Remove workaround for problem I encountered with
7587 gettext 0.14.1; it seems to be fixed now.
7588
51c30d21
PE
75892005-05-22 Paul Eggert <eggert@cs.ucla.edu>
7590
009ce67d
PE
7591 * NEWS: Version 2.0a.
7592
f2a97c62
PE
7593 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
7594 the previous change.
7595
c8775f93
PE
7596 Various maintainer cleanups.
7597 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
7598 conftest*, for benefit of CVS commands run at the same time as
7599 "configure". Add build-aux, since "bootstrap" now creates it and
7600 its subfiles.
7601 * Makefile.cfg (move_if_change): Remove.
7602 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
7603 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
7604 (po_repo, do-po-update, po-update, wget_files, get-targets):
7605 (config.guess-url_prefix, config.sub-url_prefix):
7606 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
7607 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
7608 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
7609 Remove.
7610 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
7611 this is now the recommended name.
7612 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
7613 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
7614 ylwrap. These files now go into build-aux.
7615 * config/move-if-change: Remove.
7616 * config/prev-version.txt: Bump from 1.75 to 2.0.
7617
3ea5f0ec
PE
7618 * bootstrap: Add stdio-safer, unistd-safer modules.
7619 Remove m4/glibc2.m4 (introduced by latest gnulib, but
7620 we don't need it).
7621 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
7622 fopen-safer.c, stdio-safer.h, unistd-safer.h.
7623 * lib/subpipe.c: Include "unistd-safer.h".
7624 (create_subpipe): Make sure all the newly-created
7625 file descriptors are > 2, so that diagnostics don't
7626 get sent down them (which might cause Bison to hang, in theory).
7627 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
7628 * src/files.c (xfopen): Use fopen_safer, not fopen.
7629
51c30d21
PE
7630 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
7631 yesterday's yacc.c fix.
7632
cea1469d
PE
76332005-05-21 Paul Eggert <eggert@cs.ucla.edu>
7634
3ea5f0ec
PE
7635 * data/glr.c, data/lalr1.cc: Update copyright date.
7636
cea1469d
PE
7637 Fix a destructor bug reported by Wolfgang Spraul in
7638 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
7639 * data/yacc.c (yyabortlab): Don't call destructor, and
7640 don't set yychar to EMPTY.
7641 (yyoverflowlab): Don't call destructor.
7642 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
7643 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
7644 since we no longer output the message "discarding lookahead token
7645 end of input ()".
7646
5e6f62f2
PH
76472005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
7648
7649 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
7650 fix a small glitch in debugging output.
7651 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
7652 after YY_SYMBOL_PRINT where needed.
7653
7654 (struct yyGLRState): Add some comments.
7655 (struct yySemanticOption): Add some comments.
7656 (union yyGLRStackItem): Add comment.
7657
7658 (yymergeOptionSets): Correct this to properly perform the union,
7659 avoiding infinite reported by Michael Rosien.
7660 Update comment.
7661
7662 * tests/glr-regression.at: Add test for GLR merging error reported
7663 by M. Rosien.
cea1469d 7664
0fb669f9
PE
76652005-05-13 Paul Eggert <eggert@cs.ucla.edu>
7666
7667 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
7668 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
7669 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
7670 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
7671 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
7672 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
7673 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
7674 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
7675 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
7676 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
7677 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
7678 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
7679 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
7680 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
7681 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
7682 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
7683 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
7684 src/derives.h, src/files.c, src/files.h, src/getargs.c,
7685 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
7686 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
7687 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
7688 src/output.h, src/parse-gram.c, src/parse-gram.h,
7689 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
7690 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
7691 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
7692 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
7693 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
7694 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
7695 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
7696 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
7697 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
7698 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
7699 tests/reduce.at, tests/regression.at, tests/sets.at,
7700 tests/synclines.at, tests/testsuite.at, tests/torture.at:
7701 Update FSF postal mail address.
7702
51f4735e
PE
77032005-05-11 Paul Eggert <eggert@cs.ucla.edu>
7704
7705 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
7706 Problem reported by Ralf Menzel.
7707
80ce3401
PE
77082005-05-01 Paul Eggert <eggert@cs.ucla.edu>
7709
7710 * tests/actions.at: Test that stack overflow invokes destructors.
7711 From Marcus Holland-Moritz.
7712 * data/yacc.c (yyerrlab): Move the code that destroys the stack
7713 from here....
7714 (yyreturn): to here. That way, destructors are called properly
7715 even if the stack overflows, or the user calls YYACCEPT or
7716 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
7717 (yyoverflowlab): Destroy the lookahead.
7718
77192005-04-24 Paul Eggert <eggert@cs.ucla.edu>
7720
7721 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
7722
72f000b0
PE
77232005-04-17 Paul Eggert <eggert@cs.ucla.edu>
7724
7725 * NEWS: Bison-generated C parsers no longer quote literal strings
7726 associated with tokens.
7727 * src/output.c (prepare_symbols): Don't escape strings,
7728 since users don't want to see C escapes.
7729 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
7730 in diagnostics.
c19683bb 7731 * tests/input.at (Torturing the Scanner): Likewise.
72f000b0
PE
7732 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
7733
1094323f
PE
77342005-04-16 Paul Eggert <eggert@cs.ucla.edu>
7735
7736 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
7737 the data size is known to be too small and we can't increase it.
7738 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
7739
ca407bdf
PE
77402005-04-15 Paul Eggert <eggert@cs.ucla.edu>
7741
7742 * src/parse-gram.y: Include quotearg.h.
7743 (string_as_id): Quote $1 before using it as a key, since the
7744 lexer no longer quotes it for us.
7745 (string_content): Don't strip quotes, since lexer no longer
7746 quotes it for us.
7747 * src/scan-gram.l: Include quotearg.h.
7748 ("\""): Omit quote.
7749 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
7750 a key, since the rest of the lexer doesn't quote it.
7751 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
7752 * tests/regression.at (Token definitions): Check for backslashes
7753 in token strings.
7754
7755 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
7756 (YYSIZE_T): Define to unsigned long int when using an older compiler.
7757 (yyparse): Revamp code to generate long syntax error message, to
7758 make it easier to translate, and to avoid problems with arithmetic
7759 overflow. Change "virtual memory" to "memory" in diagnostic, since
7760 we don't know whether the memory is virtual.
7761
1ce59070
PE
77622005-04-13 Paul Eggert <eggert@cs.ucla.edu>
7763
7764 * NEWS: Bison-generated C parsers now use the _ macro to
7765 translate strings.
7766 * data/yacc.c (_) [!defined _]: New macro.
7767 All English strings wrapped inside this macro.
7768 * doc/bison.texinfo (Bison Parser): Document _.
7769 * po/POTFILES.in: Include src/parse-gram.c, since it now
7770 includes translateable strings that parse-gram.y doesn't.
7771
a749a695
PE
77722005-04-12 Paul Eggert <eggert@cs.ucla.edu>
7773
7774 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
7775 reverting the 2004-10-11 change to this function.
7776 (symbol_check_alias_consistency): Don't call symbol_type_set
7777 if the type name is already correct.
7778 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
7779
8fb1053b
PE
77802005-03-25 Paul Eggert <eggert@cs.ucla.edu>
7781
7782 * tests/regression.at (Token definitions): Don't use a token named
7783 c, as that generates a "#define c ..." that runs afoul of buggy
7784 stdlib.h that uses the identifier c as a member of struct
7785 drand48_data. Problem reported by Horst Wente.
7786
ff498c4a
PE
77872005-03-21 Paul Eggert <eggert@cs.ucla.edu>
7788
7789 * bootstrap: Change translation URL from
7790 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
7791 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
7792 redirection glitches. Problem reported by twlevo@xs4all.nl.
7793
65211d70
PE
77942005-03-20 Paul Eggert <eggert@cs.ucla.edu>
7795
7796 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
7797 after operands; POSIX says this isn't portable for the c99 command.
7798
9577fb1f
PE
77992005-03-18 Paul Eggert <eggert@cs.ucla.edu>
7800
7801 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
7802 immediately if a data overrun has occurred; this may help us track
7803 down what may be a spurious failure on MacOS.
7804
78b178f7
PE
78052005-03-17 Paul Eggert <eggert@cs.ucla.edu>
7806
a2599d0f
PE
7807 Respond to problems reported by twlevo@xs4all.nl.
7808
7809 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
7810
78b178f7
PE
7811 * src/vcg.h: Comment fix.
7812 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
7813 (G_CMAX): Change to -1 instead of INT_MAX.
7814
7815 * data/yacc.c (yyparse): Omit spaces before #line.
78b178f7 7816
7296e729
PE
78172005-03-15 Paul Eggert <eggert@cs.ucla.edu>
7818
7819 * src/tables.c (state_number_to_vector_number): Put it inside an
7820 "#if 0", since it's not currently used. Problem reported by
7821 Roland McGrath.
7822
05ac60f3
PE
78232005-03-06 Paul Eggert <eggert@cs.ucla.edu>
7824
7825 * src/output.c (escaped_output): Renamed from
7826 escaped_file_name_output, since we now use it for symbol tags as
7827 well. All uses changed.
7828 (symbol_destructors_output, symbol_printers_output):
7829 Escape symbol tags too.
7830 Problem reported by Matyas Forstner in
7831 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
7832
7833 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
7834 not needed.
7835 * src/output.c (user_actions_output, token_definitions_output,
7836 symbol_destructors_output, symbol_printers_output): Likewise.
7837 * src/reader.c (prologue_augment): Likewise.
7838 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
7839
7840 * src/vcg.c (output_edge): Don't quote linestyle arg.
7841 Problem reported by twlevo@xs4all.nl.
7842
7eb453ac
PE
78432005-02-28 Paul Eggert <eggert@cs.ucla.edu>
7844
7845 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
7846 example, reported by Derek M Jones. Also, make the example even
7847 more outrageous, to better illustrate how bad the problem is.
7848
4c04c52a
PE
78492005-02-24 Paul Eggert <eggert@cs.ucla.edu>
7850
7851 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
7852 putsym. Typo reported by Sebastian Piping.
7853
a61e1620
PE
78542005-02-23 Paul Eggert <eggert@cs.ucla.edu>
7855
7856 * doc/bison.texinfo (Language and Grammar): some -> same
7857 (Epilogue): int he -> in the
7858 Typos reported by Sebastian Piping via Justin Pence.
7859
9ec93868
PE
78602005-02-07 Paul Eggert <eggert@cs.ucla.edu>
7861
7862 * tests/glr-regression.at (Improper handling of embedded actions
7863 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
7864 embedded actions and $-N in GLR parsers", work around an Autoconf bug
7865 with dollar signs in test names.
7866 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
7867 for a similar reason.
7868
73ce7e7e
PE
78692005-01-28 Paul Eggert <eggert@cs.ucla.edu>
7870
7871 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
7872 wants to redefine G_VIEW.
7873
2e72b98e
PE
78742005-01-27 Paul Eggert <eggert@cs.ucla.edu>
7875
7876 * src/vcg.c (get_view_str): Remove case for normal_view.
7877 Problem reported by twlevo@xs4all.nl.
7878
e0d634e5
PE
78792005-01-24 Paul Eggert <eggert@cs.ucla.edu>
7880
ccf830a4
PE
7881 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
7882 Problem reported by twlevo@xs4all.nl.
7883
e0d634e5
PE
7884 * doc/bison.texinfo: Change @dircategory from "GNU programming
7885 tools" to "Software development". Requested by Richard Stallman
7886 via Karl Berry.
7887
7bbc8cb0
PE
78882005-01-23 Paul Eggert <eggert@cs.ucla.edu>
7889
7890 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
7891 Problem reported by twlevo@xs4all.nl.
7892
08b770bc
PE
78932005-01-21 Paul Eggert <eggert@cs.ucla.edu>
7894
7895 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
7896 keyword; it's not needed with modern compilers, and it doesn't
7897 affect correctness with older compilers. Suggested by
7898 twlevo@xs4all.nl.
7899
95f22ad2
PE
79002005-01-17 Paul Eggert <eggert@cs.ucla.edu>
7901
7902 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
7903 gcc -Wswitch-default.
7904 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
7905 * data/yacc.c (yyparse): Likewise.
7906
d229d15c
PE
79072005-01-12 Paul Eggert <eggert@cs.ucla.edu>
7908
7909 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
7910 already. Let config.h define any nonstandard values.
7911
ecadd90f
PE
79122005-01-10 Paul Eggert <eggert@cs.ucla.edu>
7913
7914 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
7915 for the benefit of slower hosts. Problem reported by
7916 Nelson H. F. Beebe.
7917
213744b5
PE
79182005-01-07 Paul Eggert <eggert@cs.ucla.edu>
7919
7920 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
7921 being defined and not used.
7922 * data/lalr1.cc (yyparse): Likewise.
7923 Use "if (false)" rather than "if (0)".
7924
249d3236
PE
79252005-01-05 Paul Eggert <eggert@cs.ucla.edu>
7926
7927 * TODO: Mention that we should allow NUL bytes in tokens.
7928
987cc1fb
PE
79292005-01-02 Paul Eggert <eggert@cs.ucla.edu>
7930
7931 * src/scan-skel.l (<<EOF>>): Don't close standard output.
7932 Problem reported by Hans Aberg.
7933
08fe02d9
PE
79342005-01-01 Paul Eggert <eggert@cs.ucla.edu>
7935
7936 * src/getargs.c (version): Happy new year; update overall
7937 program copyright date from 2004 to 2005.
7938
7939 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
7940 Problem reported by Hans Aberg.
7941 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
7942 (Output file names.): Add a test for the case when standard output
7943 is closed.
7944
010c0266
PE
79452004-12-26 Paul Eggert <eggert@cs.ucla.edu>
7946
7947 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
7948 to fix an oversight in the Bison 2.0 manual.
7949
da12206a
PE
79502004-12-25 Paul Eggert <eggert@cs.ucla.edu>
7951
7952 * NEWS: Version 2.0. Reformat the existing news items since
7953 1.875, so that related items are grouped together.
3a4734aa 7954 * configure.ac (AC_INIT): Bump version to 2.0.
da12206a
PE
7955 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
7956
c935d934
PE
7957 * tests/torture.at (Exploding the Stack Size with Alloca): Set
7958 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
7959 otherwise, we're not testing alloca. Unfortunately there's no
7960 simple way to consult HAVE_ALLOCA here.
7961
da12206a
PE
7962 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
7963 for yymsg, too.
7964
7965 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
7966 hand. This avoids a warning about comparing int to size_t when
7967 GCC warnings are enabled.
7968
0a2c5137
PE
79692004-12-22 Paul Eggert <eggert@cs.ucla.edu>
7970
d7e14fc0
PE
7971 * NEWS: Bison-generated parsers no longer default to using the
7972 alloca function (when available) to extend the parser stack, due
7973 to widespread problems in unchecked stack-overflow detection.
7974 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
7975 responsibility to set it to a positive value. This lets the user
7976 specify a value that is not a preprocessor constant.
7977 * data/yacc.c (YYMAXDEPTH): Likewise.
7978 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
7979 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
7980 to be a compile-time constant. However, explain the constraints on it.
7981 Also, explain the constraints on YYINITDEPTH.
7982 (Table of Symbols): Explain that alloca is no longer the default.
7983 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
7984 to 1.
7985
0a2c5137
PE
7986 * doc/bison.texinfo (Location Default Action): Mention that n must
7987 be zero when k is zero. Suggested by Frank Heckenbach.
7988
e019c247
AD
79892004-12-22 Akim Demaille <akim@epita.fr>
7990
7991 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
7992 (parser::state_type, parser::semantic_type, parser::location_type):
7993 Private, not public.
7994 (parser::parse): Return ints, not bool.
7995 Returning a bool introduces a problem: 0 corresponds to false, and
7996 it seems weird to return false on success. Returning true changes
7997 the conventions for yyparse.
7998 Alternatively we could return void and send an exception.
7999 There is no clear consensus (yet?).
8000 (state_stack, semantic_stack, location_stack): Rename as...
8001 (state_stack_type, semantic_stack_type, location_stack_type): these.
8002 Private, not public.
8003 * tests/c++.at: New.
8004 * tests/testsuite.at, tests/Makefile.am: Adjust.
8005
72731bb7
AD
80062004-12-21 Akim Demaille <akim@epita.fr>
8007
8008 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
8009
9a0d8bec
AD
80102004-12-21 Akim Demaille <akim@epita.fr>
8011
8012 Don't impose std::string for filenames.
8013
8014 * data/lalr1.cc (b4_filename_type): New.
8015 (position::filename): Use it.
8016 (parser.hh): Move the inclusion of stack.hh and location.hh below
8017 the user code, so that needed headers for the filename type can be
8018 included first.
72731bb7
AD
8019 Forward declare them before the user code.
8020 * tests/Makefile.am (check-local, installcheck-local): Pass
8021 TESTSUITEFLAGS to the TESTSUITE.
9a0d8bec 8022
99880de5
AD
80232004-12-20 Akim Demaille <akim@epita.fr>
8024
8025 Use more STL like names: my_class instead of MyClass.
8026
8027 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
8028 (SemanticStack, SemanticType, StateStack, StateType)
8029 (TokenNumberType, Stack, Slice, Traits, Parser::location)
8030 (Parser::value): Rename as...
8031 (location_stack, location_type, rhs_number_type, semantic_stack)
8032 (semantic_type, state_stack, state_type, token_number_type, stack)
8033 (slice, traits, parser::yylloc, parser::yylval): these.
8034
8035 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
8036
9bec482e
PE
80372004-12-19 Paul Eggert <eggert@cs.ucla.edu>
8038
8039 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
8040 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
8041
f6fbd3da
PE
80422004-12-17 Paul Eggert <eggert@cs.ucla.edu>
8043
8044 Remove uses of 'short int' and 'unsigned short int'. This raises
8045 some arbitrary limits. It uses more memory but nowadays that's
8046 not much of an issue.
8047
8048 This change does not affect the generated parsers; that's a different
8049 task, as some users will want to conserve memory there.
8050
8051 Ideally we should use size_t to represent all object counts, and
8052 something like ptrdiff_t to represent signed differences of object
8053 counts; but that will require more code-cleanup than I have the
8054 time to do right now.
8055
8056 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
8057 Use size_t, not int or short int, to count objects.
8058 * src/closure.c (nritemset, closure): Likewise.
8059 * src/closure.h (nritemset, closure): Likewise.
8060 * src/nullable.c (nullable_compute): Likewise.
8061 * src/print.c (print_core): Likewise.
8062 * src/print_graph.c (print_core): Likewise.
8063 * src/state.c (state_compare, state_hash): Likewise.
8064 * src/state.h (struct state): Likewise.
8065 * src/tables.c (default_goto, goto_actions): Likewise.
8066
8067 * src/gram.h (rule_number, rule): Use int, not short int.
8068 * src/output.c (prepare_rules): Likewise.
8069 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
8070 errs, reductions): Likewise.
8071 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
8072 Likewise.
8073 * src/tables.c (vector_number, tally, action_number,
8074 ACTION_NUMBER_MINIMUM): Likewise.
8075 * src/output.c (muscle_insert_short_int_table): Remove.
8076
efeed023
AD
80772004-12-17 Akim Demaille <akim@epita.fr>
8078
8079 * data/lalr1.cc: Extensive Doxygenation.
8080 (error_): Rename as...
8081 (error): this, since it is visible to the user.
8082 Adjust callers.
8083 (Parser::message): Now an automatic variable from...
8084 (Parser::yyreport_syntax_error_): here.
8085 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
8086 Parser::error.
8087 * tests/input.at: Escape $.
8088
bc82c5a5
PE
80892004-12-16 Paul Eggert <eggert@cs.ucla.edu>
8090
8091 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
8092 Parenthesize rhs to avoid obscure problems with mistakes like
8093 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
8094 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
8095 b4_rhs_location): Likewise.
8096 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
8097 b4_rhs_location): Likewise.
8098
fd19f271
AD
80992004-12-16 Akim Demaille <akim@epita.fr>
8100
8101 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
8102 yacc.c: be sure to stay within yycheck_.
8103 * tests/actions.at: Re-enable C++ tests.
8104
10454ea4
AD
81052004-12-16 Akim Demaille <akim@epita.fr>
8106
8107 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
8108 real.
8109
c5b95ccf
AD
81102004-12-16 Akim Demaille <akim@epita.fr>
8111
8112 Use #define to handle the %name-prefix.
8113
8114 * data/glr.c, data/yacc.c: Comment changes.
8115 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
8116 so that one can refer to yylex in the parser file, and have it
8117 renamed, as is the case with other skeletons.
8118
617a8f12
AD
81192004-12-16 Akim Demaille <akim@epita.fr>
8120
8121 Move lalr1.cc internals into yy*.
8122
8123 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
8124 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
8125 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
8126 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
8127 (empty_, final_, terror_, errcode_, ntokens_)
8128 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
8129 (looka_, ilooka_, error_range_, nerrs_):
8130 Rename as...
8131 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
8132 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
8133 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
8134 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
8135 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
8136 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
8137 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
8138 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
8139 these.
8140
1e547e6e
PE
81412004-12-15 Paul Eggert <eggert@cs.ucla.edu>
8142
8143 Fix some problems reported by twlevo at xs4all.
8144 * src/symtab.c (symbol_new): Report an error if the input grammar
8145 contains too many symbols. This is better than calling abort() later.
8146 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
8147 (struct node, struct graph):
8148 Rename member expand to stretch. All uses changed.
8149 (struct graph): Remove member layoutalgorithm. All uses removed.
8150 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
8151 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
8152 All uses changed.
8153 (N_STRETCH): Rename from N_EXPAND. All uses changed.
8154
735d6bd4
AD
81552004-12-15 Akim Demaille <akim@epita.fr>
8156
8157 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
8158 Add more Doxygen comments.
8159 (symprint_, stack_print_, reduce_print_, destruct_, pop)
8160 (report_syntax_error_, translate_): Rename as...
8161 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
8162 (yypop_, yyreport_syntax_error_, yytranslate_): this.
8163
2e1f5829
AD
81642004-12-15 Akim Demaille <akim@epita.fr>
8165
8166 * data/lalr1.cc (lex_): Rename as...
8167 (yylex_): this.
8168 Move the trace here.
8169 Take the %name-prefix into account.
8170 Reported by Alexandre Duret-Lutz.
8171
a3cb6248
AD
81722004-12-15 Akim Demaille <akim@epita.fr>
8173
8174 Simplify the C++ parser constructor.
8175
8176 * data/lalr1.cc (debug_): Rename as...
8177 (yydebug_): so that the parser's internals are always in the yy*
8178 pseudo namespace.
8179 Adjust uses.
8180 (b4_parse_param_decl): Remove the leading comma as it is now only
8181 called as unique argument list.
8182 (Parser::Parser): Remove the constructor accepting a location and
8183 an initial debugging level.
8184 Remove from the other ctor the argument for the debugging level.
8185 (debug_level_type, debug_level, set_debug_level): New.
8186
8187 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
8188 constructor calls.
8189
07fed891
AD
81902004-12-15 Akim Demaille <akim@epita.fr>
8191
8192 Remove b4_root related material: failure experiment
a3cb6248 8193 (which goal was to allow to derive from a class).
07fed891
AD
8194
8195 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
8196 definitions and uses.
8197
e603eaa5
PE
81982004-12-14 Paul Eggert <eggert@cs.ucla.edu>
8199
8200 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
8201 not 2, since it's not portable to subtract 1 from the start of an
8202 array. The new item 0 is never set or used. All uses changed.
8203
8204 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
8205 the default definition of YYLLOC_DEFAULT. Problem reported
8206 by Frank Heckenbach.
8207
fafb007d
PE
82082004-12-12 Paul Eggert <eggert@cs.ucla.edu>
8209
8210 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
8211 the normal case and one for the error case. Just use the
8212 first one uniformly. Problem reported by Frank Heckenbach.
8213 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
8214 use exactly the same macro in both places.
8215 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
8216 so that the normal-case YYRHSLOC works for the error case too.
8217 All uses changed.
8218 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
8219 (YYLLOC_DEFAULT): Use the same macro as glr.c.
8220 * doc/bison.texinfo (Location Default Action): Don't claim that
8221 we have an array of locations. Use the same macro for both glr
8222 and lalr parsers. Mention YYRHSLOC. Mention what happens when
8223 the index is 0.
8224
48814dcd
PE
82252004-12-10 Paul Eggert <eggert@cs.ucla.edu>
8226
a4e1a53b
PE
8227 * HACKING: Update email addresses to send announcements to.
8228
48814dcd
PE
8229 * configure.ac (AC_INIT): Bump version to 1.875f.
8230
337116ba
PE
82312004-12-10 Paul Eggert <eggert@cs.ucla.edu>
8232
8233 * NEWS: Version 1.875e.
8234 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
8235
8236 * src/scan-skel.l: Include "complain.h", for "fatal".
8237
8238 * src/relation.h (relation_print, relation_digraph):
8239 Relation sizes are of type relation_node, not size_t (this is
8240 merely a doc fix, since the two types are equivalent).
8241 (relation_transpose): Relation sizes are of type relation_node,
8242 not int.
8243 * src/relation.c: Likewise.
8244 (top, infinity): Now of type relation_node, not int.
8245 (traverse, relation_transpose): Use relation_node, not int.
8246
8247 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
8248 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
8249 (yyparse): Remove unused local introduced in 2004-10-25 patch.
8250
8251 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
68b082af 8252 specifying whether the test should be skipped. Use it tp
337116ba 8253 specify that the [%defines %skeleton "lalr1.cc"] tests currently
68b082af 8254 fail on some hosts, and should be skipped.
337116ba 8255
da2a7671
PE
82562004-12-08 Paul Eggert <eggert@cs.ucla.edu>
8257
8258 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
8259 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
8260 unless otherwise specified below.
8261
8262 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
8263 to allocate kernel_base, kernel_items, kernel_size, since
8264 they needn't be initialized to 0.
8265 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
8266 * src/closure.c (new_closure): Likewise, for itemset.
8267 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
8268 * src/lalr.c (set_goto_map): Likewise, for temp_map.
8269 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
8270 (build_relations): Likewise for edge, states1, includes.
8271 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
8272 * src/reader.c (packgram): Likewise, for ritem, rules.
8273 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
8274 * src/relation.c (relation_digraph): Likewise for VERTICES.
8275 (relation_transpose): Likewise for new_R, end_R.
8276 * src/symtab.c (symbols_token_translations_init): Likewise for
8277 token_translations.
8278 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
8279 (token_actions): Likewise for yydefact, actrow, conflrow,
8280 conflict_list.
8281 (save_column): Likewise for froms[symno], tos[symno].
8282 (goto_actions): Likewise for state_count.
8283 (pack_table): Likewise for base, pos, check.
8284 (tables_generate): Likewise for width.
8285
8286 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
8287 for initial core. Just have a separate core, so we needn't worry
8288 about whether kernel_size and kernel_base are initialized.
8289
8290 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
8291 kernel_size, kernel_items): Remove unnecessary initialization.
8292 * src/conflicts.c (conflicts): Likewise.
8293 * src/derives.c (derives): Likewise.
8294 * src/muscle_tablc (muscle_insert): Likewise.
8295 * src/relation.c (relation_digraph): Likewise.
8296 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
8297 conflrow, conflict_table, conflict_list, table, check):
8298 Likewise.
8299
8300 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
8301 This is because all callers pass unsigned int.
8302 * src/closure.h (new_closure): Likewise.
8303
8304 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
8305 (build_relations): Initialize includes[i] in all cases.
8306 * src/reader.c (packgram): Always initialize rules[ruleno].prec
8307 and rules[ruleno].precsym. Initialize members in order.
8308 * src/relation.c (relation_transpose): Always initialize new_R[i]
8309 and end_R[i].
8310 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
8311
8312 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
8313 conflict_list[0] was always 0, but now it isn't initialized.
8314
8315 * src/table.c (table_grow): When conflict_table grew, the grown
8316 area wasn't cleared. Fix this.
8317
8318 * lib/.cvsignore: Add strdup.c, strdup.h.
8319 * m4/.cvsignore: Add strdup.m4.
8320
00baeeac
PE
83212004-12-07 Paul Eggert <eggert@cs.ucla.edu>
8322
8323 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
8324 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
8325 GOTO_NUMBER_MAXIMUM, since we occasionally compute
8326 ngotos + 1 without checking for overflow.
8327 (build_relations): Use END_NODE, not -1, to denote end of edges.
8328 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
8329 build_relations): Use goto_number, not int, for goto numbers.
8330 * src/tables.c (save_column, default_goto): Likewise.
8331
be3d9d42
AD
83322004-11-23 Akim Demaille <akim@epita.fr>
8333
8334 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
8335 of #defining from yystype.
8336 Don't typedef yystype, C++ does not need it.
8337 This lets it possible to forward declare it as union.
8338
78e526d5
PE
83392004-11-23 Paul Eggert <eggert@cs.ucla.edu>
8340
8341 * bootstrap (gnulib_modules): Add extensions.
8342 Problem reported by Jim Meyering.
8343
afbb696d
PE
83442004-11-22 Paul Eggert <eggert@cs.ucla.edu>
8345
8346 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
8347 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
8348 src/system.h, src/tables.c: XFREE -> free, to accommodate
8349 recent change to gnulib xalloc.h.
78e526d5 8350 Problem reported by Jim Meyering.
afbb696d 8351
c1f8f16a
AD
83522004-11-17 Akim Demaille <akim@epita.fr>
8353
8354 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
8355
db7e5eb5 83562004-11-17 Akim Demaille <akim@epita.fr>,
9a1e9989
AD
8357 Alexandre Duret-Lutz <adl@gnu.org>
8358
8359 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
8360 changes.
8361 (YYCDEBUG): Adjust.
8362 Use it instead of cdebug_.
8363 (Parser::debug_stream, Parser::set_debug_stream): New.
8364 (Parser::symprint_): Define cdebug_ for temporary backward
8365 compatibility.
8366 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
8367 debug_stream ().
8368
68e11668
AD
83692004-11-17 Akim Demaille <akim@epita.fr>
8370
8371 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
8372 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
8373 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
8374 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
8375
97cbc73e
PE
83762004-10-27 Paul Eggert <eggert@cs.ucla.edu>
8377
8378 * data/glr.c (yyloc_default): Remove; not used.
8379 Problem reported by Frank Heckenbach.
8380
e342c3be
AD
83812004-10-25 Akim Demaille <akim@epita.fr>
8382
8383 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
8384 Introduce another definition to address simple location arrays.
8385 (yyGLRStack): New member: yyerror_range.
8386 (yyrecoverSyntaxError, yyparse): Update it.
8387 (yyrecoverSyntaxError): Use it when shifting the error token to
8388 have an accurate range, equivalent to the one computed by both
8389 yacc.c and lalr1.cc.
8390 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
8391 that column numbers start at column 0, as per GNU Coding
8392 Standards, the others tests, and the doc.
8393 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
8394 Adjust to the above change (first column is 0).
8395 And adjust the location of the "<error>", now covering the whole
8396 line.
8397
93602feb 83982004-10-22 Akim Demaille <akim@epita.fr>
04098407 8399 and Paul Eggert <eggert@cs.ucla.edu>
93602feb
PE
8400
8401 Remove some arbitrary limits on goto numbers and relations.
8402 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
8403 initial values, since they're never used.
8404 (set_goto_map): ngotos is now unsigned, so test for overflow
8405 by seeing whether it wraps around to zero.
8406 * src/lalr.h (goto_number): Now size_t, not short int.
8407 (GOTO_NUMBER_MAXIMUM): Remove.
8408 * src/relation.c (relation_print, traverse, relation_transpose):
8409 Check for END_NODE rather than looking at sign.
8410 * src/relation.h (END_NODE): New macro.
8411 (relation_node): Now size_t, not short int.
8412
dba08b04
PE
84132004-10-22 Paul Eggert <eggert@cs.ucla.edu>
8414
8415 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
8416 keyword, not an identifier. Problem reported by Baron Schwartz in
8417 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
8418
df09ef2e
AD
84192004-10-11 Akim Demaille <akim@epita.fr>
8420
8421 * src/symtab.c (symbol_check_alias_consistency): Also check
8422 type names, destructors, and printers.
8423 Reported by Alexandre Duret-Lutz.
8424 Recode the handling of associativity and precedence in terms
8425 of symbol_precedence_set.
8426 Accept no redeclaration at all, not even equal to the previous
8427 value.
8428 (redeclaration): New.
8429 Use it to factor redeclaration complaints.
8430 (symbol_make_alias): Don't set the type of the alias, let
8431 symbol_check_alias_consistency do it as for other features.
8432 * src/symtab.h (symbol): Add new member prec_location, and
8433 type_location.
8434 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
8435 * tests/input.at (Incompatible Aliases): New.
8436
146bc99d
PE
84372004-10-09 Paul Eggert <eggert@cs.ucla.edu>
8438
8439 .cvsignore fixes to accommodate gnulib changes,
8440 and the practice of naming build directories "_build".
8441 * .cvsignore: Add "_*". Sort.
8442 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
8443 * m4/.cvsignore: Add "*_gl.m4".
8444
e503aa60
AD
84452004-10-06 Akim Demaille <akim@epita.fr>
8446
8447 * src/parse-gram.y (add_param): Fix the truncation of trailing
8448 spaces.
8449
b4a20338
AD
84502004-10-05 Akim Demaille <akim@epita.fr>
8451
8452 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
8453 whether the reducion was empty or not. This leaves room to
8454 improve the use of YYLLOC_DEFAULT in such a case.
8455 lalr1.cc is still experimental, so changing this is acceptable.
8456 And finally, there are probably not many users who changed the
8457 handling of locations in GLR, so changing is admissible too.
8458
8459 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
8460 empty reduction, set @$ to an empty location ending the previously
8461 stacked symbol.
8462 Adjust uses to make sure the code is triggered on empty
8463 reductions.
8464 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
8465 expected output: empty reductions have empty locations.
8466
f85a5e6f
AD
84672004-09-29 Akim Demaille <akim@epita.fr>
8468
8469 * data/lalr1.cc: Move towards a more standard C++ coding style
8470 for templates: Class < T > -> Class<T>.
8471
b203fc2c
AD
84722004-09-29 Akim Demaille <akim@epita.fr>
8473
8474 * data/lalr1.cc: Reinstall the former ctor, for sake of
8475 compatibility, but warn it will be removed.
8476 Move towards a more standard C++ coding style (i.e., type *var ->
8477 type* var).
8478
5b7e1e73
PE
84792004-09-27 Paul Eggert <eggert@cs.ucla.edu>
8480
3fee967f
PE
8481 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
8482 since it's less likely to work if NULs are involved in the future.
5b7e1e73 8483
0dcca5c2
AD
84842004-09-27 Akim Demaille <akim@epita.fr>
8485
8486 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
8487
6dde1c82
AD
84882004-09-27 Akim Demaille <akim@epita.fr>
8489
8490 * data/lalr1.cc (b4_parse_param_decl_1): New.
b203fc2c 8491 (b4_parse_param_decl): Use it to have different names between attribute
6dde1c82
AD
8492 and argument names.
8493 (b4_cc_constructor_call): Likewise.
8494
b233d555
AD
84952004-09-24 Akim Demaille <akim@epita.fr>
8496
8497 * src/parse-gram.y (add_param): Strip the leading and trailing
8498 blanks from a formal argument declaration.
8499 (YY_LOCATION_PRINT): New.
8500
619404e3
AD
85012004-09-24 Akim Demaille <akim@epita.fr>
8502
8503 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
8504 after the location.
8505
dd8d9022
AD
85062004-09-24 Akim Demaille <akim@epita.fr>
8507
8508 * doc/bison.texinfo (Table of Symbols): Sort.
8509
0092f063
AD
85102004-09-21 Akim Demaille <akim@epita.fr>
8511
8512 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
8513 the useless parentheses.
8514 Suggested by Paul Eggert.
8515
451364ed
AD
85162004-09-20 Akim Demaille <akim@epita.fr>
8517
8518 Let the initial-action act on the look-ahead, and use it for the
8519 "initial push" (corresponding to an hypothetical beginning-of-file).
8520 And let lalr1.cc honor %initial-action.
8521
8522 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
8523 example.
8524 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
8525 (Parser::Parser): Remove the ctor that used to initialize it.
8526 (Parser::parse): Like in the other skeletons, issue the "starting
8527 parse" message before any action.
8528 Honor %initial-action.
8529 Initialize the stacks with the lookahead.
8530 * data/yacc.c: Let $$ and @$ in %initial-action designate the
8531 look-ahead.
8532 Push them in the stacks.
8533 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
8534
18d192f0
AD
85352004-09-20 Akim Demaille <akim@epita.fr>
8536
8537 * doc/bison.texinfo (Initial Action Decl): New.
8538
b8458aa5
AD
85392004-09-20 Akim Demaille <akim@epita.fr>
8540
8541 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
8542 clearer criterion to define it.
8543 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
8544 When reducing on an empty RHS, use the latest stacked location as
8545 location.
8546 yylloc is not always available.
8547 * data/glr.c: Likewise.
8548 Also, honor initial-actions.
8549
3fc16193
AD
85502004-09-20 Akim Demaille <akim@epita.fr>
8551
8552 * data/yacc.c (YY_LOCATION_PRINT): New.
8553 Define when we know YYLTYPE's structure, i.e., when the default
8554 YYLLOC_DEFAULT is used.
8555 * data/c.m4 (b4_yysymprint_generate): Use it.
8556 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
8557 value of the result.
8558 (error_start_): Replace with...
8559 (error_range_): this location array.
8560 This allows to replace code relying on the implementation of
8561 locations by portable code.
8562 * data/yacc.c (yylerrsp): Replace with...
8563 (yyerror_range): this.
8564 Every time a token is popped, update yyerror_range[0], to have an
8565 accurate location for the error token.
8566 * data/glr.c (YY_LOCATION_PRINT): New.
8567 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
8568 deference a pointer.
8569 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
8570 report the location in %printers.
8571
8572 * src/scan-skel.l: Instead of abort, report error messages to ease
8573 understanding skeleton scanning failures.
8574
ecfe33e7
AD
85752004-09-16 Akim Demaille <akim@epita.fr>
8576
8577 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
8578 (iterator, const_iterator): these, to be more in the C++ spirit.
8579 Also, return reverse iterators so that when displaying the stack
8580 we display its bottom first.
8581 (Parser::stack_print_, Parser::reduce_print_): Match the messages
8582 from yacc.c.
8583 We should probably use vector here though.
8584
1576d44d
AD
85852004-09-16 Akim Demaille <akim@epita.fr>
8586
8587 Have more complete shift traces.
8588
8589 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
8590 to report Shifts instead of ad hoc YYDPRINTF invocations,
8591 including for the error token.
8592 * data/lalr1.cc (symprint_): Output the location.
8593 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
8594 output the location within the %printer.
8595 Activate GLR tests, at least to make sure they compile properly.
8596 They still don't pass though.
8597 * tests/calc.at: Adjust expect verbose output, since now "Entering
8598 state..." is on a different line than the "Shifting" message.
8599
9c66f418
AD
86002004-09-08 Akim Demaille <akim@epita.fr>
8601
8602 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
8603 Bison directive from the Bison file to the invocation of this
8604 macro, so that these directives are passed to
8605 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
8606 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
8607 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
8608 the extra Bison directives instead of the whole series.
8609 Change the grammar so that there are recoverable errors, and
8610 unrecoverable errors. Now we can have the parser give up before
8611 consuming the whole input. As a result we now can observe that
8612 the lookahead is freed when needed.
8613 Change the parser source to parse argv[1] instead of a hard coded
8614 string.
8615 Simplify yylex, and give a value and location to EOF.
8616 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
8617 passed directives already coded in the file.
8618 Add some tests to check the location of "error".
8619 For some tests, the C++ parser is correct, and not yacc.c.
8620 For other tests, they provide different, but unsatisfying, values,
8621 so keep the C++ value so that at least one parser is "correct"
8622 according to the test suite.
8623 (Actions after errors): Remove, this is subsumed by the
8624 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
8625
52d5733f
AD
86262004-09-06 Akim Demaille <akim@epita.fr>
8627
8628 * data/lalr1.cc: Adjust the indentation of the labels.
04098407 8629 (Parser::pop): New.
52d5733f
AD
8630 Use it.
8631
a0e68930
AD
86322004-09-06 Akim Demaille <akim@epita.fr>
8633
8634 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
8635 argument, an informative message.
8636 Call YY_SYMBOL_PRINT.
8637 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
8638 * data/lalr1.cc (destruct_): Likewise.
8639 In addition, no longer depend on b4_yysymprint_generate and
8640 b4_yydestruct_generate to generate these functions, do it "by
8641 hand".
8642
e757bb10
AD
86432004-09-03 Akim Demaille <akim@epita.fr>
8644
8645 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
8646 invoked, yydestruct the lookahead.
8647 * tests/calc.at (Calculator $1): Update the expected lengths of
8648 traces: there is an added line for the discarded lookahead.
8649 * doc/bison.texinfo (Destructor Decl): Some rewording.
8650 Define "discarded" symbols.
8651
0fe1f06d
AD
86522004-09-02 Akim Demaille <akim@epita.fr>
8653
8654 * data/lalr1.cc (translate_, destruct_): No reason to be static.
8655
284acc8b
AD
86562004-09-02 Akim Demaille <akim@epita.fr>
8657
8658 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
8659 (YYDSYMPRINTF): Rename as...
8660 (YY_SYMBOL_PRINT): this.
8661 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
8662 two.
8663 Use it instead of direct symprint_ calls.
8664 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
8665 one.
8666
a5eb1ed2
AD
86672004-09-02 Akim Demaille <akim@epita.fr>
8668
b7c72fe1
AD
8669 * data/lalr1.cc (b4_yysymprint_generate): New.
8670 (symprint_): New member function, defined when YYDEBUG.
8671 Use it consistently instead of token/nterm debugging output by
8672 hand.
a5eb1ed2
AD
8673 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
8674 %printer calls to use cdebug_ when using lalr1.cc.
8675
417141dd
AD
86762004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
8677
8678 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
8679 with #ifdef YYDEBUG.
8680
2fa09258
AD
86812004-08-26 Akim Demaille <akim@epita.fr>
8682
8683 * doc/bison.texinfo (Implementing Loops): Rename as...
8684 (Implementing Gotos/Loops): this.
8685
9378b508
PE
86862004-08-13 Paul Eggert <eggert@cs.ucla.edu>
8687
8688 Adjust to latest gnulib.
8689 * bootstrap (gnulib_modules): Add xalloc-die.
8690 Set LC_ALL=C so that file names sort consistently.
8691 Prefer the gnulib copies of gettext.m4, glibc21.m4,
8692 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
8693 uintmax_t.m4, ulonglong.m4.
8694 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
8695 po.m4 since we are now using _gl.m4 instead.
8696
87a8ad5c
PE
86972004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
8698
8699 * src/scan-action.l: Remove. Scanning of semantic actions is
8700 handled in scan-gram.l.
8701
dca81a78
PE
87022004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
8703
8704 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
8705
8706 * src/location.h (struct): The file member is a uniqstr.
8707 (equal_boundaries): Use UNIQSTR_EQ for comparison.
8708
c9cbf7c5
PE
87092004-07-22 Paul Eggert <eggert@cs.ucla.edu>
8710
8711 Fix bug with non-%union parsers that have printers or destructors,
8712 which led to a Bison core dump. Reported by Peter Fales in
8713 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2fa09258 8714
c9cbf7c5
PE
8715 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
8716 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
8717 not to our own type.
8718 * src/output.c (symbol_destructors_output, symbol_printers_output):
8719 Don't assume %union.
8720 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
8721 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
8722 UNION-FLAG. All callers changed.
8723 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
8724 Use type char, not unsigned int, when declaring an array of char;
8725 this lets us remove a cast.
8726 (Printers and Destructors): Add non-%union test cases.
8727
fa7e68c3
PE
87282004-06-21 Paul Eggert <eggert@cs.ucla.edu>
8729
8730 * doc/bison.texinfo: Minor editorial changes, mostly to the new
8731 GLR writeups. E.g., avoid frenchspacing and the future tense,
8732 change "lookahead" to "look-ahead", and change "wrt" to "with
8733 respect to".
2fa09258 8734
fa7e68c3
PE
87352004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8736
8737 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
8738 New sections, split off from the GLR Parsers section. Put the new
8739 Simple GLR Parser near the start of the GLR section, for clarity.
8740 Rewrite connective text.
8741
99a9344e
PE
87422004-06-21 Frank Heckenbach <frank@g-n-u.de>
8743
8744 * doc/bison.texinfo (Simple GLR Parsers): New section.
8745
8dd162d3
PE
87462004-06-21 Paul Eggert <eggert@cs.ucla.edu>
8747
8748 * NEWS, TODO, doc/bison.texinfo:
8749 Use "look-ahead" instead of "lookahead", to be consistent.
8750 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
8751 while we're fixing "look-ahead".
8752 * src/conflicts.c (shift_set): Renamed from shiftset.
8753 (look_ahead_set): Renamed from lookaheadset.
8754 * src/print.c: Likewise.
8755 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
8756 name for "lookahead".
8757 (report_types, usage): Likewise.
8758 * src/getargs.h (report_look_ahead_tokens): Renamed from
8759 report_lookaheads.
8760 * src/lalr.c (compute_look_ahead_tokens): Renamed from
8761 compute_lookaheads.
8762 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
8763 (look_ahead_tokens_print): Renamed from lookaheads_print.
8764 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
8765 state_rule_lookaheads_print.
8766 * src/state.h: Likewise.
8767 (reductions.look_ahead_tokens): Renamed from lookaheads.
8768 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
8769 AT_DATA_LOOKAHEADS_GRAMMAR.
8770
57a90331
PE
87712004-06-03 Paul Eggert <eggert@cs.ucla.edu>
8772
8773 * README: Update location of patched M4 distribution.
8774
8ed3234a
PE
87752004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
8776
8777 Don't assume the C++ compiler takes the same arguments as the C compiler
8778 (trivial change).
8779 * configure.ac (O0CXXFLAGS): New var.
8780 * tests/atlocal.in (CXXFLAGS): Use it.
8781
07971983
PE
87822004-05-29 Paul Eggert <eggert@cs.ucla.edu>
8783
8784 Fix some "make check" problems with C++ reported by
8785 Albert Chin-A-Young for Tru64 C++ in this thread:
8786 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
8787
8788 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
8789 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
8790 Output to a .cc file for C++, not to a .c file.
8791 * tests/calc.at (AT_CHECK_CALC): Likewise.
8792 * tests/regression.at (AT_CHECK_DANCER): Likewise.
8793 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
8794
29058652
PE
87952004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
8796
8797 * tests/calc.at, tests/actions.at: Workaround for SGI
8798 C++ compiler. (trivial change)
8799
62cb8a99
PE
88002004-05-27 Paul Eggert <eggert@cs.ucla.edu>
8801
fd418816
PE
8802 Spent a few hours checking out which prerequisite versions the
8803 current sources actually require. I went all the way back to
8804 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
8805 a seemingly endless set of combinations of versions more recent
8806 than that. The bottom line is that the current sources require
8807 fairly recent versions of the build tools, and it'll be some work
8808 to change this.
8809 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
8810 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
8811 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
8812 Add comments explaining why those particular versions are
8813 currently needed.
2fa09258 8814
62cb8a99
PE
8815 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
8816 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
161a71f3 8817 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
62cb8a99
PE
8818
8819 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
8820 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
8821
caa52c10
PE
88222004-05-26 Paul Eggert <eggert@cs.ucla.edu>
8823
8824 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
8825 0.11.5. Suggested by Bruno Haible.
8826 * bootstrap: Remove gettext version checking.
8827
8828 * doc/bison.texinfo (Decl Summary): Also mention that %union
8829 can depend on prerequisite types. Problem reported by Tim
8830 Van Holder.
8831
4bfd5e4e
PE
88322004-05-25 Paul Eggert <eggert@cs.ucla.edu>
8833
2cef3017
PE
8834 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
8835 * README-alpha: Don't tell people not to package this.
8836
b9c85d5c
PE
8837 * bootstrap: Don't assume $(...) works; use `...` instead.
8838 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
8839 gettext better.
8840
4bfd5e4e
PE
8841 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
8842 put into the -d output file, and mention what to do if YYSTYPE is
8843 defined as a macro.
8844
6a36ff94
PE
88452004-05-24 Paul Eggert <eggert@cs.ucla.edu>
8846
6712933e
PE
8847 Undo change made earlier today: it caused autopoint to not bring
8848 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
8849 autopoint's.
8850
8851 * bootstrap: Check that gettext version matches what's in
8852 configure.ac. Warn users to ignore robots.txt ERROR 404.
8853 * bootstrap: Undo today's earlier change (logged below).
8854 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
b9c85d5c 8855
6a36ff94
PE
8856 The gettext version checking is causing more trouble than it's
8857 curing; remove it. Problem reported by Paul Hilfinger.
8858
8859 * bootstrap: Issue a warning that one can expect a message
8860 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
8861 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
8862
209ea708
PE
88632004-05-23 Paul Eggert <eggert@cs.ucla.edu>
8864
8865 Ensure that the C++ compiler used for testing actually works on a
8866 simple test program; if not, skip the C++-related tests. Problem
8867 reported by Vin Shelton in:
161a71f3 8868 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
209ea708
PE
8869
8870 * m4/cxx.m4: New file.
8871 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
8872 * tests/atlocal.in (BISON_CXX_WORKS): Add.
8873 * tests/local.at (AT_COMPILE_CXX): Use it.
8874
41ca2549
PE
88752004-05-21 Paul Eggert <eggert@cs.ucla.edu>
8876
383e69dc
PE
8877 * data/glr.c (yylloc): Output this macro even if locations are not
8878 being generated, as the GLR parser needs it even in that case.
8879 Problem reported by Troy A. Johnson
8880 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
8881
41ca2549
PE
8882 * configure.ac (AC_INIT): Update to 1.875e.
8883
e476c87d
PE
88842004-05-21 Paul Eggert <eggert@cs.ucla.edu>
8885
8886 * NEWS: Version 1.875d.
8887 * configure.ac (AC_INIT): Likewise.
8888 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
8889
8890 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
8891 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
8892 lalr1.cc runs afoul of the first, and the last two are no longer
8893 supported by GCC 3.4.0.
8894 * README: Mention GNU m4 1.4 or later; mention m4 patches.
8895 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
8896
233a88ad
PE
88972004-05-06 Paul Eggert <eggert@cs.ucla.edu>
8898
8899 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
8900 unsigned int, for compatibility with latest gnulib hash module.
8901 * src/state.c (state_hash, state_hasher): Likewise.
8902 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
8903 * src/uniqstr.c (hash_uniqstr): Likewise.
e476c87d 8904
12ffdd28
PE
89052004-05-03 Paul Eggert <eggert@cs.ucla.edu>
8906
8907 * NEWS: Unescaped newlines are no longer allowed in char & strings.
8908
8909 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
8910 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
8911 character and string literals.
8912 (unexpected_end): New function.
8913 (unexpected_eof): Use it.
8914 (unexpected_newline): New function.
8915 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
8916 actions.
e476c87d 8917
12ffdd28
PE
8918 * NEWS: Document %expect-rr.
8919
8920 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
8921 Fix typo by replacing $1 with $option.
8922 Remove more 'intl'-related files.
9668e2be 8923 Don't DEFUN AM_INTL_SUBDIR twice.
12ffdd28
PE
8924
8925 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
8926 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
8927 strtoul.c.
8928 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
8929 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
8930 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
8931 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
8932 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
8933 * src/.cvsignore: Add *.output.
8934
8935 * src/parse-gram.y: Put copyright notice inside %{ %} so it
8936 gets copied to the output file.
e476c87d 8937
1f65350a
PE
89382004-04-28 Paul Eggert <eggert@twinsun.com>
8939
8940 Get files from the gnulib and po repositories, instead of relying
8941 on them being in our CVS. Upgrade to latest versions of gnulib
8942 and Automake.
8943
8944 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
8945 * bootstrap: Bootstrap from gnulib and po repositories.
8946 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
8947 * README-cvs: Document these changes. Remove version numbers from
8948 mentions of build tools, since they change so often. Mention Flex.
8949
8950 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
8951 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
8952 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
8953 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 8954 does this for us.
12ffdd28
PE
8955 (AC_ISC_POSIX): Remove; we no longer support this
8956 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
8957 (AC_HEADER_STDC): Remove: we now assume C89 or better.
8958 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
8959 Do not check for C89 headers, except for locale.h which is used
8960 by the Yacc library and must port to K&R hosts.
8961 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
8962 Do not check for C89 functions, except for setlocale which is
8963 used by the Yacc library.
8964 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
8965 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
8966 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
8967 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
8968 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
8969 AM_GNU_GETTEXT): Remove; now done by:
8970 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
8971 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
8972 for us.
8973
8974 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
8975 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
8976 Define to empty, as gnulib.mk will do the rest for us.
8977 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
8978 for us.
8979 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
8980 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
8981
8982 * src/files.c: Include gnulib's xstrndup.h.
8983
8984 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
8985 (REALLOC): Use xnrealloc, for likewise.
8986 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
8987 (strnlen, memrchr): Remove decls; functions no longer used.
8988 Include <stpcpy.h>.
8989
8990 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
8991 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
8992 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
8993 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
8994 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
8995 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
8996 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
8997 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
8998 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
8999 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
9000 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
9001 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
9002 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
9003 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
9004 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
9005 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
9006 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
9007 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
9008 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
9009 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
9010 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
9011 Remove, as these files are now generated automatically
9012 by bootstrap or automake.
9013
9014 * po/ChangeLog: Remove: all but one entry was a duplicate
9015 of this file, and I moved that 2000-11-02 entry here.
9016
9017 * config/.cvsignore: Add Makefile, depcomp, install-sh.
9018 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
9019 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
9020 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
9021 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
9022 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
9023 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
9024 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
9025 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
9026 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
9027 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
9028 xstrndup.h.
9029 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
9030 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
9031 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
9032 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
9033 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
9034 * src/.cvsignore: Remove *_.c.
9035
9036
9037 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
9038 support it. (The latest stable gzip doesn't.)
9039
90402004-04-27 Paul Eggert <eggert@twinsun.com>
9041
9042 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
9043 case, as stos_ is now used by destructors due to the 2004-02-09
9044 change.
9045
9046 Remove more K&R C support.
9047 * lib/libiberty.y (PARAMS): Remove. All uses removed.
9048 * lib/subpipe.c (errno): Remove decl.
9049 Include <stdlib.h> unconditionally.
9050 (EXIT_FAILURE): Remove macro.
9051 * src/complain.c (vfprintf, strerror): Remove.
9052 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
9053 unconditionally.
9054 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
9055 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
9056 (strchr, strspn, memchr): Remove decls.
9057 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
9058 unconditionally. Do not declare perror.
9059 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
9060 unconditionally.
9061
9062 * src/complain.c (_): Remove useless defn, as system.h defines this.
9063
9064 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
9065 with latest obstack.h.
9066 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
9067 to procedure types, as obstack.h now does that for us.
9068 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
9069
9070 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
9071 so that this include file can stand alone.
9072 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
9073 does this now. Include subpipe.h first after config.h, to
9074 test whether it can stand alone.
9075
9076 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
9077 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
9078 unused declaration.
9079
9080 * tests/synclines.at (%union synch line): Put a dummy member in
9081 the union, because empty unions aren't allowed in C. Caught
9082 by GCC 3.4.0.
9083
4f16766c
PE
90842004-04-13 Jim Meyering <jim@meyering.net>
9085
9086 * src/conflicts.c (conflicts_print): Correct format string typo:
9087 use `%%' to produce literal `%'. (trivial change)
9088
779e7ceb
PE
90892004-03-30 Paul Eggert <eggert@twinsun.com>
9090
9091 * src/getargs.c (version): Update copyright year to 2004.
9092
9093 * data/c.m4 (b4_int_type): Use 'short int' rather than
9094 'short', and similarly for 'long', 'unsigned', etc.
9095 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
9096 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
9097 yy_yypstack, yydumpstack): Likewise.
9098 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
9099 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
9100 Likewise.
9101 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
9102 yy_stack_print, yyparse): Likewise.
9103 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
9104 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
9105 * lib/bitset.c (bitset_print): Likewise.
9106 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
9107 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
9108 * lib/bitsetv.c (bitsetv_dump): Likewise.
9109 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
9110 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
9111 Likewise.
9112 * src/LR0.c (allocate_itemsets): Likewise.
9113 * src/gram.h (rule_number, rule): Likewise.
9114 * src/lalr.h (goto_number): Likewise.
9115 * src/nullable.c (nullable_compute): Likewise.
9116 * src/output.c (prepare_rules): Likewise.
9117 * src/relation.c (relation_print, relation_digraph): Likewise.
9118 * src/relation.h (relation_node): Likewise.
9119 * src/state.h (state_number, transitions, errs, reductions,
9120 struct state): Likewise.
9121 * src/symtab.h (symbol_number, struct symbol): Likewise.
9122 * src/tables.c (vector_number, tally, action_number,
9123 default_goto, goto_actions): Likewise.
9124 * tests/existing.at (GNU Cim Grammar): Likewise.
9125 * tests/regression.at (Web2c Actions): Likewise.
9126
9127 * src/output.c (muscle_insert_short_int_table): Renamed from
9128 muscle_insert_short_table. All uses changed.
9129
d6328241
PH
91302004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9131
9132 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
9133 (declaration): Replace expected_conflicts with expected_sr_conflicts.
9134 Add %expect-rr rule.
4f16766c 9135
d6328241
PH
9136 * src/scan-gram.l: Recognize %expect-rr.
9137
4f16766c 9138 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 9139 expected_conflicts.
4f16766c 9140 (expected_rr_conflicts): Declare.
d6328241
PH
9141
9142 * src/conflicts.c (expected_sr_conflicts): Rename from
9143 expected_conflicts.
9144 (expected_rr_conflicts): Define.
9145 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
9146 for GLR parsers.
9147 Use expected_sr_conflicts in place of expected_conflicts.
9148 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 9149
d6328241 9150 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 9151
1452af69
PE
91522004-03-08 Paul Eggert <eggert@gnu.org>
9153
9154 Add support for hex token numbers. Suggested by Odd Arild Olsen in
161a71f3 9155 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
1452af69
PE
9156
9157 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
9158 in lalr1.cc.
9159 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
9160 * src/scan-gram.l (scan_integer): New function.
9161 ({int}): Use it.
9162 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
9163 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
9164 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
9165 Say "long int", not "long", for uniformity with GNU style.
9166
006d217d
PE
91672004-02-25 Paul Eggert <eggert@twinsun.com>
9168
9169 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
9170 compilers. This fixes a problem with Intel's C++ compiler being
9171 chatty, reported by Guido Trentalancia in
161a71f3 9172 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
006d217d 9173
c2729758
ADL
91742004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
9175
9176 Support %destructor and merge error locations in lalr1.cc.
9177
9178 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
9179 (Parser::stos_): Define unconditionally.
9180 (Parser::destruct_): New method. Generate its body with
9181 b4_yydestruct_generate.
9182 (Parser::error_start_): New attribute.
9183 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
9184 token which are discarded.
9185 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
9186 error_start_ when erroneous token are discarded.
9187 (Parser::parse) <yyerrlab1>: Compute the location of the error
9188 token so that it covers all the discarded tokens.
9189 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
9190 it can be called with `%skeleton "lalr1.cc"', and do that.
9191
dd0e0635
PE
91922004-02-02 Paul Eggert <eggert@twinsun.com>
9193
9194 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
9195 $(top_srcdir)/lib and ../lib. This fixes a bug reported
9196 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
9197 There's no need to mention top_builddir since Automake does that
9198 for us.
9199 (INCLUDES): Remove, as Automake says it's obsolescent.
9200 Contents migrated into AM_CPPFLAGS as described above.
9201 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
9202
92032004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9204
9205 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
9206 (yyreportSyntaxError): Handle case where lookahead token is
9207 YYEMPTY.
9208
be16239b
PH
92092004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9210
9211 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
9212 resulting parsers are compilable with C++.
9213
5fa90832
PE
92142003-12-23 Paul Eggert <eggert@twinsun.com>
9215
9216 * config/depcomp, config/install-sh: Sync with Automake 1.8.
9217 * src/output.c (output_skeleton): Rename local var.
9218 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
9219 Bison tokens, as this runs afoul of the 2003-10-07 change that
9220 disallowed NUL bytes in character constants or string literals.
9221
9222 * tests/local.at: Require Autoconf 2.59's Autotest.
9223 * tests/testsuite.at: Don't include local.at, since we now assume
9224 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
9225 including it.
9226 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
9227 multiple inclusion warnings.
dd0e0635 9228
b165c324
AD
92292003-12-02 Akim Demaille <akim@epita.fr>
9230
9231 * doc/bison.texinfo (How Can I Reset the Parser): More about start
9232 conditions.
9233 From Bruno Haible.
9234
26e06a21
ADL
92352003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
9236
9237 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
9238
92ac3705
PE
92392003-10-07 Paul Eggert <eggert@twinsun.com>
9240
6a5ecb38
PE
9241 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
9242 if testsuite doesn't exist.
9243
92ac3705
PE
9244 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
9245 literals, unfortunately.
9246 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
9247 Complain about NUL bytes in character constants or string literals.
9248
91d2c560
PE
92492003-10-05 Paul Eggert <eggert@twinsun.com>
9250
9251 * NEWS: Don't document %no-default-prec, as it's still
9252 too experimental.
9253 * doc/bison.texinfo: Document %no-default-prec only if
9254 the defaultprec flag is set. Normally it's not.
9255
0cc3da3a
PE
92562003-10-04 Paul Eggert <eggert@twinsun.com>
9257
9258 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
9259 non-modifiable lvalue, instead of a modifiable one.
9260 * doc/bison.texinfo (Actions): Document that $$ can
9261 be assigned to. Do not claim that $$ and $N are
9262 array element references: user code should not rely on this.
9263
22fccf95
PE
92642003-10-01 Paul Eggert <eggert@twinsun.com>
9265
9266 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
9267 (grammar_declaration): Use it.
9268 * src/scan-gram.l: New token %no-default-prec.
9269 * tests/conflicts.at: Revamp tests to use %no-default-prec.
9270 * NEWS, doc/bison.texinfo: Document the above.
9271
fc8f2965
AD
92722003-10-01 Akim Demaille <akim@epita.fr>
9273
9274 VCG no longer supports long_straight_phase.
9275
9276 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
9277 * src/print_graph.c (print_graph): Adjust.
9278
39a06c25
PE
92792003-09-30 Frank Heckenbach <frank@g-n-u.de>
9280 and Paul Eggert <eggert@twinsun.com>
9281
9282 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
9283 Table of Symbols): Document %default-prec.
9284 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
9285 (grammar_declaration): Set default_prec on %default-prec.
9286 * src/scan-gram.l (%default-prec): New token.
9287 * src/reader.h (default_prec): New flag.
9288 * src/reader.c: Likewise.
9289 (packgram): Handle it.
9290 * tests/conflicts.at (%default-prec without %prec,
9291 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 9292
39a06c25
PE
92932003-09-30 Paul Eggert <eggert@twinsun.com>
9294
9295 * tests/testsuite.at: Include local.at, not input.at, fixing
9296 a typo in the 2003-08-25 patch.
9297
62b6aef9
AD
92982003-08-27 Akim Demaille <akim@epita.fr>
9299
9300 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
9301 GCC warnings.
9302
89e1cc61
AD
93032003-08-26 Akim Demaille <akim@epita.fr>
9304
9305 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
9306 "<\#" to avoid magic from Gnus when posting parts of this script.
9307
a08460b0
AD
93082003-08-26 Akim Demaille <akim@epita.fr>
9309
9310 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
9311 (Parser::parse): here.
9312 Adjust: nerrs and errstatus is now replaced by...
9313 (Parser::nerrs_, Parser::errstatus_): New.
9314
603f1cfd
AD
93152003-08-25 Akim Demaille <akim@epita.fr>
9316
9317 * config/announce-gen, Makefile.cfg: New.
9318 * Makefile.am: Adjust.
9319 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
9320 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
9321
cd3684cf
AD
93222003-08-25 Akim Demaille <akim@epita.fr>
9323
9324 When reducing initial empty rules, Bison parser read an initial
9325 location that is not defined. This results in garbage, and that
9326 affects Bison's own parser. Therefore we need (i) to extend Bison
9327 to support a means to initialize this location, and (ii) to use
9328 this CVS Bison to fix CVS Bison's parser.
9329
9330 * src/reader.h, reader.c (epilogue_augment): Remove, replace
9331 with...
9332 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
9333 * src/parse-gram.y: Adjust.
9334 (%initial-action): New.
9335 (%error-verbose): Since we require CVS Bison, there is no reason
9336 not to use it.
9337 * src/scan-gram.l: Adjust.
9338 * src/Makefile.am (YACC): New, to make sure we use our own parser.
9339 * data/yacc.c (yyparse): Use b4_initial_action.
9340
4e03e201
AD
93412003-08-25 Akim Demaille <akim@epita.fr>
9342
9343 * doc/bison.texinfo: Don't promote stdout for error messages.
9344
8c182d05
AD
93452003-08-25 Akim Demaille <akim@epita.fr>
9346
9347 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
9348 From Alexandre Duret-Lutz.
9349
6a60c4cf
PE
93502003-08-25 Akim Demaille <akim@epita.fr>
9351
9352 Version 1.875c.
9353
25f66e1a
AD
93542003-08-25 Akim Demaille <akim@epita.fr>
9355
9356 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
9357 Use them.
9358
5348bfbe
AD
93592003-08-25 Akim Demaille <akim@epita.fr>
9360
9361 * data/lalr1.cc (Parser::reduce_print_): New.
9362 Use it.
9363
47301314
AD
93642003-08-25 Akim Demaille <akim@epita.fr>
9365
9366 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
9367 error recovery loops. This patch is based on
161a71f3 9368 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
47301314
AD
9369 Also, augment the similarity between lalr1.cc and yacc.c.
9370 Note: the locations of error recovery rules are not correct yet.
9371
9372 * data/lalr1.cc: Comment changes to augment the similarity between
9373 lalr1.cc and yacc.c.
9374 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
9375 (yyerrlab1): Remove, but where it used to be (now the bottom part of
9376 yyerrlab), when hitting EOF, pop the whole stack here instead of
9377 merely falling thru the default error handling mechanism.
9378 (yyerrorlab): New label, with the old contents of YYERROR,
9379 plus the following change: pop the stack of rhs corresponding
9380 to the production that invoked YYERROR. That is how Yacc
9381 behaves (required by POSIX).
9382 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
9383 fail.
9384
1f7a61ff
AD
93852003-08-25 Akim Demaille <akim@epita.fr>
9386
9387 Tune local.at so that people can "autom4te -l autotest calc.at -o
9388 calc" for instance, to extract a sub test suite.
9389
9390 * tests/testsuite.at: Move the initialization, Autotest version
9391 requirement, and AT_TESTED invocation into...
9392 * tests/local.at: here.
9393 * tests/testsuite.at: Include it for compatibility with Autoconf
9394 2.57.
9395 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
9396 be ignore.
9397
327b5b56
PE
93982003-08-04 Paul Eggert <eggert@twinsun.com>
9399
9400 Rework code slightly to avoid gcc -Wtraditional warnings.
9401 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
9402 The returned value is now stored in *YY0. All callers changed.
9403 * src/output.c (merge_output): Adjust to the above change.
9404
0051e3ed
PE
94052003-07-26 Paul Eggert <eggert@twinsun.com>
9406
9407 * data/glr.c (YYASSERT): New macro.
9408 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
9409 yyresolveStates, yyprocessOneStack):
9410 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
9411 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 9412
137437c6
PE
94132003-07-25 Paul Eggert <eggert@twinsun.com>
9414
5b620e06
PE
9415 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
9416 for portability to K&R C (after ansi2knr, presumably). See
161a71f3 9417 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5b620e06
PE
9418 by Frank Heckenbach, though I have omitted the structure-initialization
9419 part of his glr-knr.diff patch since I recall that the Portable
9420 C Compiler didn't require that change.
9421
137437c6
PE
9422 Let the user specify how to allocate and free memory.
9423 Derived from a suggestion by Frank Heckenbach in
161a71f3 9424 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
137437c6
PE
9425 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
9426 All uses of free, malloc, realloc changed to use these macros,
9427 and unnecessary casts removed.
9428 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
9429
ddb85ca5
PE
94302003-07-06 Matthias Mann <MatthiasMann@gmx.de>
9431
9432 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
9433 use s.empty() rather than s == "" to test for empty string; see
161a71f3 9434 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
ddb85ca5
PE
9435 (trivial change)
9436
39910e09
AD
94372003-06-25 Akim Demaille <akim@epita.fr>
9438
9439 * config/depcomp, config/install-sh: Update from masters.
9440
0ae99356
PE
94412003-06-20 Paul Eggert <eggert@twinsun.com>
9442
9443 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
9444 and return properly parenthesized result.
9445 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
9446 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9447 Remove unnecessary parentheses from uses.
9448 * doc/bison.texinfo (Location Default Action): Describe the
9449 conventions for parentheses.
9450
cd05d13c
PE
94512003-06-19 Paul Eggert <eggert@twinsun.com>
9452
81fd08ca
PE
9453 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
9454 yyreportTree): Do not assume that size_t is the same width as int,
9455 when printing sizes. Print sizes using an unsigned format.
9456 Problem reported by Frank Heckenbach in
161a71f3 9457 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 9458
cd05d13c
PE
9459 Port to Forte Developer 7 C compiler.
9460 * data/glr.c (struct YYLTYPE): If locations are not being used,
9461 declare a single dummy member, as empty structs do not conform
9462 to the C standard.
9463 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
9464 the Forte Developer 7 C compiler complains that end-of-loop
9465 code is not reached.
9466
4dcf140b
PE
94672003-06-17 Paul Eggert <eggert@twinsun.com>
9468
9469 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
9470 avoid warnings from picky compilers about redefinition of PARAMS.
9471
8dd76bee
PE
94722003-06-17 Paul Eggert <eggert@twinsun.com>
9473
9474 Version 1.875b.
9475
9476 * NEWS: Document 1.875b.
9477
9478 * lib/bbitset.h: Do not include config.h; that's the includer's job.
9479 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
9480 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
9481 Don't use 'index' in comments, as it's a builtin fn on some hosts.
9482 * lib/bitset_stats.c: Include gettext.h unconditionally, as
9483 per recent gettext manual's suggestion.
9484 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
9485 Use prototypes, not old-style definitions.
9486 * lib/lbitset.c (lbitset_unused_clear): Likewise.
9487 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
9488 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
9489 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
9490 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
9491 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
9492 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
9493 vbitset_or_and_cmp, vbitset_copy): Likewise.
9494
9495 * lib/libiberty.h: Do not include config.h; that's the includer's job.
9496 Do not include <stdlib.h>.
9497 (PARAMS): Define unconditionally for C89.
9498 (ATTRIBUTE_NORETURN): Remove.
9499 (ATTRIBUTE_UNUSED): Define unconditionally.
9500
9501 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
161a71f3 9502 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8dd76bee
PE
9503 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
9504 * lib/vbitset.c, lib/vbitset.h: New files.
9505 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
9506 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
9507 from libbitset.
9508
9509 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
9510 `How Can I Reset @code{yyparse}', since texinfo does not allow
9511 arbitrary @ in node names.
9512
9513 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
9514 shouldn't be needed according to the gettext 0.12.1 documentation
9515 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 9516 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 9517 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 9518 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 9519
8dd76bee
PE
9520 * lib/.cvsignore: Add stdbool.h.
9521 * m4/.cvsignore: Add nls.m4, po.m4.
9522
9523 Upgrade to CVS gnulib.
9524 * stdbool_.h: File renamed from stdbool.h.in.
9525 * configure.ac (AM_STDBOOL_H): Invoke this instead of
9526 AC_HEADER_STDBOOL.
9527 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
9528 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
9529 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
9530 (MOSTLYCLEANFILES): New var.
9531 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
9532 (stdbool.h): New rule.
9533 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
9534 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
9535 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
9536 m4/quote.m4: Upgrade to today's gnulib.
9537
9538 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
9539 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
9540 the tests right now.
9541 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
9542 yyerror are declared before use; C99 requires this.
9543
25005f6a
PH
95442003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9545
9546 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
9547 first.
9548 (yyrecoverSyntaxError): Correct the logic for setting and testing
9549 yyerrState.
9550 Correct comment on handling EOF.
9551 Allow states with only a default reduction, rather than failing
8dd76bee 9552 (I can't quite reconstruct why these were not allowed before).
25005f6a 9553
137437c6 9554 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 9555 buffer overruns, corrupting state.
8dd76bee
PE
9556
9557 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
9558 definition.
9559 * src/reader.h (max_left_semantic_context): New variable declaration.
9560 * src/scan-gram.l (max_left_semantic_context): Define.
9561 (handle_action_dollar): Update max_left_semantic_context.
9562 * data/glr.c (YYMAXLEFT): New definition.
9563 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
9564 (yyresolveAction): Ditto.
9565
9566 Fixes to problems with location handling in GLR parsers reported by
9567 Frank Heckenbach (2003/06/05).
9568
9569 * data/glr.c (YYLTYPE): Make trivial if locations not used.
9570 (YYRHSLOC): Add parentheses, and define only if locations used.
9571 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
9572 locations not used.
9573 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
9574 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 9575
25005f6a
PH
9576 * tests/cxx-type.at: Exercise location information; update tests
9577 to differentiate output with and without locations.
8dd76bee 9578 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
9579 because default YYLTYPE not yet defined.
9580 Change semantic actions to compute strings, rather than printing
9581 them directly (to test proper passing of semantics values). Change
9582 output to prefix notation and update test data and expected results.
9583 (yylex): Track locations.
9584 (stmtMerge): Return value rather than printing, and include arguments
9585 in value.
8dd76bee 9586
711f40b7
PE
95872003-06-03 Paul Eggert <eggert@twinsun.com>
9588
9589 Avoid warnings generated by GCC 2.95.4 when Bison is
9590 configured with --enable-gcc-warnings.
9591 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
9592 yy::]b4_parser_class_name[::translate_,
9593 yy::Stack::operator[] (unsigned),
9594 yy::Stack::operator[] (unsigned) const,
9595 yy::Slice::operator[] (unsigned),
9596 yy::Slice::operator[] (unsigned) const):
9597 Rename local vars to avoid warnings.
9598 * tests/glr-regression.at (Improper handling of embedded actions
9599 and $-N in GLR parsers): Remove unused local variable from yylex.
9600 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
9601 (void) as arg when not pure, since we now assume C89 when building
9602 Bison. Pacify GCC by using parameter.
9603
ac695f7d
PE
96042003-06-02 Paul Eggert <eggert@twinsun.com>
9605
9606 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
9607 yy::Location::lines, yy::Location::columns): Rename arguments
9608 to avoid shadowing; this removes a warning generated by GCC 3.3.
9609
26ec81e0
PE
96102003-06-01 Paul Eggert <eggert@twinsun.com>
9611
9612 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
9613 to g++, as GCC 3.3 complains if you do it.
9614 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
9615 everything that WARNING_CFLAGS has, except omit warnings
9616 not suitable for C++.
9617 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
9618 * tests/atlocal.in (CXXFLAGS): New var.
9619 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
9620
9621 Fix a GLR parser bug I reported in February; see
161a71f3 9622 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
26ec81e0
PE
9623 The problem was that GLR parsers did not conform to the C standard,
9624 because actions like { $1 = $2 + $3; } expanded to expressions
9625 that invoked YYFILL in separate subexpressions, and YYFILL assigned
9626 to a local variable. The C standard says that expressions
9627 like (var = f ()) + (var = f ()) have undefined behavior.
9628 Another problem was that GCC sometimes issues warnings that
9629 yyfill and its parameters are unused.
9630
9631 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
9632 as possibly unused.
9633 (yyfill): New function.
9634 (YYFILL): Use it.
9635 (yyuserAction): Change type of yynormal to bool, so that it matches
9636 the new yyfill signature. Mark it as possibly unused.
9637
9638
9639 Follow up on a bug I reported in February, where a Bison-generated
9640 parser can loop. Provide a test case and a fix for yacc.c. I
9641 don't have a fix for lalr1.cc or for glr.c, unfortunately.
9642 The original bug report is in:
161a71f3 9643 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
26ec81e0
PE
9644
9645 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
9646 macro's size was becoming unwieldy.
9647 (yyerrlab): Do not discard an empty lookahead symbol, as this
9648 might destroy garbage.
9649 (yyerrorlab): New label, with the old contents of YYERROR,
9650 plus the following change: pop the stack of rhs corresponding
9651 to the production that invoked YYERROR. That is how Yacc
9652 behaves, and POSIX requires this behavior.
9653 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
9654 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
9655 Define 'alarm' to do nothing if unistd.h is not available.
9656 Add a new rule "exp: '-' error;" to test the above change to
9657 data/yacc.c. Use 'alarm' to abort any test taking longer than
9658 10 seconds, as it's probably looping.
9659 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
9660 Also, the new yacc.c generates two fewer diagnostics for an
9661 existing test.
9662
d0829076
PE
96632003-05-24 Paul Eggert <eggert@twinsun.com>
9664
c6ae27df
PE
9665 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
9666 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
9667 This fixes a problem reported by John Bowman when the Compaq/HP
9668 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
9669 -ansi -Wall -gall).
9670 * data/yacc.c (union yyalloc): Likewise.
9671 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 9672
d0829076
PE
9673 Switch from 'int' to 'bool' where that makes sense.
9674
9675 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
9676 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
9677 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
9678 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
9679 Return or accept bool, not int. All callers changed.
9680 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
9681 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
9682 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
9683 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
9684 bitset_or_and_cmp_): Likewise.
9685 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
9686 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
9687 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
9688 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
9689 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
9690 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
9691 bitset_stats_or_and_cmp): Likewise.
9692 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
9693 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
9694 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
9695 ebitset_xor_cmp): Likewise.
9696 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
9697 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
9698 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
9699 lbitset_xor_cmp): Likewise.
9700 * lib/bbitset.h: Include <stdbool.h>.
9701 (struct bitset_vtable): The following members now return bool, not
9702 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
9703 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
9704 or_and_cmp).
9705 * src/conflicts.c (count_rr_conflicts): Likewise.
9706 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
9707 All uses changed.
9708 * lib/ebitset.c (ebitset_obstack_init): Likewise.
9709 * lib/lbitset.c (lbitset_obstack_init): Likewise.
9710 * src/getargs.c (debug_flag, defines_flag, locations_flag,
9711 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
9712 graph_flag): Likewise.
9713 * src/getargs.h (debug_flag, defines_flag, locations_flag,
9714 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
9715 graph_flag): Likewise.
9716 * src/output.c (error_verbose): Likewise.
9717 * src/output.h (error_verbose): Likewise.
9718 * src/reader.c (start_flag, typed): Likewise.
9719 * src/reader.h (typed): Likewise.
9720 * src/getargs.c (LOCATIONS_OPTION): New constant.
9721 (long_options, getargs): Use it.
9722 * src/lalr.c (build_relations): Use bool, not int.
9723 * src/nullable.c (nullable_compute): Likewise.
9724 * src/print.c (print_reductions): Likewise.
9725 * src/tables.c (action_row, pack_vector): Likewise.
9726 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
9727 * src/output.c (prepare): Use it.
9728 * src/output.c (token_definitions_output,
9729 symbol_destructors_output, symbol_destructors_output): Use string,
9730 not boolean integer, to keep track of whether to output separator.
9731 * src/print_graph.c (print_core): Likewise.
9732 * src/state.c (state_rule_lookaheads_print): Likewise.
9733
9734 * config/install-sh: Sync from automake 1.7.5.
9735
6b2584b7
PE
97362003-05-14 Paul Eggert <eggert@twinsun.com>
9737
9738 * src/parse-gram.y (rules_or_grammar_declaration): Require a
9739 semicolon after a grammar declaration, in the interest of possible
9740 future changes to the Bison input language.
9741 Do not allow a stray semicolon at the start of the grammar.
9742 (rhses.1): Allow one or more semicolons after any rule, including
9743 just before "|" as required by POSIX.
9744 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
9745 grammar.
9746
caf37a36
ADL
97472003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
9748
9749 %parse-param support for lalr1.cc.
9750
9751 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
9752 b4_cc_constructor_calls, b4_cc_constructor_call,
9753 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
9754 definitions.
9755 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
9756 parse-param arguments.
9757 (yy::b4_parser_class_name): Declare instance variables to
9758 hold parse-param arguments.
9759 * tests/calc.at: s/value/semantic_value/ because value clashes
9760 with a member of yy::b4_parser_class_name. Adjust C++ code
9761 to handle %parse-param. Enable %parse-param test in C++.
9762
3ab37077
PE
97632003-05-12 Paul Eggert <eggert@twinsun.com>
9764
9765 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
9766 English a bit. Fix fclose typo. Change "const char" to "char
9767 const", and use ANSI C rather than K&R for "main". Suggest
9768 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
9769 and suggest yy_switch_to_buffer.
9770
97712003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
9772
9773 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
9774 C89. This avoids a diagnostic on compilers that define __STDC__
9775 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
161a71f3 9776 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
163ab321 9777
e743727f
PE
97782003-05-03 Paul Eggert <eggert@twinsun.com>
9779
9780 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
9781 Do not overrun array bounds.
9782 This should fix a bug reported today by Olatunji Oluwabukunmi in
161a71f3 9783 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
e743727f 9784
916708d5
AD
97852003-04-29 Akim Demaille <akim@epita.fr>
9786
9787 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
9788 * src/getargs.c, src/getargs.h: here, as bool, not int.
9789 (nondeterministic_parser): New.
9790 * src/parse-gram.y, src/scan-gram.l: Support
9791 %nondeterministic-parser.
9792 * src/output.c (prepare): Use nondeterministic_parser instead
9793 of glr_parser where appropriate.
9794 * src/tables.c (conflict_row, action_row, save_row)
9795 (token_actions, token_actions, pack_vector): Ditto.
9796
a06ea4aa
AD
97972003-04-29 Akim Demaille <akim@epita.fr>
9798
9799 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
9800
211074ca
AD
98012003-04-29 Akim Demaille <akim@epita.fr>
9802
9803 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
9804 with %pure-parser and %locations to exercise the patch from Yakov
9805 Markovitch below.
9806
6175ffe3
PE
98072003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
9808
9809 * data/yacc.c: (b4_lex_param): Corrected for the case where
9810 %lex-param is provided and %pure-parser isn't.
9811
b1e95857
PE
98122003-04-27 Paul Eggert <eggert@twinsun.com>
9813
9814 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
161a71f3 9815 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
b1e95857
PE
9816 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
9817 if it is not defined.
9818 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
9819
acda9df6
PE
98202003-04-26 Paul Eggert <eggert@twinsun.com>
9821
3470c57b
PE
9822 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
9823 Declare to be of type suitable for the ninf value itself, not of
9824 type suitable for the corresponding table, since the latter might
9825 be unsigned but the ninf value might be negative. This fixes a
9826 bug reported by Alexandre Duret-Lutz in
161a71f3 9827 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3470c57b 9828
acda9df6
PE
9829 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
9830 invokes it. We shouldn't invoke it twice because it will attempt
9831 to put error.o in the archive twice. This fixes a glitch reported
9832 by Martin Mokrejs in
161a71f3 9833 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
acda9df6 9834
b5250f26
PE
98352003-04-21 Paul Eggert <eggert@twinsun.com>
9836
9837 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
9838 to gnulib.
9839
089ac0f1
PE
98402003-04-21 Yakov Markovitch <Markovitch@iso.ru>
9841
9842 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
9843 Fix obvious typo that results in uncompilable GLR parsers
9844 when both %pure-parser and %locations are used. (trivial change)
9845
5ededac6
PE
98462003-04-17 Paul Eggert <eggert@twinsun.com>
9847
1b8f2fff
PE
9848 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
9849 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
9850 Do not insert the expected token via unput, as this runs afoul
9851 of a POSIX-compatibility bug in flex 2.5.31.
9852 All uses changed to BEGIN the parent state,
9853 since we no longer insert the expected token via unput.
9854 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
9855 that is no longer emitted after the above change.
9856
5ededac6
PE
9857 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
9858 the first one. This change is from Paul Hilfinger, and it fixes
9859 regression reported by Werner Lemberg in
161a71f3 9860 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5ededac6
PE
9861
9862 (resolve_sr_conflict): Don't invoke state_errs_set
9863 unless one or more tokens have been explicitly made errors.
9864 Otherwise, the above change causes Bison to abort.
9865
9866 * tests/existing.at (GNU pic Grammar): New test case, taken from
9867 Lemberg's email.
9868
b8be9132
AD
98692003-03-31 Akim Demaille <akim@epita.fr>
9870
9871 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
9872
d423d460
AD
98732003-03-31 Akim Demaille <akim@epita.fr>
9874
9875 * src/output.c (prepare_symbols): Avoid trailing spaces in the
9876 output.
9877
c7e441b4
AD
98782003-03-31 Akim Demaille <akim@epita.fr>
9879
9880 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
9881 From Paul Hilfinger.
9882
231897ad
AD
98832003-03-29 Akim Demaille <akim@epita.fr>
9884
9885 * m4/error.m4: Do not put under dynamic conditions some code which
9886 expansion is under static control.
9887
5b066063
AD
98882003-03-29 Akim Demaille <akim@epita.fr>
9889
9890 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
9891
22a74fec
AD
98922003-03-29 Akim Demaille <akim@epita.fr>
9893
9894 * doc/bison.texinfo (Strings are Destroyed): New.
9895
0eee27e7
PE
98962003-03-13 Paul Eggert <eggert@twinsun.com>
9897
9898 * .cvsignore: Add configure.lineno.
9899 * src/.cvsignore: Add yacc.
9900 * tests/.cvsignore: Add testsuite.log.
9901 * doc/fdl.texi: Sync with latest FSF version.
9902
f61aad93
PE
99032003-03-12 Paul Eggert <eggert@twinsun.com>
9904
537636c7
PE
9905 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
9906 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
9907 cursor, instead of leaving it undefined. This fixes a bug
9908 reported by Tim Van Holder in
161a71f3 9909 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
537636c7
PE
9910 * tests/input.at (Torturing the Scanner): Test the scanner on
9911 an empty input file, which was Tim Van Holder's test case.
9912
9913 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
9914 <sys/resource.h> can be included, include sys/time.h and
9915 sys/times.h first, if available. This works around the SunOS
9916 4.1.4 porting bug reported by Bruce Becker in
161a71f3 9917 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
537636c7
PE
9918
9919 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
9920 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
9921 AC_HEADER_SYS_WAIT.
9922
f61aad93
PE
9923 Merge changes from gnulib. This was prompted because the CVS
9924 snapshot didn't build on Solaris 7 due to strnlen problems.
9925
9926 These changes need to be merged back into gnulib:
9927 * lib/hash.c: Include <stdbool.h> unconditionally.
9928 * m4/onceonly.m4 (m4_quote): New macro.
9929 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
9930 Quote AC_FOREACH variable-expansions properly.
9931 The 2003-01-03 obstack.h change also needs merging.
9932 {end of changes requiring merging}
5b066063 9933
f61aad93
PE
9934 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
9935 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
9936 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
9937 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
9938 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
9939 New files, imported from gnulib.
9940 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
9941 above.
9942
9943 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
9944 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
9945 gnulib sources.
9946
9947 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
9948 Add.
9949 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
9950 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
9951 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
9952 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
9953 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
9954 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
9955 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
9956 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
9957 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
9958 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
9959 (jm_PREREQ_ARGMATCH): Remove.
9960 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
9961 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
9962
9963 * src/system.h: Include <stdbool.h> unconditionally.
9964
9965 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
9966 assuming at least C89 in the bitset code for some time now.
9967
d2ffe116
AD
99682003-03-03 Akim Demaille <akim@epita.fr>
9969
9970 * ro.po: New.
9971
052826fd
AD
99722003-03-02 Akim Demaille <akim@epita.fr>
9973
9974 * doc/bison.texinfo (Table of Symbols): Reactivate the
9975 documentation for %lex-param, and %parse-param.
9976
c4749565
AD
99772003-03-02 Akim Demaille <akim@epita.fr>
9978
9979 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
9980 generate verbose error messages.
9981 Use the number of tokens as an upper bound in yytname, as it
9982 cannot be a non terminal.
9983
d5286af1
AD
99842003-03-02 Akim Demaille <akim@epita.fr>
9985
9986 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
9987 message.
9988
22e304a6
AD
99892003-03-02 Akim Demaille <akim@epita.fr>
9990
22e304a6
AD
9991 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
9992 Use them to exercise yycheck overrun.
9993 Based on Andrew Suffield's grammar.
9994
67a25fed
AD
99952003-03-02 Akim Demaille <akim@epita.fr>
9996
9997 Create tests/local.at for Bison generic testing macros.
9998
9999 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
10000 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
10001 This new file.
10002 * tests/calc.at (AT_CHECK_CALC): Adjust.
10003 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
10004 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
10005 * tests/local.at: here.
10006 (AT_COMPILE_CXX): Tags the tests using it as c++.
10007 Ignore the test if CXX is not functional.
10008
9c2b381f
PE
100092003-03-01 Paul Eggert <eggert@twinsun.com>
10010
10011 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
10012 not loc->end, since loc->end might contain garbage and this leads
10013 to undefined behavior on some platforms.
10014 (id_loc, token_start): Use (IF_LINTed) initial values that do not
10015 depend on *loc, so that the reader doesn't give the the false
10016 impression that *loc is initialized.
10017 (<INITIAL>"%%"): Do not bother setting code_start, since its value
10018 does not survive the return.
10019
0433ba88
AD
100202003-03-01 Akim Demaille <akim@epita.fr>
10021
10022 * src/scan-gram.l (code_start): Always initialize it when entering
10023 into yylex, as SC_EPILOGUE is activated *before* the corresponding
10024 yylex invocation. An alternative would be making it static, but
10025 then it starts with the second %%'s beginning, instead of its end.
10026
b305ea69
PE
100272003-02-28 Paul Eggert <eggert@twinsun.com>
10028
10029 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
10030 around a UnixWare 7.1.1 porting bug reported by John Hughes in
161a71f3 10031 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
b305ea69 10032
c3d25e01
PE
100332003-02-26 Paul Eggert <eggert@twinsun.com>
10034
10035 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
10036 Remove Sequent/Pyramid discussion (nobody uses them any more).
10037 Merge VMS and MS-DOS discussion; these ports may well be dead
10038 but let's keep mentioning them for now. Put <> around email
10039 addresses. Add copyright notice.
10040
c267ffbc
PE
100412003-02-24 Paul Eggert <eggert@twinsun.com>
10042
10043 * data/glr.c (yy_reduce_print): yylineno -> yylno,
10044 to avoid collision with flex use of yylineno.
10045 Problem reported by Bruce Lilly in
161a71f3 10046 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
c267ffbc
PE
10047 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
10048 * data/yacc.c (yy_reduce_print): Likewise.
10049
10050 * config/depcomp: Sync with Automake 1.7.3.
10051
f939fc12
AD
100522003-02-21 Akim Demaille <akim@epita.fr>
10053
10054 * data/lalr1.cc: Use temporary variables instead of casts to
10055 change integer types.
10056 Suggested by Paul Eggert.
10057
95923bd6
AD
100582003-02-21 Akim Demaille <akim@epita.fr>
10059
10060 * doc/bison.texinfo: Use "location" consistently to refer to @n,
10061 to avoid confusions with lalr1.cc's notion of Position.
10062 Suggested by Paul Eggert.
10063
2cdc240e
AD
100642003-02-20 Akim Demaille <akim@epita.fr>
10065
10066 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
10067 before initial_columns.
10068 (location.hh): Use consistent variable names when defining the
10069 operator<<.
10070 Use "last" so that we subtract from Positions, not from unsigned.
10071
5d003116
AD
100722003-02-20 Akim Demaille <akim@epita.fr>
10073
10074 * data/lalr1.cc (position.hh): New subfile, including the extended
10075 and Doxygen'ed documentation of class Position.
10076 (location.hh): Use it.
10077 Document a` la Doxygen.
ba1ecc07 10078 With the help of Benoit Perrot.
5d003116 10079
d02b25f9
AD
100802003-02-20 Akim Demaille <akim@epita.fr>
10081
10082 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
10083 AT_YACC_IF.
10084 Redefine AT_YYERROR_SEES_LOC_IF using it.
10085 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
10086 not defined.
10087 Don't use the location in yy::Parser::error_ and
10088 yy::Parser::print_ when not %locations.
10089 Activate more lalr1.cc tests.
10090
0d1c3a04
AD
100912003-02-19 Akim Demaille <akim@epita.fr>
10092
10093 * data/lalr1.cc: When displaying a line number, be sure to make it
10094 an int.
10095
60a777aa
AD
100962003-02-19 Akim Demaille <akim@epita.fr>
10097
10098 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
10099 Remove, useless.
10100 (YYABORT, YYACCEPT, YYERROR): New.
10101 * tests/calc.at: Renable the lalr1.cc test.
10102
0b86fc41
AD
101032003-02-19 Akim Demaille <akim@epita.fr>
10104
10105 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
10106 error recovery, mixing with/without pops and discarding of the
10107 lookahead.
10108 Exercise YYERROR.
10109 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
10110
da99a5dc
PE
101112003-02-17 Paul Eggert <eggert@twinsun.com>
10112
10113 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
10114 * tests/testsuite.at (AT_COMPILE): Use them.
10115 This fixes the testsuite problem reported by Robert Lentz in
161a71f3 10116 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
da99a5dc 10117
93b8c255
PE
101182003-02-12 Paul Eggert <eggert@twinsun.com>
10119
10120 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
10121 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
161a71f3 10122 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
93b8c255
PE
10123 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
10124 Check for malloc failure, for consistency with yacc.c.
10125 (yytname_size): Remove, for consistency with yacc.c.
10126
10127 The bug still remains in data/lalr1.cc, as I didn't have time
10128 to fix it there.
10129
7548fed2
AD
101302003-02-06 Akim Demaille <akim@epita.fr>
10131
10132 * configure.ac (GXX): Rename as...
10133 (CXX): this, to keep the original Autoconf semantics.
10134 Require 2.57.
10135 * data/lalr1.cc: Fix b4_copyright invocations.
10136 If YYDEBUG is not defined, don't depend upon name_ being defined.
10137 (location.hh): Include string and iostream.
10138 (Position::filename): New member.
10139 (Position::Position ()): New.
10140 (operator<< (Position)): New.
10141 (operator- (Position, int)): New.
10142 (Location::first, Location::last): Rename as...
10143 (Location::begin, Location::end): these, to mock the conventional
10144 iterator names.
10145 (operator<< (Location)): New.
10146 * tests/atlocal.in (CXX): New.
10147 * tests/testsuite.at (AT_COMPILE_CXX): New.
10148 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
10149 locations in a more synthetic way.
10150 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
10151 lalr1.cc is used.
10152 Adjust the C locations to match those from Emacs: first column is
10153 column 0.
10154 Change all the expected results.
10155 Conform to the GCS: simplify the locations when applicable.
10156 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
10157 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
10158 these CPP macros with the m4 macros new defined by...
10159 (AT_CHECK_PUSHDEFS): this, i.e.:
10160 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 10161 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
10162 New macros.
10163 (AT_CHECK_POPDEFS): Undefine them.
10164 (AT_CHECK_CALC_LALR1_CC): New.
10165 Use it for the first lalr1.cc test.
10166
43a176ef
AD
101672003-02-04 Akim Demaille <akim@epita.fr>
10168
10169 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
10170 Location as is defined.
10171
fc049e9c
AD
101722003-02-04 Akim Demaille <akim@epita.fr>
10173
10174 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
10175 name_ being defined.
10176
a737b216
PE
101772003-02-03 Paul Eggert <eggert@twinsun.com>
10178
10179 * src/gram.h (start_symbol): Remove unused decl.
10180
10181 Use more-consistent naming conventions for local vars.
10182
10183 * src/derives.c (derives_compute): Change type of local var from
10184 int to rule_number.
10185 * src/gram.c (grammar_rules_partial_print): Likewise.
10186 * src/print.c (print_core): Likewise.
10187 * src/reduce.c (reduce_grammar_tables): Likewise.
10188
10189 * src/gram.c (grammar_dump): Change name of item_number *
10190 local var from r to rp.
10191 * src/nullable.c (nullable_compute): Likewise.
10192
10193 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
10194
10195 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
10196 for symbol or symbol_number var.
10197 * src/reader.c (grammar_start_symbol_set): Likewise.
10198 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
10199 Likewise.
10200 * src/state.c (transitions_to): Likewise.
10201 * src/state.h: Likewise.
10202 * src/tables.c (symbol_number_to_vector_number): Likewise.
10203
10204 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
10205 char * var.
10206
10207 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
10208 var.
10209
10210 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
10211 var.
10212
10213 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
10214 Use str, not s, for char * var. Use ch, not c, for character var.
10215 Use size for size var.
10216
10217 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
10218 char * var.
10219 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
10220 uniqstr var.
10221 * src/uniqstr.h: Likewise.
10222
10223 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
10224 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
10225 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
10226 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
10227 param to have same name as that of enum, so that we don't use
10228 "s" to stand for a non-state.
10229
68e93ad5
AD
102302003-02-02 Akim Demaille <akim@epita.fr>
10231
10232 * src/scan-skel.l: Scan more than one inert character per yylex
10233 invocation.
10234
92898986
PE
102352003-02-01 Paul Eggert <eggert@twinsun.com>
10236
10237 Version 1.875a.
10238
1d9d5d71
PE
10239 * po/LINGUAS: Add ms.
10240
0435d061
AD
102412003-01-30 Akim Demaille <akim@epita.fr>
10242
10243 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
10244
6029a57f
PH
102452003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10246
10247 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
10248 of $1.
0435d061
AD
10249
10250 Changes in response to error report by S. Eken: GLR mode does not
6029a57f 10251 handle negative $ indices or $ indices in embedded rules correctly.
161a71f3 10252 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 10253
6029a57f
PH
10254 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
10255 (b4_rhs_location): Ditto.
0435d061 10256 (yyfill): New function to copy from stack tree into array
6029a57f 10257 incrementally.
0435d061
AD
10258 (yyuserAction): Modify to allow incremental move of semantic values
10259 to rhs array when in GLR mode.
10260 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
10261 as needed.
10262 Remove dummy use of yystack, as there is now a guaranteed use.
10263 (yydoAction): Modify to allow incremental move of semantic values
10264 to rhs array when in GLR mode.
10265 (yyresolveAction): Ditto.
10266 (yyglrShiftDefer): Update comment.
0435d061 10267 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
10268 (yyglrReduce): Ditto.
10269 (yydoAction): Ditto
0435d061 10270
6029a57f
PH
10271 * tests/glr-regr1.at: Rename to ...
10272 * tests/glr-regression.at: Add new regression test for the problems
10273 described above (adapted from S. Eken).
10274 Update copyright notice.
10275 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
10276 * tests/Makefile.am: Ditto.
10277
6cee6297
PE
102782003-01-28 Paul Eggert <eggert@twinsun.com>
10279
10280 * data/lalr1.cc: Do not use @output_header_name@ unless
10281 b4_defines_flag is set. This fixes two bugs reported by
10282 Tim Van Holder in
161a71f3
PE
10283 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
10284 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6cee6297 10285
b2a836b5
PE
102862003-01-21 Paul Eggert <eggert@twinsun.com>
10287
10288 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
10289 we don't need to worry about yyerrlab1 being reported as an
10290 "unused label" by non-GCC C compilers. The downside is that if
10291 locations are used then a couple of statements are duplicated each
10292 time YYERROR is invoked, but the upside is that the warnings
10293 should vanish.
10294 (yyerrlab1): Move code to YERROR.
10295 (yyerrlab2): Remove. Change uses back to yyerrlab1.
10296 This reverts some of the 2002-12-27 change.
10297
4196b931
PE
102982003-01-17 Paul Eggert <eggert@twinsun.com>
10299
10300 * src/output.c (symbol_printers_output): Fix typo that led
10301 to core dump. Problem reported by Antonio Rus in
161a71f3 10302 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
4196b931 10303
3ae831b4
AD
103042003-01-13 Akim Demaille <akim@epita.fr>,
10305 Quoc Peyrot <chojin@lrde.epita.fr>,
10306 Robert Anisko <anisko_r@lrde.epita.fr>
10307
10308 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
10309 when the stacks contain one element, as the loop would otherwise
10310 free the last state, and then use the top state (the one we just
10311 popped). This means that the initial elements will not be freed
10312 explicitly, as is the case in yacc.c; it is not a problem, as
10313 these elements have fake values.
10314
e3aa65c5
PE
103152003-01-11 Paul Eggert <eggert@twinsun.com>
10316
10317 * NEWS: %expect-violations are now just warnings, reverting
10318 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
10319 bootstrapping problem reported by Matthias Klose; see
161a71f3 10320 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
e3aa65c5
PE
10321 * src/conflicts.c (conflicts_print): Likewise.
10322 * tests/conflicts.at (%expect not enough, %expect too much,
10323 %expect with reduce conflicts): Likewise.
10324 * doc/bison.texinfo (Expect Decl): Document this. Also mention
10325 that the warning is enabled if the number of conflicts changes
10326 (not necessarily increases).
10327
10328 * src/getargs.c (version): Update copyright year.
10329
f0057011
AD
103302003-01-09 Akim Demaille <akim@epita.fr>
10331
10332 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
10333
1ee6d2a0
PE
103342003-01-08 Paul Eggert <eggert@twinsun.com>
10335
10336 * Makefile.maint (WGETFLAGS):
10337 New macro, containing "-C off" to disable proxy caches.
10338 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
10339 (rel-check): Use $(WGET) instead of wget.
10340
d4fd77c4
PE
103412003-01-06 Paul Eggert <eggert@twinsun.com>
10342
10343 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
10344 the GLR paper of Scott, Johnstone and Hussain.
10345
464c6927
PE
103462003-01-04 Paul Eggert <eggert@twinsun.com>
10347
d600ee67
PE
10348 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
10349 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
10350 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
10351 (EXTRA_LIBRARIES): New var, for liby.a.
10352 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
10353 (EXTRA_SCRIPTS): New var, for yacc.
10354
464c6927
PE
10355 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
10356 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
10357 Problem reported by Nelson H. F. Beebe.
10358
103592003-01-03 Paul Eggert <eggert@twinsun.com>
10360
10361 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
10362 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
10363 when compiling Bison 1.875's `bitset bset = obstack_alloc
10364 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
10365
10366 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
10367 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
10368 grow to a huge size with typical invocation.
d600ee67 10369
464c6927
PE
10370 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
10371 Use the pattern recommended by Autoconf 2.57, except also protect
10372 against double-definition.
10373 * src/system.h: Likewise.
10374 Portability issues reported by Nelson H. F. Beebe.
d600ee67 10375
464c6927
PE
10376 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
10377 All uses changed. Provide a definition in both C and C++.
10378 (yytrue, yyfalse): Define even if defined (__cplusplus).
10379
10380 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
10381 Reported by Nelson H. F. Beebe.
d600ee67 10382
464c6927
PE
10383 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
10384
0f42c7d5
PE
103852003-01-02 Paul Eggert <eggert@twinsun.com>
10386
10387 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
10388 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
10389 Bug reported by Nelson H. F. Beebe.
10390
dc546b0f
PE
103912003-01-01 Paul Eggert <eggert@twinsun.com>
10392
10393 * Version 1.875.
10394
2c09b6a7
PE
103952002-12-30 Paul Eggert <eggert@twinsun.com>
10396
10397 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
10398 Moved here from...
10399 (<INITIAL>","): Here. This causes stray "," to be treated
10400 more uniformly.
10401
dc546b0f 10402 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
10403 last brace in braced code when not in Yacc mode, for compatibility
10404 with Bison 1.35. This resurrects the 2001-12-15 patch to
10405 src/reader.c.
10406
10407 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
10408 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
10409
535c0f63
PE
104102002-12-28 Paul Eggert <eggert@twinsun.com>
10411
10412 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
10413 that of SYM's type. This fixes Debian bug 168069, reported by
10414 Thomas Olsson.
d600ee67 10415
963fcc17
PE
104162002-12-28 Paul Eggert <eggert@twinsun.com>
10417
10418 Version 1.75f.
10419
10420 Switch back to the Yacc style of conflict reports, undoing some
10421 of the 2002-07-30 change.
10422 * doc/bison.texinfo (Understanding): Use Yacc style for
10423 conflict reports. Also, use new way of locating rules.
10424 * src/conflicts.c (conflict_report):
10425 Renamed from conflict_report_yacc, removing the old
10426 'conflict_report'. Translate the entire conflict report at once,
10427 so that we don't assume that "," has the same interpretation in
10428 all languages.
10429 (conflicts_output): Use Yacc-style conflict report for each state,
10430 instead of our more-complicated style.
10431 (conflicts_print): Use Yacc-style conflict report, except print
10432 the input file name when not emulating Yacc.
10433 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
10434 Conflicted Reduction, %expect not enough, %expect too much,
10435 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
10436 * tests/existing.at (GNU Cim Grammar): Likewise.
10437 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
10438
10439 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
10440 fatal): Don't invoke fflush; it's not needed and it might even be
10441 harmful for stdout, as stdout might not be open.
10442 * src/reduce.c (reduce_print): Likewise.
10443
b1efe548
PE
104442002-12-27 Paul Eggert <eggert@twinsun.com>
10445
10446 Fix a bug where error locations were not being recorded correctly.
10447 This problem was originally reported by Paul Hilfinger in
161a71f3 10448 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
10449
10450 * data/yacc.c (yyparse): New local var yylerrsp, to record the
10451 top of the location stack's error locations.
10452 (yyerrlab): Set it. When discarding a token, push its location
10453 onto yylerrsp so that we don't lose track of the error's end.
10454 (yyerrlab1): Now is only the target of YYERROR, so that we can
10455 properly record the location of the action that failed. For GCC
10456 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
10457 GCC warning about yyerrlab1 being unused if YYERROR is unused.
10458 (yyerrlab2): New label, which yyerrlab now falls through to.
10459 Compute the error's location by applying YYLLOC_DEFAULT to
10460 the locations of all the symbols that went into the error.
10461 * doc/bison.texinfo (Location Default Action): Mention that
10462 YYLLOC_DEFAULT is also invoked for syntax errors.
10463 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10464 Error locations include the locations of all the tokens that were
10465 discarded, not just the last token.
d600ee67 10466
983c5c2c
PE
104672002-12-26 Paul Eggert <eggert@twinsun.com>
10468
b1efe548
PE
10469 * src/files.c: Include quote.h.
10470 (compute_output_file_names): Warn if we detect conflicting
10471 outputs to the same file. This should catch the misunderstanding
10472 exemplified by Debian Bug 165349, reported by Bruce Stephens..
10473
10474 * src/conflicts.c (conflicts_print): If the user specifies
10475 "%expect N", report an error if there are any reduce/reduce
10476 conflicts. This is what the manual says should happen.
10477 This fixes Debian bug 130890, reported by Anthony DeRobertis.
10478 * tests/conflicts.at (%expect with reduce conflicts): New test.
10479
983c5c2c
PE
10480 Don't use m4_include on relative file names, as it doesn't work as
10481 desired if there happens to be a file with that name under ".".
d600ee67 10482
983c5c2c
PE
10483 * m4sugar/version.m4: Remove; it was included but it wasn't used.
10484 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
10485 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
10486 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
10487 * src/output.c (output_skeleton): Use full path names when
10488 specifying a file to include; don't rely on include path, as
10489 it's unreliable when the working file contains a file with
10490 that name.
d600ee67 10491
983c5c2c
PE
104922002-12-25 Paul Eggert <eggert@twinsun.com>
10493
10494 Remove obsolete references to bison.simple and bison.hairy.
10495 Problem mentioned by Aubin Mahe in
161a71f3 10496 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
10497 * data/glr.c: Comment fix.
10498 * doc/bison.1: Remove references. Also, mention "yacc".
10499
10500 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
10501 with -g option.
10502
10503 * src/parse-gram.y (declaration): Use enum "report_states" rather
10504 than its numeric value 1.
10505
10506 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
10507 opening a new one. This fixes Debian bug 165349, reported by
10508 Bruce Stephens.
10509
23f2d9dc
PE
105102002-12-24 Paul Eggert <eggert@twinsun.com>
10511
10512 Version 1.75e.
10513
10514 * Makefile.maint (cvs-update): Don't assume that the shell
10515 supports $(...), as Solaris sh doesn't.
10516
10517 * src/parse-gram.y (lloc_default): Remove test for empty
10518 nonterminals at the end, since it didn't change the result.
10519
105202002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
10521
10522 If the user does not define YYSTYPE as a macro, Bison now declares it
10523 using typedef instead of defining it as a macro. POSIX requires this.
10524 For consistency, YYLTYPE is also declared instead of defined.
10525
10526 %union directives can now have a tag before the `{', e.g., the
10527 directive `%union foo {...}' now generates the C code
10528 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
10529 The default union tag is `YYSTYPE', for compatibility with Solaris 9
10530 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
10531 instead of `yyltype'.
10532
10533 `yystype' and `yyltype' are now obsolescent macros instead of being
10534 typedefs or tags; they are no longer documented and will be
10535 withdrawn in a future release.
10536
10537 * data/glr.c (b4_location_type): Remove.
10538 (YYSTYPE): Renamed from yystype.
10539 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
10540 (struct YYLTYPE): Renamed from struct yyltype.
10541 (YYLTYPE): Renamed from yyltype.
10542 (yyltype, yystype): New (and obsolescent) macros,
10543 for backward compatibility.
10544 * data/yacc.c: Likewise.
10545
10546 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
10547 does not specify a union tag. This is for compatibility with
10548 Solaris 9 yacc.
10549
10550 * src/parse-gram.y (add_param): 2nd arg is now char * not char
10551 const *, since it is now modified by stripping surrounding { }.
10552 (current_braced_code): Remove.
10553 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
10554 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
10555 trailing " {...}". Now of type <chars>.
10556 (grammar_declaration): Adjust to bundled tokens.
10557 (code_content): Remove; stripping is now done by add_param.
10558 (print_token_value): Print contents of bundled tokens.
10559 (token_name): New function.
10560
10561 * src/reader.h (braced_code, current_braced_code): Remove.
10562 (token_name): New decl.
10563
10564 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
10565 token_type, not braced_code code_kind. All uses changed.
10566 (SC_PRE_CODE): New state, for scanning after a keyword that
10567 has (or usually has) an immediately-following braced code.
10568 (token_type): New local var, to keep track of which token type
10569 to return when scanning braced code.
10570 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 10571 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
10572 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
10573 instead of returning a token type immediately.
10574 (<INITIAL>"{"): Set token type.
10575 (<SC_BRACED_CODE>"}"): Use it.
10576 (handle_action_dollar, handle_action_at): Now returns bool
10577 indicating success. Fail if ! current_rule; this prevents a core dump.
10578 (handle_symbol_code_dollar, handle_symbol_code_at):
10579 Remove; merge body into caller.
10580 (handle_dollar, handle_at): Complain in invalid contexts.
10581
10582 * NEWS, doc/bison.texinfo: Document the above.
10583 * NEWS: Fix years and program names in copyright notice.
10584
879ca4f8
PE
105852002-12-17 Paul Eggert <eggert@twinsun.com>
10586
10587 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
10588 Reporting, Table of Symbols): Omit mentions of %lex-param and
10589 %parse-param from the documentation for now.
10590
1c5fe69d
PE
105912002-12-15 Paul Eggert <eggert@twinsun.com>
10592
10593 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
10594 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
10595 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
10596 disagreed with the Bison documentation. Bug
10597 reported by Andrew Walrond.
d600ee67 10598
1c5fe69d
PE
10599 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
10600 as the caller now does that.
10601 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
10602 (YYEMPTY): Parenthesize right hand side, since others use it.
10603 (yyparse): Don't assume that our generated code is the only code
10604 that sets yychar.
10605
d1de5372
PE
106062002-12-13 Paul Eggert <eggert@twinsun.com>
10607
10608 Version 1.75d.
10609
10610 POSIX requires a "yacc" command.
10611 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
10612 (MOSTLYCLEANFILES): Add yacc.
10613 (yacc): New rule.
1c5fe69d 10614 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
10615 as an alias for bison y.
10616
10617 * po/LINGUAS: Add da.
d600ee67 10618
d1de5372
PE
10619 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
10620 problem with latest <getopt.h>.
10621 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
10622
10623 * doc/fdl.texi: Upgrade to 1.2.
10624 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
10625 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
10626 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
10627 gnulib.
10628 * config/install-sh: Sync with autotools.
10629
10630 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
161a71f3 10631 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
10632 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
10633 locations are requested.
10634 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
10635 locations are requested.
10636
d0f3fe23
PE
106372002-12-12 Paul Eggert <eggert@twinsun.com>
10638
10639 Remove unportable casts and storage allocation tricks.
10640 While we're at it, remove almost all casts, since they
10641 usually aren't needed and are a sign of trouble.
10642
10643 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
10644
10645 * src/derives.c (derives_compute): Do not subtract NTOKENS from
10646 the pointer DSET returned by malloc; this isn't portable.
10647 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
10648 Similarly for DERIVES.
10649 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
10650 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
10651 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
10652
10653 * src/derives.c (derives_compute): Do not bother invoking
10654 int_of_rule_number, since rule numbers are integers.
10655
10656 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
10657 rather than XMALLOC (char, N).
10658
10659 * src/files.c (filename_split): Rewrite to avoid cast.
10660
10661 * src/gram.h (symbol_number_as_item_number,
10662 item_number_as_symbol_number, rule_number_as_item_number,
10663 item_number_as_rule_number):
10664 Now inline functions rather than macros, to avoid casts.
10665 * src/state.h (state_number_as_int): Likewise.
10666 * src/tables.c (state_number_to_vector_number,
10667 symbol_number_to_vector_number): Likewise.
10668
10669 * src/gram.h (int_of_rule_number): Remove; no longer used.
10670
10671 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
10672 since the resulting storage is always stored into.
10673
10674 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
10675 where it's needed.
10676
10677 * src/muscle_tab.c (muscle_m4_output):
10678 Now inline. Return bool, not int.
10679 * src/state.c (state_compare): Likewise.
10680 * src/symtab.c (symbol_check_defined,
10681 symbol_check_alias_consistency, symbol_pack, symbol_translation,
10682 hash_compare_symbol, hash_symbol):
10683 Likewise.
10684 * src/uniqstr.c (uniqstr_print): Likewise.
10685 * src/muscle_tab.c (muscle_m4_output_processor):
10686 New function, to avoid casts.
10687 * src/state.c (state_comparator, stage_hasher): Likewise.
10688 * src/symtab.c (symbol_check_defined_processor,
10689 symbol_check_alias_consistency_processor, symbol_pack_processor,
10690 symbol_translation_processor, hash_symbol_comparator,
10691 hash_symbol_hasher): Likewise.
10692 * src/uniqstr.c (uniqstr_print_processor): Likewise.
10693 * src/muscle_tab.c (muscles_m4_output):
10694 Use new functions instead of casting old functions unportably.
10695 * src/state.c (state_hash_new): Likewise.
10696 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
10697 symbols_token_translations_init):
10698 Likewise.
10699 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
10700
10701 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
10702 var instead of casting to long, to avoid casts.
10703 (prepare_states): Use MALLOC rather than alloca, so that we don't
10704 have to worry about alloca.
10705 * src/state.c (state_hash_lookup): Likewise.
10706
10707 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
10708 local var instead of casting to unsigned char, to avoid casts.
10709
10710 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
10711 STATE_ALLOC): Remove.
10712 (transitions_new, errs_new, reductions_new, state_new): Use malloc
10713 rather than calloc, and use offsetof to avoid allocating slightly
10714 too much storage.
10715 (state_new): Initialize all members.
10716
10717 * src/state.c (state_hash): Use unsigned accumulator, not signed.
10718
10719 * src/symtab.c (symbol_free): Remove; unused.
10720 (symbol_get): Remove cast in lhs of assignment.
10721 (symbols_do): Now static. Accept generic arguments, not
10722 hashing-related ones.
10723
10724 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
10725 (symbol_processor): Remove.
10726 (symbols_do): Remove decl; now static.
10727
10728 * src/system.h (alloca): Remove; decl no longer needed.
10729 (<stddef.h>): Include, for offsetof.
10730 (<inttypes.>, <stdint.h>): Include if available.
10731 (uintptr_t): New type, if system lacks it.
10732 (CALLOC, MALLOC, REALLOC): New macros.
10733 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
10734 new macros.
10735
10736 * src/tables.c (table_size): Now int, to pacify GCC.
10737 (table_grow, table_ninf_remap): Use signed table size.
10738 (save_row): Don't bother initializing locals when not needed.
10739 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
10740 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
10741
10742 * src/vcg.h: Correct misspellings.
10743
10744 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
10745
10746
10747 * src/getargs.c (getargs): Don't assume EOF == -1.
10748
26b4a969
PE
107492002-12-09 Paul Eggert <eggert@twinsun.com>
10750
10751 Change identifier spellings to avoid collisions with names
10752 that are reserved by POSIX.
10753
10754 Don't use names ending in _t, since POSIX reserves them.
10755 For consistency, remove _e and _s endings -- they're weren't
10756 needed to remove ambiguity. All uses changed.
10757 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
10758 turn was just renamed from struniq_t.
10759 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
10760 which in turn was just renamed from struniq_processor_t.
10761 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
10762 in turn was renamed from hash_compare_struniq_t.
10763 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
10764 (state_list): Renamed from state_list_t.
10765 * src/assoc.h (assoc): Renamed from assoc_t.
10766 * src/conflicts.c (enum conflict_resolution): Renamed from
10767 enum conflict_resolution_e.
10768 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
10769 (rule_list): Renamed from rule_list_t.
10770 * src/getargs.h (enum trace): Renamed from enum trace_e.
10771 (enum report): Renamed from enum report_e.
10772 * src/gram.h (item_number): Renamed from item_number_t.
10773 (rule_number): Renamed from rule_number_t.
10774 (struct rule_s): Remove the "rule_s" part; not used.
10775 (rule): Renamed from rule_t.
10776 (rule_filter): Renamed from rule_filter_t.
10777 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
10778 (goto_list): Renamed from goto_list_t.
10779 * src/lalr.h (goto_number): Renamed from goto_number_t.
10780 * src/location.h (location): Renamed from location_t.
10781 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
10782 and moved here from:
10783 * src/muscle_tab.h (muscle_entry_t): here.
10784 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
10785 (rule_list): Renamed from rule_list_t.
10786 * src/print_graph.c (static_graph): Renamed from graph.
10787 * src/reader.h (braced_code): Renamed from braced_code_t.
10788 Remove brace_code_e tag.
10789 * src/relation.h (relation_node): Renamed from relation_node_t.
10790 (relation_nodes): Renamed from relation_nodes_t.
10791 (relation): Renamed from relation_t.
10792 * src/state.h (state_number): Renamed from state_number_t.
10793 (struct state): Renamed from struct state_s.
10794 (state): Renamed from state_t.
10795 (transitions): Renamed from transitions_t. Unused (and
10796 misspelled) transtion_s tag removed.
10797 (errs): Renamed from errs_t. Unused errs_s tag removed.
10798 (reductions): Renamed from reductions_t. Unused tag
10799 reductions_s removed.
10800 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
10801 (struct symbol_list): Renamed from struct symbol_list_s.
10802 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
10803 (struct symbol): Renamed from struct symbol_s.
10804 (symbol): Renamed from symbol_t.
10805 * src/tables.c (vector_number): Renamed from vector_number_t.
10806 (action_number): Renamed from action_t.
10807 * src/tables.h (base_number): Renamed from base_t.
10808 * src/vcg.h (enum color): Renamed from enum color_e.
10809 (enum textmode): Renamed from enum textmode_e.
10810 (enum shape): Renamed from enum shape_e.
10811 (struct colorentry): Renamed from struct colorentry_s.
10812 (struct classname): Renamed from struct classname_s.
10813 (struct infoname): Renamed from struct infoname_s.
10814 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
10815 (enum decision): Renamed from enum decision_e.
10816 (enum orientation): Renamed from enum orientation_e.
10817 (enum alignment): Renamed from enum alignment_e.
10818 (enum arrow_mode): Renamed from enum arrow_mode_e.
10819 (enum crossing_type): Renamed from enum crossing_type_e.
10820 (enum view): Renamed from enum view_e.
10821 (struct node): Renamed from struct node_s.
10822 (node): Renamed from node_t.
10823 (enum linestyle): Renamed from enum linestyle_e.
10824 (enum arrowstyle): Renamed from enum arrowstyle_e.
10825 (struct edge): Renamed from struct edge.
10826 (edge): Renamed from edge_t.
10827 (struct graph): Renamed from struct graph_s.
10828 (graph): Renamed from graph_t.
10829 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
10830 Rename value_t -> value.
10831 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
10832 value_t_as_yystype -> value_as_yystype.
10833
10834 Don't include <errno.h> in the mainstream code, since it
10835 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
10836 * lib/get-errno.c, lib/get-errno.h: New files.
10837 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
10838 get-errno.c.
10839 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
10840 * src/output.c (output_skeleton): Likewise.
10841 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
10842 instead of errno.
10843 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
10844 Likewise.
10845 (handle_action_dollar, handle_action_at): Likewise.
10846 * src/system.h: Do not include <errno.h>.
10847 (TAB_EXT): Renamed from EXT_TAB.
10848 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
10849
10850 Avoid str[a-z]*, since <string.h> reserves that name space.
10851 Change all instances of "struniq" in names to "uniqstr", and
10852 likewise for "STRUNIQ" and "UNIQSTR".
10853 * src/uniqstr.c: Renamed from src/struniq.c.
10854 * src/uniqstr.h: Renamed from src/struniq.h.
10855 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
10856 * src/files.c (strsuffix): Remove; unused.
10857 (concat2): Renamed from stringappend. Now static.
10858 * src/files.h (strsuffix, stringappend): Remove; unused.
10859 * src/parse-gram.y (<chars>): Renamed from <string>.
10860 (<uniqstr>): Renamed from <struniq>.
10861 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
10862 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
10863 (struct graph_s.expand): Renamed from struct graph_s.stretch.
10864 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
10865 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
10866 (N_EXPAND): Renamed from N_STRETCH.
10867
10868 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
10869 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
10870 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
10871 Remove; unused.
10872 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
10873 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
10874 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
10875 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
10876 (BASE_MAXIMUM): Renamed from BASE_MAX.
10877 (BASE_MINIMUM): Renamed from BASE_MIN.
10878 (ACTION_MAX): Remove; unused.
10879 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
10880 Unnecessary casts removed from above defines.
10881
10882
10883 Fix misspelling in names.
10884 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
10885 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
10886 G_NODE_ALIGNEMENT.
10887
10888
10889 * lib/timevar.c (timevar_report): Renamed from time_report,
10890 for consistency with other names.
10891 * lib/timevar.h (timevar_report): New decl.
10892 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
10893
10894
10895 Sort include-file uses.
10896
10897 Reorder all include files under src to be in the order "system.h".
10898 then the ../lib include files in angle brackets (alphabetized),
10899 then the . include files in double-quotes (alphabetized). Fix
10900 dependency breakages encountered in this process, as follows:
10901 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
10902 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
10903 * src/state.h: Include "symtab.h".
10904
996b1c7e
PE
109052002-12-08 Paul Eggert <eggert@twinsun.com>
10906
10907 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
10908 since this causes problems when __file__ contains character
10909 sequences like "@" that are treated specially by src/scan-skel.l.
10910 Instead, just use the file's basename. This fixes the bug
10911 reported by Martin Mokrejs in
161a71f3 10912 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 10913
e19c4e5d
PE
109142002-12-06 Paul Eggert <eggert@twinsun.com>
10915
10916 Add support for rules that do not have trailing semicolons, as
10917 POSIX requires. Improve the quality of locations in Bison
10918 diagnostics.
26b4a969 10919
e19c4e5d
PE
10920 * src/location.c: Include <quotearg.h>.
10921 (empty_location): Now const.
10922 (location_print): New function. Follow the recommendation of the
10923 GNU Coding Standards for locations that span file boundaries.
10924 * src/location.h: Do not include <quotearg.h>; no longer needed.
10925 (boundary): New type.
10926 (location_t): Use it. This allows locations to span file boundaries.
10927 All member uses changed: file -> start.file or end.file (as needed),
10928 first_line -> start.line, first_column -> start.column,
10929 last_line -> end.line, last_column -> end.column.
10930 (equal_boundaries): New function.
10931 (LOCATION_RESET, LOCATION_STEP): Remove.
10932 (LOCATION_PRINT): Remove. All callers changed to use location_print.
10933 (empty_location): Now const.
10934 (location_print): New decl.
10935 * src/parse-gram.y (lloc_default): New function, which handles
10936 empty locations more accurately.
10937 (YYLLOC_DEFAULT): Use it.
10938 (%token COLON): Remove.
10939 (%token ID_COLON): New token.
26b4a969 10940 (rules): Use it.
e19c4e5d
PE
10941 (declarations, rules): Remove trailing semicolon.
10942 (declaration, rules_or_grammar_declaration):
10943 Allow empty (";") declaration.
10944 (symbol_def): Remove empty actions; no longer needed.
10945 (rules_or_grammar_declaration): Remove trailing semicolon.
10946 (semi_colon.opt): Remove.
10947 * src/reader.h: Include location.h.
10948 (scanner_cursor): New decl.
10949 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
10950 rolling our own.
10951 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
10952 of *loc.
10953 (STEP): Remove. No longer needed, now that adjust_location does
10954 the work. All uses removed.
10955 (scanner_cursor): New var.
10956 (adjust_location): Renamed from extend_location. It now sets
10957 *loc and adjusts the scanner cursor. All uses changed.
10958 Don't bother testing for CR.
10959 (handle_syncline): Remove location arg; now updates scanner cursor.
10960 All callers changed.
10961 (unexpected_end_of_file): Now accepts start boundary of token or
10962 comment, not location. All callers changed. Update scanner cursor,
10963 not the location.
10964 (SC_AFTER_IDENTIFIER): New state.
10965 (context_state): Renamed from c_context. All uses changed.
10966 (id_loc, code_start, token_start): New local vars.
10967 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
10968 processing of Yacc white space and equivalents here.
10969 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
10970 instead of returning ID immediately, since we need to search for
10971 a subsequent colon.
10972 (<INITIAL>"'", "\""): Save token_start.
10973 (<INITIAL>"%{", "{", "%%"): Save code_start.
10974 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
10975 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
10976 BEGIN context_state at end, not INITIAL.
10977 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
10978 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
10979 Return correct token start.
10980 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
10981 the start of a character, string or multiline comment is found.
10982 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
10983 Reduction): Adjust reported locations to match the more-precise
10984 results now expected.
10985 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
10986 * tests/reduce.at (Useless Rules, Reduced Automaton,
10987 Underivable Rules): Likewise.
10988 * tests/regression.at (Invalid inputs): No longer `expecting ";"
10989 or "|"' now that so many other tokens are allowed by the new grammar.
10990
10991 * src/complain.h (current_file): Remove duplicate decl;
10992 current_file is now owned by files.h.
10993 * src/complain.c, src/scan-gram.l: Include files.h.
10994
109952002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 10996
e19c4e5d
PE
10997 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
10998 promotes to int; it might be unsigned int.
10999 * data/yacc.c (yy_reduce_print): Likewise.
11000
11001 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
11002 be #defined in the prologue, not in the Bison declarations.
11003 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 11004
b64755e3
PE
110052002-12-02 Paul Eggert <eggert@twinsun.com>
11006
11007 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
11008 * lib/strtoul.c: New file, from gnulib.
11009 This fixes a porting bug reported by Peter Klein in
161a71f3 11010 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 11011
6e746484
PE
110122002-11-30 Paul Eggert <eggert@twinsun.com>
11013
b64755e3
PE
11014 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
11015 and put only a forward declaration in the prologue. This is for
11016 consistency with the other scanner helper functions.
11017
6ba55592
PE
11018 Type clashes now generate warnings, not errors, since it
11019 appears that POSIX may allow some grammars with type clashes.
11020 * src/reader.c (grammar_current_rule_check): Warn about
11021 type clashes instead of complaining.
11022 * tests/input.at (Type Clashes): Expect warnings, not complaints.
11023
6e746484
PE
11024 Add Yacc library, since POSIX requires it.
11025 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
11026 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
11027 * lib/main.c, lib/yyerror.c: New files.
11028
11029 gram_error can be static; it need not be extern.
11030 * src/reader.h (gram_error): Remove decl.
11031 * src/parse-gram.y (gram_error): Now static. Add static decl.
11032 (print_token_value): Omit parameter names from forward decl,
11033 for consistency.
11034
88510f9c
PE
110352002-11-29 Paul Eggert <eggert@twinsun.com>
11036
6e746484
PE
11037 * doc/bison.texinfo: Emphasize that yylex and yyerror must
11038 be declared before being used. E.g., one should typically
11039 declare them in the prologue. Use GNU coding style in examples.
11040 Put "const" consistently after the type it modifies. Mention
11041 that C99 supports "inline". Mention that yyerror traditionally
11042 returns "int".
11043
88510f9c
PE
11044 %parse-param and %lex-param now take just one argument, the
11045 declaration; the argument name is deduced from the declaration.
11046
11047 * doc/bison.texinfo (Parser Function, Pure Calling, Error
11048 Reporting, Table of Symbols): Document this.
11049 * src/parse-gram.y (add_param): New function.
11050 (COMMA): Remove.
11051 (declaration): Implement new rule for %parse-param and %lex-param.
11052 * src/scan-gram.l: "," now elicits a warning, rather than being
11053 a token; this is more compatible with byacc.
11054 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
11055
bb92250c
PE
110562002-11-27 Paul Eggert <eggert@twinsun.com>
11057
11058 Rename identifiers to avoid real and potential collisions.
11059
11060 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
11061 to avoid collision with lex macro described by Bruce Lilly in
161a71f3 11062 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
11063 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
11064 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
11065 * src/parse-gram.y (print_token_value): Renamed from yyprint.
11066 All uses changed.
11067 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
11068 The name "yycontrol" violates the name space rules, and this stuff
11069 wasn't being used anyway.
11070 (input): Remove action; this stuff wasn't being used.
11071 (gram_error): Rename local variable yylloc -> loc.
11072 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
11073 (YY_DECL): Don't use "yy" at start of local variables.
11074 All uses changed, e.g., yylloc -> loc.
11075 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
11076 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
11077 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
11078 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
11079
11080 * src/parse-gram.y (gram_error): loc is now const *.
11081 * src/reader.h (gram_error): Likewise.
11082
3af4feb2
PE
110832002-11-24 Paul Eggert <eggert@twinsun.com>
11084
11085 Version 1.75c.
11086
11087 * tests/actions.at (Actions after errors): Use an output format
11088 more similar to that of the Printers and Destructors test.
11089 Test the position of the ';' token too.
11090 (Printers and Destructors): Likewise.
11091 (Printers and Destructors: %glr-parser): Remove for now, to avoid
11092 unnecessarily alarming people when the test fails.
11093
11094 * data/yacc.c (yyerrlab1): Move this label down, so that the
11095 parser does not discard the lookahead token if the user code
11096 invokes YYERROR. This change is required for POSIX conformance.
11097
11098 * lib/error.c: Sync with gnulib.
11099
111002002-11-22 Paul Eggert <eggert@twinsun.com>
11101
11102 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
11103 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
11104 * lib/xmalloc.c: Likewise.
26b4a969 11105
58004308
PE
111062002-11-20 Paul Eggert <eggert@twinsun.com>
11107
11108 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
11109
111102002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 11111
58004308
PE
11112 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
11113 should use `if (! x) abort ();' rather than `assert (x);', and
11114 anyway it's one less thing to worry about configuring.
11115
11116 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
11117 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
11118 and replace all instances of assert with abort.
11119 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
11120 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
11121
11122 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
11123 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
11124 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
11125 hash_find_entry, hash_rehash, hash_insert): Likewise.
11126 * src/conflicts.c (resolve_sr_conflict): Likewise.
11127 * src/lalr.c (set_goto_map, map_goto): Likewise.
11128 * src/nullable.c (nullable_compute): Likewise.
11129 * src/output.c (prepare_rules, token_definitions_output): Likewise.
11130 * src/reader.c (packgram, reader): Likewise.
11131 * src/state.c (state_new, state_free, state_transitions_set,
11132 state_reduction_find): Likewise.
11133 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
11134 symbol_pack): Likewise.
11135 * src/tables.c (conflict_row, pack_vector): Likewise.
11136 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11137 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11138 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
11139 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
11140
11141 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
11142 (ARGMATCH_CONSTRAINT): New macro.
11143 (ARGMATCH_ASSERT): Use it.
11144
11145 * src/system.h (verify): New macro.
11146 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
11147 rather than assert.
11148 * src/tables.c (tables_generate): Likewise.
11149
11150 * src/struniq.c (struniq_assert): Now returns void, and aborts
11151 if the assertion is false.
11152 (struniq_assert_p): Remove.
11153 * src/struniq.h: Likewise.
11154
76ae8198
PE
111552002-11-18 Paul Eggert <eggert@twinsun.com>
11156
11157 * data/glr.c (yygetLRActions): Replace `yyindex' with
11158 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
11159 This fixes the regression with Sun ONE Studio 7 cc that I reported in
161a71f3 11160 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 11161
d3c4e709
AD
111622002-11-18 Akim Demaille <akim@epita.fr>
11163
11164 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
11165 space.
11166 From Tim Van Holder.
11167
8d8a7238
PE
111682002-11-17 Paul Eggert <eggert@twinsun.com>
11169
11170 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
11171 to "SyntaxError" for consistency with my 2002-11-15 change.
11172
11173 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
11174 not define to {}, since this breaks the common use of `YYDPRINTF
11175 ((...));' if a single statement is desired (e.g. before `else').
11176 Work around GCC warnings by surrounding corresponding calls with
11177 {} if needed.
11178 (yyhasResolvedValue): Remove unused function.
11179 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
11180 loop body.
11181 (yyreportSyntaxError): Renamed from yyreportParseError.
11182 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
11183 All uses changed.
11184 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
11185 extern when possible. Remove unused initializations.
11186
b0937b22
AD
111872002-11-16 Akim Demaille <akim@epita.fr>
11188
11189 Augment the similarity between GLR and LALR traces.
11190
11191 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
11192 (YY_REDUCE_PRINT): New.
11193 (yyparse): Use them.
11194 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
11195 YYDPRINT here.
11196 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
11197 state reached after the reduction/recovery, since...
11198 (yyparse, yyprocessOneStack): Report the state we are entering in.
11199
c5e3e510
AD
112002002-11-16 Akim Demaille <akim@epita.fr>
11201
11202 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
11203 Add support for --trace=skeleton.
11204 * src/scan-skel.l: %option debug.
11205 Scan strings of non-@ or \n instead of character by character.
11206 (scan_skel): Handle trace_skeleton.
11207 (QPUTS): New.
11208 (@output_parser_name@, @output_header_name@): ``Restore'' their
11209 support (used to be M4 macros).
11210 * data/yacc.c: Quote larger chunks, a la glr.c.
11211 * data/lalr1.cc: Likewise.
11212 The header guards are no longer available, so use some other
11213 string than `YYLSP_NEEDED'.
11214
4c6cc1db
AD
112152002-11-16 Akim Demaille <akim@epita.fr>
11216
11217 Make the ``Printers and Destructors'' test more verbose, taking
11218 `yacc.c''s behavior as (possibly wrong) reference.
11219
11220 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
11221 instead of fprint on stdout.
11222 Set and report the last_line of the symbols.
11223 Consistently display values and locations.
11224
6d9e8019
PE
112252002-11-16 Paul Eggert <eggert@twinsun.com>
11226
11227 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
11228
6e649e65
PE
112292002-11-15 Paul Eggert <eggert@twinsun.com>
11230
b25d88f6
PE
11231 * tests/actions.at (Actions after errors): New test case.
11232
6e649e65
PE
11233 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
11234 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
11235 tests/action.at, tests/calc.at, tests/conflicts.at,
11236 tests/cxx-type.at, tests/regression.at:
11237 "parse error" -> "syntax error" for POSIX compatibility.
11238 "parsing stack overflow..." -> "parser stack overflow" so
11239 that code matches Bison documentation.
11240
0f39aab9
AD
112412002-11-15 Akim Demaille <akim@epita.fr>
11242
11243 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
11244 take two BRACED_CODE, not two string_content.
11245 Free the scanner's obstack when we are done.
11246 (code_content): New.
11247 * tests/calc.at: Adjust.
11248 * doc/bison.texinfo: Adjust.
11249 Also, make sure to include the `,' for these declarations.
11250
761c1926
AD
112512002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
11252
11253 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
11254 definition; avoids potential autoreconf problems.
11255
b0f98b10
AD
112562002-11-15 Akim Demaille <akim@epita.fr>
11257
11258 Always check the value returned by yyparse.
11259
11260 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
11261 returned by yyparse.
11262 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
11263 Adjust calls.
11264 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
11265 returned by yyparse.
11266
970785f1
PH
112672002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11268
11269 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
11270 on input.at test.
11271
8fcc7db1
PE
112722002-11-14 Paul Eggert <eggert@twinsun.com>
11273
7ec1b48e
PE
11274 * src/output.c (output_skeleton): Call xfopen instead of
11275 duplicating xfopen's body.
11276
cfff7583 11277 Fix bugs reported by Nelson H. F. Beebe in
161a71f3 11278 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 11279
8fcc7db1
PE
11280 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
11281 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
11282 Group compiler. Instead, use "$CC -E bar.c". Include the .h
11283 file twice in the grammar, as an extra check.
11284
11285 * tests/input.at (Torturing the Scanner): Surround the
11286 backslash-newline tests with "#if 0", to make it less likely that
11287 we'll run into compiler bugs. Bring back solitary \ inside
11288 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 11289 test backslash-newline in C character constant.
8fcc7db1 11290
4e8d992c
AD
112912002-11-14 Akim Demaille <akim@epita.fr>
11292
11293 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
11294 status of the compiler.
f32b346d 11295 Calling `exit 1' is no longer needed.
4e8d992c
AD
11296 Reported by Nelson H. F. Beebe.
11297
9501dc6e
AD
112982002-11-14 Akim Demaille <akim@epita.fr>
11299
11300 * tests/atlocal.in (CPPFLAGS): We have config.h.
11301 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
11302 New.
11303 * tests/actions.at, tests/calc.at, tests/conflicts.at,
11304 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
11305 * tests/regression.at, tests/torture.at: Use them for all the
11306 grammars that are to be compiled.
11307 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
11308 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
11309 * doc/bison.texinfo (GLR Parsers): Document `inline'.
11310
18b519c0
AD
113112002-11-14 Akim Demaille <akim@epita.fr>
11312
11313 * doc/bison.texinfo: Various formatting changes (alignments in
11314 samples, additional @group/@end group, GCS in samples.
11315 Use @deffn instead of simple @table to define the directives,
11316 macros, variables etc.
11317
9a86cdb9
PE
113182002-11-13 Paul Eggert <eggert@twinsun.com>
11319
daa33def 11320 Fix some bugs reported by Albert Chin-A-Young in
161a71f3 11321 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 11322
daa33def 11323 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 11324 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
11325 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
11326 * tests/headers.at (export YYLTYPE): Likewise.
11327
11328 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 11329 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 11330
9a86cdb9
PE
11331 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
11332 comments, since they're not portable. Use GNU coding style.
11333
9c1e26bd
AD
113342002-11-13 Akim Demaille <akim@epita.fr>
11335
11336 * data/yacc.c: Leave bigger chunks of quoted text.
11337 (YYDSYMPRINTF): New.
11338 Use it to report symbol activities.
11339 * data/glr.c (YYDSYMPRINTF): New.
11340 Use it.
11341
87f721cc
PE
113422002-11-12 Paul Eggert <eggert@twinsun.com>
11343
11344 Version 1.75b.
11345
11346 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
11347 (yyglrReduce): Return yyok, not 0.
11348 This should avoid the enumerated-type warnings reported
464c6927 11349 by Nelson H. F. Beebe in
161a71f3 11350 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
11351
11352 * lib/bbitset.h (BITSET_INLINE): Remove.
11353 * lib/bitset.h [! BITSET_INLINE]: Remove.
11354 (bitset_set, bitset_reset, bitset_test): Rename local vars
11355 to avoid shadowing warnings by GCC.
11356
11357 * data/glr.c (inline): Remove #define. It's the user's
11358 responsibility to #define it away, just like 'const'.
464c6927 11359 This fixes one of the bugs reported by Nelson H. F. Beebe in
161a71f3 11360 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 11361
87f721cc
PE
11362 * Makefile.maint (po-check): Scan .l and .y files instead of the
11363 .c and the .h files that they generate. This fixes the bug
11364 reported by Tim Van Holder in:
161a71f3 11365 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
11366 Look for N_ as well as for _. Try to avoid matching #define for
11367 N_ and _.
11368 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
11369 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
11370 * src/scan-gram.l: Revamp regular expressions so that " and '
11371 do not confuse xgettext.
11372
11373 * src/struniq.h (struniq_new): Do not declare the return type
11374 to be 'const'; this violates the C standard.
11375 * src/struniq.c (struniq_new): Likewise.
11376
be14ade5
AD
113772002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
11378
11379 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
11380 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
11381 linker.
11382
05291fbc
AD
113832002-11-12 Akim Demaille <akim@epita.fr>
11384
11385 * Makefile.maint: Sync with Autoconf:
11386 (local_updates): New.
11387
1f5fd52e
AD
113882002-11-12 Akim Demaille <akim@epita.fr>
11389
11390 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
11391
283f1e64
AD
113922002-11-12 Akim Demaille <akim@epita.fr>
11393
11394 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
11395 locations.
11396
886b69d1
AD
113972002-11-12 Akim Demaille <akim@epita.fr>
11398
11399 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
11400 not yyvalue.
11401
3df37415
AD
114022002-11-12 Akim Demaille <akim@epita.fr>
11403
11404 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
11405 Use it to test the GLR parser.
11406
7bd6c77e
AD
114072002-11-12 Akim Demaille <akim@epita.fr>
11408
11409 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
11410 defines it.
11411 * data/glr.c (yystos): New.
11412 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
11413 (YYDSYMPRINT): New.
11414 (yyval): Don't define it, it is handled via M4.
11415 (yyrecoverParseError): Free verbosely the discarded symbols.
11416 * data/yacc.c (yysymprint): Remove, rather...
11417 (b4_yysymprint_generate): invoke.
11418 * data/c.m4 (b4_yysymprint_generate): New.
11419 Accept pointers as arguments, as opposed to the version from
11420 yacc.c.
11421 (b4_yydestruct_generate): Likewise.
11422 * tests/cations.at (Printers and Destructors): Use Bison directives
11423 instead of CPP macros.
11424 Don't rely on internal details.
11425
b0400cc6
AD
114262002-11-12 Akim Demaille <akim@epita.fr>
11427
11428 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
11429 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
11430 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
11431 it against YYEMPTY and so forth), work on yytoken (i.e., set
11432 it to YYEMPTY etc.).
11433 (yydestruct): Replace with a b4_yydestruct_generate invocation.
11434 (b4_symbol_actions): Remove.
11435 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
11436 for 0, end-of-input.
11437
72f889cc
AD
114382002-11-12 Akim Demaille <akim@epita.fr>
11439
11440 * doc/bison.texinfo (Destructor Decl): New.
11441
b1ae9233
AD
114422002-11-12 Akim Demaille <akim@epita.fr>
11443
11444 * src/tables.c (tables_generate): Use free for pointers that
11445 cannot be NULL, not XFREE.
11446 (pack_vector): Use assert, not fatal, for bound violations.
11447 * src/state.c (state_new): Likewise.
11448 * src/reader.c (reader): Likewise.
11449 * src/lalr.c (set_goto_map): Likewise.
72f889cc 11450 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
11451 the file name.
11452
7ec2d4cd
AD
114532002-11-12 Akim Demaille <akim@epita.fr>
11454
11455 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
11456 Restore.
11457 * src/scan-gram.l (last_string): Is global to the file, not to
11458 yylex.
11459 * src/parse-gram.y (input): Don't append the epilogue here,
11460 (epilogue.opt): do it here, and free the scanner's obstack.
11461 * src/reader.c (epilogue_set): Rename as...
11462 (epilogue_augment): this.
11463 * data/c.m4 (b4_epilogue): Defaults to empty.
11464
573a6cd3
AD
114652002-11-12 Akim Demaille <akim@epita.fr>
11466
11467 * src/getargs.c (long_options): Remove duplicates.
11468 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
11469 Remove.
11470 * doc/bison.rnh: Remove.
11471 * doc/bison.texinfo (VMS Invocation): Remove.
11472
95612cfa
AD
114732002-11-12 Akim Demaille <akim@epita.fr>
11474
11475 * src/struniq.h, src/struniq.c (struniq_t): Is const.
11476 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
11477
11478 Use struniq for symbols.
11479
11480 * src/symtab.h (symbol_t): The tag member is a struniq.
11481 (symbol_type_set): Adjust.
11482 * src/symtab.c (symbol_new): Takes a struniq.
11483 (symbol_free): Don't free the tag member.
11484 (hash_compare_symbol_t, hash_symbol_t): Rename as...
11485 (hash_compare_symbol, hash_symbol): these.
11486 Use the fact that tags as struniqs.
11487 (symbol_get): Use struniq_new.
11488 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
11489 Returns a strniq.
11490 * src/reader.h (merger_list, grammar_currentmerge_set): The name
11491 and type members are struniqs.
11492 * src/reader.c (get_merge_function)
11493 (grammar_current_rule_merge_set): Adjust.
11494 (TYPE, current_type): Are struniq.
11495
11496 Use struniq for file names.
11497
11498 * src/files.h, src/files.c (infile): Split into...
11499 (grammar_file, current_file): these.
11500 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
11501 * src/reduce.c (reduce_print): Likewise.
11502 * src/getargs.c (getargs): Likewise.
11503 * src/complain.h, src/complain.c: Likewise.
11504 * src/main.c (main): Call struniqs_new early enough to use it for
11505 file names.
11506 Don't free the input file name.
11507
3e6656f9
AD
115082002-11-12 Akim Demaille <akim@epita.fr>
11509
11510 * src/symtab.c (symbol_free): Remove dead deactivated code:
11511 type_name are properly removed.
11512 Don't use XFREE to free items that cannot be NULL.
11513 * src/struniq.h, src/struniq.c: New.
11514 * src/main.c (main): Initialize/free struniqs.
11515 * src/parse-gram.y (%union): Add astruniq member.
11516 (yyprint): Adjust.
11517 * src/scan-gram.l (<{tag}>): Return a struniq.
11518 Free the obstack bit that used to store it.
11519 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
11520
7672019c
PE
115212002-11-11 Paul Eggert <eggert@twinsun.com>
11522
11523 Revamp to fix many (but not all) of the C- and M4-related quoting
11524 problems. Among other things, this fixes the Bison bug reported
11525 by Jan Hubicka when processing the Bash grammar; see:
161a71f3 11526 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
11527
11528 Use new @ escapes consistently. Represent brackets with @{ and @}
11529 rather than @<:@ and @:>@, since this works a bit better with dumb
11530 editors like vi. Represent @ with @@, since @ is now consistently
11531 an escape. Use @oline@ and @ofile@ rather than __oline__ and
11532 __ofile__, to avoid unexpected expansions. Similarly, use @output
11533 rather than #output.
11534
11535 * data/c.m4 (b4_copyright): Omit file name from comment, since
11536 the file name could contain "*/".
11537 (b4_synclines_flag): Don't quote the 2nd argument; it should already
11538 be quoted. All uses changed.
11539
11540 * data/glr.c: Use new @ escapes consistently.
11541 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
11542 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
11543 Remove, since they couldn't handle arbitrary characters in file
11544 names.
11545 * data/lalr1.cc: Likewise.
11546 * data/yacc.c: Likewise.
11547
11548 * src/files.c (output_infix): Remove; all uses removed.
11549 * src/files.h: Likewise.
11550
11551 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
11552 mishandled funny characters in file names, and anyway it isn't
11553 needed any more.
11554 * data/yacc.c: Likewise.
11555 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
11556
11557 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
11558 * data/yacc.c: Likewise.
11559
11560 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
11561 strings now.
11562 (muscle_init): Quote filename as a C string.
11563 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
11564 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
11565 * src/output.c (escaped_file_name_output): New function.
11566 (prepare_symbols): Quote tokens for M4.
11567 (prepare): Don't insert output_infix, output_prefix,
11568 output_parser_name, output_header_name; this is now down by scan-skel.
11569 Insert skeleton as a C string.
11570
11571 * src/output.c (user_actions_output, symbol_destructors_output,
11572 symbol_printers_output): Quote filenames for C and M4.
11573 * src/reader.c (prologue_augment, epilogue_set): Likewise.
11574
11575 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
11576 escapes other than \\ and \'; this simplifies the code.
11577 (<SC_STRING>): Likewise, for \\ and \".
11578 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
11579 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
11580 Use new escapes @{ and @} for [ and ].
11581
11582 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
11583 them with auto vars.
11584 Switch to new escape scheme, where @ is the escape character uniformly.
11585 Abort if a stray escape character is found. Avoid unbounded input
11586 buffer when parsing non-escaped text.
11587
11588 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
11589 __oline__, #output, $@, and @{ do not have unintended meanings.
11590
acea4f3b
PE
115912002-11-09 Paul Eggert <eggert@twinsun.com>
11592
11593 Fix the test failure due to GCC warnings described in
161a71f3 11594 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
11595 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
11596 evaluate to 0 if it's impossible for NINF to be in the respective
11597 table.
11598 (yygetLRActions, yyrecoverParseError): Use them.
11599
11600 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
11601 counted in the token inserted at end of file. Now takes
11602 location_t *, not location_t, so that the location can be
11603 adjusted. All uses changed.
11604
11605 * tests/regression.at (Invalid inputs): Adjust wording in
11606 diagnostic to match the new behavior.
11607
11608 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
11609 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
11610 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
11611 abort ();'. This reduces the runtime of the "Many lookaheads"
11612 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
11613 GCC 3.2.
11614
20ef1ad5
PE
116152002-11-07 Paul Eggert <eggert@twinsun.com>
11616
11617 * src/parse-gram.y (CHARACTER): Remove unused token.
11618 All uses removed.
11619
11620 * src/scan-gram.l: Remove stack option. We no longer use the
11621 stack, since the stack was never deeper than 1; instead, use the
11622 new auto var c_context to record the stacked value.
11623
11624 Remove nounput option. At an unexpected end of file, we now unput
11625 the minimal input necessary to end cleanly; this simplifies the
11626 code.
11627
11628 Avoid unbounded token sizes where this is easy.
11629
11630 (unexpected_end_of_file): New function.
11631 Use it to systematize the error message on unexpected EOF.
11632 (last-string): Now auto, not static.
11633 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
11634 (scanner_last_string_free): Remove; not used.
11635 (percent_percent_count): Move decl to just before use.
11636 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
11637 not the (never otherwised-used) CHARACTER.
11638
93724f13
AD
116392002-11-07 Akim Demaille <akim@epita.fr>
11640
11641 Let yyerror always receive the msg as last argument, so that
11642 yyerror can be variadic.
11643
11644 * data/yacc.c (b4_yyerror_args): New.
11645 Use it when calling yyerror.
11646 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
11647 Use it when calling yyerror.
11648 * doc/bison.texinfo (Error Reporting): Adjust.
11649 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
11650 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
11651
6e40b4eb
AD
116522002-11-06 Akim Demaille <akim@epita.fr>
11653
11654 #line should have quoted strings.
11655 Ideally, this should be done by m4_quotearg.
11656
11657 * src/scan-skel.l: Include quotearg.h.
11658 Quote __ofile__.
11659 * src/output.c (symbol_printers_output)
11660 (symbol_destructors_output): Quote the file name.
11661
2dfbfc12
AD
116622002-11-06 Akim Demaille <akim@epita.fr>
11663
11664 * tests/regression.at (Invalid inputs): Adjust to the recent
11665 messages.
11666
437c2d80
AD
116672002-11-06 Akim Demaille <akim@epita.fr>
11668
11669 Restore --no-lines.
11670 Reported by Jim Kent.
11671
11672 * data/c.m4 (b4_syncline): New.
11673 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
11674 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
11675 * src/output.c (user_actions_output): Likewise.
11676 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 11677 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 11678
900c5db5
AD
116792002-11-06 Akim Demaille <akim@epita.fr>
11680
11681 * src/main.c (main): Free `infile'.
11682 * src/scan-gram.l (handle_syncline): New.
11683 Recognize `#line'.
11684 * src/output.c (user_actions_output, symbol_destructors_output)
11685 (symbol_printers_output): Use the location's file name, not
11686 infile.
11687 * src/reader.c (prologue_augment, epilogue_set): Likewise.
11688
e183b123 116892002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 11690
e183b123 11691 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 11692 either has GLR conflict entries.
e183b123 11693
193eb6b7
PE
116942002-11-05 Paul Eggert <eggert@twinsun.com>
11695
e183b123
PE
11696 * src/scan-gram.l: Use more accurate diagnostics, e.g.
11697 "integer out of range" rather than "invalid value".
11698 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
11699 accordingly.
11700
193eb6b7
PE
11701 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
11702 Also, remove one static variable in the scanner.
11703
11704 * src/scan-gram.l (braces_level): Now auto, not static.
11705 Initialize to zero if the compiler is being picky.
11706 (INITIAL): Clear braces_level instead of incrementing it.
11707 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
11708 as POSIX 1003.1-2001 requires.
11709 * src/system.h (IF_LINT): New macro, taken from coreutils.
11710 * configure.ac: Define "lint" if --enable-gcc-warnings.
11711
29c01725
AD
117122002-11-05 Akim Demaille <akim@epita.fr>
11713
11714 * src/scan-gram.l: When it starts with `%', complain about the
11715 whole directive, not just that `invalid character: %'.
11716
8aeac3ca
AD
117172002-11-04 Akim Demaille <akim@epita.fr>
11718
11719 * Makefile.maint: Update from Autoconf.
11720 (update, cvs-update, po-update, do-po-update): New.
11721
793a58bb
AD
117222002-11-04 Akim Demaille <akim@epita.fr>
11723
11724 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
11725 and yyerror.
11726 Have yyerror `use' its arguments.
11727 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
11728 returns true when location & yacc & pure & parse-param.
11729 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
11730
c4d720cd
AD
117312002-11-04 Akim Demaille <akim@epita.fr>
11732
11733 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
11734 clashes.
11735 * src/scan-gram.l: Use [\'] instead of ['] to pacify
11736 font-lock-mode.
11737 Use complain_at.
11738 Use quote, not quote_n since LOCATION_PRINT no longer uses the
11739 slot 0.
11740
613a0dc5
PE
117412002-11-03 Paul Eggert <eggert@twinsun.com>
11742
11743 * src/reader.c (get_merge_function, grammar_current_rule_check):
11744 Use consistent diagnostics for reporting type name clashes.
11745 Quote the types with <>, for consistency with Yacc.
11746 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
11747
2a8d363a
AD
117482002-11-03 Akim Demaille <akim@epita.fr>
11749
11750 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
11751 New.
11752 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
11753 (b4_parse_param): Remove.
11754 Use b4_identification.
11755 Propagate b4_pure_args where needed to pass them to yyerror.
11756 * data/glr.m4 (b4_parse_param): Remove.
11757 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
11758 (b4_lpure_formals): New.
11759 Use b4_identification.
11760 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
11761 b4_user_formals and b4_user_args.
11762 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
11763 (yyreportAmbiguity): When using a pure parser, also need
11764 the location, and the parse-params.
11765 Adjust callers.
11766 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
11767 When using a pure parser, also need the parse-params.
11768 Adjust callers.
11769 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
11770 (%pure-parser + %parse-param) LALR and GLR parsers.
11771 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
11772 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
11773 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
11774 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
11775 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
11776 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
11777 * doc/bison.texinfo: Untabify the whole file.
11778 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
11779 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
11780 (Error Reporting): Adjust to these new directives.
11781 Document %error-verbose, deprecate YYERROR_VERBOSE.
11782
9e32add8
AD
117832002-11-03 Akim Demaille <akim@epita.fr>
11784
11785 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
11786 AT_CHECK_CALC_GLR invocations to use % directives, instead of
11787 command line options.
11788 * tests/cxx-type.at: Formatting changes.
11789
b02d90a5
PE
117902002-11-03 Paul Eggert <eggert@twinsun.com>
11791
11792 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
11793 to count columns correctly, and to check for invalid inputs.
9e32add8 11794
b02d90a5
PE
11795 Use mbsnwidth to count columns correctly. Account for tabs, too.
11796 Include mbswidth.h.
11797 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
11798 (extend_location): New function.
11799 (YY_LINES): Remove.
11800
11801 Handle CRLF in C code rather than in Lex code.
11802 (YY_INPUT): New macro.
11803 (no_cr_read): New function.
11804
11805 Scan UCNs, even though we don't fully handle them yet.
11806 (convert_ucn_to_byte): New function.
11807
11808 Handle backslash-newline correctly in C code.
11809 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
11810 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
11811 all uses changed.
11812 (tag, splice): New EREs. Do not allow NUL or newline in tags.
11813 Use {splice} wherever C allows backslash-newline.
11814 YY_STEP after space, newline, vertical-tab.
11815 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 11816
b02d90a5
PE
11817 (letter, id): Don't assume ASCII; e.g., spell out a-z.
11818
11819 ({int}, handle_action_dollar, handle_action_at): Check for integer
11820 overflow.
9e32add8 11821
b02d90a5
PE
11822 (YY_STEP): Omit trailing semicolon, so that it's more like C.
11823
11824 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
11825 as well as \000. Check for UCHAR_MAX, not 255.
11826 Allow \x with an arbitrary positive number of digits, as in C.
11827 Check for overflow here.
11828 Allow \? and UCNs, for compatibility with C.
11829
11830 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
11831 with quote slot used by complain_at.
11832
11833 * tests/input.at: Add tests for backslash-newline, m4 quotes
11834 in symbols, long literals, and funny escapes in strings.
11835
11836 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
11837 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
11838 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
11839 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
11840 * m4/mbswidth.m4: New file, from GNU coreutils.
11841
11842 * doc/bison.texinfo (Grammar Outline): Document // comments.
11843 (Symbols): Document that trigraphs have no special meaning in Bison,
11844 nor is backslash-newline allowed.
11845 (Actions): Document that trigraphs have no special meaning.
11846
11847 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
11848 no longer used.
11849
118502002-11-02 Paul Eggert <eggert@twinsun.com>
11851
11852 * src/reader.c: Don't include quote.h; not needed.
11853 (get_merge_function): Reword warning to be consistent with
11854 type clash diagnostic in grammar_current_rule_check.
11855
11856 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
11857 bug in trigraph handling.
11858
11859 * src/output.c (prepare_symbols): When printing token names,
11860 escape "[" as "@<:@" and likewise for "]".
11861
11862 * src/system.h (errno): Remove declaration, as we are now
11863 assuming C89 or better, and C89 guarantees errno.
11864
762b212b
PE
118652002-10-30 Paul Eggert <eggert@twinsun.com>
11866
11867 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
11868 Check for close failures.
11869 * src/files.h (xfclose): Return void, not int, since it always
11870 returned zero.
11871 * src/files.c (xfclose): Likewise. Report I/O error if ferror
11872 indicates one.
11873 * src/output.c (output_skeleton): Use xfclose rather than fclose
11874 and ferror. xfclose now checks ferror.
11875
11876 * data/glr.c (YYLEFTMOST_STATE): Remove.
11877 (yyreportTree): Use a stack-based leftmost state. This avoids
11878 our continuing battles with bogus warnings about initializers.
11879
56100c60
AD
118802002-10-30 Akim Demaille <akim@epita.fr>
11881
11882 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
11883 #if.
11884
51b4a04c
PH
118852002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11886
11887 * tests/glr-regr1.at: New test for reported regressions.
11888 * tests/testsuite.at: Add glr-regr1.at test.
11889 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 11890
bf1ebda2
PE
118912002-10-24 Paul Eggert <eggert@twinsun.com>
11892
5c16c6b1
PE
11893 Version 1.75a.
11894
bf1ebda2
PE
11895 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
11896 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
11897 we use malloc. Don't assume 'A' through 'Z' are contiguous.
11898 Don't assume strdup exists; POSIX says its an XSI extension.
11899 Check for buffer overflow on input.
11900
b526ee61
AD
119012002-10-24 Akim Demaille <akim@epita.fr>
11902
11903 * src/output.c (output_skeleton): Don't disable M4sugar comments
11904 too soon: it results in comments being expanded.
11905 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
11906 first output.
11907
f1886bb2
AD
119082002-10-24 Akim Demaille <akim@epita.fr>
11909
11910 * data/yacc.c (m4_int_type): New.
11911 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
11912 char' as only yacc.c wants K&R portability.
11913 * data/glr.c (yysigned_char): Remove.
11914 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
11915 Reported by Quoc Peyrot.
11916
c5576256
PE
119172002-10-23 Paul Eggert <eggert@twinsun.com>
11918
11919 * src/main.c (main): With --trace=time, report times even if a
11920 non-fatal error occurs. Formerly, the times were reported in some
11921 such cases but not in others.
11922 * src/reader.c (reader): Just return if a complaint has been issued,
11923 instead of exiting, so that 'main' can report times.
11924
27b0ffea
AD
119252002-10-22 Akim Demaille <akim@epita.fr>
11926
11927 * src/system.h: Include sys/types.
11928 Reported by Bert Deknuydt.
11929
223a7883
PE
119302002-10-23 Paul Eggert <eggert@twinsun.com>
11931
11932 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
11933 Suggested by Art Haas.
11934
119352002-10-22 Paul Eggert <eggert@twinsun.com>
11936
11937 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
11938 decl; not needed any more.
11939 * src/main.c (main): Use return to exit, undoing yesterday's change.
11940 The last OS that we could find where this wouldn't work is
11941 SunOS 3.5, and that's too old to worry about now.
11942
11943 * data/glr.c (struct yyltype): Define members even when not
11944 doing locations. This is more consistent with yacc.c, and it
11945 works around the following bug reports:
161a71f3
PE
11946 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
11947 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 11948
223a7883
PE
11949 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
11950 @acronym consistently. Standardize on "Yacc" instead of "YACC",
11951 "Algol" instead of "ALGOL". Give a bit more history about BNF.
11952
8b76775a
AD
119532002-10-22 Akim Demaille <akim@epita.fr>
11954
11955 * data/README: New.
11956
6db10d14
PE
119572002-10-21 Paul Eggert <eggert@twinsun.com>
11958
11959 Be consistent about 'bool'; the old code used an enum in one
11960 module and an int in another, and this violates the C standard.
11961 * m4/stdbool.m4: New file, from coreutils 4.5.3.
11962 * configure.ac (AC_HEADER_STDBOOL): Add.
11963 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
11964 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
11965 * src/symtab.c (hash_compare_symbol_t): Likewise.
11966 * src/system.h (bool, false, true): Use a definition consistent
11967 with ../lib/hash.c. All uses changed.
11968
11969 * src/complain.c (warning_issued): Renamed from warn_message_count,
11970 so that we needn't worry about integer overflow (!).
11971 Now of type bool. All uses changed.
11972 (complaint_issued): Renamed from complain_message_count; likewise.
11973
11974 * src/main.c (main): Use exit to exit with failure.
27b0ffea 11975
6db10d14
PE
11976 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
11977 rather than 1 and 0.
11978 * src/main.c (main): Likewise.
11979 * src/getargs.c (getargs): Likewise.
11980 * src/reader.c (reader): Likewise.
11981
11982 * src/getarg.c (getargs): Remove duplicate code for
11983 "Try `bison --help'".
11984
11985 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
11986 What was that "2" for?
11987
11988 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
11989 * src/getargs.c (usage): Likewise.
11990
11991 * src/getargs.c (getargs): When there are too few operands, report
11992 the last one. When there are too many, report the first extra
11993 one. This is how diffutils does it.
11994
92a060fd
PE
119952002-10-20 Paul Eggert <eggert@twinsun.com>
11996
11997 Remove K&R vestiges.
11998 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
11999 * src/complain.c (VA_START): Remove. Assume prototypes.
12000 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
12001 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
12002 fatal): Assume prototypes.
12003 * src/complain.h: Assume prototypes.
12004 * src/system.h (PARAMS): Remove.
12005 Include <limits.h> unconditionally, since it's guaranteeed even
12006 for a freestanding C89 compiler.
12007 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
12008 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 12009
e7cb57c0
AD
120102002-10-20 Akim Demaille <akim@epita.fr>
12011
12012 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
12013 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
12014 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
12015 (yyresolveStates, yyresolveAction, yyresolveStack)
12016 (yyprocessOneStack): Use them.
12017 (yy_reduce_print): New.
12018 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
12019
0245f82d
AD
120202002-10-20 Akim Demaille <akim@epita.fr>
12021
12022 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
12023 arguments and output `void'.
12024 (b4_c_function): Rename as...
12025 (b4_c_function_def): this.
12026 (b4_c_function_decl, b4_c_ansi_function_def)
12027 (b4_c_ansi_function_decl): New.
12028 Change the interpretation of the arguments: before `int, foo', now
12029 `int foo, foo'.
12030 * data/yacc.c (yyparse): Prototype and define thanks to these.
12031 Adjust b4_c_function_def uses.
12032 * data/glr.c (yyparse): Likewise, but ANSI only.
12033
39912f52
AD
120342002-10-20 Akim Demaille <akim@epita.fr>
12035
12036 * src/output.c (prepare): Move the definition of `tokens_number',
12037 `nterms_number', `undef_token_number', `user_token_number_max'
12038 to...
12039 (prepare_tokens): Here.
12040 (prepare_tokens): Rename as...
12041 (prepare_symbols): this.
12042 (prepare): Move the definition of `rules_number' to...
12043 (prepare_rules): here.
12044 (prepare): Move the definition of `last', `final_state_number',
12045 `states_number' to...
12046 (prepare_states): here.
12047 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
12048
20c1e2ad
AD
120492002-10-20 Akim Demaille <akim@epita.fr>
12050
12051 * src/tables.h, src/tables.c, src/output.c: Comment changes.
12052
21964f43
AD
120532002-10-20 Akim Demaille <akim@epita.fr>
12054
12055 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
12056 * data/c.m4: here.
12057
66d30cd4
AD
120582002-10-20 Akim Demaille <akim@epita.fr>
12059
12060 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
12061 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
12062 `pair'.
12063 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
12064 `name' to...
12065 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
12066 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
12067 These.
12068
95f2c9fe
PE
120692002-10-19 Paul Eggert <eggert@twinsun.com>
12070
12071 Do not create a temporary file, as that involves security and
12072 cleanup headaches. Instead, use a pair of pipes.
12073 Derived from a suggestion by Florian Krohm.
12074 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
12075 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
12076 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
12077 (BISON_PREREQ_SUBPIPE): Add.
12078 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
12079 Add subpipe.h, subpipe.c.
12080 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
12081 * po/POTFILES.in: Add lib/subpipe.c.
12082 * src/output.c: Include "subpipe.h".
12083 (m4_invoke): Remove decl.
12084 (scan_skel): New decl.
12085 (output_skeleton): Use pipe rather than temporary file for m4 input.
12086 Check that m4sugar.m4 is readable, to avoid deadlock.
12087 Check for pipe I/O error.
12088 * src/scan-skel.l (readpipe): Remove decl.
12089 (scan_skel): New function, to be used in place of m4_invoke.
12090 Read from stream rather than file.
66d30cd4 12091
95f2c9fe
PE
12092 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
12093 float, as this generates a warning on Solaris 8 + GCC 3.2 with
12094 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
12095 this generates a more-accurate value anyway.
12096
12097 * lib/timevar.c (timervar_accumulate): Rename locals to
12098 avoid confusion with similarly-named more-global.
12099 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
12100
12101 * src/output.c (prepare): Use xstrdup to convert char const *
12102 to char *, to avoid GCC warning.
12103
c19988b7
AD
121042002-10-19 Akim Demaille <akim@epita.fr>
12105
12106 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
12107 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
12108 Use them to have `calc.y' ready for %pure-parser.
12109 * data/yacc.c (YYLEX): Pass a yylex return type to
12110 b4_c_function_call.
12111
ae7453f2
AD
121122002-10-19 Akim Demaille <akim@epita.fr>
12113
12114 Prototype support of %lex-param and %parse-param.
12115
12116 * src/parse-gram.y: Add the definition of the %lex-param and
12117 %parse-param tokens, plus their rules.
12118 Drop the `_' version of %glr-parser.
12119 Add the "," token.
12120 * src/scan-gram.l (INITIAL): Scan them.
12121 * src/muscle_tab.c: Comment changes.
12122 (muscle_insert, muscle_find): Rename `pair' as `probe'.
12123 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
12124 (muscle_entry_s): The `value' member is no longer const.
12125 Adjust all dependencies.
12126 * src/muscle_tab.c (muscle_init): Adjust: use
12127 MUSCLE_INSERT_STRING.
12128 Initialize the obstack earlier.
12129 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
12130 (muscle_pair_list_grow): New.
12131 * data/c.m4 (b4_c_function_call, b4_c_args): New.
12132 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
12133 * tests/calc.at: Use %locations, not --locations.
12134 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
12135
0e575721
AD
121362002-10-19 Akim Demaille <akim@epita.fr>
12137
12138 * src/getargs.c (usage): Take status as argument and exit
12139 accordingly.
12140 Report the traditional `Try ... --help' message when status != 0.
12141 (usage, version): Don't take a FILE * as arg, it is pointless.
12142 (getargs): When there is an incorrect number of arguments, make it
12143 an error, and report it GNUlically thanks to `usage ()'.
12144
724ce7f5
PE
121452002-10-18 Paul Eggert <eggert@twinsun.com>
12146
3a781eb2
PE
12147 * data/glr.c (yyreportParseError): Don't assume that sprintf
12148 yields the length of the printed string, as this is not true
12149 on SunOS 4.1.4. Reported by Peter Klein.
12150
724ce7f5
PE
12151 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
12152 * tests/conflicts.at (%nonassoc and eof): Likewise.
12153 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
12154
473d0a75
AD
121552002-10-17 Akim Demaille <akim@epita.fr>
12156
12157 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
12158 * src/getargs.c (trace_types, trace_args): Adjust.
12159 * src/reader.c (grammar_current_rule_prec_set)
12160 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
12161 Standardize error messages.
12162 And s/@prec/%prec/!
12163 (reader): Use trace_flag to enable scanner/parser debugging,
12164 instead of an adhoc scheme.
12165 * src/scan-gram.l: Remove trailing debugging code.
12166
e76d2469
PE
121672002-10-16 Paul Eggert <eggert@twinsun.com>
12168
93e2236a
PE
12169 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
12170 MUSCLE_TAB_H.
12171
e76d2469
PE
12172 * NEWS: Officially drop support for building Bison with K&R C,
12173 since it didn't work anyway and it's not worth worrying about.
12174 * Makefile.maint (wget_files): Remove ansi2knr.c.
12175 (ansi2knr.c-url_prefix): Remove.
12176 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
12177 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
12178 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
12179
5bd1c419
PE
121802002-10-15 Paul Eggert <eggert@twinsun.com>
12181
12182 Stop using the "enum_" trick for K&R-style function definitions;
12183 it confused me, and I was the author! Instead, assume that people
12184 who want to use K&R C compilers (when using these modules in GCC,
12185 perhaps?) will run ansi2knr.
12186
12187 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
12188 All uses of "enum_" changed to "enum ".
12189 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
12190 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 12191
5bd1c419
PE
12192 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
12193 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
12194 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
12195 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
12196 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
12197 abitset_not, abitset_ones, abitset_or, abitset_or_and,
12198 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
12199 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
12200 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
12201 Use function prototypes; this removes the need for declaring
12202 static functions simply to provide their prototypes.
12203 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
12204 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
12205 bitset_count_, bitset_create, bitset_dump, bitset_first,
12206 bitset_free, bitset_init, bitset_last, bitset_next,
12207 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
12208 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
12209 bitset_print, bitset_release_memory, bitset_toggle_,
12210 bitset_type_choose, bitset_type_get, bitset_type_name_get,
12211 debug_bitset): Likewise.
12212 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
12213 * lib/bitset_stats.c (bitset_log_histogram_print,
12214 bitset_percent_histogram_print, bitset_stats_and,
12215 bitset_stats_and_cmp, bitset_stats_and_or,
12216 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
12217 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
12218 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
12219 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
12220 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
12221 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
12222 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
12223 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
12224 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
12225 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
12226 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
12227 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
12228 bitset_stats_zero): Likewise.
12229 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
12230 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
12231 bitsetv_dump, debug_bitsetv): Likewise.
12232 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
12233 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
12234 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
12235 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
12236 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
12237 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
12238 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
12239 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
12240 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
12241 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
12242 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
12243 Likewise.
12244 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
12245 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
12246 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
12247 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
12248 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
12249 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
12250 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
12251 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
12252 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
12253 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
12254 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 12255
ae26e1f0
AD
122562002-10-14 Akim Demaille <akim@epita.fr>
12257
12258 Version 1.75.
12259
d43baf71
AD
122602002-10-14 Akim Demaille <akim@epita.fr>
12261
12262 * tests/Makefile.am (maintainer-check-posix): New.
12263
7ebc83e3
AD
122642002-10-14 Akim Demaille <akim@epita.fr>
12265
12266 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
12267 member.
12268
05846dae
AD
122692002-10-14 Akim Demaille <akim@epita.fr>
12270
12271 * src/tables.c (table_ninf_remap): base -> tab.
12272 Reported by Matt Rosing.
12273
1318e37d
PE
122742002-10-14 Paul Eggert <eggert@twinsun.com>
12275
447fbb17
PE
12276 * tests/action.at, tests/calc.at, tests/conflicts.at,
12277 tests/cxx-type.at, tests/headers.at, tests/input.at,
12278 tests/regression.at, tests/synclines.at, tests/torture.at:
12279 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
12280 so that the tests still work even if POSIXLY_CORRECT is set.
12281 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 12282
1318e37d
PE
12283 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
12284 for portability to K&R hosts. Fix typo: signed char is guaranteed
12285 only to 127, not to 128.
12286 * data/glr.c (yysigned_char): New type.
12287 * data/yacc.c (yysigned_char): Likewise.
12288 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
12289
cc0f0794
PE
122902002-10-13 Paul Eggert <eggert@twinsun.com>
12291
5038f418
PE
12292 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
12293 true due to limited range of data type" warning from GCC.
12294
cc0f0794
PE
12295 * data/c.m4 (b4_token_defines): Protect against double-inclusion
12296 by wrapping enum yytokentype's definition inside #ifndef
12297 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
12298
6fed0802
AD
122992002-10-13 Akim Demaille <akim@epita.fr>
12300
12301 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
12302 Un yy- yyrhs to avoid the name clash with the global YYRHS.
12303
32f0598d
AD
123042002-10-13 Akim Demaille <akim@epita.fr>
12305
12306 * Makefile.maint: Update from Autoconf 2.54.
12307 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
12308
7ea9a33f
AD
123092002-10-13 Akim Demaille <akim@epita.fr>
12310
12311 * src/print.c (print_state): Separate the list of solved conflicts
12312 from the other items.
12313 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
12314
ea99527d
AD
123152002-10-13 Akim Demaille <akim@epita.fr>
12316
12317 Let nondeterministic skeletons be usable with deterministic
12318 tables.
12319
12320 With the patch, GAWK compiled by GCC without -O2 passes its test
12321 suite using a GLR parser driven by LALR tables. It fails with -O2
12322 because `struct stat' gives two different answers on my machine:
12323 88 (definition of an auto var) and later 96 (memset on this var).
12324 Hence the stack is badly corrumpted. The headers inclusion is to
12325 blame: if I move the awk.h inclusion before GLR's system header
12326 inclusion, the two struct stat have the same size.
12327
12328 * src/tables.c (pack_table): Always create conflict_table.
12329 (token_actions): Always create conflict_list.
12330 * data/glr.c (YYFLAG): Remove, unused.
12331
f377f69f
AD
123322002-10-13 Akim Demaille <akim@epita.fr>
12333
12334 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
12335 (O0FLAGS): New.
12336 (VALGRIND, GXX): New.
12337 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
12338 * tests/bison.in: Run $PREBISON a pre-command.
12339 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
12340 (maintainer-check-g++): New.
12341 * Makefile.am (maintainer-check): New.
12342
2a1fe6ed
AD
123432002-10-13 Akim Demaille <akim@epita.fr>
12344
12345 * data/glr.c: Formatting changes.
12346 Tweak some trace messages to match yacc.c's.
12347
f50adbbd
AD
123482002-10-13 Akim Demaille <akim@epita.fr>
12349
12350 GLR parsers sometimes raise parse errors instead of performing the
12351 default reduction.
12352 Reported by Charles-Henry de Boysson.
12353
12354 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
ba0fe3c7 12355 check the length of the traces when %glr.
f50adbbd
AD
12356 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
12357 GLR's traces.
12358 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
12359 Test GLR parsers.
12360 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
12361 (yyltype): Remove the yy prefix from the member names.
12362 (yytable): Complete its comment.
12363 (yygetLRActions): Map error action number from YYTABLE from
12364 YYTABLE_NINF to 0.
12365 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
12366 (which was a bug: it should have been YYTABEL_NINF, and yet it was
12367 not satisfying as we could compare an YYACTION computed from
12368 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
12369 only value for error actions.
12370 (yyreportParseError): In verbose parse error messages, don't issue
12371 `error' in the list of expected tokens.
12372 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
12373 next action to perform to match glr.c's decoding.
12374 (yytable): Complete its comment.
12375
bcbad5b9
PE
123762002-10-13 Paul Eggert <eggert@twinsun.com>
12377
12378 Fix problem reported by Henrik Grubbstroem in
161a71f3 12379 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
12380 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
12381 because the Bison parser reads the second action before reducing
12382 the first one.
12383 * src/scan-gram.l (rule_length): New static var.
12384 Use it to keep track of the rule length in the scanner, since
12385 we can't expect the parser to be in lock-step sync with the scanner.
12386 (handle_action_dollar, handle_action_at): Use this var.
12387 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 12388
14904b89
PE
123892002-10-12 Paul Eggert <eggert@twinsun.com>
12390
1fe611e5
PE
12391 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
12392 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
12393 Include <sys/time.h> when checking for clock_t and struct tms.
12394 Use same include order as source.
12395 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
161a71f3 12396 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 12397
1fe611e5
PE
12398 * lib/timevar.c: Update copyright date and clarify comments.
12399 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 12400
1fe611e5
PE
12401 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
12402 GCC version as of today, then merge Bison's changes.
12403 Change "GCC" to "Bison" in copyright notice. timevar.def's
12404 author is Akim, so change that too.
12405
98194095
PE
12406 * src/reader.c (grammar_current_rule_check):
12407 Don't worry about the default action if $$ is untyped.
12408 Prevents bogus warnings reported by Jim Gifford in
161a71f3 12409 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 12410
14904b89
PE
12411 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
12412 * data/glr.c, data/lalr1.cc, data/yacc.c:
12413 Output token definitions before the first part of user declarations.
12414 Fixes compatibility problem reported by Jim Gifford for kbd in
161a71f3 12415 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 12416
ff6dca18
PE
124172002-10-11 Paul Eggert <eggert@twinsun.com>
12418
12419 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
12420 (yyparse): here. This undoes some of the 2002-07-25 change.
12421 Compatibility problem reported by Ralf S. Engelschall with
12422 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
12423
eb714592
AD
124242002-10-11 Akim Demaille <akim@epita.fr>
12425
12426 * tests/regression.at Characters Escapes): New.
12427 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
12428 characters.
12429 Reported by Jan Nieuwenhuizen.
12430
b7195100
AD
124312002-10-11 Akim Demaille <akim@epita.fr>
12432
12433 * po/id.po: New.
12434
f28a0f2d
PE
124352002-10-10 Paul Eggert <eggert@twinsun.com>
12436
12437 Portability fixes for bitsets; this also avoids several GCC
12438 warnings.
12439
12440 * lib/abitset.c: Include <stddef.h>, for offsetof.
12441 * lib/lbitset.c: Likewise.
12442
12443 * lib/abitset.c (abitset_bytes): Return a size that is aligned
12444 properly for vectors of objects. Do not assume that adding a
12445 header size to a multiple of a word size yields a value that is
12446 properly aligned for the whole union.
12447 * lib/bitsetv.c (bitsetv_alloc): Likewise.
12448
12449 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
12450 unique names for structures.
12451 * lib/ebitset.c (ebitset_bytes): Likewise.
12452 * lib/lbitset.c (lbitset_bytes): Likewise.
12453
12454 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
12455 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
12456 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
12457 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
12458 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
12459 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
12460 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
12461 to improve the type-checking that GCC can do.
12462 * lib/bitset.c (bitset_op4_cmp): Likewise.
12463 * lib/bitset_stats.c (bitset_stats_count,
12464 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
12465 bitset_stats_copy, bitset_stats_disjoint_p,
12466 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
12467 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
12468 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
12469 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
12470 bitset_stats_and_or_cmp, bitset_stats_andn_or,
12471 bitset_stats_andn_or_cmp, bitset_stats_or_and,
12472 bitset_stats_or_and_cmp): Likewise.
12473 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
12474 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
12475 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
12476 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
12477
12478 * lib/abitset.h: Include bitset.h, not bbitset.h.
12479 * lib/ebitset.h: Likewise.
12480 * lib/lbitset.h: Likewise.
12481
12482 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
12483 All instances of parameters of type enum bitset_opts are now of
12484 type enum_bitset_opts, to conform to the C Standard, and similarly
12485 for enum_bitset_type.
12486 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
12487 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
12488
12489 Do not use "struct bitset_struct" to mean different things in
12490 different modules. Not only is this confusing, it violates
12491 the C Standard, which requires that structure types in different
12492 modules must be compatible if one is to be passed to the other.
12493 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
12494 All instances of "struct bitset_struct *" replaced with "bitset".
12495 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
12496 (union bitset_union, struct abitset_struct, struct ebitset_struct,
12497 struct lbitset_struct, struct bitset_stats_struct): New types.
12498 All uses of struct bitset_struct changed to union bitset_union,
12499 etc.
ba0fe3c7 12500 * lib/abitset.c (struct abitset_struct, abitset,
f28a0f2d
PE
12501 struct bitset_struct): Remove.
12502 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
12503 struct bitset_struct): Remove.
12504 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
12505 bitset_struct): Remove.
12506 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
12507 Likewise.
12508
12509 Do not call a function of type T using a call that assumes the
12510 function is of a different type U. Standard C requires that a
12511 function must be called with a type that is compatible with its
12512 definition.
12513 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
12514 New decls.
12515 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
12516 New functions.
12517 * lib/ebitset.c (PFV): Remove.
12518 * lib/lbitset.c (PFV): Likewise.
12519 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
12520 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
12521 decls.
12522 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
12523 (ebitset_vtable): Use them.
12524 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
12525 lbitset_xor): New functions.
12526 (lbitset_vtable): Use them.
12527
12528 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
12529 Declare.
12530
12531 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
12532 GCC warning.
12533 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
12534 Use offsetof, for simplicity.
12535
6fbe4984
PE
125362002-10-06 Paul Eggert <eggert@twinsun.com>
12537
12538 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
12539 the same width as int. This reapplies a hunk of the 2002-08-12 patch
161a71f3 12540 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
12541 which was inadvertently undone by the 2002-09-30 patch.
12542 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
12543 the same width as int.
12544
420f93c8
PE
125452002-10-04 Paul Eggert <eggert@twinsun.com>
12546
12547 Version 1.50.
12548
12549 * configure.ac (AC_INIT), NEWS: Increment version number.
12550
12551 * doc/bison.texinfo: Minor spelling, grammar, and white space
12552 fixes.
12553 (Symbols): Mention that any negative value returned from yylex
12554 signifies end-of-input. Warn about negative chars. Mention
12555 the portable Standard C character set.
12556
12557 The GNU coding standard says CFLAGS and YFLAGS are reserved
12558 for the installer to set.
12559 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
12560 * src/Makefile.am (AM_CFLAGS): Likewise.
12561 (AM_YFLAGS): Renamed from YFLAGS.
12562
12563 Fix some MAX and MIN problems.
12564 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
12565 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
12566 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
12567 * src/reader.c (reader): Use it.
12568
12569 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
12570 POSIX 1003.1-2001 has removed fgrep.
12571
125722002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
12573
12574 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
12575 interpreted as signed.
12576 * lib/ebitset.c (ebitset_list): Fix bug.
12577
ff68026d
PE
125782002-10-01 Paul Eggert <eggert@twinsun.com>
12579
12580 More fixes for 64-bit hosts and large bitsets.
12581
12582 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
12583 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
12584 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
12585 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
12586 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
12587 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
12588 bitset_count_): Likewise.
12589 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
12590 bitset_first, bitset_last): Likewise.
12591 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
12592 bitset_stats_list_reverse, bitset_stats_size,
12593 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
12594 Likewise.
12595 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
12596 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
12597 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
12598 bitsetv_reflexive_transitive_closure): Likewise.
12599 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
12600 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
12601 Likewise.
12602 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
12603 Likewise.
420f93c8 12604
ff68026d
PE
12605 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
12606 Use size_t, not unsigned int, to count bytes.
12607 * lib/abitset.h (abitset_bytes): Likewise.
12608 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
12609 Likewise.
12610 * lib/bitset.h (bitset_bytes): Likewise.
12611 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
12612 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
12613 * lib/bitsetv.c (bitsetv_alloc): Likewise.
12614 * lib/ebitset.c (ebitset_bytes): Likewise.
12615 * lib/ebitset.h (ebitset_bytes): Likewise.
12616 * lib/lbitset.c (lbitset_bytes): Likewise.
12617 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 12618
ff68026d
PE
12619 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
12620 abitset_subset_p, abitset_disjoint_p, abitset_and,
12621 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
12622 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
12623 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
12624 abitset_or_and, abitset_or_and_cmp):
12625 Use bitset_windex instead of unsigned int.
12626 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
12627 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
12628 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
12629 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
12630 Likewise.
12631 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 12632
ff68026d
PE
12633 * lib/bitset.c (bitset_print):
12634 Use proper printf formats for widths of integer types.
12635 * lib/bitset_stats.c (bitset_percent_histogram_print,
12636 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
12637 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
12638 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
12639 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 12640
ff68026d
PE
12641 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
12642 BITSET_SIZE_MAX): New macros.
12643 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
12644 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
12645 to BITSET_WINDEX_MAX.
12646
12647 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
12648 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
12649 since we now return the bitset_bindex type (not int).
12650
12651 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
12652 when computing sizes.
12653 * lib/ebitset.c (ebitset_elts_grow): Likewise.
12654
12655 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
12656 and avoid cast to unsigned.
12657
6aa452a6
AD
126582002-09-30 Akim Demaille <akim@epita.fr>
12659
12660 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
12661 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
12662 Updates from Michael Hayes.
12663
927f7817
AD
126642002-09-30 Art Haas <ahaas@neosoft.com>
12665
12666 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
12667 invocations.
12668 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
12669 defined.
12670
9738f41e
AD
126712002-09-27 Akim Demaille <akim@epita.fr>
12672
12673 Version 1.49c.
12674
a5c75d7f
AD
126752002-09-27 Akim Demaille <akim@epita.fr>
12676
12677 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
12678 (Because of AC_LIBSOURCE).
12679
8280e179
AD
126802002-09-27 Akim Demaille <akim@epita.fr>
12681
12682 Playing with Autoscan.
12683
12684 * configure.ac: Remove the old LIBOBJ tweaks.
12685 (AC_REPLACE_FUNCS): Add strrchr and strtol.
12686 * lib/strrchr.c: New.
12687 * lib/strtol.c: New, from the Coreutils 4.5.1.
12688
ae64af35
AD
126892002-09-27 Akim Demaille <akim@epita.fr>
12690
12691 Playing with Autoscan.
12692
12693 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
12694 * lib/Makefile.am (libbison_a_SOURCES): No longer include
12695 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
12696 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
12697 Coreutils 4.5.1.
12698
d1a1114f
AD
126992002-09-24 Akim Demaille <akim@epita.fr>
12700
12701 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
12702 (Frequently Asked Questions, Parser Stack Overflow): New.
12703
b906441c
AD
127042002-09-13 Akim Demaille <akim@epita.fr>
12705
12706 Playing with autoscan.
12707
12708 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
12709 * src/files.c (skeleton_find): Remove, unused.
12710 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
12711 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
12712
bd701811
AD
127132002-09-13 Akim Demaille <akim@epita.fr>
12714
12715 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
12716 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
12717
e0a13e7b
AD
127182002-09-13 Akim Demaille <akim@epita.fr>
12719
12720 * configure.ac: Require 2.54.
12721 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
12722 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
12723 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
12724 Remove, provided by Autoconf macros.
12725
c97011bf
AD
127262002-09-12 Akim Demaille <akim@epita.fr>
12727
12728 * m4/prereq.m4: Update, from Coreutils 4.5.1.
12729
d862b1be
AD
127302002-09-12 Akim Demaille <akim@epita.fr>
12731
12732 * m4/prereq.m4: Update, from Fileutils 4.1.5.
12733 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
12734 Reported by Martin Mokrejs.
12735
3d38c03a
AD
127362002-09-10 Akim Demaille <akim@epita.fr>
12737
12738 * src/parse-gram.y: Associate a human readable string to each
12739 token type.
12740 * tests/regression.at (Invalid inputs): Adjust.
12741
b6347355
AD
127422002-09-10 Gary V. Vaughan <gary@gnu.org>
12743
12744 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
12745 with an Autoconf-2.5x style configure.ac.
12746
09ba4ab2
PE
127472002-09-06 Paul Eggert <eggert@twinsun.com>
12748
12749 * doc/bison.texinfo (Conditions): Make explicit that the GPL
12750 exception applies only to yacc.c. This is a modification of a
12751 patch originally suggested by Akim Demaille.
12752
21846f69
AD
127532002-09-06 Akim Demaille <akim@epita.fr>
12754
09ba4ab2
PE
12755 * data/c.m4 (b4_copyright): Move the GPL exception comment from
12756 here to...
12757 * data/yacc.c: here.
12758
21846f69
AD
12759 * data/lalr1.cc (struct yyltype): Don't define it, since we use
12760 LocationType.
12761 (b4_ltype): Default to yy::Location from location.hh.
12762
c0ad8bf3
AD
127632002-09-04 Jim Meyering <jim@meyering.net>
12764
12765 * data/yacc.c: Guard the declaration of yytoknum also with
12766 `#ifdef YYPRINT', so it is declared only when used.
12767
3a93251e
AD
127682002-09-04 Akim Demaille <akim@epita.fr>
12769
12770 * configure.in: Rename as...
12771 * configure.ac: this.
12772 Bump to 1.49c.
12773
427c0dda
AD
127742002-09-04 Akim Demaille <akim@epita.fr>
12775
12776 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
12777 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
12778 translate maintainer only messages.
12779
6a254321
PE
127802002-08-12 Paul Eggert <eggert@twinsun.com>
12781
645e30d1
PE
12782 Version 1.49b.
12783
6a254321
PE
12784 * Makefile.am (SUBDIRS): Remove intl.
12785 (DISTCLEANFILES): Remove.
12786 * NEWS: Mention that GNU M4 is now required. Clarify what is
12787 meant by "larger grammars". Mention the pt_BR translation.
12788 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
12789 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
12790 Bump version from 0.11.2 to 0.11.5.
12791 (BISON_PREREQ_STAGE): Remove.
12792 (AM_GNU_GETTEXT): Use external gettext.
12793 (AC_OUTPUT): Remove intl/Makefile.
12794
12795 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
12796
12797 * data/glr.c: Include string.h, for strlen.
12798 (yyreportParseError): Use size_t for yysize.
12799 (yy_yypstack): No longer nested inside yypstates, as nested
12800 functions are not portable. Do not assume size_t is the
12801 same width as int.
12802 (yypstates): Do not assume that ptrdiff_t is the same width
12803 as int, and similarly for yyposn and YYINDEX.
12804
12805 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
12806
12807 * lib/Makefile.am (INCLUDES): Do not include from the intl
12808 directory, which has been removed.
12809 * src/Makefile.am (INCLUDES): Likewise.
12810
12811 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
12812 (bitsets_sources, additional_bitsets_sources, timevars_sources):
12813 New vars.
12814
12815 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
12816 * tests/Makefile.am (EXTRA_DIST): Likewise.
12817
12818 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
12819 Do not assume that bitset_windex is the same width as unsigned.
12820
12821 * lib/abitset.c (abitset_unused_clear): Do not assume that
12822 bitset_word is the same width as int.
12823 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
12824 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
12825 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
12826 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
12827 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
12828
12829 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
12830 portability to one's complement hosts!).
12831 * lib/ebitset.c (ebitset_op1): Likewise.
12832 * lib/lbitset.c (lbitset_op1): Likewise.
12833
12834 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
12835 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
12836 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
12837 Sync with fileutils.
12838 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
12839 lib/gettext.h: Sync with diffutils.
12840
12841 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
12842 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
12843
12844 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
12845 PROTOTYPES to check for prototypes, and "defined __STDC__" to
12846 check for void *.
12847
12848 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
12849 size_t; the old version tried to do this but casted improperly.
12850 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
12851 (bitset_test): Now returns int, not unsigned long.
12852
12853 * lib/bitset_stats.c: Include "gettext.h".
12854 (_): New macro.
12855 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
12856 name locals "index", as it generates unnecessary warnings on some
12857 hosts that have an "index" function.
12858
12859 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
12860 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
12861 they need translation.
12862 * src/LR0.c (state_list_append, new_itemsets, get_state,
12863 append_states, generate_states): Likewise.
12864 * src/assoc.c (assoc_to_string): Likewise.
12865 * src/closure.c (print_closure, set_firsts, closure): Likewise.
12866 * src/gram.c (grammar_dump): Likewise.
12867 * src/injections.c (injections_compute): Likewise.
12868 * src/lalr.c (lookaheads_print): Likewise.
12869 * src/relation.c (relation_transpose): Likewise.
12870 * src/scan-gram.l: Likewise.
12871 * src/tables.c (table_grow, pack_vector): Likewise.
12872
12873 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
12874 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
12875 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
12876 * m4/mbstate_t.m4: Sync with fileutils.
12877 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
12878
12879 * po/LINGUAS: Add pt_BR.
12880 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
12881 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
12882 lib/timevar.c.
12883 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
12884 manual recommends.
12885 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
12886
12887 * src/complain.c (strerror_r): Remove decl; not needed.
12888 (strerror): Use same pattern as ../lib/error.c.
12889
12890 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
12891
12892 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
12893
12894 * src/main.c (main): Cast result of bindtextdomain and textdomain
12895 to void, to avoid a GCC warning when --disable-nls is in effect.
12896
12897 * src/scan-gram.l: Use strings rather than escapes when possible,
12898 to minimize the number of warnings from xgettext.
12899 (handle_action_dollar, handle_action_at): Don't use isdigit,
12900 as it mishandles negative chars and it may not work as expected
12901 outside the C locale.
12902
12903 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
12904 this is a GCC extension and is not portable to other compilers.
12905
12906 * src/system.h (alloca): Use same pattern as ../lib/error.c.
12907 Do not include <ctype.h>; no longer needed.
12908 Do not include <malloc.h>; no longer needed (and generates
12909 warnings on OpenBSD 3.0).
12910
12911 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
12912 it's not portable.
12913
12914 * tests/regression.at: Do not use 'cc -c input.c -o input';
12915 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
12916
12917 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
12918 exit status as failure, not just exit status 1. Sun C exits
12919 with status 2 sometimes.
12920
12921 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
12922 Use it for the two large tests.
12923
c8f002c7
AD
129242002-08-02 Akim Demaille <akim@epita.fr>
12925
12926 * src/conflicts.c (conflicts_output): Don't output rules never
12927 reduced here, since anyway that computation doesn't work.
12928 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
12929 (rule_useless_p, rule_never_reduced_p): New.
12930 (grammar_rules_partial_print): Use a filter instead of a range.
12931 Display the title only if needed.
12932 (grammar_rules_print): Adjust.
12933 (grammar_rules_never_reduced_report): New.
12934 * src/tables.c (action_row): Move the computation of rules never
12935 reduced to...
12936 (token_actions): here.
12937 * src/main.c (main): Make the parser before making the report, so
12938 that rules never reduced are computed.
12939 Call grammar_rules_never_reduced_report.
12940 * src/print.c (print_results): Report rules never reduced.
12941 * tests/conflicts.at, tests/reduce.at: Adjust.
12942
cd08e51e
AD
129432002-08-01 Akim Demaille <akim@epita.fr>
12944
12945 Instead of attaching lookaheads and duplicating the rules being
12946 reduced by a state, attach the lookaheads to the reductions.
12947
12948 * src/state.h (state_t): Remove the `lookaheads',
12949 `lookaheads_rule' member.
12950 (reductions_t): Add a `lookaheads' member.
12951 Use a regular array for the `rules'.
12952 * src/state.c (reductions_new): Initialize the lookaheads member
12953 to 0.
12954 (state_rule_lookaheads_print): Adjust.
12955 * src/state.h, src/state.c (state_reductions_find): New.
12956 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
12957 (count_rr_conflicts): Adjust.
12958 * src/lalr.c (LArule): Remove.
12959 (add_lookback_edge): Adjust.
12960 (state_lookaheads_count): New.
12961 (states_lookaheads_initialize): Merge into...
12962 (initialize_LA): this.
12963 (lalr_free): Adjust.
12964 * src/main.c (main): Don't free nullable and derives too early: it
12965 is used by --verbose.
12966 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
12967
bb0027a9
AD
129682002-08-01 Akim Demaille <akim@epita.fr>
12969
12970 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
12971 `rule_number_t**'.
12972 (set_derives, free_derives): Rename as...
12973 (derives_compute, derives_free): this.
12974 Adjust all dependencies.
12975 * src/nullable.c (set_nullable, free_nullable): Rename as...
12976 (nullable_compute, nullable_free): these.
12977 (rule_list_t): Store rule_t *, not rule_number_t.
12978 * src/state.c (state_rule_lookaheads_print): Directly compare rule
12979 pointers, instead of their numbers.
12980 * src/main.c (main): Call nullable_free, and derives_free earlier,
12981 as they were lo longer used.
12982
3325ddc4
AD
129832002-08-01 Akim Demaille <akim@epita.fr>
12984
12985 * lib/timevar.c (get_time): Include children time.
12986 * src/lalr.h (LA, LArule): Don't export them: used with the
12987 state_t.
12988 * src/lalr.c (LA, LArule): Static.
12989 * src/lalr.h, src/lalr.c (lalr_free): New.
12990 * src/main.c (main): Call it.
12991 * src/tables.c (pack_vector): Check whether loc is >= to the
12992 table_size, not >.
12993 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
12994 (tables_generate): do it, since that's also it which allocates
12995 them.
12996 Don't free LA and LArule, main does.
12997
c6f1a33c
AD
129982002-07-31 Akim Demaille <akim@epita.fr>
12999
13000 Separate parser tables computation and output.
13001
13002 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
13003 (conflict_list, conflict_list_cnt, table, check, table_ninf)
13004 (yydefgoto, yydefact, high): Move to...
13005 * src/tables.h, src/tables.c: here.
13006 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
13007 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
13008 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
13009 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
13010 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
13011 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
13012 (action_row, save_row, token_actions, save_column, default_goto)
13013 (goto_actions, sort_actions, matching_state, pack_vector)
13014 (table_ninf_remap, pack_table, prepare_actions): Move to...
13015 * src/tables.c: here.
13016 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
13017 * src/output.c (token_actions, output_base, output_conflicts)
13018 (output_check): Merge into...
13019 (prepare_actions): this.
13020 (actions_output): Rename as...
13021 (user_actions_output): this.
13022 * src/main.c (main): Call tables_generate and tables_free.
13023
1509d42f
AD
130242002-07-31 Akim Demaille <akim@epita.fr>
13025
13026 Steal GCC's --time-report support.
13027
13028 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
13029 stolen/adjusted from GCC.
13030 * m4/stage.m4: Remove time related checks.
13031 * m4/timevar.m4: New.
13032 * configure.in: Adjust.
13033 * src/system.h: Adjust to using timevar.h.
13034 * src/getargs.h, src/getargs.c: Support trace_time for
13035 --trace=time.
13036 * src/main.c (stage): Remove.
13037 (main): Replace `stage' invocations with timevar calls.
13038 * src/output.c: Insert pertinent timevar calls.
13039
273a74fa
AD
130402002-07-31 Akim Demaille <akim@epita.fr>
13041
13042 Let --trace have arguments.
13043
13044 * src/getargs.h (enum trace_e): New.
13045 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
13046 (long_options, short_options): --trace/-T takes an optional
13047 argument.
13048 Change all the uses of trace_flag to reflect the new flags.
13049 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
13050
13051 Strengthen `stage' portability.
13052
13053 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
13054 * configure.in: Use it.
13055 Don't check for malloc.h and sys/times.h.
13056 * src/system.h: Include them when appropriate.
13057 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
13058 times and struct tms are available.
13059
217598da
AD
130602002-07-30 Akim Demaille <akim@epita.fr>
13061
13062 In verbose parse error message, don't report `error' as an
13063 expected token.
13064 * tests/actions.at (Printers and Destructors): Adjust.
13065 * tests/calc.at (Calculator $1): Adjust.
13066 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
13067 error message, do not report the parser accepts the error token in
13068 that state.
13069
52489d44
AD
130702002-07-30 Akim Demaille <akim@epita.fr>
13071
13072 Normalize conflict related messages.
13073
13074 * src/complain.h, src/complain.c (warn, complain): New.
13075 * src/conflicts.c (conflicts_print): Use them.
13076 (conflict_report_yacc): New, extracted from...
13077 (conflicts_print): here.
13078 * tests/conflicts.at, tests/existing.at: Adjust.
13079
e8832397
AD
130802002-07-30 Akim Demaille <akim@epita.fr>
13081
13082 Report rules which are never reduced by the parser: those hidden
13083 by conflicts.
13084
13085 * src/LR0.c (save_reductions): Don't make the final state too
13086 different: save its reduction (accept) instead of having a state
13087 without any action (no shift or goto, no reduce).
13088 Note: the final state is now a ``regular'' state, i.e., the
13089 parsers now contain `reduce 0' as default reduction.
13090 Nevertheless, since they decide to `accept' when yystate =
13091 final_state, they still will not reduce rule 0.
13092 * src/print.c (print_actions, print_reduction): Adjust.
13093 * src/output.c (action_row): Track reduced rules.
13094 (token_actions): Report rules never reduced.
13095 * tests/conflicts.at, tests/regression.at: Adjust.
13096
caf23d24
AD
130972002-07-30 Akim Demaille <akim@epita.fr>
13098
13099 `stage' was accidently included in a previous patch.
13100 Initiate its autoconfiscation.
13101
13102 * configure.in: Look for malloc.h and sys/times.h.
13103 * src/main.c (stage): Adjust.
13104 Report only when trace_flag.
13105
640748ee
AD
131062002-07-29 Akim Demaille <akim@epita.fr>
13107
13108 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
13109 state_number_t.
13110 (errs_t): symbol_t*, not symbol_number_t.
13111 (reductions_t): rule_t*, not rule_number_t.
13112 (FOR_EACH_SHIFT): New.
13113 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
13114 * src/print.c, src/print_graph.c: Adjust.
13115
88bce5a2
AD
131162002-07-29 Akim Demaille <akim@epita.fr>
13117
13118 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
13119
13120 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
13121 (endtoken, accept): these.
13122 * src/reader.c (reader): Set endtoken's default tag to "$end".
13123 Set undeftoken's tag to "$undefined" instead of "$undefined.".
13124 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
13125 Adjust.
13126
1bfb97db
AD
131272002-07-29 Akim Demaille <akim@epita.fr>
13128
13129 * src/reduce.c (reduce_grammar): When the language is empty,
13130 complain about the start symbol, not the axiom.
13131 Use its location.
13132 * tests/reduce.at (Empty Language): New.
13133
fc5734fe
AD
131342002-07-26 Akim Demaille <akim@epita.fr>
13135
13136 * src/reader.h, src/reader.c (gram_error): ... can't get
13137 yycontrol without making too strong assumptions on the parser
13138 itself.
13139 * src/output.c (prepare_tokens): Use the real 0th value of
13140 token_translations instead of `0'.
13141 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
13142 visible here.
13143 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
13144 for the time being: %locations ought to provide it to yyerror.
13145
3650b4b8
AD
131462002-07-25 Akim Demaille <akim@epita.fr>
13147
13148 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
13149 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
13150 * tests/regression.at (Web2c Actions): Adjust.
13151
4b3d3a8e
AD
131522002-07-25 Akim Demaille <akim@epita.fr>
13153
13154 Stop storing rules from 1 to nrules + 1.
13155
13156 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
13157 * src/nullable.c, src/output.c, src/print.c, src/reader.c
13158 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
13159 Iterate from 0 to nrules.
13160 Use rule_number_as_item_number and item_number_as_rule_number.
13161 Adjust to `derive' now containing possibly 0.
13162 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
13163 Handle the `- 1' part in rule numbers from/to item numbers.
13164 * src/conflicts.c (log_resolution): Fix the message which reversed
13165 shift and reduce.
13166 * src/output.c (action_row): Initialize default_rule to -1.
13167 (token_actions): Adjust.
13168 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
13169 expected output.
13170 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
13171
4a2a22f4
AD
131722002-07-25 Akim Demaille <akim@epita.fr>
13173
13174 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
13175 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
13176 (b4_c_knr_arg_decl): New.
13177 * data/yacc.c: Use it to define yysymprint, yydestruct, and
13178 yyreport_parse_error.
13179
b8df3223
AD
131802002-07-25 Akim Demaille <akim@epita.fr>
13181
13182 * data/yacc.c (yyreport_parse_error): New, extracted from...
13183 (yyparse): here.
13184 (yydestruct, yysymprint): Move above yyparse.
13185 Be K&R compliant.
13186
a762e609
AD
131872002-07-25 Akim Demaille <akim@epita.fr>
13188
13189 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
13190 replace...
13191 (b4_sint_type, b4_uint_type): these.
13192 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
13193 * tests/regression.at (Web2c Actions): Adjust.
13194
12b0043a
AD
131952002-07-25 Akim Demaille <akim@epita.fr>
13196
13197 * src/gram.h (TIEM_NUMBER_MAX): New.
13198 (item_number_of_rule_number, rule_number_of_item_number): Rename
13199 as...
13200 (rule_number_as_item_number, item_number_as_rule_number): these.
13201 Adjust dependencies.
13202 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
13203 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
13204 (symbol_number_to_vector_number): New.
13205 (order): Of vector_number_t* type.
13206 (base_t, BASE_MAX, BASE_MIN): New.
13207 (froms, tos, width, pos, check): Of base_t type.
13208 (action_number_t, ACTION_MIN, ACTION_MAX): New.
13209 (actrow): Of action_number_t type.
13210 (conflrow): Of unsigned int type.
13211 (table_ninf, base_ninf): New.
13212 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
13213 (muscle_insert_int_table, muscle_insert_base_table)
13214 (muscle_insert_rule_number_table): New.
13215 (prepare_tokens): Output `toknum' as int_table.
13216 (action_row): Returns a rule_number_t.
13217 Use ACTION_MIN, not SHRT_MIN.
13218 (token_actions): yydefact is rule_number_t*.
13219 (table_ninf_remap): New.
13220 (pack_table): Use it for `base' and `table'.
13221 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
13222 replaced with...
13223 (YYPACT_NINF, YYTABLE_NINF): these.
13224 (yypact, yytable): Compute their types instead of hard-coded
13225 `short'.
13226 * tests/regression.at (Web2c Actions): Adjust.
13227
5dde258a
AD
132282002-07-19 Akim Demaille <akim@epita.fr>
13229
13230 * src/scan-gram.l (id): Can start with an underscore.
13231
a945ec39
AD
132322002-07-16 Akim Demaille <akim@epita.fr>
13233
13234 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
13235 Adjust all former `associativity' dependencies.
13236 * src/symtab.c (symbol_new): Default associativity is `undef', not
13237 `right'.
13238 (symbol_check_alias_consistence): Adjust.
13239
fae437e8
AD
132402002-07-09 Akim Demaille <akim@epita.fr>
13241
13242 * doc/bison.texinfo: Properly set the ``header'' part.
13243 Use @dircategory ``GNU programming tools'' as per Texinfo's
13244 documentation.
13245 Use @copying.
13246
1a715ef2
AD
132472002-07-09 Akim Demaille <akim@epita.fr>
13248
13249 * lib/quotearg.h: Protect against multiple inclusions.
13250 * src/location.h (location_t): Add a `file' member.
13251 (LOCATION_RESET, LOCATION_PRINT): Adjust.
13252 * src/complain.c (warn_at, complain_at, fatal_at): Drop
13253 `error_one_per_line' support.
13254
a5d50994
AD
132552002-07-09 Akim Demaille <akim@epita.fr>
13256
13257 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
13258 * src/reader.c (lineno): Remove.
13259 Adjust all dependencies.
13260 (get_merge_function): Take a location and use complain_at.
13261 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
13262 * tests/regression.at (Invalid inputs, Mixing %token styles):
13263 Adjust.
13264
b275314e
AD
132652002-07-09 Akim Demaille <akim@epita.fr>
13266
13267 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
13268 recovery rule, and forbid extensions when --yacc.
13269 (gram_error): Use complain_at.
13270 * src/reader.c (reader): Exit if there were parse errors.
13271
865b9df1
AD
132722002-07-09 Akim Demaille <akim@epita.fr>
13273
13274 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
13275 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
13276 Reported by R Blake <blakers@mac.com>.
13277
c76e14da
AD
132782002-07-09 Akim Demaille <akim@epita.fr>
13279
13280 * data/yacc.c: Output the copyright notive in the header.
13281
7db2ed2d
AD
132822002-07-03 Akim Demaille <akim@epita.fr>
13283
13284 * src/output.c (froms, tos): Are state_number_t.
13285 (save_column): sp, sp1, and sp2 are state_number_t.
13286 (prepare): Rename `final' as `final_state_number', `nnts' as
13287 `nterms_number', `nrules' as `rules_number', `nstates' as
13288 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
13289 unused.
13290 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
13291 * data/lalr1.cc (nsym_): Remove, unused.
13292
e68e0410
AD
132932002-07-03 Akim Demaille <akim@epita.fr>
13294
13295 * src/lalr.h, src/lalr.c (goto_number_t): New.
13296 * src/lalr.c (goto_list_t): New.
13297 Propagate them.
13298 * src/nullable.c (rule_list_t): New.
13299 Propagate.
13300 * src/types.h: Remove.
13301
e1a4f3a4
AD
133022002-07-03 Akim Demaille <akim@epita.fr>
13303
13304 * src/closure.c (print_fderives): Use rule_rhs_print.
13305 * src/derives.c (print_derives): Use rule_rhs_print.
13306 (rule_list_t): New, replaces `shorts'.
13307 (set_derives): Add comments.
13308 * tests/sets.at (Nullable, Firsts): Adjust.
13309
536545f3
AD
133102002-07-03 Akim Demaille <akim@epita.fr>
13311
13312 * src/output.c (prepare_actions): Free `tally' and `width'.
13313 (prepare_actions): Allocate and free `order'.
13314 * src/symtab.c (symbols_free): Free `symbols'.
13315 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
13316 * src/output.c (m4_invoke): Move to...
13317 * src/scan-skel.l: here.
13318 (<<EOF>>): Close yyout, and free its name.
13319
8b752b00
AD
133202002-07-03 Akim Demaille <akim@epita.fr>
13321
13322 Fix some memory leaks, and fix a bug: state 0 was examined twice.
13323
13324 * src/LR0.c (new_state): Merge into...
13325 (state_list_append): this.
13326 (new_states): Merge into...
13327 (generate_states): here.
13328 (set_states): Don't ensure a proper `errs' state member here, do it...
13329 * src/conflicts.c (conflicts_solve): here.
13330 * src/state.h, src/state.c: Comment changes.
13331 (state_t): Rename member `shifts' as `transitions'.
13332 Adjust all dependencies.
13333 (errs_new): For consistency, also take the values as argument.
13334 (errs_dup): Remove.
13335 (state_errs_set): New.
13336 (state_reductions_set, state_transitions_set): Assert that no
13337 previous value was assigned.
13338 (state_free): New.
13339 (states_free): Use it.
13340 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
13341 temporary storage: use `errs' and `nerrs' as elsewhere.
13342 (set_conflicts): Allocate and free this `errs'.
13343
613f5e1a
AD
133442002-07-02 Akim Demaille <akim@epita.fr>
13345
13346 * lib/libiberty.h: New.
13347 * lib: Update the bitset implementation from upstream.
13348 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
13349 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
13350 * src/main.c: Adjust bitset stats calls.
13351
26e0cadc
PE
133522002-07-01 Paul Eggert <eggert@twinsun.com>
13353
13354 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
13355 char, so that negative chars don't collide with $.
13356
1154cced
AD
133572002-06-30 Akim Demaille <akim@epita.fr>
13358
13359 Have the GLR tests be `warning' checked, and fix the warnings.
13360
13361 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
13362 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
13363 (yyremoveDeletes): `yyi' and `yyj' are size_t.
13364 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
13365 (yyaddDeferredAction): static.
13366 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
13367 (yyreportParseError): yyprefix is const.
13368 yytokenp is used only when verbose.
13369 (yy__GNUC__): Replace with __GNUC__.
13370 (yypdumpstack): yyi is size_t.
13371 (yypreference): Un-yy local variables and arguments, to avoid
13372 clashes with `yyr1'. Anyway, we are not in the user name space.
13373 (yytname_size): be an int, as is compared with ints.
13374 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
13375 Use them.
13376 * tests/cxx-gram.at: Use quotation to protect $1.
13377 Use AT_COMPILE to enable warnings hunts.
13378 Prototype yylex and yyerror.
13379 `Use' argc.
13380 Include `string.h', not `strings.h'.
13381 Produce and prototype stmtMerge only when used.
13382 yylex takes a location.
13383
97650f4e
AD
133842002-06-30 Akim Demaille <akim@epita.fr>
13385
13386 We spend a lot of time in quotearg, in particular when --verbose.
13387
13388 * src/symtab.c (symbol_get): Store a quoted version of the key.
13389 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
13390 Adjust all callers.
13391
d2576365
AD
133922002-06-30 Akim Demaille <akim@epita.fr>
13393
13394 * src/state.h (reductions_t): Rename member `nreds' as num.
13395 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
13396 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
13397
ccaf65bc
AD
133982002-06-30 Akim Demaille <akim@epita.fr>
13399
13400 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
13401 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
13402 (shifts_to): Rename as...
13403 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
13404 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
13405 (TRANSITION_IS_DISABLED, transitions_to): these.
13406
87675353
AD
134072002-06-30 Akim Demaille <akim@epita.fr>
13408
13409 * src/print.c (print_shifts, print_gotos): Merge into...
13410 (print_transitions): this.
13411 (print_transitions, print_errs, print_reductions): Align the
13412 lookaheads columns.
13413 (print_core, print_transitions, print_errs, print_state,
13414 print_grammar): Output empty lines separator before, not after.
13415 (state_default_rule_compute): Rename as...
13416 (state_default_rule): this.
13417 * tests/conflicts.at (Defaulted Conflicted Reduction),
13418 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
13419 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
13420
ce4ccb4b
AD
134212002-06-30 Akim Demaille <akim@epita.fr>
13422
13423 Display items as we display rules.
13424
13425 * src/gram.h, src/gram.c (rule_lhs_print): New.
13426 * src/gram.c (grammar_rules_partial_print): Use it.
13427 * src/print.c (print_core): Likewise.
13428 * tests/conflicts.at (Defaulted Conflicted Reduction),
13429 (Unresolved SR Conflicts): Adjust.
13430 (Unresolved SR Conflicts): Adjust and rename as...
13431 (Resolved SR Conflicts): this, as was meant.
13432 * tests/regression.at (Web2c Report): Adjust.
13433
bc933ef1
AD
134342002-06-30 Akim Demaille <akim@epita.fr>
13435
13436 * src/print.c (state_default_rule_compute): New, extracted from...
13437 (print_reductions): here.
13438 Pessimize, but clarify the code.
13439 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
13440
53d4308d
AD
134412002-06-30 Akim Demaille <akim@epita.fr>
13442
13443 * src/output.c (action_row): Let default_rule be always a rule
13444 number.
13445
574fb2d5
AD
134462002-06-30 Akim Demaille <akim@epita.fr>
13447
13448 * src/closure.c (print_firsts, print_fderives, closure):
13449 Use BITSET_EXECUTE.
13450 * src/lalr.c (lookaheads_print): Likewise.
13451 * src/state.c (state_rule_lookaheads_print): Likewise.
13452 * src/print_graph.c (print_core): Likewise.
13453 * src/print.c (print_reductions): Likewise.
13454 * src/output.c (action_row): Likewise.
13455 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
13456
05811fd7
AD
134572002-06-30 Akim Demaille <akim@epita.fr>
13458
13459 * src/print_graph.c: Use report_flag.
13460
0e4d5753
AD
134612002-06-30 Akim Demaille <akim@epita.fr>
13462
13463 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
13464 to...
13465 * src/relation.h, src/relation.c (traverse, relation_digraph)
13466 (relation_print, relation_transpose): New.
13467
24c7d800
AD
134682002-06-30 Akim Demaille <akim@epita.fr>
13469
13470 * src/state.h, src/state.c (shifts_to): New.
13471 * src/lalr.c (build_relations): Use it.
13472
9222837b
AD
134732002-06-30 Akim Demaille <akim@epita.fr>
13474
13475 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
13476 (item_number_of_rule_number, rule_number_of_item_number): New.
13477 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
13478 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
13479 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
13480 Propagate their use.
13481 Much remains to be done, in particular wrt `shorts' from types.h.
13482
260008e5
AD
134832002-06-30 Akim Demaille <akim@epita.fr>
13484
13485 * src/symtab.c (symbol_new): Initialize the `printer' member.
13486
8a731ca8
AD
134872002-06-30 Akim Demaille <akim@epita.fr>
13488
13489 * src/LR0.c (save_reductions): Remove, replaced by...
13490 * src/state.h, src/state.c (state_reductions_set): New.
13491 (reductions, errs): Rename as...
13492 (reductions_t, errs_t): these.
13493 Adjust all dependencies.
13494
32e1e0a4
AD
134952002-06-30 Akim Demaille <akim@epita.fr>
13496
13497 * src/LR0.c (state_list_t, state_list_append): New.
13498 (first_state, last_state): Now symbol_list_t.
13499 (this_state): Remove.
13500 (new_itemsets, append_states, save_reductions): Take a state_t as
13501 argument.
13502 (set_states, generate_states): Adjust.
13503 (save_shifts): Remove, replaced by...
13504 * src/state.h, src/state.c (state_shifts_set): New.
13505 (shifts): Rename as...
13506 (shifts_t): this.
13507 Adjust all dependencies.
13508 * src/state.h (state_t): Remove the `next' member.
13509
e5fb6710
AD
135102002-06-30 Akim Demaille <akim@epita.fr>
13511
13512 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
13513 escaped in slot 0.
13514
c7ca99d4
AD
135152002-06-30 Akim Demaille <akim@epita.fr>
13516
13517 Use hash.h for the state hash table.
13518
13519 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
13520 (allocate_storage): Use state_hash_new.
13521 (free_storage): Use state_hash_free.
13522 (new_state, get_state): Adjust.
13523 * src/lalr.h, src/lalr.c (states): Move to...
13524 * src/states.h (state_t): Remove the `link' member, no longer
13525 used.
13526 * src/states.h, src/states.c: here.
13527 (state_hash_new, state_hash_free, state_hash_lookup)
13528 (state_hash_insert, states_free): New.
13529 * src/states.c (state_table, state_compare, state_hash): New.
13530 * src/output.c (output_actions): Do not free states now, since we
13531 still need to know the final_state number in `prepare', called
13532 afterwards. Do it...
13533 * src/main.c (main): here: call states_free after `output'.
13534
df0e7316
AD
135352002-06-30 Akim Demaille <akim@epita.fr>
13536
13537 * src/state.h, src/state.c (state_new): New, extracted from...
13538 * src/LR0.c (new_state): here.
13539 * src/state.h (STATE_ALLOC): Move to...
13540 * src/state.c: here.
13541 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
13542 * src/state.h, src/state.c: here.
13543
39f41916
AD
135442002-06-30 Akim Demaille <akim@epita.fr>
13545
13546 * src/reader.c (gensym): Rename as...
13547 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
13548 (getsym): Rename as...
13549 (symbol_get): this.
13550
d57650a5
AD
135512002-06-30 Akim Demaille <akim@epita.fr>
13552
13553 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
13554 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
13555 * src/output.c, src/print.c, src/print_graph.c: Propagate.
13556 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
13557
5a08f1ce
AD
135582002-06-30 Akim Demaille <akim@epita.fr>
13559
13560 Make the test suite pass with warnings checked.
13561
13562 * tests/actions.at (Printers and Destructors): Improve.
13563 Avoid unsigned vs. signed issues.
13564 * tests/calc.at: Don't exercise the scanner here, do it...
13565 * tests/input.at (Torturing the Scanner): here.
13566
720623af
PH
135672002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13568
88e7e941 13569 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
13570 reorganize first lines parallel to yacc.c.
13571
fb8135fa
AD
135722002-06-28 Akim Demaille <akim@epita.fr>
13573
13574 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
13575 (b4_token_enum, b4_token_defines): New, factored from...
13576 * data/lalr1.cc, data/yacc.c, glr.c: here.
13577
41442480
AD
135782002-06-28 Akim Demaille <akim@epita.fr>
13579
13580 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
13581 unused variables.
13582 * src/output.c (merger_output): static.
13583
e0e5bf84
AD
135842002-06-28 Akim Demaille <akim@epita.fr>
13585
ba0fe3c7 13586 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
e0e5bf84
AD
13587 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
13588 pacify GCC.
13589 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 13590
676385e2
PH
135912002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13592
13593 Accumulated changelog for new GLR parsing features.
13594
6a254321 13595 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
13596 conflicts_total_count.
13597 * src/conflicts.h: Ditto.
13598 * src/output.c (token_actions): Use the new name.
13599 (output_conflicts): Change conflp => conflict_list_heads, and
13600 confl => conflict_list for better readability.
13601 * data/glr.c: Use the new names.
13602 * NEWS: Add self to GLR announcement.
e0e5bf84 13603
676385e2
PH
13604 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
13605
13606 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
13607 Akim Demaille.
13608
13609 * data/bison.glr: Change name to glr.c
13610 * data/glr.c: Renamed from bison.glr.
13611 * data/Makefile.am: Add glr.c
e0e5bf84
AD
13612
13613 * src/getargs.c:
13614
676385e2 13615 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
ba0fe3c7 13616 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 13617
676385e2
PH
13618 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13619
13620 * data/bison.glr: Be sure to restore the
13621 current #line when returning to the skeleton contents after having
13622 exposed the input file's #line.
13623
13624 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13625
13626 * data/bison.glr: Bring up to date with changes to bison.simple.
13627
13628 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13629
13630 * data/bison.glr: Correct definitions that use b4_prefix.
13631 Various reformatting.
13632 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
13633 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
13634 yytokenp argument; now part of stack.
13635 (yychar): Define to behave as documented.
13636 (yyclearin): Ditto.
e0e5bf84 13637
676385e2
PH
13638 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13639
13640 * src/reader.h: Add declaration for free_merger_functions.
13641
13642 * src/reader.c (merge_functions): New variable.
13643 (get_merge_function): New function.
13644 (free_merger_functions): New function.
13645 (readgram): Check for %prec that is not followed by a symbol.
13646 Handle %dprec and %merge declarations.
13647 (packgram): Initialize dprec and merger fields in rules array.
13648
13649 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
13650 conflict_list_cnt, conflict_list_free): New variables.
13651 (table_grow): Also grow conflict_table.
e0e5bf84 13652 (prepare_rules): Output dprec and merger tables.
676385e2 13653 (conflict_row): New function.
e0e5bf84 13654 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
13655 default reduction in conflicted states for GLR parser so that there
13656 are spaces for the conflict lists.
13657 (save_row): Also save conflict information.
13658 (token_actions): Allocate conflict list.
13659 (merger_output): New function.
13660 (pack_vector): Pack conflict table, too.
13661 (output_conflicts): New function to output yyconflp and yyconfl.
13662 (output_check): Allocate conflict_tos.
13663 (output_actions): Output conflict tables, also.
13664 (output_skeleton): Output b4_mergers definition.
13665 (prepare): Output b4_max_rhs_length definition.
13666 Use 'bison.glr' as default skeleton for GLR parsers.
13667
13668 * src/gram.c (glr_parser): New flag.
13669 (grammar_free): Call free_merger_functions.
13670
13671 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
13672 all pairs of conflicting reductions, rather than just all tokens
13673 causing conflicts. Needed to size conflict tables.
e0e5bf84 13674 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
13675 interface.
13676 (conflicts_print): Ditto.
13677 (count_total_conflicts): New function.
13678
13679 * src/reader.h (merger_list): New type.
13680 (merge_functions): New variable.
13681
13682 * src/lex.h (tok_dprec, tok_merge): New token types.
13683
13684 * src/gram.h (rule_s): Add dprec and merger fields.
13685 (glr_parser): New flag.
13686
13687 * src/conflicts.h (count_total_conflicts): New function.
13688
13689 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
13690
13691 * doc/bison.texinfo (Generalized LR Parsing): New section.
13692 (GLR Parsers): New section.
13693 (Language and Grammar): Mention GLR parsing.
13694 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
13695 Correct typo ("tge" -> "the").
13696
13697 * data/bison.glr: New skeleton for GLR parsing.
13698
13699 * tests/cxx-gram.at: New tests for GLR parsing.
13700
13701 * tests/testsuite.at: Include cxx-gram.at.
13702
13703 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 13704
676385e2
PH
13705 * src/parse-gram.y:
13706
13707 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
13708
13709 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 13710
b5480d74 137112002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
13712
13713 * src/options.h, src/options.c: Remove.
13714 * src/getargs.c (short_options, long_options): New.
13715
60491a94
AD
137162002-06-27 Akim Demaille <akim@epita.fr>
13717
13718 * data/bison.simple, data/bison.c++: Rename as...
13719 * data/yacc.c, data/lalr1.cc: these.
13720 * doc/bison.texinfo (Environment Variables): Remove.
13721
9be0c25b
AD
137222002-06-25 Raja R Harinath <harinath@cs.umn.edu>
13723
13724 * src/getargs.c (report_argmatch): Initialize strtok().
13725
1ae72863
AD
137262002-06-20 Akim Demaille <akim@epita.fr>
13727
13728 * data/bison.simple (b4_symbol_actions): New, replaces...
13729 (b4_symbol_destructor, b4_symbol_printer): these.
13730 (yysymprint): Be sure to call YYPRINT only for tokens, and using
13731 user token numbers.
13732
87542d29
AD
137332002-06-20 Akim Demaille <akim@epita.fr>
13734
13735 * data/bison.simple (yydestructor): Rename as...
13736 (yydestruct): this.
13737
1a31ed21
AD
137382002-06-20 Akim Demaille <akim@epita.fr>
13739
13740 * src/symtab.h, src/symtab.c (symbol_type_set)
13741 (symbol_destructor_set, symbol_precedence_set): The location is
13742 the last argument.
13743 Adjust all callers.
13744
e776192e
AD
137452002-06-20 Akim Demaille <akim@epita.fr>
13746
13747 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
13748 internals.
13749 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
13750 Takes a location.
13751 * src/symtab.h, src/symtab.c (symbol_class_set)
13752 (symbol_user_token_number_set): Likewise.
13753 Adjust all callers.
13754 Promote complain_at.
13755 * tests/input.at (Type Clashes): Adjust.
13756
5c1180b3
AD
137572002-06-20 Akim Demaille <akim@epita.fr>
13758
13759 * data/bison.simple (YYLEX): Fix the declaration when
13760 %pure-parser.
13761
e3170060
AD
137622002-06-20 Akim Demaille <akim@epita.fr>
13763
13764 * data/bison.simple (yysymprint): Don't print the token number,
13765 just its name.
13766 * tests/actions.at (Destructors): Rename as...
13767 (Printers and Destructors): this.
13768 Also exercise %printer.
13769
253862fd
AD
137702002-06-20 Akim Demaille <akim@epita.fr>
13771
13772 * data/bison.simple (YYDSYMPRINT): New.
13773 Use it to remove many of the #if YYDEBUG/if (yydebug).
13774
366eea36
AD
137752002-06-20 Akim Demaille <akim@epita.fr>
13776
13777 * src/symtab.h, src/symtab.c (symbol_t): printer and
13778 printer_location are new members.
13779 (symbol_printer_set): New.
13780 * src/parse-gram.y (PERCENT_PRINTER): New token.
13781 Handle its associated rule.
13782 * src/scan-gram.l: Adjust.
13783 (handle_destructor_at, handle_destructor_dollar): Rename as...
13784 (handle_symbol_code_at, handle_symbol_code_dollar): these.
13785 * src/output.c (symbol_printers_output): New.
13786 (output_skeleton): Call it.
13787 * data/bison.simple (yysymprint): New. Cannot be named yyprint
13788 since there are already many grammar files with a user `yyprint'.
13789 Replace the calls to YYPRINT to calls to yysymprint.
13790 * tests/calc.at: Adjust.
13791 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
13792 taking advantage of parser very internal details (stack size!).
13793
4f25ebb0
AD
137942002-06-20 Akim Demaille <akim@epita.fr>
13795
13796 * src/scan-gram.l: Complete the scanner with the missing patterns
13797 to pacify Flex.
13798 Use `quote' and `symbol_tag_get' where appropriate.
13799
93b68a0e
AD
138002002-06-19 Akim Demaille <akim@epita.fr>
13801
13802 * tests/actions.at (Destructors): Augment to test locations.
13803 * data/bison.simple (yydestructor): Pass it the current location
13804 if locations are enabled.
13805 Prototype only when __STDC__ or C++.
13806 Change the argument names to move into the yy name space: there is
13807 user code here.
13808
58612f1d
AD
138092002-06-19 Akim Demaille <akim@epita.fr>
13810
74310291
AD
13811 * data/bison.simple (b4_pure_if): New.
13812 Use it instead of #ifdef YYPURE.
13813
138142002-06-19 Akim Demaille <akim@epita.fr>
13815
13816 * data/bison.simple (b4_location_if): New.
58612f1d
AD
13817 Use it instead of #ifdef YYLSP_NEEDED.
13818
f25bfb75
AD
138192002-06-19 Akim Demaille <akim@epita.fr>
13820
13821 Prepare @$ in %destructor, but currently don't bind it in the
13822 skeleton, as %location use is not cleaned up yet.
13823
13824 * src/scan-gram.l (handle_dollar, handle_destructor_at)
13825 (handle_action_at): New.
13826 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
13827 a braced_code_t and a location as additional arguments.
13828 (handle_destructor_dollar): Instead of requiring `b4_eval', just
13829 unquote one when outputting `b4_dollar_dollar'.
13830 Adjust callers.
13831 * data/bison.simple (b4_eval): Remove.
13832 (b4_symbol_destructor): Adjust.
13833 * tests/input.at (Invalid @n): Adjust.
13834
c732d2c6
AD
138352002-06-19 Zack Weinberg <zack@codesourcery.com>
13836
13837 * doc/bison.texinfo: Document ability to have multiple
13838 prologue sections.
13839
8c165d89
AD
138402002-06-18 Akim Demaille <akim@epita.fr>
13841
13842 * src/files.c (compute_base_names): When computing the output file
13843 names from the input file name, strip the directory part.
13844
ca98bf57
AD
138452002-06-18 Akim Demaille <akim@epita.fr>
13846
13847 * data/bison.simple.new: Comment changes.
13848 Reported by Andreas Schwab.
13849
0bfb02ff
AD
138502002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
13851
13852 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
13853 there are no `label `yyoverflowlab' defined but not used' warnings
13854 when yyoverflow is defined.
13855
24c0aad7
AD
138562002-06-18 Akim Demaille <akim@epita.fr>
13857
13858 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
13859 new member.
13860 (symbol_destructor_set): Adjust.
13861 * src/output.c (symbol_destructors_output): Output the destructor
13862 locations.
13863 Output the symbol name.
13864 * data/bison.simple (b4_symbol_destructor): Adjust.
13865
5719c109
AD
138662002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
13867 and Akim Demaille <akim@epita.fr>
13868
13869 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
13870 what's left on the stack when the error recovery hits EOF.
13871 * tests/actions.at (Destructors): Complete to exercise this case.
13872
9280d3ef
AD
138732002-06-17 Akim Demaille <akim@epita.fr>
13874
13875 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
13876 arguments is really empty, not only equal to `[]'.
13877 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
13878 member.
13879 (symbol_destructor_set): New.
13880 * src/output.c (symbol_destructors_output): New.
13881 * src/reader.h (brace_code_t, current_braced_code): New.
13882 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
13883 (handle_dollar): Rename as...
13884 (handle_action_dollar): this.
13885 (handle_destructor_dollar): New.
13886 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
13887 (grammar_declaration): Use it.
13888 * data/bison.simple (yystos): Is always defined.
13889 (yydestructor): New.
13890 * tests/actions.at (Destructors): New.
13891 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
13892
dafdc66f
AD
138932002-06-17 Akim Demaille <akim@epita.fr>
13894
13895 * src/symlist.h, src/symlist.c (symbol_list_length): New.
13896 * src/scan-gram.l (handle_dollar, handle_at): Compute the
13897 rule_length only when needed.
13898 * src/output.c (actions_output, token_definitions_output): Output
13899 the full M4 block.
13900 * src/symtab.c: Don't access directly to the symbol tag, use
13901 symbol_tag_get.
13902 * src/parse-gram.y: Use symbol_list_free.
13903
56c47203
AD
139042002-06-17 Akim Demaille <akim@epita.fr>
13905
13906 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
13907 (symbol_list_prepend, get_type_name): Move to...
13908 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
13909 (symbol_list_prepend, symbol_list_n_type_name_get): here.
13910 Adjust all callers.
13911 (symbol_list_free): New.
13912 * src/scan-gram.l (handle_dollar): Takes a location.
13913 * tests/input.at (Invalid $n): Adjust.
13914
1e0bab92
AD
139152002-06-17 Akim Demaille <akim@epita.fr>
13916
13917 * src/reader.h, src/reader.c (symbol_list_new): Export it.
13918 (symbol_list_prepend): New.
13919 * src/parse-gram.y (%union): `list' is a new member.
13920 (symbols.1): New, replaces...
13921 (terms_to_prec.1, nterms_to_type.1): these.
13922 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
13923 Take a location as additional argument.
13924 Adjust all callers.
13925
04e60654
AD
139262002-06-15 Akim Demaille <akim@epita.fr>
13927
13928 * src/parse-gram.y: Move %token in the declaration section so that
13929 we don't depend upon CVS Bison.
13930
10e5b8bd
AD
139312002-06-15 Akim Demaille <akim@epita.fr>
13932
13933 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
13934 * src/print.c (print_core): Use it.
13935
9801d40c
AD
139362002-06-15 Akim Demaille <akim@epita.fr>
13937
13938 * src/conflicts.c (log_resolution): Accept the rule involved in
13939 the sr conflicts instead of the lookahead number that points to
13940 that rule.
13941 (flush_reduce): Accept the current lookahead vector as argument,
13942 instead of the index in LA.
13943 (resolve_sr_conflict): Accept the current number of lookahead
13944 bitset to consider for the STATE, instead of the index in LA.
13945 (set_conflicts): Adjust.
13946 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
13947
c0263492
AD
139482002-06-15 Akim Demaille <akim@epita.fr>
13949
13950 * src/state.h (state_t): Replace the `lookaheadsp' member, a
13951 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
13952 Adjust all dependencies.
13953 * src/lalr.c (initialize_lookaheads): Split into...
13954 (states_lookaheads_count, states_lookaheads_initialize): these.
13955 (lalr): Adjust.
13956
9757c359
AD
139572002-06-15 Akim Demaille <akim@epita.fr>
13958
13959 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
13960 out of...
13961 (grammar_rules_print): here.
13962 * src/reduce.c (reduce_output): Use it.
13963 * tests/reduce.at (Useless Rules, Reduced Automaton)
13964 (Underivable Rules): Adjust.
13965
6b98e4b5
AD
139662002-06-15 Akim Demaille <akim@epita.fr>
13967
13968 Copy BYacc's nice way to report the grammar.
13969
13970 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
13971 New.
13972 Don't print the rules' location, it is confusing and useless.
13973 (rule_print): Use grammar_rhs_print.
13974 * src/print.c (print_grammar): Use grammar_rules_print.
13975
6b98e4b5
AD
139762002-06-15 Akim Demaille <akim@epita.fr>
13977
13978 Complete and rationalize `useless thing' warnings.
13979
13980 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
13981 (symbol_tag_print): New.
13982 Use them everywhere in place of accessing directly the tag member.
13983 * src/gram.h, src/gram.c (rule_print): New.
13984 Use it where a rule used to be printed `by hand'.
13985 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
13986 (reduce_grammar_tables): Report the useless rules.
13987 (reduce_print): Useless things are a warning, not an error.
13988 Report it as such.
13989 * tests/reduce.at (Useless Nonterminals, Useless Rules):
13990 (Reduced Automaton, Underivable Rules): Adjust.
13991 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
13992 * tests/conflicts.at (Unresolved SR Conflicts)
13993 (Solved SR Conflicts): Adjust.
13994
ee000ba4
AD
139952002-06-15 Akim Demaille <akim@epita.fr>
13996
13997 Let symbols have a location.
13998
13999 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
14000 (getsym): Adjust.
14001 Adjust all callers.
14002 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
14003 Use location_t, not int.
14004 * src/symtab.c (symbol_check_defined): Take advantage of the
14005 location.
14006 * tests/regression.at (Invalid inputs): Adjust.
14007
8efe435c
AD
140082002-06-15 Akim Demaille <akim@epita.fr>
14009
14010 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
14011 (input): Don't try to initialize yylloc here, do it in the
14012 scanner.
14013 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
14014 * src/gram.h (rule_t): Change line and action_line into location
14015 and action_location, of location_t type.
14016 Adjust all dependencies.
14017 * src/location.h, src/location.c (empty_location): New.
14018 * src/reader.h, src/reader.c (grammar_start_symbol_set)
14019 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
14020 (grammar_current_rule_symbol_append)
14021 (grammar_current_rule_action_append): Expect a location as argument.
14022 * src/reader.c (grammar_midrule_action): Adjust to attach an
14023 action's location as dummy symbol location.
14024 * src/symtab.h, src/symtab.c (startsymbol_location): New.
14025 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
14026 the line numbers.
14027
1921f1d7
AD
140282002-06-14 Akim Demaille <akim@epita.fr>
14029
14030 Grammar declarations may be found in the grammar section.
14031
14032 * src/parse-gram.y (rules_or_grammar_declaration): New.
14033 (declarations): Each declaration may end with a semicolon, not
14034 just...
14035 (grammar_declaration): `"%union"'.
14036 (grammar): Branch to rules_or_grammar_declaration.
14037
4515534c
AD
140382002-06-14 Akim Demaille <akim@epita.fr>
14039
14040 * src/main.c (main): Invoke scanner_free.
14041
f958596b
AD
140422002-06-14 Akim Demaille <akim@epita.fr>
14043
14044 * src/output.c (m4_invoke): Extracted from...
14045 (output_skeleton): here.
14046 Free tempfile.
14047
2c569025
AD
140482002-06-14 Akim Demaille <akim@epita.fr>
14049
14050 * src/parse-gram.y (directives, directive, gram)
14051 (grammar_directives, precedence_directives, precedence_directive):
14052 Rename as...
14053 (declarations, declaration, grammar, grammar_declaration)
14054 (precedence_declaration, precedence_declarator): these.
14055 (symbol_declaration): New.
14056
592e8d4d
AD
140572002-06-14 Akim Demaille <akim@epita.fr>
14058
14059 * src/files.c (action_obstack): Remove, unused.
14060 (output_obstack): Remove it, and all its dependencies, as it is no
14061 longer needed.
14062 * src/reader.c (epilogue_set): Build the epilogue in the
14063 muscle_obstack.
14064 * src/output.h, src/output.c (muscle_obstack): Move to...
14065 * src/muscle_tab.h, src/muscle_tab.h: here.
14066 (muscle_init): Initialize muscle_obstack.
14067 (muscle_free): New.
14068 * src/main.c (main): Call it.
14069
0c15323d
AD
140702002-06-14 Akim Demaille <akim@epita.fr>
14071
14072 * src/location.h: New, extracted from...
14073 * src/reader.h: here.
14074 * src/Makefile.am (noinst_HEADERS): Merge into
14075 (bison_SOURCES): this.
14076 Add location.h.
14077 * src/parse-gram.y: Use location_t instead of Bison's.
14078 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
14079 Use location_t instead of ints.
14080
e96c9728
AD
140812002-06-14 Akim Demaille <akim@epita.fr>
14082
14083 * data/bison.simple, data/bison.c++: Be sure to restore the
14084 current #line when returning to the skeleton contents after having
14085 exposed the input file's #line.
14086
75d1fe16
AD
140872002-06-12 Akim Demaille <akim@epita.fr>
14088
14089 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
14090 eager.
14091 * tests/actions.at (Exotic Dollars): New.
14092
6c35d22c
AD
140932002-06-12 Akim Demaille <akim@epita.fr>
14094
14095 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
14096 ['"/] too eagerly.
14097 * tests/input.at (Torturing the Scanner): New.
14098
1d6412ad
AD
140992002-06-11 Akim Demaille <akim@epita.fr>
14100
14101 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
14102 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
14103 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
14104 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
14105 * src/reader.c (reader): Use it.
14106
4cdb01db
AD
141072002-06-11 Akim Demaille <akim@epita.fr>
14108
14109 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
14110 Adjust all callers.
14111 (scanner_last_string_free): New.
14112
44995b2e
AD
141132002-06-11 Akim Demaille <akim@epita.fr>
14114
14115 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
14116 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
14117 (last_string, YY_OBS_FREE): New.
14118 Use them when returning an ID.
14119
e9955c83
AD
141202002-06-11 Akim Demaille <akim@epita.fr>
14121
14122 Have Bison grammars parsed by a Bison grammar.
14123
14124 * src/reader.c, src/reader.h (prologue_augment): New.
14125 * src/reader.c (copy_definition): Remove.
14126
14127 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
14128 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
14129 (grammar_current_rule_prec_set, grammar_current_rule_check)
14130 (grammar_current_rule_symbol_append)
14131 (grammar_current_rule_action_append): Export.
14132 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
14133 (symbol_list_action_append): Remove.
14134 Hook the routines from reader.
14135 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
14136 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
14137
14138 * src/reader.c (read_declarations): Remove, unused.
14139
14140 * src/parse-gram.y: Handle the epilogue.
14141 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
14142 (grammar_start_symbol_set): this.
14143 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
14144 * src/reader.c (readgram): Remove, unused.
14145 (reader): Adjust to insert eoftoken and axiom where appropriate.
14146
14147 * src/reader.c (copy_dollar): Replace with...
14148 * src/scan-gram.h (handle_dollar): this.
14149 * src/parse-gram.y: Remove `%thong'.
14150
14151 * src/reader.c (copy_at): Replace with...
14152 * src/scan-gram.h (handle_at): this.
14153
14154 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
14155 New.
14156
14157 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
14158 time being.
14159
14160 * src/reader.h, src/reader.c (grammar_rule_end): New.
14161
14162 * src/parse.y (current_type, current_class): New.
14163 Implement `%nterm', `%token' support.
14164 Merge `%term' into `%token'.
14165 (string_as_id): New.
14166 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
14167 type name.
14168
14169 * src/parse-gram.y: Be sure to handle properly the beginning of
14170 rules.
14171
14172 * src/parse-gram.y: Handle %type.
14173 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
14174
14175 * src/parse-gram.y: More directives support.
14176 * src/options.c: No longer handle source directives.
14177
14178 * src/parse-gram.y: Fix %output.
14179
14180 * src/parse-gram.y: Handle %union.
14181 Use the prologue locations.
14182 * src/reader.c (parse_union_decl): Remove.
14183
14184 * src/reader.h, src/reader.c (epilogue_set): New.
14185 * src/parse-gram.y: Use it.
14186
14187 * data/bison.simple, data/bison.c++: b4_stype is now either not
14188 defined, then default to int, or to the contents of %union,
14189 without `union' itself.
14190 Adjust.
14191 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
14192
14193 * src/output.c (actions_output): Don't output braces, as they are
14194 already handled by the scanner.
14195
14196 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
14197 characters to themselves.
14198
14199 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
14200 that the epilogue has a proper #line.
14201
14202 * src/parse-gram.y: Handle precedence/associativity.
14203
14204 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
14205 a terminal.
14206 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
14207 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
14208 at all to define terminals that cannot be emitted.
14209
14210 * src/scan-gram.l: Escape M4 characters.
14211
14212 * src/scan-gram.l: Working properly with escapes in user
14213 strings/characters.
14214
14215 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
14216 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
14217 grammar.
14218 Use more modest sizes, as for the time being the parser does not
14219 release memory, and therefore the process swallows a huge amount
14220 of memory.
14221
14222 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
14223 stricter %token grammar.
14224
14225 * src/symtab.h (associativity): Add `undef_assoc'.
14226 (symbol_precedence_set): Do nothing when passed an undef_assoc.
14227 * src/symtab.c (symbol_check_alias_consistence): Adjust.
14228
14229 * tests/regression.at (Invalid %directive): Remove, as it is now
14230 meaningless.
14231 (Invalid inputs): Adjust to the new error messages.
14232 (Token definitions): The new grammar doesn't allow too many
14233 eccentricities.
14234
14235 * src/lex.h, src/lex.c: Remove.
14236 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
14237 (copy_character, copy_string2, copy_string, copy_identifier)
14238 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
14239 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
14240 (parse_action): Remove.
14241 * po/POTFILES.in: Adjust.
14242
2e047461
AD
142432002-06-11 Akim Demaille <akim@epita.fr>
14244
cd05d13c 14245 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
14246 rule's action member: return the action as a string.
14247 Don't require `rule_length' as an argument: compute it.
14248 (grammar_current_rule_symbol_append)
14249 (grammar_current_rule_action_append): New, eved out from
14250 (readgram): here.
14251 Remove `action_flag', `rulelength', unused now.
14252
9af3fbce
AD
142532002-06-11 Akim Demaille <akim@epita.fr>
14254
14255 * src/reader.c (grammar_current_rule_prec_set).
14256 (grammar_current_rule_check): New, eved out from...
14257 (readgram): here.
14258 Remove `xaction', `first_rhs': useless.
14259 * tests/input.at (Type clashes): New.
14260 * tests/existing.at (GNU Cim Grammar): Adjust.
14261
1485e106
AD
142622002-06-11 Akim Demaille <akim@epita.fr>
14263
14264 * src/reader.c (grammar_midrule_action): New, Eved out from
14265 (readgram): here.
14266
da4160c3
AD
142672002-06-11 Akim Demaille <akim@epita.fr>
14268
14269 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
14270 New.
14271 (readgram): Use them as replacement of inlined code, crule and
14272 crule1.
14273
f6d0f937
AD
142742002-06-11 Akim Demaille <akim@epita.fr>
14275
14276 * src/reader.c (grammar_end, grammar_symbol_append): New.
14277 (readgram): Use them.
14278 Make the use of `p' as local as possible.
14279
69078d4b
AD
142802002-06-10 Akim Demaille <akim@epita.fr>
14281
14282 GCJ's parser requires the tokens to be defined before the prologue.
14283
14284 * data/bison.simple: Output the token definition before the user's
14285 prologue.
14286 * tests/regression.at (Braces parsing, Duplicate string)
14287 (Mixing %token styles): Check the output from bison.
14288 (Early token definitions): New.
14289
5e424082
AD
142902002-06-10 Akim Demaille <akim@epita.fr>
14291
14292 * src/symtab.c (symbol_user_token_number_set): Don't complain when
14293 assigning twice the same user number to a token, so that we can
14294 use it in...
14295 * src/lex.c (lex): here.
14296 Also use `symbol_class_set' instead of hand written code.
14297 * src/reader.c (parse_assoc_decl): Likewise.
14298
44536b35
AD
142992002-06-10 Akim Demaille <akim@epita.fr>
14300
14301 * src/symtab.c, src/symtab.c (symbol_class_set)
14302 (symbol_user_token_number_set): New.
14303 * src/reader.c (parse_token_decl): Use them.
14304 Use a switch instead of ifs.
14305 Use a single argument.
14306
8b9f2372
AD
143072002-06-10 Akim Demaille <akim@epita.fr>
14308
14309 Remove `%thong' support as it is undocumented, unused, duplicates
14310 `%token's job, and creates useless e-mail traffic with people who
14311 want to know what it is, why it is undocumented, unused, and
14312 duplicates `%token's job.
14313
14314 * src/reader.c (parse_thong_decl): Remove.
14315 * src/options.c (option_table): Remove "thong".
14316 * src/lex.h (tok_thong): Remove.
14317
3ae2b51f
AD
143182002-06-10 Akim Demaille <akim@epita.fr>
14319
14320 * src/symtab.c, src/symtab.c (symbol_type_set)
14321 (symbol_precedence_set): New.
14322 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
14323 (value_components_used): Remove, unused.
14324
2f1afb73
AD
143252002-06-09 Akim Demaille <akim@epita.fr>
14326
14327 Move symbols handling code out of the reader.
14328
14329 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
14330 (axiom): Move to...
14331 * src/symtab.h, src/symtab.c: here.
14332
14333 * src/gram.c (start_symbol): Remove: use startsymbol->number.
14334 * src/reader.c (startval): Rename as...
14335 * src/symtab.h, src/symtab.c (startsymbol): this.
14336 * src/reader.c: Adjust.
14337
14338 * src/reader.c (symbol_check_defined, symbol_make_alias)
14339 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
14340 (token_translations_init)
14341 Move to...
14342 * src/symtab.c: here.
14343 * src/reader.c (packsymbols): Move to...
14344 * src/symtab.h, src/symtab.c (symbols_pack): here.
14345 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
14346 argument.
14347
e9bca3ad
AD
143482002-06-03 Akim Demaille <akim@epita.fr>
14349
14350 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
14351 then statements.
14352
86eff183
AD
143532002-06-03 Akim Demaille <akim@epita.fr>
14354
14355 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
14356 structs with non literals.
14357 * src/scan-skel.l: never-interactive.
14358 * src/conflicts.c (enum conflict_resolution_e): No trailing
14359 comma.
14360 * src/getargs.c (usage): Split long literal strings.
14361 Reported by Hans Aberg.
14362
717be197
AD
143632002-05-28 Akim Demaille <akim@epita.fr>
14364
14365 * data/bison.c++: Use C++ ostreams.
14366 (cdebug_): New member.
14367
670ddffd
AD
143682002-05-28 Akim Demaille <akim@epita.fr>
14369
14370 * src/output.c (output_skeleton): Be sure to allocate enough room
14371 for `/' _and_ for `\0' in full_skeleton.
14372
769b430f
AD
143732002-05-28 Akim Demaille <akim@epita.fr>
14374
14375 * data/bison.c++: Catch up with bison.simple:
14376 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14377 and Paul Eggert <eggert@twinsun.com>: `error' handing.
14378 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
14379 and popping traces.
14380
7067cb36
PH
143812002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14382
14383 * src/output.c (output_skeleton): Put an explicit path in front of
14384 the skeleton file name, rather than relying on the -I directory,
14385 to partially alleviate effects of having a skeleton file lying around
14386 in the current directory.
769b430f 14387
4a713ec2
PH
143882002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14389
769b430f 14390 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
14391 obstack_printf should be obstack_fgrow1.
14392
b408954b
AD
143932002-05-26 Akim Demaille <akim@epita.fr>
14394
14395 * src/state.h (state_t): `solved_conflicts' is a new member.
14396 * src/LR0.c (new_state): Set it to 0.
14397 * src/conflicts.h, src/conflicts.c (print_conflicts)
14398 (free_conflicts, solve_conflicts): Rename as...
14399 (conflicts_print, conflicts_free, conflicts_solve): these.
14400 Adjust callers.
14401 * src/conflicts.c (enum conflict_resolution_e)
14402 (solved_conflicts_obstack): New, used by...
14403 (log_resolution): this.
14404 Adjust to attach the conflict resolution to each state.
14405 Complete the description with the precedence/associativity
14406 information.
14407 (resolve_sr_conflict): Adjust.
14408 * src/print.c (print_state): Output its solved_conflicts.
14409 * tests/conflicts.at (Unresolved SR Conflicts)
14410 (Solved SR Conflicts): Exercise --report=all.
14411
a49aecd5
AD
144122002-05-26 Akim Demaille <akim@epita.fr>
14413
14414 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
14415 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
14416 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
14417 (token_number_t, item_number_as_token_number)
14418 (token_number_as_item_number, muscle_insert_token_number_table):
14419 Rename as...
14420 (symbol_number_t, item_number_as_symbol_number)
14421 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
14422 these, since it is more appropriate.
14423
5504898e
AD
144242002-05-26 Akim Demaille <akim@epita.fr>
14425
14426 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
14427 `Error:' lines.
14428 * data/bison.simple (yystos) [YYDEBUG]: New.
14429 (yyparse) [YYDEBUG]: Display the symbols which are popped during
14430 error recovery.
14431 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
14432
ec3bc396
AD
144332002-05-25 Akim Demaille <akim@epita.fr>
14434
14435 * doc/bison.texinfo (Debugging): Split into...
14436 (Tracing): this new section, its former contents, and...
14437 (Understanding): this new section.
14438 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
14439 by...
14440 (report_flag): this.
14441 Adjust all dependencies.
14442 (report_args, report_types, report_argmatch): New.
14443 (usage, getargs): Report/support -r, --report.
14444 * src/options.h
14445 (struct option_table_struct): Rename as..,
14446 (struct option_table_s): this.
14447 Rename the `set_flag' member to `flag' to match with getopt_long's
14448 struct.
14449 * src/options.c (option_table): Split verbose into an entry for
14450 %verbose, and another for --verbose.
14451 Support --report/-r, so remove -r from the obsolete --raw.
14452 * src/print.c: Attach full item sets and lookaheads reports to
14453 report_flag instead of trace_flag.
14454 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
14455
78df8250
PE
144562002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14457 and Paul Eggert <eggert@twinsun.com>
769b430f 14458
78df8250
PE
14459 * data/bison.simple (yyparse): Correct error handling to conform to
14460 POSIX and yacc. Specifically, after syntax error is discovered,
14461 do not reduce further before shifting the error token.
14462 Clean up the code a bit by removing the labels yyerrdefault,
14463 yyerrhandle, yyerrpop.
14464 * NEWS: Document the above.
14465
c0c9ea05
PH
144662002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14467
14468 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
14469 type; it isn't always big enough, since it doesn't necessarily
14470 include non-terminals.
769b430f 14471 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
14472 the latter can be removed.
14473 (yy_token_number_type): Remove, only one use.
14474 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
14475 don't use TokenNumberType as element type.
769b430f 14476
c0c9ea05
PH
14477 * tests/regression.at: Modify expected output to agree with change
14478 to yyr1 and yytranslate.
769b430f 14479
6390a83f
FK
144802002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
14481
14482 * src/reader.c (parse_action): Use copy_character instead of
14483 obstack_1grow.
14484
db7c8e9a
AD
144852002-05-13 Akim Demaille <akim@epita.fr>
14486
14487 * tests/regression.at (Token definitions): Prototype yylex and
14488 yyerror.
14489
fcc61800
PH
144902002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14491
158c687b 14492 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
14493 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
14494 32-bit arithmetic.
14495 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
14496
5683e9b2
AD
144972002-05-07 Akim Demaille <akim@epita.fr>
14498
14499 * tests/synclines.at: Be sure to prototype yylex and yyerror to
14500 avoid GCC warnings.
14501
0c2d3f4c
AD
145022002-05-07 Akim Demaille <akim@epita.fr>
14503
14504 Kill GCC warnings.
14505
14506 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
14507 over the RHS of each rule.
14508 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
14509 * src/state.h (state_t): Member `nitems' is unsigned short.
14510 * src/LR0.c (get_state): Adjust.
14511 * src/reader.c (packgram): Likewise.
14512 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
14513 `Type'.
14514 (muscle_insert_int_table): Remove, unused.
14515 (prepare_rules): Remove `max'.
14516
1565b720
AD
145172002-05-06 Akim Demaille <akim@epita.fr>
14518
14519 * src/closure.c (print_firsts): Display of the symbol tags.
14520 (bitmatrix_print): Move to...
14521 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
14522 here.
14523 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
14524
cfaee611
AD
145252002-05-06 Akim Demaille <akim@epita.fr>
14526
14527 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
14528 hash_do_for_each.
14529
458be8e0
AD
145302002-05-06 Akim Demaille <akim@epita.fr>
14531
14532 * src/LR0.c (new_state, get_state): Instead of using the global
14533 `kernel_size' and `kernel_base', have two new arguments:
14534 `core_size' and `core'.
14535 Adjust callers.
14536
a900a624
AD
145372002-05-06 Akim Demaille <akim@epita.fr>
14538
14539 * src/reader.c (packgram): No longer end `ritem' with a 0
14540 sentinel: it is not used.
14541
d4e7d3a1
AD
145422002-05-05 Akim Demaille <akim@epita.fr>
14543
14544 New experimental feature: display the lookaheads in the report and
14545 graph.
14546
14547 * src/print (print_core): When --trace-flag, display the rules
14548 lookaheads.
14549 * src/print_graph.c (print_core): Likewise.
14550 Swap the arguments.
14551 Adjust caller.
14552
39ceb25b
AD
145532002-05-05 Akim Demaille <akim@epita.fr>
14554
14555 * tests/torture.at (Many lookaheads): New test.
14556
5372019f
AD
145572002-05-05 Akim Demaille <akim@epita.fr>
14558
14559 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
14560 (GENERATE_MUSCLE_INSERT_TABLE): this.
14561 (output_int_table, output_unsigned_int_table, output_short_table)
14562 (output_token_number_table, output_item_number_table): Replace with...
14563 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
14564 (muscle_insert_short_table, muscle_insert_token_number_table)
14565 (muscle_insert_item_number_table): these.
14566 Adjust all callers.
14567 (prepare_tokens): Don't free `translations', since...
14568 * src/reader.h, src/reader.c (grammar_free): do it.
14569 Move to...
14570 * src/gram.h, src/gram.c (grammar_free): here.
14571 * data/bison.simple, data/bison.c++: b4_token_number_max is now
14572 b4_translate_max.
14573
5df5f6d5
AD
145742002-05-05 Akim Demaille <akim@epita.fr>
14575
14576 * src/output.c (output_unsigned_int_table): New.
14577 (prepare_rules): `i' is unsigned.
14578 `prhs', `rline', `r2' are unsigned int.
14579 Rename muscle `rhs_number_max' as `rhs_max'.
14580 Output muscles `prhs_max', `rline_max', and `r2_max'.
14581 Free rline and r1.
14582 * data/bison.simple, data/bison.c++: Adjust to use these muscles
14583 to compute types instead of constant types.
14584 * tests/regression.at (Web2c Actions): Adjust.
14585
b87f8b21
AD
145862002-05-04 Akim Demaille <akim@epita.fr>
14587
14588 * src/symtab.h (SALIAS, SUNDEF): Rename as...
14589 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
14590 Adjust dependencies.
14591 * src/output.c (token_definitions_output): Be sure not to output a
14592 `#define 'a'' when fed with `%token 'a' "a"'.
14593 * tests/regression.at (Token definitions): New.
14594
8bb936e4
PE
145952002-05-03 Paul Eggert <eggert@twinsun.com>
14596
14597 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
14598 for K&R C.
14599
146002002-05-03 gettextize <bug-gnu-gettext@gnu.org>
14601
14602 * Makefile.am (SUBDIRS): Remove intl.
14603 (EXTRA_DIST): Add config/config.rpath.
14604
53c71a12
AD
146052002-05-03 Akim Demaille <akim@epita.fr>
14606
14607 * data/bison.simple (m4_if): Don't output empty enums.
14608 And actually, output valid enum definitions :(.
14609
289dd0cf
AD
146102002-05-03 Akim Demaille <akim@epita.fr>
14611
14612 * configure.bat: Remove, completely obsolete.
14613 * Makefile.am (EXTRA_DIST): Adjust.
14614 Don't distribute config.rpath...
14615 * config/Makefile.am (EXTRA_DIST): Do it.
14616
db85e524
AD
146172002-05-03 Akim Demaille <akim@epita.fr>
14618
14619 * configure.in (GETTEXT_VERSION): New.
14620 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
14621
83ccf991
AD
146222002-05-03 Akim Demaille <akim@epita.fr>
14623
14624 * data/bison.simple (b4_token_enum): New.
14625 (b4_token_defines): Use it to output tokens both as #define and
14626 enums.
14627 Suggested by Paul Eggert.
14628 * src/output.c (token_definitions_output): Don't output spurious
14629 white spaces.
14630
1f418995
AD
146312002-05-03 Akim Demaille <akim@epita.fr>
14632
14633 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
14634
45119f04
RA
146352002-05-02 Robert Anisko <robert@lrde.epita.fr>
14636
14637 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
14638 Update the stack class, give a try to deque as the default container.
14639
b2d52318
AD
146402002-05-02 Akim Demaille <akim@epita.fr>
14641
14642 * data/bison.simple (yyparse): Do not implement @$ = @1.
14643 (YYLLOC_DEFAULT): Adjust to do it.
14644 * doc/bison.texinfo (Location Default Action): Fix.
14645
3a8b4109
AD
146462002-05-02 Akim Demaille <akim@epita.fr>
14647
14648 * src/reader.c (parse_braces): Merge into...
14649 (parse_action): this.
14650
84614e13
AD
146512002-05-02 Akim Demaille <akim@epita.fr>
14652
14653 * configure.in (ALL_LINGUAS): Remove.
14654 * po/LINGUAS, hr.po: New.
14655
fdbcd8e2
AD
146562002-05-02 Akim Demaille <akim@epita.fr>
14657
14658 Remove the so called hairy (semantic) parsers.
14659
14660 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
14661 * src/gram.h, src/gram.c (semantic_parser): Remove.
14662 (rule_t): Remove the guard and guard_line members.
14663 * src/lex.h (token_t): remove tok_guard.
14664 * src/options.c (option_table): Remove %guard and %semantic_parser
14665 support.
14666 * src/output.c, src/output.h (guards_output): Remove.
14667 (prepare): Adjust.
14668 (token_definitions_output): Don't output the `T'
14669 tokens (???).
14670 (output_skeleton): Don't output the guards.
14671 * src/files.c, src/files.c (attrsfile): Remove.
14672 * src/reader.c (symbol_list): Remove the guard and guard_line
14673 members.
14674 Adjust dependencies.
14675 (parse_guard): Remove.
14676 * data/bison.hairy: Remove.
14677 * doc/bison.texinfo (Environment Variables): Remove occurrences of
14678 BISON_HAIRY.
14679
82b6cb3f
AD
146802002-05-02 Akim Demaille <akim@epita.fr>
14681
14682 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
14683 (parse_guard): Rename the formal argument `stack_offset' as
14684 `rule_length', which is more readable.
14685 Adjust callers.
14686 (copy_at, copy_dollar): Instead of outputting the hard coded
14687 values of $$, $n and so forth, output invocation to b4_lhs_value,
14688 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
14689 Note: this patch partially drops `semantic-parser' support: it
14690 always does `rule_length - n', where semantic parsers ought to
14691 always use `-n'.
82b6cb3f
AD
14692 * data/bison.simple, data/bison.c++ (b4_lhs_value)
14693 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
14694
6cbfbcc5
AD
146952002-05-02 Akim Demaille <akim@epita.fr>
14696
14697 * configure.in (AC_INIT): Bump to 1.49b.
14698 (AM_INIT_AUTOMAKE): Short invocation.
14699
b8548114
AD
147002002-05-02 Akim Demaille <akim@epita.fr>
14701
14702 Version 1.49a.
14703
c20cd1fa
AD
147042002-05-01 Akim Demaille <akim@epita.fr>
14705
14706 * src/skeleton.h: Remove.
14707
8a9566d4
AD
147082002-05-01 Akim Demaille <akim@epita.fr>
14709
14710 * src/skeleton.h: Fix the #endif.
14711 Reported by Magnus Fromreide.
14712
8c6d399a
PE
147132002-04-26 Paul Eggert <eggert@twinsun.com>
14714
14715 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
14716 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 14717 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 14718
2b7ed18a
RA
147192002-04-25 Robert Anisko <robert@lrde.epita.fr>
14720
14721 * src/scan-skel.l: Postprocess quadrigraphs.
14722
14723 * src/reader.c (copy_character): New function, used to output
14724 single characters while replacing `[' and `]' with quadrigraphs, to
14725 avoid troubles with M4 quotes.
14726 (copy_comment): Output characters with copy_character.
14727 (read_additionnal_code): Likewise.
14728 (copy_string2): Likewise.
14729 (copy_definition): Likewise.
14730
14731 * tests/calc.at: Exercise M4 quoting.
14732
34a89c50
AD
147332002-04-25 Akim Demaille <akim@epita.fr>
14734
14735 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
14736 between `!' and the command.
14737 Reported by Paul Eggert.
14738
0dd1580a
RA
147392002-04-24 Robert Anisko <robert@lrde.epita.fr>
14740
14741 * tests/calc.at: Exercise prologue splitting.
14742
14743 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
14744 `b4_post_prologue' instead of `b4_prologue'.
14745
14746 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
14747 muscles.
14748 (output): Free pre_prologue_obstack and post_prologue_obstack.
14749 * src/files.h, src/files.c (attrs_obstack): Remove.
14750 (pre_prologue_obstack, post_prologue_obstack): New.
14751 * src/reader.c (copy_definition): Add a parameter to specify the
14752 obstack to fill, instead of using attrs_obstack unconditionally.
14753 (read_declarations): Pass pre_prologue_obstack to copy_definition if
14754 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
14755
83c1796f
PE
147562002-04-23 Paul Eggert <eggert@twinsun.com>
14757
14758 * data/bison.simple: Remove unnecessary commentary and white
14759 space differences from 1_29-branch.
14760 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
14761
14762 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
14763 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
14764 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
14765 constructors or destructors.
14766
14767 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
14768
1207eeac
AD
147692002-04-23 Akim Demaille <akim@epita.fr>
14770
14771 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
14772 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
14773 location with columns.
14774 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
14775 All reported by Paul Eggert.
14776
78ab8f67
AD
147772002-04-22 Akim Demaille <akim@epita.fr>
14778
14779 * src/reduce.c (dump_grammar): Move to...
14780 * src/gram.h, src/gram.c (grammar_dump): here.
14781 Be sure to separate long item numbers.
14782 Don't read the members of a rule's prec if its nil.
14783
133c20e2
AD
147842002-04-22 Akim Demaille <akim@epita.fr>
14785
14786 * src/output.c (table_size, table_grow): New.
14787 (MAXTABLE): Remove, replace uses with table_size.
14788 (pack_vector): Instead of dying when the table is too big, grow it.
14789
9515e8a7
AD
147902002-04-22 Akim Demaille <akim@epita.fr>
14791
14792 * data/bison.simple (yyr1): Its type is that of a token number.
14793 * data/bison.c++ (r1_): Likewise.
14794 * tests/regression.at (Web2c Actions): Adjust.
14795
23c5a174
AD
147962002-04-22 Akim Demaille <akim@epita.fr>
14797
14798 * src/reader.c (token_translations_init): 256 is now the default
14799 value for the error token, i.e., it will be assigned another
14800 number if the user assigned 256 to one of her tokens.
14801 (reader): Don't force 256 to error.
14802 * doc/bison.texinfo (Symbols): Adjust.
14803 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
14804 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
14805 etc. instead of 10, 20, 30 (which was used to `jump' over error
14806 (256) and undefined (2)).
14807
5fbb0954
AD
148082002-04-22 Akim Demaille <akim@epita.fr>
14809
14810 Propagate more token_number_t.
14811
14812 * src/gram.h (token_number_as_item_number)
14813 (item_number_as_token_number): New.
14814 * src/output.c (GENERATE_OUTPUT_TABLE): New.
14815 Use it to create output_item_number_table and
14816 output_token_number_table.
14817 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
14818 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
14819 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
14820 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
14821
4f940944
AD
148222002-04-22 Akim Demaille <akim@epita.fr>
14823
14824 * src/output.h, src/output.c (get_lines_number): Remove.
14825
3ded9a63
AD
148262002-04-19 Akim Demaille <akim@epita.fr>
14827
14828 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
14829 as Lex/Flex'.
14830 (Debugging): More details about enabling the debugging features.
14831 (Table of Symbols): Describe $$, $n, @$, and @n.
14832 Suggested by Tim Josling.
14833
e0c471a9
AD
148342002-04-19 Akim Demaille <akim@epita.fr>
14835
14836 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
14837
fecc10cd
AD
148382002-04-10 Akim Demaille <akim@epita.fr>
14839
14840 * src/system.h: Rely on HAVE_LIMITS_H.
14841 Suggested by Paul Eggert.
14842
51dec47b
AD
148432002-04-09 Akim Demaille <akim@epita.fr>
14844
14845 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
14846 full stderr, and strip it according to the bison options, instead
14847 of composing the error message from different bits.
14848 This makes it easier to check for several error messages.
14849 Adjust all the invocations.
14850 Add an invocation exercising the error token.
14851 Add an invocation demonstrating a stupid error message.
14852 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
14853 Adjust the tests.
14854 Error message are for stderr, not stdout.
14855
007a50a4
AD
148562002-04-09 Akim Demaille <akim@epita.fr>
14857
14858 * src/gram.h, src/gram.c (error_token_number): Remove, use
14859 errtoken->number.
14860 * src/reader.c (reader): Don't specify the user token number (2)
14861 for $undefined, as it uselessly prevents using it.
14862 * src/gram.h (token_number_t): Move to...
14863 * src/symtab.h: here.
14864 (state_t.number): Is a token_number_t.
14865 * src/print.c, src/reader.c: Use undeftoken->number instead of
14866 hard coded 2.
14867 (Even though this 2 is not the same as above: the number of the
14868 undeftoken remains being 2, it is its user token number which
14869 might not be 2).
14870 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
14871 `user_token_number_max'.
14872 Output `undef_token_number'.
14873 * data/bison.simple, data/bison.c++: Use them.
14874 Be sure to map invalid yylex return values to
14875 `undef_token_number'. This saves us from gratuitous SEGV.
14876
14877 * tests/conflicts.at (Solved SR Conflicts)
14878 (Unresolved SR Conflicts): Adjust.
14879 * tests/regression.at (Web2c Actions): Adjust.
14880
06446ccf
AD
148812002-04-08 Akim Demaille <akim@epita.fr>
14882
14883 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
14884 Adding #line.
14885 Remove the duplicate `typedefs'.
14886 (RhsNumberType): Fix the declaration and various other typos.
14887 Use __ofile__.
14888 * data/bison.simple: Use __ofile__.
14889 * src/scan-skel.l: Handle __ofile__.
14890
62a3e4f0
AD
148912002-04-08 Akim Demaille <akim@epita.fr>
14892
14893 * src/gram.h (item_number_t): New, the type of item numbers in
14894 RITEM. Note that it must be able to code symbol numbers as
14895 positive number, and the negation of rule numbers as negative
14896 numbers.
14897 Adjust all dependencies (pretty many).
14898 * src/reduce.c (rule): Remove this `short *' pointer: use
14899 item_number_t.
14900 * src/system.h (MINSHORT, MAXSHORT): Remove.
14901 Include `limits.h'.
14902 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
14903 (shortcpy): Remove.
14904 (MAXTABLE): Move to...
14905 * src/output.c (MAXTABLE): here.
14906 (prepare_rules): Use output_int_table to output rhs.
14907 * data/bison.simple, data/bison.c++: Adjust.
14908 * tests/torture.at (Big triangle): Move the limit from 254 to
14909 500.
14910 * tests/regression.at (Web2c Actions): Ajust.
14911
14912 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
14913 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
14914 passes, but produces negative #line number, once fixed, GCC is
14915 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
14916 C), it passes.
14917 * src/state.h (state_h): Code input lines on ints, not shorts.
14918
bb88b0fc
AD
149192002-04-08 Akim Demaille <akim@epita.fr>
14920
14921 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
14922 and then the grammar.
14923
9a636f47
AD
149242002-04-08 Akim Demaille <akim@epita.fr>
14925
14926 * src/system.h: No longer using strndup.
14927
680e8701
AD
149282002-04-07 Akim Demaille <akim@epita.fr>
14929
14930 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
14931 * src/output.c (output_table_data): Return the longest number.
14932 (prepare_tokens): Output `token_number_max').
14933 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
14934 New.
14935 Use them to define yy_token_number_type/TokenNumberType.
14936 Use this type for yytranslate.
14937 * tests/torture.at (Big triangle): Push the limit from 124 to
14938 253.
14939 * tests/regression.at (Web2c Actions): Adjust.
14940
817e9f41
AD
149412002-04-07 Akim Demaille <akim@epita.fr>
14942
14943 * tests/torture.at (Big triangle): New.
14944 (GNU AWK Grammar, GNU Cim Grammar): Move to...
14945 * tests/existing.at: here.
14946
5123689b
AD
149472002-04-07 Akim Demaille <akim@epita.fr>
14948
14949 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
14950 nritems.
14951 Adjust dependencies.
14952
f3849179
AD
149532002-04-07 Akim Demaille <akim@epita.fr>
14954
14955 * src/reader.c: Normalize increments to prefix form.
14956
bd02036a
AD
149572002-04-07 Akim Demaille <akim@epita.fr>
14958
14959 * src/reader.c, symtab.c: Remove debugging code.
14960
db8837cb
AD
149612002-04-07 Akim Demaille <akim@epita.fr>
14962
14963 Rename all the `bucket's as `symbol_t'.
14964
14965 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
14966 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
14967 * src/symtab.c, src/symtab.h (bucket): Rename as...
14968 (symbol_t): this.
14969 (symbol_list_new, bucket_check_defined, bucket_make_alias)
14970 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
14971 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
14972 (buckets_new, buckets_free, buckets_do): Rename as...
14973 (symbol_list_new, symbol_check_defined, symbol_make_alias)
14974 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
14975 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
14976 (symbols_new, symbols_free, symbols_do): these.
14977
72a23c97
AD
149782002-04-07 Akim Demaille <akim@epita.fr>
14979
14980 Use lib/hash for the symbol table.
14981
14982 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
14983 EOF.
14984 * src/lex.c (lex): Set the `number' member of new terminals.
14985 * src/reader.c (bucket_check_defined, bucket_make_alias)
14986 (bucket_check_alias_consistence, bucket_translation): New.
14987 (reader, grammar_free, readgram, token_translations_init)
14988 (packsymbols): Adjust.
14989 (reader): Number the predefined tokens.
14990 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
14991 for predefined tokens.
14992 * src/symtab.h (bucket): Remove all the hash table related
14993 members.
14994 * src/symtab.c (symtab): Replace by...
14995 (bucket_table): this.
14996 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
14997 (buckets_new, buckets_do): New.
14998
280a38c3
AD
149992002-04-07 Akim Demaille <akim@epita.fr>
15000
15001 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
15002 (start_symbol, max_user_token_number, semantic_parser)
15003 (error_token_number): Initialize.
15004 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
15005 Initialize.
15006 (reader): Don't.
15007 (errtoken, eoftoken, undeftoken, axiom): Extern.
15008
03b31c0c
AD
150092002-04-07 Akim Demaille <akim@epita.fr>
15010
15011 * src/gram.h (rule_s): prec and precsym are now pointers
15012 to the bucket giving the priority/associativity.
15013 Member `associativity' removed: useless.
15014 * src/reduce.c, src/conflicts.c: Adjust.
15015
8b3df748
AD
150162002-04-07 Akim Demaille <akim@epita.fr>
15017
15018 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
15019 Properly escape the symbols' TAG when outputting them.
15020
e601aa1d
AD
150212002-04-07 Akim Demaille <akim@epita.fr>
15022
15023 * src/lalr.h (LA): Is a bitsetv, not bitset*.
15024
b0299a2e
AD
150252002-04-07 Akim Demaille <akim@epita.fr>
15026
15027 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
15028 (LArule): this, which is an array to rule_t*.
15029 * src/print.c, src/conflicts.c: Adjust.
15030
d7e1f00c
AD
150312002-04-07 Akim Demaille <akim@epita.fr>
15032
15033 * src/gram.h (rule_t): Rename `number' as `user_number'.
15034 `number' is a new member.
15035 Adjust dependencies.
15036 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
15037
cc9305dd
AD
150382002-04-07 Akim Demaille <akim@epita.fr>
15039
15040 As a result of the previous patch, it is no longer needed
15041 to reorder ritem itself.
15042
15043 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
15044
b0940840
AD
150452002-04-07 Akim Demaille <akim@epita.fr>
15046
15047 Be sure never to walk through RITEMS, but use only data related to
15048 the rules themselves. RITEMS should be banished.
15049
15050 * src/output.c (output_token_translations): Rename as...
15051 (prepare_tokens): this.
15052 In addition to `translate', prepare the muscles `tname' and
15053 `toknum', which were handled by...
15054 (output_rule_data): this.
15055 Remove, and move the remainder of its outputs into...
15056 (prepare_rules): this new routines, which also merges content from
15057 (output_gram): this.
15058 (prepare_rules): Be sure never to walk through RITEMS.
15059 (output_stos): Rename as...
15060 (prepare_stos): this.
15061 (output): Always invoke prepare_states, after all, just don't use it
15062 in the output if you don't need it.
15063
643a5994
AD
150642002-04-07 Akim Demaille <akim@epita.fr>
15065
15066 * src/LR0.c (new_state): Display `nstates' as the name of the
15067 newly created state.
15068 Adjust to initialize first_state and last_state if needed.
15069 Be sure to distinguish the initial from the final state.
15070 (new_states): Create the itemset of the initial state, and use
15071 new_state.
15072 * src/closure.c (closure): Now that the initial state has its
15073 items properly set, there is no need for a special case when
15074 creating `ruleset'.
15075
15076 As a result, now the rule 0, reducing to $axiom, is visible in the
15077 outputs. Adjust the test suite.
15078
15079 * tests/conflicts.at (Solved SR Conflicts)
15080 (Unresolved SR Conflicts): Adjust.
15081 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
15082 * tests/conflicts.at (S/R in initial): New.
15083
b4c4ccc2
AD
150842002-04-07 Akim Demaille <akim@epita.fr>
15085
15086 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
15087 the RHS of the rules.
15088 * src/output.c (output_gram): Likewise.
15089
bba97eb2
AD
150902002-04-07 Akim Demaille <akim@epita.fr>
15091
15092 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
15093 bucket.
15094 Adjust all dependencies.
15095 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
15096 `number' of the buckets too.
15097 * src/gram.h: Include `symtab.h'.
15098 (associativity): Move to...
15099 * src/symtab.h: here.
15100 No longer include `gram.h'.
15101
c3b407f4
AD
151022002-04-07 Akim Demaille <akim@epita.fr>
15103
15104 * src/gram.h, src/gram.c (rules_rhs_length): New.
15105 (ritem_longest_rhs): Use it.
15106 * src/gram.h (rule_t): `number' is a new member.
15107 * src/reader.c (packgram): Set it.
15108 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
15109 the end of `rules', and count them out of `nrules'.
15110 (reduce_output, dump_grammar): Adjust.
15111 * src/print.c (print_grammar): It is no longer needed to check for
15112 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
15113 * tests/reduce.at (Reduced Automaton): New test.
15114
11652ab3
AD
151152002-04-07 Akim Demaille <akim@epita.fr>
15116
15117 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
15118 lacking `+ 1' to nrules, Bison reported as useless a token if it
15119 was used solely to set the precedence of the last rule...
15120
26b23c1a
AD
151212002-04-07 Akim Demaille <akim@epita.fr>
15122
15123 * data/bison.c++, data/bison.simple: Don't output the current file
15124 name in #line, to avoid useless diffs between two identical
15125 outputs under different names.
15126
18bcecb0
AD
151272002-04-07 Akim Demaille <akim@epita.fr>
15128
15129 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
15130 Normalize loops to using `< nrules + 1', not `<= nrules'.
15131
fa770c86
AD
151322002-04-07 Akim Demaille <akim@epita.fr>
15133
15134 * TODO: Update.
15135
d9b739c3
AD
151362002-04-07 Akim Demaille <akim@epita.fr>
15137
15138 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
15139 bucket.value as bucket.number.
15140
99013900
AD
151412002-04-07 Akim Demaille <akim@epita.fr>
15142
15143 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
15144 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
15145 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
15146 RHS, instead of being an index in RITEMS.
15147
e966383b
PE
151482002-04-04 Paul Eggert <eggert@twinsun.com>
15149
15150 * doc/bison.texinfo: Update copyright date.
15151 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
15152 (Symbols): Warn about running Bison in one character set,
15153 but compiling and/or running in an incompatible one.
15154 Warn about character code 256, too.
15155
151562002-04-03 Paul Eggert <eggert@twinsun.com>
15157
15158 * src/bison.data (YYSTACK_ALLOC): Depend on whether
15159 YYERROR_VERBOSE is nonzero, not whether it is defined.
15160
15161 Merge changes from bison-1_29-branch.
c307773e 15162
8d6c48b9
PE
151632002-03-20 Paul Eggert <eggert@twinsun.com>
15164
15165 Merge fixes from Debian bison_1.34-1.diff.
15166
15167 * configure.in (AC_PREREQ): 2.53.
15168
e53c6322
AD
151692002-03-20 Akim Demaille <akim@epita.fr>
15170
15171 * src/conflicts.c (log_resolution): Argument `resolution' is const.
15172
9ffbeca7
PE
151732002-03-19 Paul Eggert <eggert@twinsun.com>
15174
21db0b2a
PE
15175 * src/bison.simple (YYCOPY): New macro.
15176 (YYSTACK_RELOCATE): Use it.
15177 Remove Type arg; no longer needed. All callers changed.
15178 (yymemcpy): Remove; no longer needed.
15179
9ffbeca7
PE
15180 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
15181 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
15182
642cb8f8
AD
151832002-03-19 Akim Demaille <akim@epita.fr>
15184
15185 Test and fix the #line outputs.
15186
15187 * tests/atlocal.at (GCC): New.
15188 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
0ffd4fd1 15189 (Prologue synch line, %union synch line, Postprologue synch line)
642cb8f8
AD
15190 (Action synch line, Epilogue synch line): New tests.
15191 * src/reader.c (parse_union_decl): Define the muscle stype_line.
15192 * data/bison.simple, data/bison.c++: Use it.
15193
3c31a486
AD
151942002-03-19 Akim Demaille <akim@epita.fr>
15195
15196 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
15197 (Solved SR Conflicts, %expect not enough, %expect right)
15198 (%expect too much): Move to...
15199 * tests/conflicts.at: this new file.
15200
0d8bed56
AD
152012002-03-19 Akim Demaille <akim@epita.fr>
15202
15203 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
15204 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
15205 that we can move to enums for instance.
15206 * src/output.c (token_definitions_output): Output a list of
15207 `token-name, token-number' instead of the #define.
15208 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
15209
9208d17f
AD
152102002-03-14 Akim Demaille <akim@epita.fr>
15211
15212 Use Gettext 0.11.1.
15213
af27eacb
RA
152142002-03-09 Robert Anisko <robert@lrde.epita.fr>
15215
15216 * data/bison.c++: Make the user able to add members to the generated
15217 parser by subclassing.
15218
9101a310
RA
152192002-03-05 Robert Anisko <robert@lrde.epita.fr>
15220
15221 * src/reader.c (read_additionnal_code): `c' should be an integer, not
15222 a character.
15223 Reported by Nicolas Tisserand and Nicolas Burrus.
15224
fff9bf0b
RA
152252002-03-04 Robert Anisko <robert@lrde.epita.fr>
15226
15227 * src/reader.c: Warn about lacking semi-colons, do not complain.
15228
64dba31e
RA
152292002-03-04 Robert Anisko <robert@lrde.epita.fr>
15230
15231 * data/bison.c++: Remove a debug line.
15232
374f5a14
RA
152332002-03-04 Robert Anisko <robert@lrde.epita.fr>
15234
15235 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
15236 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
15237 provide a default implementation.
15238
bfcf1f3a
AD
152392002-03-04 Akim Demaille <akim@epita.fr>
15240
15241 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
15242 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
15243 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
15244 * tests/semantic.at (Parsing Guards): Similarly.
15245 * src/reader.at (readgram): Complain if the last rule is not ended
15246 with a semi-colon.
15247
65ccf9fc
AD
152482002-03-04 Akim Demaille <akim@epita.fr>
15249
15250 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
15251 * src/closure.c: here.
15252 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
15253 RTC.
15254 * src/warshall.h, src/warshall.c: Remove.
15255 * tests/sets.at (Broken Closure): Adjust.
15256
d0039cbc
AD
152572002-03-04 Akim Demaille <akim@epita.fr>
15258
15259 * src/output.c (output_skeleton): tempdir is const.
15260 bytes_read is unused.
15261
345cea78
AD
152622002-03-04 Akim Demaille <akim@epita.fr>
15263
15264 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
15265 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
15266 Update.
15267 From Michael Hayes.
15268
564801f7
AD
152692002-03-04 Akim Demaille <akim@epita.fr>
15270
15271 * src/closure.c (closure): `r' is unused.
15272
e5352bc7
AD
152732002-03-04 Akim Demaille <akim@epita.fr>
15274
15275 * tests/sets.at (Broken Closure): Add the ending `;'.
15276 * src/reader.at (readgram): Complain if a rule is not ended with a
15277 semi-colon.
15278
914feea9
AD
152792002-03-04 Akim Demaille <akim@epita.fr>
15280
15281 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
15282 (count_sr_conflicts): Use bitset_count.
15283 * src/reduce.c (inaccessable_symbols): Ditto.
15284 (bits_size): Remove.
15285 * src/warshall.h, src/warshall.c: Convert to bitsetv.
15286
f0250de6
AD
152872002-03-04 Akim Demaille <akim@epita.fr>
15288
15289 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
15290 * src/reduce.c: Remove the `bitset_zero's following the
15291 `bitset_create's, as now it is performed by the latter.
15292
ef017502
AD
152932002-03-04 Akim Demaille <akim@epita.fr>
15294
15295 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
15296 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
15297 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
15298 latest sources from Michael.
15299
76514394
AD
153002002-03-04 Akim Demaille <akim@epita.fr>
15301
15302 * src/output.c (output): Don't free the grammar.
15303 * src/reader.c (grammar_free): New.
15304 * src/main.c (main): Call it and don't free symtab here.
15305
55024580
AD
153062002-03-04 Akim Demaille <akim@epita.fr>
15307
15308 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
15309 before returning.
15310 Reported by Benoit Perrot.
15311
f9abaa2c
AD
153122002-03-04 Akim Demaille <akim@epita.fr>
15313
15314 Use bitset operations when possible, not loops over bits.
15315
15316 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
15317 bitset_or.
15318 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
15319 * src/reduce.c (useless_nonterminals): Formatting changes.
15320 * src/warshall.c (TC): Use bitset_or.
15321
0e721e75
AD
153222002-03-04 Akim Demaille <akim@epita.fr>
15323
15324 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
15325 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
15326 Ditto.
15327
0fb1ffb1
AD
153282002-03-04 Akim Demaille <akim@epita.fr>
15329
15330 * src/lalr.c (F): Now a bitset*.
15331 Adjust all dependencies.
15332
b86796bf
AD
153332002-03-04 Akim Demaille <akim@epita.fr>
15334
15335 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
15336 Adjust all dependencies.
15337
602bbf31
AD
153382002-03-04 Akim Demaille <akim@epita.fr>
15339
15340 * src/L0.c, src/LR0.h (nstates): Be size_t.
15341 Adjust comparisons (signed vs unsigned).
15342 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
15343 bitset*.
15344 Adjust all dependencies.
15345
d8a0245c
AD
153462002-03-04 Akim Demaille <akim@epita.fr>
15347
15348 * src/closure.c (firsts): Now, also a bitset.
15349 Adjust all dependencies.
15350 (varsetsize): Remove, now unused.
15351 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
15352
34ba9743
AD
153532002-03-04 Akim Demaille <akim@epita.fr>
15354
15355 * src/print.c: Convert to use bitset.h, not hand coded iterations
15356 over ints.
15357
ed86e78c
AD
153582002-03-04 Akim Demaille <akim@epita.fr>
15359
15360 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
15361
dfdb1797
AD
153622002-03-04 Akim Demaille <akim@epita.fr>
15363
15364 * src/closure.c (ruleset): Be a bitset.
15365 (rulesetsize): Remove.
15366
7086e707
AD
153672002-03-04 Akim Demaille <akim@epita.fr>
15368
15369 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
15370 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
15371 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
15372 * src/closure.c (fderives): Be an array of bitsets.
15373
98254360
RA
153742002-02-28 Robert Anisko <robert@lrde.epita.fr>
15375
15376 * data/bison.c++: Merge the two generated headers. Insert a copyright
15377 notice in each output file.
15378
a75c057f
AD
153792002-02-28 Akim Demaille <akim@epita.fr>
15380
15381 * data/bison.c++: Copy the prologue of bison.simple to fetch
15382 useful M4 definitions, such as b4_header_guard.
15383
06b00abc
AD
153842002-02-25 Akim Demaille <akim@epita.fr>
15385
15386 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
15387 translator friendly scheme for the bgr
15388 copyright notice.
06b00abc 15389
70e7d534
AD
153902002-02-25 Akim Demaille <akim@epita.fr>
15391
15392 * src/output.c (header_output): Remove, now handled completely via
15393 M4.
15394
abe017f6
AD
153952002-02-25 Akim Demaille <akim@epita.fr>
15396
15397 * m4/m4.m4: New, from CVS Autoconf.
15398 * configure.in: Invoke it.
15399 * src/output.c (output_skeleton): Use its result instead of the
15400 hard coded name.
15401
381fb12e
AD
154022002-02-25 Akim Demaille <akim@epita.fr>
15403
15404 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
15405 Fileutils 4.1.5.
15406 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
15407 * src/output.c (output_skeleton): Use mkstemp to create a real
15408 temporary file.
15409 Move the filling of `skeleton' and its muscle to...
15410 (prepare): here.
15411 (output): Move the definition of the prologue muscle to...
15412 (prepare): here.
15413 * src/system.h (DEFAULT_TMPDIR): New.
15414
6f38107f
PE
154152002-02-14 Paul Eggert <eggert@twinsun.com>
15416
15417 Remove the support for C++ namespace cleanliness; it was
15418 causing more problems than it was curing, since it didn't work
15419 properly on some nonstandard C++ compilers. This can wait
15420 for a proper C++ parser.
15421
15422 * NEWS: Document this.
15423 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
15424 of C++, as it's treated like C now.
15425 * src/bison.simple (YYSTD): Remove.
15426 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
15427 Treat C++ just like Standard C instead of trying to support
15428 namespace cleanliness.
15429
80cce3da
AD
154302002-02-14 Akim Demaille <akim@epita.fr>
15431
15432 * tests/regression.at (else): Adjust to Andreas' change.
15433
842e8679
AD
154342002-02-14 Akim Demaille <akim@epita.fr>
15435
15436 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
15437
4bda3f10
AD
154382002-02-13 Andreas Schwab <schwab@suse.de>
15439
15440 * src/output.c (output_rule_data): Don't output NULL, it might
15441 not be defined yet.
15442
4162fa07 154432002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 15444
4162fa07
RA
15445 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
15446 (Copyright notice): Update.
b418ecd8 15447
bd16a5dc
AD
154482002-02-11 Akim Demaille <akim@epita.fr>
15449
15450 * tests/regression.at (%nonassoc and eof): Don't include
15451 nonportable headers.
15452
8d69a1a3
RA
154532002-02-08 Robert Anisko <robert@lrde.epita.fr>
15454
15455 * data/bison.c++: Correct error recovery. Make the user able to
15456 initialize the starting location.
15457
9b2d0677
AD
154582002-02-07 Akim Demaille <akim@epita.fr>
15459
15460 * tests/input.at: New.
15461
69e2658b
RA
154622002-02-07 Robert Anisko <robert@lrde.epita.fr>
15463
15464 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 15465 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
15466 directives around tables only needed for debugging.
15467
4aacc3a7
RA
154682002-02-07 Robert Anisko <robert@lrde.epita.fr>
15469
15470 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
15471 C++ parsers.
15472 (yy::b4_name::parse): Use print_.
15473
762a801e
RA
154742002-02-07 Robert Anisko <robert@lrde.epita.fr>
15475
15476 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
15477
4bb2bc3f
RA
154782002-02-07 Robert Anisko <robert@lrde.epita.fr>
15479
15480 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
15481 C++ parsers.
15482 (yy::b4_name::parse): Build verbose error messages, and use error_.
15483
6b45a3ca
RA
154842002-02-06 Robert Anisko <robert@lrde.epita.fr>
15485
15486 * data/bison.c++: Fix m4 quoting in comments.
15487
50997c6e
RA
154882002-02-06 Robert Anisko <robert@lrde.epita.fr>
15489
15490 * data/bison.c++: Adjust the parser code. Fix some muscles that were
15491 not expanded by m4.
15492
3f3eed27
AD
154932002-02-05 Akim Demaille <akim@epita.fr>
15494
15495 * data/bison.c++: Adjust to the M4 back end.
15496 More is certainly needed.
15497
be2a1a68
AD
154982002-02-05 Akim Demaille <akim@epita.fr>
15499
15500 Give a try to M4 as a back end.
15501
15502 * lib/readpipe.c: New, from wdiff.
15503 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
15504 BISON_HAIRY.
15505 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
15506 specific values. Now it is m4 that performs the lookup.
15507 * src/parse-skel.y: Remove.
15508 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
15509 * src/output.c (actions_output, guards_output)
15510 (token_definitions_output): No longer keeps track of the output
15511 line number, hence remove the second argument.
15512 (guards_output): Check against the guard member of a rule, not the
15513 action member.
15514 Adjust callers.
15515 (output_skeleton): Don't look for the skeleton location, let m4 do
15516 that.
15517 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
15518 file will be used.
15519 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
15520 (prepare): Given that for the time being changesyntax is not
15521 usable in M4, rename the muscles using `-' to `_'.
15522 Define `defines_flag', `output_parser_name' and `output_header_name'.
15523 * src/output.h (actions_output, guards_output)
15524 (token_definitions_output): Adjust prototypes.
15525 * src/scan-skel.l: Instead of scanning the skeletons, it now
15526 processes the output of m4: `__oline__' and `#output'.
15527 * data/bison.simple: Adjust to be used by M4(sugar).
15528 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
15529 to date.
15530 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
15531 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
15532 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
15533 shamelessly stolen from CVS Autoconf.
15534
beda758b
AD
155352002-02-05 Akim Demaille <akim@epita.fr>
15536
15537 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
15538 * configure.in: Check for the declarations of free and malloc.
15539 * src/muscle_tab.c: Adjust.
15540
5ece6d43
AD
155412002-02-05 Akim Demaille <akim@epita.fr>
15542
15543 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
15544 which have no values.
15545
5bb18f9a
AD
155462002-02-05 Akim Demaille <akim@epita.fr>
15547
15548 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
15549 * data/: here.
15550
894dd62e
PE
155512002-01-29 Paul Eggert <eggert@twinsun.com>
15552
15553 * src/bison.simple (YYSIZE_T): Do not define merely because
15554 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
15555 On some platforms, <alloca.h> does not declare YYSTD (size_t).
15556
82841af7
AD
155572002-01-27 Akim Demaille <akim@epita.fr>
15558
15559 Fix `%nonassoc and eof'.
15560
15561 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
15562 which were not properly copied! Replace
15563 memcpy (res->errs, src->errs, src->nerrs);
15564 with
15565 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
15566 !!!
15567 * tests/regression.at (%nonassoc and eof): Adjust to newest
15568 Autotest: `.' is not in the PATH.
15569
318b76e9
AD
155702002-01-27 Akim Demaille <akim@epita.fr>
15571
15572 * tests/sets.at (AT_EXTRACT_SETS): New.
15573 (Nullable): Use it.
15574 (Firsts): New.
15575
30d2f3d5
AD
155762002-01-26 Akim Demaille <akim@epita.fr>
15577
15578 * tests/actions.at, tests/calc.at, tests/headers.at,
15579 * tests/torture.at: Adjust to the newest Autotest which no longer
15580 forces `.' in the PATH.
15581
30f8c395
AD
155822002-01-25 Akim Demaille <akim@epita.fr>
15583
15584 * tests/regression.at (%nonassoc and eof): New.
15585 Suggested by Robert Anisko.
15586
29ae55f1
AD
155872002-01-24 Akim Demaille <akim@epita.fr>
15588
15589 Bison dumps core when trying to complain about broken input files.
15590 Reported by Cris van Pelt.
15591
15592 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
15593 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
15594 into...
15595 (Invalid inputs): Strengthen: exercise parse_percent_token.
15596
2b548aa6
RA
155972002-01-24 Robert Anisko <robert.anisko@epita.fr>
15598
15599 * src/Makefile.am: Add bison.c++.
15600 * src/bison.c++: New skeleton.
15601
bb0146c2
AD
156022002-01-21 Paolo Bonzini <bonzini@gnu.org>
15603
15604 * po/it.po: New.
15605
bec30531
AD
156062002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
15607
15608 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
15609
fc6edc45
MA
156102002-01-20 Marc Autret <marc@gnu.org>
15611
15612 * src/files.c (compute_output_file_names): Fix
15613
5e5d5415
MA
156142002-01-20 Marc Autret <marc@gnu.org>
15615
15616 * tests/output.at: New test.
15617 * src/files.c (compute_base_names): Don't map extensions when
15618 the YACC flag is set, use defaults.
15619 Reported by Evgeny Stambulchik.
15620
44ea3fbd
MA
156212002-01-20 Marc Autret <marc@gnu.org>
15622
ba0fe3c7
PE
15623 * src/system.h: Need to define __attribute__ away for non-GCC
15624 compilers as well (i.e., the vendor C compiler).
44ea3fbd
MA
15625 Suggested by Albert Chin-A-Young.
15626
338963d1
TVH
156272002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
15628
15629 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
15630 canonical definition.
15631 * src/system.h: Use the canonical definition for PARAMS (avoids
15632 a conflict with the macro from lib/hash.h).
15633
c57b2479
AD
156342002-01-11 Akim Demaille <akim@epita.fr>
15635
15636 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 15637 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 15638
b85810ae
AD
156392002-01-09 Akim Demaille <akim@epita.fr>
15640
15641 * src/files.c, src/files.h (output_infix): New.
15642 (tab_extension): Remove.
15643 (compute_base_names): Compute the former, drop the latter.
15644 * src/output.c (prepare): Insert the muscles `output-infix', and
15645 `output-suffix'.
15646 * src/parse-skel.y (string, string.1): New.
15647 (section.header): Use it.
15648 (section.yacc): Remove.
15649 (prefix): Remove too.
15650 * src/scan-skel.l: Adjust.
15651 * src/bison.simple, src/bison.hairy: Adjust.
15652
cae60122
AD
156532002-01-09 Akim Demaille <akim@epita.fr>
15654
15655 * configure.in (WERROR_CFLAGS): Compute it.
15656 * src/Makefile.am (CFLAGS): Pass it.
15657 * tests/atlocal.in (CFLAGS): Idem.
15658 * src/files.c: Fix a few warnings.
15659 (get_extension_index): Remove, unused.
15660
ae404801
AD
156612002-01-08 Akim Demaille <akim@epita.fr>
15662
15663 * src/getargs.c (AS_FILE_NAME): New.
15664 (getargs): Use it to convert DOSish file names.
15665 * src/files.c (base_name): Rename as full_base_name to avoid
15666 clashes with `base_name ()'.
15667 (filename_split): New.
15668 (compute_base_names): N-th rewrite, using filename_split.
15669
22312b71
AD
156702002-01-08 Akim Demaille <akim@epita.fr>
15671
15672 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
15673 New, stolen from the Fileutils 4.1.
15674 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
15675 * configure.in: Check for the presence of memrchr, and of its
15676 prototype.
15677
a67cef01
TVH
156782002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
15679
15680 * lib/hash.h (__P): Added definition for this macro.
15681 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
15682 BUILT_SOURCES, to ensure they are generated first.
15683 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
15684 %error-verbose to allow bootstrapping with bison 1.30x.
15685
2b25d624
AD
156862002-01-06 Akim Demaille <akim@epita.fr>
15687
15688 * src/reader.c (parse_braces): Don't fetch the next char, the
15689 convention is to fetch on entry.
15690 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
15691 'switch' without a following semicolon.
15692 * tests/regression.at (braces parsing): New.
15693
3460813b
AD
156942002-01-06 Akim Demaille <akim@epita.fr>
15695
15696 Bison is dead wrong in its RR conflict reports.
15697
15698 * tests/torture.at (GNU Cim Grammar): New.
15699 * src/conflicts.c (count_rr_conflicts): Fix.
15700
73784c64
AD
157012002-01-06 Akim Demaille <akim@epita.fr>
15702
15703 Creating package.m4 from configure.ac causes too many problems.
15704
15705 * tests/Makefile.am (package.m4): Create it by hand,
15706 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
15707
25d81090
AD
157082002-01-06 Akim Demaille <akim@epita.fr>
15709
15710 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
15711 skeleton.h.
15712
a9b8959e
PE
157132002-01-04 Paul Eggert <eggert@twinsun.com>
15714
15715 * doc/bison.texinfo (Debugging):
15716 Remove YYSTDERR; it's no longer defined or used.
15717 Also, s/cstdio.h/cstdio/.
15718
25d81090
AD
157192002-01-03 Akim Demaille <akim@epita.fr>
15720
15721 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
15722
1109455c
AD
157232002-01-03 Akim Demaille <akim@epita.fr>
15724
15725 * src/parse-skel.y (process_skeleton): Don't bind the parser's
15726 tracing code to --trace, wait for a better --trace option, with
15727 args.
15728
7ea5e977
AD
157292002-01-03 Akim Demaille <akim@epita.fr>
15730
15731 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
15732 The ISO C++ standard is extremely clear about it: stderr is
15733 considered a macro, not a regular symbol (see table 94 `Header
15734 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
15735 Therefore std:: does not apply to it. It still does with fprintf.
15736 Also, s/cstdio.h/cstdio/.
15737
fab5b110
AD
157382002-01-03 Akim Demaille <akim@epita.fr>
15739
15740 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
15741 for non system headers.
15742
aed7fd9b
AD
157432002-01-02 Akim Demaille <akim@epita.fr>
15744
15745 Equip the skeleton chain with location tracking, runtime trace,
15746 pure parser and scanner.
15747
15748 * src/parse-skel.y: Request a pure parser, locations, and prefix
15749 renaming.
15750 (%union): Having several members with the same type does not help
15751 type mismatches, simplify.
15752 (YYPRINT, yyprint): New.
15753 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
15754 (skel_error): this.
15755 Handle locations.
15756 * src/scan-skel.l: Adjust to these changes.
15757 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
15758 (LOCATION_PRINT, skel_control_t): New.
15759
24fad99e
AD
157602001-12-30 Akim Demaille <akim@epita.fr>
15761
15762 * src/parse-skel.y: Get rid of the shift/reduce conflict:
15763 replace `gb' with BLANKS.
15764 * src/scan-skel.l: Adjust.
15765
a4b36db4
AD
157662001-12-30 Akim Demaille <akim@epita.fr>
15767
15768 * src/system.h: We don't need nor want bcopy.
15769 Throw away MS-DOS crap: we don't need getpid.
15770 * configure.in: We don't need strndup. It was even causing
15771 problems: because Flex includes the headers *before* us,
15772 _GNU_SOURCE is not defined by config.h, and therefore strndup was
15773 not visible.
15774 * lib/xstrndup.c: New.
15775 * src/scan-skel.l: Use it.
15776 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
15777 * src/parse-skel.y: Use %directives instead of #defines.
15778
1239777d
AD
157792001-12-30 Akim Demaille <akim@epita.fr>
15780
15781 * src/skeleton.h: New.
15782 * src/output.c (output_parser, output_master_parser): Remove, dead
15783 code.
15784 * src/output.h (get_lines_number, actions_output, guards_output)
15785 (token_definitions_output): Prototype them.
15786 * src/parse-skel.y: Add the license notice.
15787 Include output.h and skeleton.h.
15788 (process_skeleton): Returns void, and takes a single parameter.
15789 * src/scan-skel.l: Add the license notice.
15790 Include skeleton.h.
15791 Don't use %option yylineno: it seems that then Flex imagines
15792 REJECT has been used, and therefore it won't reallocate its
15793 buffers (which makes no other sense to me than a bug). It results
15794 in warnings for `unused: yy_flex_realloc'.
15795
9b3add5b
RA
157962001-12-30 Robert Anisko <robert.anisko@epita.fr>
15797
15798 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
15799 (MUSCLE_INSERT_PREFIX): ...to there.
15800 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
15801 (MUSCLE_INSERT_PREFIX): Move from here...
15802
15803 * src/bison.hairy: Add a section directive. Put braces around muscle
15804 names. This parser skeleton is still broken, but Bison should not
15805 choke on a bad muscle 'syntax'.
15806 * src/bison.simple: Add a section directive. Put braces around muscle
15807 names.
15808
15809 * src/files.h (strsuffix, stringappend): Add declarations.
15810 (tab_extension): Add declaration.
15811 (short_base_name): Add declaration.
15812
15813 * src/files.c (strsuffix, stringappend): No longer static. These
15814 functions are used in the skeleton parser.
15815 (tab_extension): New.
15816 (compute_base_names): Use the computations done in this function
fab5b110 15817 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
15818 names.
15819 (short_base_name): No longer static.
15820
15821 * src/output.c (output_skeleton): New.
15822 (output): Disable call to output_master_parser, and give a try to
15823 a new skeleton handling system.
15824 (guards_output, actions_output): No longer static.
15825 (token_definitions_output, get_lines_number): No longer static.
15826
15827 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
15828
fab5b110 15829 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
15830 parse-skel.y.
15831
15832 * src/parse-skel.y: New file.
15833 * src/scan-skel.l: New file.
15834
b5b61c61
AD
158352001-12-29 Akim Demaille <akim@epita.fr>
15836
15837 %name-prefix is broken.
15838
15839 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
15840 Adjust all dependencies.
15841 * tests/headers.at (export YYLTYPE): Strengthen this test: use
15842 %name-prefix.
15843
15844 Renaming yylval but not yylloc is not consistent. Now we do.
15845
15846 * src/bison.simple: Prefix yylloc if used.
15847 * doc/bison.texinfo (Decl Summary): Document that.
15848
8c9a50be
AD
158492001-12-29 Akim Demaille <akim@epita.fr>
15850
15851 * doc/bison.texinfo: Promote `%long-directive' over
15852 `%long_directive'.
15853 Remove all references to fixed-output-files, yacc is enough.
15854
d99361e6
AD
158552001-12-29 Akim Demaille <akim@epita.fr>
15856
15857 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
15858 user prologue. These are defaults.
15859 * tests/actions.at (Mid-rule actions): Make sure the user can
15860 define YYDEBUG and YYERROR_VERBOSE.
15861
b9cecb91
AD
158622001-12-29 Akim Demaille <akim@epita.fr>
15863
15864 * src/output.c (header_output): Don't forget to export YYLTYPE and
15865 yylloc.
15866 * tests/headers.at (export YYLTYPE): New, make sure it does.
15867 * tests/regression.at (%union and --defines, Invalid CPP headers):
15868 Move to...
15869 * tests/headers.at: here.
15870
aea13e97
AD
158712001-12-29 Akim Demaille <akim@epita.fr>
15872
15873 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
15874
931394cb
AD
158752001-12-29 Akim Demaille <akim@epita.fr>
15876
15877 * tests/actions.at (Mid-rule actions): Output on a single line
15878 instead of several.
15879
704a47c4
AD
158802001-12-29 Akim Demaille <akim@epita.fr>
15881
15882 * doc/bison.texinfo: Formatting changes.
15883
091e20bb
AD
158842001-12-29 Akim Demaille <akim@epita.fr>
15885
15886 Don't store the token defs in a muscle, just be ready to output it
15887 on command. Now possible via `symbols'. Fixes a memory leak.
15888
15889 * src/output.c (token_definitions_output): New.
15890 (output_parser, header_output): Use it.
15891 * src/reader.c (symbols_save): Remove.
15892
cce71710
AD
158932001-12-29 Akim Demaille <akim@epita.fr>
15894
15895 * src/bison.simple: Do not provide a default for YYSTYPE and
15896 YYLTYPE before the user's prologue. Otherwise it's hardly... a
15897 default.
15898
82c035a8
AD
158992001-12-29 Akim Demaille <akim@epita.fr>
15900
15901 Mid-rule actions are simply... ignored!
15902
15903 * src/reader.c (readgram): Be sure to attach mid-rule actions to
15904 the empty-rule associated to the dummy symbol, not to the host
15905 rule.
15906 * tests/actions.at (Mid-rule actions): New.
15907
8419d367
AD
159082001-12-29 Akim Demaille <akim@epita.fr>
15909
15910 Memory leak.
15911
15912 * src/reader.c (reader): Free grammar.
15913
375d5806
AD
159142001-12-29 Akim Demaille <akim@epita.fr>
15915
15916 Memory leak.
15917
15918 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
15919 since it allocates it for each state, although only one is needed.
15920 (allocate_storage): Do it here.
15921
f51cb8ff
AD
159222001-12-29 Akim Demaille <akim@epita.fr>
15923
15924 * src/options.h, src/options.c (create_long_option_table): Rename
15925 as...
15926 (long_option_table_new): this, with a clearer prototype.
15927 (percent_table): Remove, unused,
15928 * src/getargs.c (getargs): Adjust.
15929
29e88316
AD
159302001-12-29 Akim Demaille <akim@epita.fr>
15931
15932 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
15933 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
15934 as states.
15935
b9f71f19
AD
159362001-12-29 Akim Demaille <akim@epita.fr>
15937
15938 * src/lalr.c (build_relations): Rename `states' as `states1'.
15939 Sorry, I don't understand exactly what it is, no better name...
15940
1a2b5d37
AD
159412001-12-29 Akim Demaille <akim@epita.fr>
15942
15943 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
15944 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
15945 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
15946 as rules.
15947
1cca533e
AD
159482001-12-29 Akim Demaille <akim@epita.fr>
15949
15950 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
15951 ago.
15952
c03ae966
AD
159532001-12-29 Akim Demaille <akim@epita.fr>
15954
15955 * src/reader.c, src/reader.h (user_toknums): Remove.
15956 Adjust all users to use symbols[i]->user_token_number.
15957
5a670b1e
AD
159582001-12-29 Akim Demaille <akim@epita.fr>
15959
15960 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
15961 Adjust all users to use symbols[i]->prec or ->assoc.
15962
ad949da9
AD
159632001-12-29 Akim Demaille <akim@epita.fr>
15964
15965 * src/reader.c, src/reader.h (tags): Remove.
15966 Adjust all users to use symbols[i]->tag.
15967
0e78e603
AD
159682001-12-29 Akim Demaille <akim@epita.fr>
15969
15970 * src/gram.h, src/gram.c (symbols): New, similar to state_table
15971 and rule_table.
15972 * src/reader.c (packsymbols): Fill this table.
15973 Drop sprec.
15974 * src/conflicts.c (resolve_sr_conflict): Adjust.
15975 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
15976 single table.
15977 Use symbols[i]->tag instead of tags[i].
15978
213e640e
AD
159792001-12-29 Akim Demaille <akim@epita.fr>
15980
15981 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
15982 In addition, put a comment in there, to replace...
15983 * tests/regression.at (%union and C comments): Remove.
15984
e7b8bef1
AD
159852001-12-29 Akim Demaille <akim@epita.fr>
15986
15987 * tests/regression.at (Web2c Actions): Blindly move the actual
15988 output as expected output. The contents *seem* right to me, but I
15989 can't pretend reading perfectly parser tables... Nonetheless, all
15990 the other tests pass correctly, the table look OK, even though the
15991 presence of `$axiom' is to be noted: AFAICS it is useless (but
15992 harmless).
15993
b68e7744
AD
159942001-12-29 Akim Demaille <akim@epita.fr>
15995
15996 * src/reader.c (readgram): Don't add the rule 0 if there were no
15997 rules read. In other words, add it _after_ having performed
15998 grammar sanity checks.
15999 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
16000
78d5bae9
AD
160012001-12-29 Akim Demaille <akim@epita.fr>
16002
16003 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
16004 visible, and some states have now a different number.
16005
ff442794
AD
160062001-12-29 Akim Demaille <akim@epita.fr>
16007
16008 * src/reader.c (readgram): Bind the initial rule's lineno to that
16009 of the first rule.
16010 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
16011 (Solved SR Conflicts): Adjust rule 0's line number.
16012
610ab194
AD
160132001-12-29 Akim Demaille <akim@epita.fr>
16014
16015 Fix the `GAWK Grammar' failure.
16016
16017 * src/LR0.c (final_state): Initialize to -1 so that we do compute
16018 the reductions of the first state which was mistakenly confused
16019 with the final state because precisely final_state was initialized
16020 to 0.
16021 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
16022 now noticed by Bison.
16023 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
16024 have a reduction on $default.
16025
29d29c8f
AD
160262001-12-29 Akim Demaille <akim@epita.fr>
16027
16028 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
16029 rule line numbers.
16030 * src/closure.c (print_closure): Likewise.
16031 * src/derives.c (print_derives): Likewise.
16032 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
16033 now.
16034
7c6b64d0
AD
160352001-12-29 Akim Demaille <akim@epita.fr>
16036
16037 * src/lalr.c (lookaheads_print): New.
16038 (lalr): Call it when --trace-flag.
16039 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
16040 are dumped.
16041
3d4daee3
AD
160422001-12-29 Akim Demaille <akim@epita.fr>
16043
16044 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
16045 when walking through ritem, even via rule->rhs.
16046 * src/reduce.c (dump_grammar, useful_production, reduce_output)
16047 (useful_production, useless_nonterminals): Likewise.
16048 (reduce_grammar_tables): Likewise, plus update nritems.
16049 * src/nullable.c (set_nullable): Likewise.
16050 * src/lalr.c (build_relations): Likewise.
16051 * tests/sets.at (Nullable): Adjust.
16052 Fortunately, now, the $axiom is no longer nullable.
16053
9e7f6bbd
AD
160542001-12-29 Akim Demaille <akim@epita.fr>
16055
16056 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
16057 the 0-sentinel.
16058 * src/gram.c (ritem_longest_rhs): Likewise.
16059 * src/reduce.c (nonterminals_reduce): Likewise.
16060 * src/print_graph.c (print_graph): Likewise.
16061 * src/output.c (output_rule_data): Likewise.
16062 * src/nullable.c (set_nullable): Likewise.
16063
255ef638
AD
160642001-12-29 Akim Demaille <akim@epita.fr>
16065
16066 * src/output.c: Comment changes.
16067
0d8a7363
AD
160682001-12-27 Paul Eggert <eggert@twinsun.com>
16069
16070 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
16071 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
16072 Sparc, as they were causing more porting problems than the
16073 (minor) performance improvement was worth.
16074
16075 Also, catch up with 1.31's YYSTD.
16076
3db472b9
AD
160772001-12-27 Akim Demaille <akim@epita.fr>
16078
16079 * src/output.c (output_gram): Rely on nritems, not the
16080 0-sentinel. See below.
16081 Use -1 as separator, not 0.
16082 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
16083 Rely on -1 as separator in yyrhs, instead of 0.
16084 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
16085 twice `Now at end of input', therefore there are two lines less to
16086 expect.
16087
b365aa05
AD
160882001-12-27 Akim Demaille <akim@epita.fr>
16089
16090 * tests/regression.at (Unresolved SR Conflicts):
16091 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
16092 below.
16093
30171f79
AD
160942001-12-27 Akim Demaille <akim@epita.fr>
16095
16096 * src/LR0.c (new_state): Recognize the final state by the fact it
16097 is reached by eoftoken.
16098 (insert_start_shifting_state, insert_eof_shifting_state)
16099 (insert_accepting_state, augment_automaton): Remove, since now
16100 these states are automatically computed from the initial state.
16101 (generate_states): Adjust.
16102 * src/print.c: When reporting a rule number to the user, substract
16103 1, so that the axiom rule is rule 0, and the first user rule is 1.
16104 * src/reduce.c: Likewise.
16105 * src/print_graph.c (print_core): For the time being, just as for
16106 the report, depend upon --trace-flags to dump the full set of
16107 items.
16108 * src/reader.c (readgram): Once the grammar read, insert the rule
16109 0: `$axiom: START-SYMBOL $'.
16110 * tests/set.at: Adjust: rule 0 is now displayed, and since the
16111 number of the states has changed (the final state is no longer
16112 necessarily the last), catch up.
16113
75142d45
AD
161142001-12-27 Akim Demaille <akim@epita.fr>
16115
16116 Try to make the use of the eoftoken valid. Given that its value
16117 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
16118 is used instead of > 0 where appropriate, (ii), depend upon nritems
16119 instead of the 0-sentinel.
16120
16121 * src/gram.h, src/gram.c (nritems): New.
16122 Expected to be duplication of nitems, but for the time being...
16123 * src/reader.c (packgram): Assert nritems and nitems are equal.
16124 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
16125 * src/closure.c (print_closure, print_fderives): Likewise.
16126 * src/gram.c (ritem_print): Likewise.
16127 * src/print.c (print_core, print_grammar): Likewise.
16128 * src/print_graph.c: Likewise.
16129
b7c49edf
AD
161302001-12-27 Akim Demaille <akim@epita.fr>
16131
16132 * src/main.c (main): If there are complains after grammar
16133 reductions, then output the report anyway if requested, then die.
16134 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
16135 * src/reader.c (eoftoken): New.
16136 (parse_token_decl): If the token being defined has value `0', it
16137 is the eoftoken.
16138 (packsymbols): No longer hack `tags' to insert `$' by hand.
16139 Be sure to preserve the value of the eoftoken.
16140 (reader): Make sure eoftoken is defined.
16141 Initialize nsyms to 0: now eoftoken is created just like the others.
16142 * src/print.c (print_grammar): Don't special case the eof token.
16143 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
16144 lie anyway, albeit pleasant.
16145 * tests/calc.at: Exercise error messages with eoftoken.
16146 Change the grammar so that empty input is invalid.
16147 Adjust expectations.
16148 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
16149
ec2da99f
AD
161502001-12-27 Akim Demaille <akim@epita.fr>
16151
16152 * configure.in: Check the protos of strchr ans strspn.
16153 Replace strchr if needed.
16154 * src/system.h: Provide the protos of strchr, strspn and memchr if
16155 missing.
16156 * lib/strchr.c: New.
16157 * src/reader.c (symbols_save): Use strchr.
16158
8adfa272
AD
161592001-12-27 Akim Demaille <akim@epita.fr>
16160
16161 * src/print.c, src/print_graph.c (escape): New.
16162 Use it to quote the TAGS outputs.
16163 * src/print_graph.c (print_state): Now errors are in red, and
16164 reductions in green.
16165 Prefer high to wide: output the state number on a line of its own.
16166
80dac38c
AD
161672001-12-27 Akim Demaille <akim@epita.fr>
16168
16169 * src/state.h, src/state.c (reductions_new): New.
16170 * src/LR0.c (set_state_table): Let all the states have a
16171 `reductions', even if reduced to 0.
16172 (save_reductions): Adjust.
16173 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
16174 * src/print.c (print_reductions, print_actions): Adjust.
16175 * src/output.c (action_row): Adjust.
16176
2cec70b9
AD
161772001-12-27 Akim Demaille <akim@epita.fr>
16178
16179 * src/state.h, src/state.c (errs_new, errs_dup): New.
16180 * src/LR0.c (set_state_table): Let all the states have an errs,
16181 even if reduced to 0.
16182 * src/print.c (print_errs, print_reductions): Adjust.
16183 * src/output.c (output_actions, action_row): Adjust.
16184 * src/conflicts.c (resolve_sr_conflict): Adjust.
16185
13ca549a
AD
161862001-12-27 Akim Demaille <akim@epita.fr>
16187
16188 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
16189
5092aba5
AD
161902001-12-27 Akim Demaille <akim@epita.fr>
16191
16192 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
16193 * src/print.c: here.
16194 (lookaheadset, shiftset): New, used as additional storage by
16195 print_reductions.
16196 (print_results): Adjust.
16197 (print_shifts, print_gotos, print_errs): New, extracted from...
16198 (print_actions): here.
16199 * src/print_graph.c (print_actions): Remove dead code.
16200
11e2beca
AD
162012001-12-27 Akim Demaille <akim@epita.fr>
16202
16203 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
16204 `$n' and `@n'.
16205
dac3c910
AD
162062001-12-27 Akim Demaille <akim@epita.fr>
16207
16208 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
16209 (build_relations): Adjust.
16210
d0b0fefa
AD
162112001-12-27 Akim Demaille <akim@epita.fr>
16212
16213 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
16214 duplication.
16215
adc8c848
AD
162162001-12-27 Akim Demaille <akim@epita.fr>
16217
16218 * src/reader.c (packgram): Catch nitems overflows.
16219
14d293ac
AD
162202001-12-27 Akim Demaille <akim@epita.fr>
16221
16222 * src/files.c, src/files.h (guard_obstack): Remove.
16223 * src/output.c (output): Adjust.
16224 * src/reader.c (parse_braces): New, factoring...
16225 (copy_action, copy_guard): these two which are renamed as...
16226 (parse_action, parse_guard): these.
16227 As a voluntary consequence, using braces around guards is now
16228 mandatory.
16229
f499b062
AD
162302001-12-27 Akim Demaille <akim@epita.fr>
16231
16232 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
16233 * src/reader.c (symbol_list): `guard' and `guard_line' are new
16234 members.
16235 (symbol_list_new): Adjust.
16236 (copy_action): action_line is the first line, not the last.
16237 (copy_guard): Just as for actions, store the `action' only, not
16238 the switch/case/break flesh.
16239 Don't parse the user action that might follow the guard, let...
16240 (readgram): do it, i.e., now, there can be an action after a
16241 guard.
16242 In other words the guard is just explicitly optional.
16243 (packgram): Adjust.
16244 * src/output.c (guards_output): New.
16245 (output_parser): Call it when needed.
16246 (output): Also free the guard and attrs obstacks.
16247 * src/files.c, src/files.h (obstack_save): Remove.
16248 (output_files): Remove.
16249 As a result, if one needs the former `.act' file, using an
16250 appropriate skeleton which requires actions and guards is now
16251 required.
16252 * src/main.c (main): Adjust.
16253 * tests/semantic.at: New.
16254 * tests/regression.at: Use `input.y' as input file name.
16255 Avoid 8+3 problems by requiring input.c when the test needs the
16256 parser.
16257
d945f5cd
AD
162582001-12-27 Akim Demaille <akim@epita.fr>
16259
16260 * src/reader.c (symbol_list_new): Be sure to initialize all the
16261 fields.
16262
d200e455
AD
162632001-12-27 Akim Demaille <akim@epita.fr>
16264
16265 All the hacks using a final pseudo state are now useless.
16266
16267 * src/LR0.c (set_state_table): state_table holds exactly nstates.
16268 * src/lalr.c (nLA): New.
16269 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
16270 instead of lookaheadsp from the pseudo state (nstate + 1).
16271
f9507c28
AD
162722001-12-27 Akim Demaille <akim@epita.fr>
16273
16274 * src/output.c (action_row, token_actions): Use a state_t instead
16275 of a integer, and nlookaheads instead of the following state's
16276 lookaheadsp.
16277
065fbd27
AD
162782001-12-27 Akim Demaille <akim@epita.fr>
16279
16280 * src/conflicts.c (log_resolution, flush_shift)
16281 (resolve_sr_conflict, set_conflicts, solve_conflicts)
16282 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
16283 (conflicts_print, print_reductions): Use a state_t instead of an
16284 integer when referring to a state.
16285 As much as possible, depend upon nlookaheads, instead of the
16286 `lookaheadsp' member of the following state (since lookaheads of
16287 successive states are successive, the difference between state n + 1
16288 and n served as the number of lookaheads for state n).
16289 * src/lalr.c (add_lookback_edge): Likewise.
16290 * src/print.c (print_core, print_actions, print_state)
16291 (print_results): Likewise.
16292 * src/print_graph.c (print_core, print_actions, print_state)
16293 (print_graph): Likewise.
16294 * src/conflicts.h: Adjust.
16295
1b177bd7
AD
162962001-12-27 Akim Demaille <akim@epita.fr>
16297
16298 * src/bison.hairy: Formatting/comment changes.
16299 ANSIfy.
16300 Remove `register' indications.
16301 Add plenty of `static'.
16302
7742ddeb
AD
163032001-12-27 Akim Demaille <akim@epita.fr>
16304
16305 * src/output.c (prepare): Drop the muscle `ntbase' which
16306 duplicates ntokens.
16307 * src/bison.simple: Formatting/comment changes.
16308 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
16309 is an undocumented synonym.
16310
1fa14068
AD
163112001-12-22 Akim Demaille <akim@epita.fr>
16312
16313 * src/output.c (output_table_data): Change the prototype to use
16314 `int' for array ranges: some invocations do pass an int, not a
16315 short.
16316 Reported by Wayne Green.
16317
b9752825
AD
163182001-12-22 Akim Demaille <akim@epita.fr>
16319
16320 Some actions of web2c.y are improperly triggered.
16321 Reported by Mike Castle.
16322
16323 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
16324 * tests/regression.at (Web2c): Rename as...
16325 (Web2c Report): this.
16326 (Web2c Actions): New.
16327
776209d6
AD
163282001-12-22 Akim Demaille <akim@epita.fr>
16329
16330 Reductions in web2c.y are improperly reported.
16331 Reported by Mike Castle.
16332
16333 * src/conflicts.c (print_reductions): Fix.
16334 * tests/regression.at (Web2c): New.
16335
275fc3ad
AD
163362001-12-18 Akim Demaille <akim@epita.fr>
16337
16338 Some host fail on `assert (!"foo")', which expands to
16339 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
16340 Reported by Nelson Beebee.
16341
16342 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
16343 `#define it_succeeded 0' and `assert (it_succeeded)'.
16344
897668ee
MA
163452001-12-17 Marc Autret <autret_m@epita.fr>
16346
16347 * src/bison.simple: Don't hard code the skeleton line and filename.
16348 * src/output.c (output_parser): Rename 'line' as 'output_line'.
16349 New line counter 'skeleton_line' (skeleton-line muscle).
16350
ab3399e0
PE
163512001-12-17 Paul Eggert <eggert@twinsun.com>
16352
16353 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
16354 YYDEBUG must be defined to a nonzero value.
16355
16356 * src/bison.simple (yytname): Do not assume that the user defines
16357 YYDEBUG to a properly parenthesized expression.
16358
3877f72b
AD
163592001-12-17 Akim Demaille <akim@epita.fr>
16360
16361 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
16362 nlookaheads is a new member.
16363 Adjust all users.
16364 * src/lalr.h (nlookaheads): Remove this orphan declaration.
16365 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
16366 state.
776209d6 16367
331dbc1b
AD
163682001-12-17 Akim Demaille <akim@epita.fr>
16369
16370 * src/files.h, src/files.c (open_files, close_files): Remove.
16371 * src/main.c (main): Don't open/close files, nor invoke lex_free,
16372 let...
16373 * src/reader.c (reader): Do it.
776209d6 16374
be750e4c
AD
163752001-12-17 Akim Demaille <akim@epita.fr>
16376
16377 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 16378
709ae8c6
AD
163792001-12-17 Akim Demaille <akim@epita.fr>
16380
16381 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
16382 (flush_reduce): New.
16383 (resolve_sr_conflict): Adjust.
776209d6 16384
f87685c3
AD
163852001-12-17 Akim Demaille <akim@epita.fr>
16386
16387 * src/output.c (output_obstack): Be static and rename as...
16388 (format_obstack): this, to avoid any confusion with files.c's
16389 output_obstack.
16390 * src/reader.h (muscle_obstack): Move to...
16391 * src/output.h: here, since it's defined in output.c.
16392
837491d8
AD
163932001-12-17 Akim Demaille <akim@epita.fr>
16394
16395 * src/output.c (action_row, save_column, default_goto)
16396 (sort_actions, matching_state, pack_vector): Better variable
16397 locality.
16398
796d61fb
AD
163992001-12-17 Akim Demaille <akim@epita.fr>
16400
16401 * src/output.c: Various formatting changes.
776209d6 16402
64d15509
AD
164032001-12-17 Akim Demaille <akim@epita.fr>
16404
16405 * src/files.c (output_files): Free the output_obstack.
16406 * src/main.c (main): Call print and print_graph conditionally.
16407 * src/print.c (print): Work unconditionally.
16408 * src/print_graph.c (print_graph): Work unconditionally.
16409 * src/conflicts.c (log_resolution): Output only if verbose_flag.
16410
fbc8ecb7
MA
164112001-12-16 Marc Autret <autret_m@epita.fr>
16412
16413 * src/output.c (actions_output): Fix. When we use %no-lines,
16414 there is one less line per action.
16415
f0440388
MA
164162001-12-16 Marc Autret <autret_m@epita.fr>
16417
16418 * src/bison.simple: Remove a useless #line directive.
16419 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
16420 * src/output.c (get_lines_number): New.
776209d6 16421 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
16422 output muscles.
16423 Fix line numbering.
16424 (actions_output): Computes the number of lines taken by actions.
16425 (output_master_parser): Insert new skeleton which is the name of
16426 the output parser file name.
16427
a79986b8
MA
164282001-12-15 Marc Autret <autret_m@epita.fr>
16429
16430 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
16431
4ec8e00f
MA
164322001-12-15 Marc Autret <autret_m@epita.fr>
16433
16434 * src/output.c (output_gram): Keep track of the hairy one.
16435
1a4648ff
AD
164362001-12-15 Akim Demaille <akim@epita.fr>
16437
16438 Make `make distcheck' work.
16439
16440 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
16441 system.h which uses libgettext.h.
16442
9c2c67e6
AD
164432001-12-15 Akim Demaille <akim@epita.fr>
16444
16445 * src/nullable.c (set_nullable): Useless rules must be skipped,
16446 otherwise, since we range over their symbols, we might look at a
16447 nonterminal which no longer ``exists'', i.e., it is not counted in
16448 `nvars', hence we overflow our arrays.
16449
93ede233
AD
164502001-12-15 Akim Demaille <akim@epita.fr>
16451
16452 The header can also be produced directly, without any obstack!
16453 Yahoo!
16454
16455 * src/files.c, src/files.h (defines_obstack): Remove.
16456 (compute_header_macro): Global.
16457 (defines_obstack_save): Remove.
16458 * src/reader.c (parse_union_decl): No longer output to
16459 defines_obstack: its content can be found in the `stype' muscle
16460 anyway.
16461 (output_token_translations): Merge into...
16462 (symbols_output): this.
16463 Rename as...
16464 (symbols_save): this.
16465 (reader): Adjust.
16466 * src/output.c (header_output): New.
16467 (output): Call it.
16468
2666f928
AD
164692001-12-15 Akim Demaille <akim@epita.fr>
16470
16471 * src/reader.c (parse_union_decl): Instead of handling two obstack
16472 simultaneously, use one to define the `stype' muscle, and use the
16473 value of the latter to fill defines_obstack.
16474 (copy_comment): Remove.
16475 (copy_comment2): Work for a single obstack.
16476 Rename as...
16477 (copy_comment): this.
16478
428046f8
AD
164792001-12-15 Akim Demaille <akim@epita.fr>
16480
16481 * src/lex.c, src/lex.h (xgetc): No longer static.
16482 * src/reader.c (parse_union_decl): Revamp.
16483
ea52d706
AD
164842001-12-15 Akim Demaille <akim@epita.fr>
16485
16486 Still making progress in separating Bison into (i) input, (ii)
16487 process, (iii) output: now we can directly output the parser file
16488 without using table_obstack at all.
16489
16490 * src/files.c, src/files.h (table_obstack): Bye bye.
16491 (parser_file_name): New.
16492 * src/files.c (compute_output_file_names): Compute it.
16493 * src/output.c (actions_output, output_parser)
16494 (output_master_parser): To a file instead of an obstack.
16495
3f96f4dc
AD
164962001-12-15 Akim Demaille <akim@epita.fr>
16497
16498 Attach actions to rules, instead of pre-outputting them to
16499 actions_obstack.
16500
16501 * src/gram.h (rule_t): action and action_line are new members.
16502 * src/reader.c (symbol_list): Likewise.
16503 (copy_action): Save the actions within the rule.
16504 (packgram): Save them in rule_table.
16505 * src/output.c (actions_output): New.
16506 (output_parser): Use it on `%%actions'.
16507 (output_rule_data): Don't free rule_table.
16508 (output): Do it.
16509 (prepare): Don't save the `action' muscle.
16510 * src/bison.simple: s/%%action/%%actions/.
16511
51576fb3
AD
165122001-12-15 Akim Demaille <akim@epita.fr>
16513
16514 * src/reader.c (copy_action): When --yacc, don't append a `;'
16515 to the user action: let it fail if lacking.
dee049eb 16516 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 16517
2648a72d
AD
165182001-12-14 Akim Demaille <akim@epita.fr>
16519
16520 * src/lex.c (literalchar): Simply return the char you decoded, non
16521 longer mess around with obstacks and int pointers.
16522 Adjust all callers.
16523
92790e5b
AD
165242001-12-14 Akim Demaille <akim@epita.fr>
16525
16526 * src/lex.c (literalchar): Don't escape the special characters,
16527 just decode them, and keep them as char (before, eol was output as
16528 the 2 char string `\n' etc.).
16529 * src/output.c (output_rule_data): Use quotearg to output the
16530 token strings.
16531
927c1557
PE
165322001-12-13 Paul Eggert <eggert@twinsun.com>
16533
16534 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
16535 Do not infringe on the global user namespace when using C++.
16536 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
16537 All uses of `fprintf' and `stderr' changed.
16538
16539 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
16540
ed8e1f68
AD
165412001-12-13 Akim Demaille <akim@epita.fr>
16542
16543 The computation of nullable is broken: it doesn't handle empty
16544 RHS's properly.
16545
16546 * tests/torture.at (GNU AWK Grammar): New.
16547 * tests/sets.at (Nullable): New.
16548 * src/nullable.c (set_nullable): Instead of blindly looping over
16549 `ritems', loop over the rules, and then over their rhs's.
16550
16551 Work around Autotest bugs.
16552
16553 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
16554 frame, because Autotest understand lines starting with a `+' as
16555 traces from the shell. Then, they are not processed properly.
16556 Admittedly an Autotest bug, but we don't have time to wait for
16557 Autotest to catch up.
16558 * tests/regression.at (Broken Closure): Adjust to the new table
16559 frames.
16560 Move to...
16561 * tests/sets.at: here.
16562
cb581495
AD
165632001-12-13 Akim Demaille <akim@epita.fr>
16564
16565 * src/closure.c (closure): Use nrules instead of playing tricks
16566 with BITS_PER_WORD.
16567
2e729273
AD
165682001-12-13 Akim Demaille <akim@epita.fr>
16569
16570 * src/print.c (print_actions): Output the handling of `$' as the
16571 traces do: shifting the token EOF. Before EOF was treated as a
16572 nonterminal.
16573 * tests/regression.at: Adjust some tests.
16574 * src/print_graph.c (print_core): Complete the set of items via
16575 closure. The next-to-final and final states are still unsatisfying,
16576 but that's to be addressed elsewhere.
16577 No longer output the rule numbers, but do output the state number.
16578 A single loop for the shifts + gotos is enough, but picked a
16579 distinct color for each.
16580 (print_graph): Initialize and finalize closure.
16581
107f7dfb
AD
165822001-12-13 Akim Demaille <akim@epita.fr>
16583
16584 * src/reader.c (readgram): Remove dead code, an strip useless
16585 braces.
16586 (get_type): Remove, unused.
16587
9b53a24f
AD
165882001-12-12 Akim Demaille <akim@epita.fr>
16589
16590 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
16591 on that of lib/error.c.
16592
dbfb6dcd
AD
165932001-12-12 Akim Demaille <akim@epita.fr>
16594
16595 Some hosts don't like `/' in includes.
16596
16597 * src/system.h: Include libgettext.h without qualifying the path.
16598 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
16599 $(top_srcdir).
16600
c25fb648
MA
166012001-12-11 Marc Autret <autret_m@epita.fr>
16602
16603 * src/output.c (output_parser): Remove useless muscle.
16604
710ddc4f
MA
166052001-12-11 Marc Autret <autret_m@epita.fr>
16606
16607 * src/bison.simple: Remove #line just before %%epilogue. It
16608 is now handled in ...
16609 * src/reader.c (read_additionnal_code): Add the output of a
16610 #line for the epilogue.
16611
e83d80b8
MA
166122001-12-10 Marc Autret <autret_m@epita.fr>
16613
927c1557 16614 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
16615 replace precedent remove.
16616 * src/bison.simple: Remove #line before %%prologue because
16617 %%input-line is wrong at this time.
16618
971d5158
MA
166192001-12-10 Marc Autret <autret_m@epita.fr>
16620
16621 * src/reader.c (symbols_output): Clean up.
927c1557 16622 * src/output.c (output_gram, output): Clean up.
971d5158 16623
5edafffd
AD
166242001-12-10 Akim Demaille <akim@epita.fr>
16625
16626 * src/lalr.c (initialize_lookaheads): New. Extracted from...
16627 * src/LR0.c (set_state_table): here.
16628 * src/lalr.c (lalr): Call it.
16629
0279f8e9
AD
166302001-12-10 Akim Demaille <akim@epita.fr>
16631
16632 * src/state.h (shifts): Remove the `number' member: shifts are
16633 attached to state, hence no longer need to be labelled with a
16634 state number.
16635
190c4f5f
AD
166362001-12-10 Akim Demaille <akim@epita.fr>
16637
16638 Now that states have a complete set of members, the linked list of
16639 shifts is useless: just fill directly the state's shifts member.
16640
16641 * src/state.h (shifts): Remove the `next' member.
16642 * src/LR0.c (first_state, last_state): Remove.
16643 Adjust the callers.
16644 (augment_automaton): Don't look for the shifts that must be added
16645 a shift on EOF: it is those of the state we looked for! But now,
16646 since shifts are attached, it is no longer needed to looking
16647 merely by its id: its number.
16648
2a73b93d
AD
166492001-12-10 Akim Demaille <akim@epita.fr>
16650
16651 * src/LR0.c (augment_automaton): Better variable locality.
16652 Remove an impossible branch: if there is a state corresponding to
16653 the start symbol being shifted, then there is shift for the start
16654 symbol from the initial state.
16655
74392f6a
AD
166562001-12-10 Akim Demaille <akim@epita.fr>
16657
16658 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
16659 only when appropriate: when insert_start_shifting_state' is not
16660 invoked.
16661 * tests/regression.at (Rule Line Numbers): Adjust.
16662
37c82725
AD
166632001-12-10 Akim Demaille <akim@epita.fr>
16664
16665 * src/LR0.c (augment_automaton): Now that all states have shifts,
16666 merge the two cases addition shifts to the initial state.
16667
6a164e0c
AD
166682001-12-10 Akim Demaille <akim@epita.fr>
16669
16670 * src/lalr.c (set_state_table): Move to...
16671 * src/LR0.c: here.
16672 * src/lalr.c (lalr): Don't call it...
16673 * src/LR0.c (generate_states): do it.
16674 * src/LR0.h (first_state): Remove, only the table is used.
16675
7215de24
AD
166762001-12-10 Akim Demaille <akim@epita.fr>
16677
16678 * src/LR0.h (first_shift, first_reduction): Remove.
16679 * src/lalr.c: Don't use first_shift: find shifts through the
16680 states.
16681
80e25d4d
AD
166822001-12-10 Akim Demaille <akim@epita.fr>
16683
16684 * src/LR0.c: Attach shifts to states as soon as they are
16685 computed.
16686 * src/lalr.c (set_state_table): Instead of assigning shifts to
16687 state, just assert that the mapping was properly done.
16688
0ab3728b
AD
166892001-12-10 Akim Demaille <akim@epita.fr>
16690
16691 * src/LR0.c (insert_start_shift): Rename as...
16692 (insert_start_shifting_state): this.
16693 (insert_eof_shifting_state, insert_accepting_state): New.
16694 (augment_automaton): Adjust.
16695 Better locality of the variables.
16696 When looking if the start_symbol is shifted from the initial
16697 state, using `while (... symbol != start_symbol ...)' sounds
16698 better than `while (... symbol < start_symbol ...)': If fail
16699 to see how the order between symbols could be relevant!
16700
78af9bbc
AD
167012001-12-10 Akim Demaille <akim@epita.fr>
16702
16703 * src/getargs.h: Don't declare `spec_name_prefix' and
16704 `spec_file_prefix', declared by src/files.h.
16705 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
16706 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
16707 * src/output.c (prepare): Adjust.
16708 * src/reader.c (symbols_output): Likewise.
16709 * src/vmsgetargs.c: Vaguely adjust, but who cares?
16710
bdef2a41
AD
167112001-12-10 Akim Demaille <akim@epita.fr>
16712
16713 * src/muscle_tab.c (muscle_init): NULL is a better default than
16714 `"0"'.
16715
3735969c
AD
167162001-12-10 Akim Demaille <akim@epita.fr>
16717
16718 * src/reader.c (reader): Calling symbols_output once is enough.
16719
49701457
AD
167202001-12-10 Akim Demaille <akim@epita.fr>
16721
16722 Now that states have a complete set of members, the linked list of
16723 reductions is useless: just fill directly the state's reductions
16724 member.
16725
16726 * src/state.h (struct reductions): Remove member `number' and
16727 `next'.
16728 * src/LR0.c (first_reduction, last_reduction): Remove.
16729 (save_reductions): Don't link the new reductions, store them in
16730 this_state.
16731 * src/lalr.c (set_state_table): No need to attach reductions to
16732 states, it's already done.
16733 * src/output.c (output_actions): No longer free the shifts, then
16734 the reductions, then the states: free all the states and their
16735 members.
16736
0edad749
AD
167372001-12-10 Akim Demaille <akim@epita.fr>
16738
16739 * src/options.c (OPTN, DRTV, BOTH): New.
16740 (option_table): Use them.
16741
0edad749
AD
16742 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
16743 the job of system.h.
16744 * src/options.c: Don't include stdio.h and xalloc.h for the same
16745 reasons.
16746
5449dd0f
AD
167472001-12-10 Akim Demaille <akim@epita.fr>
16748
16749 * src/output.c (output, prepare): Make sure the values of the
16750 muscles `action' and `prologue' are 0-terminated.
16751
a870c567
AD
167522001-12-10 Akim Demaille <akim@epita.fr>
16753
16754 Clean up GCC warnings.
16755
16756 * src/reader.c (copy_action): `buf' is not used.
16757 (parse_skel_decl): Be static.
16758 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
16759 * src/options.h (create_long_option_table): Have a real prototype.
16760 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
16761 (hash_delete_at): Return const void *.
16762 Adjust casts to preserve the const.
16763
80df8768
AD
167642001-12-10 Akim Demaille <akim@epita.fr>
16765
16766 * configure.in: Require 2.52g.
16767 M4 is not needed, but AUTOM4TE is.
16768 * m4/m4.m4: Remove.
16769 * tests/Makefile.am: Adjust.
16770
f693ad14
AD
167712001-12-10 Akim Demaille <akim@epita.fr>
16772
16773 One structure for states is enough, even though theoretically
16774 there are LR(0) states and LALR(1) states.
16775
16776 * src/lalr.h (state_t): Remove.
16777 (state_table): Be state_t **, not state_t *.
16778 * src/state.h (core, CORE_ALLOC): Rename as...
16779 (state_t, STATE_ALLOC): this.
16780 Add the LALR(1) members: shifts, reductions, errs.
16781 * src/LR0.c (state_table): Rename as...
16782 (state_hash): this, to avoid name clashes with the global
16783 `state_table'.
16784 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
16785 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
16786
74ffbcb6
AD
167872001-12-10 Akim Demaille <akim@epita.fr>
16788
16789 Bison dumps core on bash.y.
16790 Reported by Pascal Bart.
16791
16792 * src/warshall.c (bitmatrix_print): New.
16793 (TC): Use it.
ba0fe3c7 16794 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
74ffbcb6
AD
16795 j must be the outer loop.
16796 * tests/regression.at (Broken Closure): New.
16797
07708e19
AD
167982001-12-05 Akim Demaille <akim@epita.fr>
16799
16800 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
16801 its argument.
ba1ecc07 16802 Reported by Peter Hamorsky.
07708e19 16803
92b16366
AD
168042001-12-05 Akim Demaille <akim@epita.fr>
16805
16806 * src/conflicts.c (err_table): Remove.
16807 (resolve_sr_conflict): Adjust.
16808 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
16809 Rename as...
16810 (state_t.reductions, state_t.shifts): this.
16811
076ab033
AD
168122001-12-05 Akim Demaille <akim@epita.fr>
16813
16814 * src/reduce.c (reduce_grammar_tables): No longer disable the
16815 removal of useless rules via CPP but via `if (0)', so that the
16816 compiler still check the code is valid.
16817 For instance, it should have noticed `rline' no longer exists: use
16818 the `line' member of rule_t.
16819 * src/gram.c (dummy, rline): Remove, unused.
16820
3843c413
AD
168212001-12-05 Akim Demaille <akim@epita.fr>
16822
16823 * src/output.c (pack_vector): Use assert, not berror.
16824 * src/main.c (berror): Remove, unused.
16825
43168960
AD
168262001-12-05 Akim Demaille <akim@epita.fr>
16827
16828 New experimental feature: if --verbose --trace output all the
16829 items of a state, not only its kernel.
16830
16831 * src/print.c (print_core): If `trace_flag', then invoke closure
16832 before outputting the items of the state (print_core is no longer
16833 a correct name them).
16834 (print_results): Invoke new_closure/free_closure if needed.
16835
b2872512
AD
168362001-12-05 Akim Demaille <akim@epita.fr>
16837
16838 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
16839 * src/closure.c, src/closure.h (itemsetsize): Rename as...
16840 (nitemset): for consistency with the rest of the project.
16841
23cbcc6c
AD
168422001-12-05 Akim Demaille <akim@epita.fr>
16843
16844 * src/closure.c (print_closure): Improve.
16845 (closure): Use it for printing input and output.
16846
03ec521c
AD
168472001-12-05 Akim Demaille <akim@epita.fr>
16848
16849 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
16850 indexed by nonterminals.
16851
3a7456dd
AD
168522001-12-05 Akim Demaille <akim@epita.fr>
16853
16854 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
16855 what it was!).
16856 * src/warshall.h: Remove accidental duplication of the content.
16857
1cbcf2e7
AD
168582001-12-05 Akim Demaille <akim@epita.fr>
16859
16860 * src/closure.c (set_fderives): De-obfuscate.
16861
84182270
AD
168622001-12-05 Akim Demaille <akim@epita.fr>
16863
16864 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
16865
3f6f053c
AD
168662001-12-05 Akim Demaille <akim@epita.fr>
16867
16868 * src/closure.c (set_firsts): De-obfuscate.
16869
7a5350ba
AD
168702001-12-05 Akim Demaille <akim@epita.fr>
16871
16872 * src/output.c (action_row): De-obfuscate
16873 using the good o' techniques: arrays not pointers, variable
16874 locality, BITISSET, RESETBIT etc.
16875
d954473d
AD
168762001-12-05 Akim Demaille <akim@epita.fr>
16877
16878 Pessimize the code to simplify it: from now on, all the states
16879 have a valid SHIFTS, which NSHIFTS is possibly 0.
16880
16881 * src/LR0.c (shifts_new): Be global and move to..
16882 * src/state.c, src/state.h: here.
16883 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
16884 * src/print_graph: Adjust.
16885
9839bbe5
AD
168862001-12-05 Akim Demaille <akim@epita.fr>
16887
16888 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
16889 * src/conflicts.c: Use it.
16890 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
16891 incorrectly ``simplified''.
16892
9f136c07
AD
168932001-12-05 Akim Demaille <akim@epita.fr>
16894
16895 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
16896 using the good o' techniques: arrays not pointers, variable
16897 locality, BITISSET, RESETBIT etc.
16898
b608206e
AD
168992001-12-05 Akim Demaille <akim@epita.fr>
16900
16901 * src/state.h (SHIFT_SYMBOL): New.
16902 * src/conflicts.c: Use it to deobfuscate.
16903
52afa962
AD
169042001-12-05 Akim Demaille <akim@epita.fr>
16905
16906 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
16907 (print_reductions): De-obfuscate using the good o' techniques:
16908 arrays not pointers, variable locality, BITISSET.
16909
e74dc321
AD
169102001-12-05 Akim Demaille <akim@epita.fr>
16911
16912 * src/conflicts.c (print_reductions): Arrays, not pointers.
16913 Use BITISSET.
16914
768fca83
AD
169152001-12-05 Akim Demaille <akim@epita.fr>
16916
16917 * src/conflicts.c (print_reductions): Pessimize, but clarify.
16918
a17e599f
AD
169192001-12-05 Akim Demaille <akim@epita.fr>
16920
16921 * src/conflicts.c (print_reductions): Improve variable locality.
16922
a04bc341
AD
169232001-12-05 Akim Demaille <akim@epita.fr>
16924
16925 * src/conflicts.c (print_reductions): Pessimize, but clarify.
16926
c8ea038e
AD
169272001-12-05 Akim Demaille <akim@epita.fr>
16928
16929 * src/conflicts.c (print_reductions): Improve variable locality.
16930
aa2aab3c
AD
169312001-12-05 Akim Demaille <akim@epita.fr>
16932
16933 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
16934 * src/lalr.c: Use them.
16935
b178c8cc
AD
169362001-12-05 Akim Demaille <akim@epita.fr>
16937
16938 * src/LR0.c (augment_automaton): Formatting changes.
16939 Better variable locality.
16940
f67d13aa
AD
169412001-12-05 Akim Demaille <akim@epita.fr>
16942
16943 * src/lalr.c (matrix_print): New.
16944 (transpose): Use it.
16945 Use arrays instead of pointers.
16946
c2713865
AD
169472001-12-05 Akim Demaille <akim@epita.fr>
16948
16949 * src/lalr.c (maxrhs): Move to...
16950 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
16951 * src/lalr.c (build_relations): Adjust.
16952
9887c18a
AD
169532001-12-05 Akim Demaille <akim@epita.fr>
16954
16955 * src/lalr.c (transpose): Free the memory allocated to the
16956 argument, as it is replaced by the results by the unique caller.
16957 (build_relations): Merely invoke transpose: it handles the memory
16958 deallocation.
16959 Improve variable locality.
16960 Avoid variables used as mere abbreviations.
16961 (compute_lookaheads): Use arrays instead of pointers.
16962
4d4f699c
AD
169632001-12-05 Akim Demaille <akim@epita.fr>
16964
16965 * src/lalr.c (initialize_F): Improve variable locality.
16966 Avoid variables used as mere abbreviations.
16967
80a69750
AD
169682001-12-05 Akim Demaille <akim@epita.fr>
16969
16970 * src/derives.c (print_derives): Display the ruleno.
16971 * src/lalr.c (initialize_F, transpose): Better variable locality
16972 to improve readability.
16973 Avoid variables used as mere abbreviations.
16974
fe961097
AD
169752001-12-05 Akim Demaille <akim@epita.fr>
16976
16977 * src/lalr.c (traverse): Use arrays instead of pointers.
16978
e3e4e814
AD
169792001-12-05 Akim Demaille <akim@epita.fr>
16980
16981 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
16982 the handling of squeue.
16983 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
16984
630e182b
AD
169852001-12-05 Akim Demaille <akim@epita.fr>
16986
16987 Because useless nonterminals are now kept alive (instead of being
16988 `destroyed'), we now sometimes examine them, and store information
16989 related to them. Hence we need to know their number, and adjust
16990 memory allocations.
16991
16992 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
16993 static.
16994 * src/LR0.c (allocate_itemsets): The memory allocated to
16995 `symbol_count' was used for two different purpose: once to count
16996 the number of occurrences of each symbol, and later reassigned to
16997 `shift_symbol', containing the symbol that can be shifted from a
16998 given state.
16999 Deobfuscate, i.e., allocate, use and free `symbol_count' here
17000 only, and...
17001 (new_itemsets): Allocate `shift_symbol' here.
17002 (allocate_itemsets): symbol_count includes useless nonterminals.
17003 Make room for them.
17004 (free_storage): Use `free', not `XFREE', for pointers that cannot
17005 be null.
17006
81b51460
AD
170072001-12-05 Akim Demaille <akim@epita.fr>
17008
17009 * src/nullable.c (set_nullable): Deobfuscate the handling of
17010 ritem.
17011 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
17012
3067fbef
AD
170132001-12-05 Akim Demaille <akim@epita.fr>
17014
17015 * src/gram.c, src/gram.h (ritem_print): New.
17016 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
17017 (This useless function was defined only to work around VMS linkers
17018 that can't handle compilation units with variables only).
17019 * src/reduce.c (dump_grammar): Use it to trace the construction of
17020 ritem.
17021
c2bea5f9
PE
170222001-12-04 Paul Eggert <eggert@twinsun.com>
17023
7d27c823
PE
17024 * src/bison.simple (union yyalloc): Change member names
17025 to be the same as the stack names.
17026 (yyparse): yyptr is now union yyalloc *, not char *.
17027 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
17028 and may generate better code on some machines.
c2bea5f9
PE
17029 (yystpcpy): Use prototype if __STDC__ is defined, not just
17030 if __cplusplus is defined.
35687a9d 17031
2c8a9dfa
AD
170322001-11-30 Akim Demaille <akim@epita.fr>
17033
17034 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
17035 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
17036 Gettext doesn't compile cleanly, and dies with -Werror.
17037 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
17038 Include WARNING_CFLAGS here.
17039 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
17040 before being defined.
17041
f4e421e6
AD
170422001-11-27 Paul Eggert <eggert@twinsun.com>
17043
17044 * lib/quotearg.h (quotearg_n, quotearg_n_style):
17045 First arg is int, not unsigned.
17046 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
17047 (SIZE_MAX, UINT_MAX): New macros.
17048 (quotearg_n_options): Abort if N is negative.
17049 Avoid overflow check on hosts where size_t is 64 bits and int
17050 is 32 bits, as overflow is impossible there.
17051 Fix off-by-one typo that caused unnecessary reallocation.
17052
7093d0f5
AD
170532001-11-29 Paul Eggert <eggert@twinsun.com>
17054
17055 Name space cleanup in generated parser.
17056
17057 * doc/bison.texinfo (Bison Parser): Discuss system headers
17058 and their effect on the user name space.
17059
17060 * src/bison.simple:
17061 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
17062 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
17063 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
17064
17065 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
17066 on user names when possible.
17067
17068 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
17069 Simplify test for whather <alloca.h> exists.
17070
17071 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
17072
17073 (<stdio.h>): Include if YYDEBUG.
17074
17075 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
17076 ! defined (yyoverflow) && ! defined (yymemcpy).
17077
17078 (yymemcpy, yyparse): Rename local variables as needed so that
17079 they all begin with 'yy'.
17080
17081 (yystrlen, yystpcpy): New functions.
17082
17083 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
17084 All uses changed.
17085
17086 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
17087 instead of relying on string.h functions. Use YYSTACK_ALLOC
17088 and YYSTACK_FREE instead of malloc and free.
17089
fd51e5ff
AD
170902001-11-30 Akim Demaille <akim@epita.fr>
17091
17092 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
17093 before their first uses.
17094 (YYBISON, YYPURE): Move to the top of the output.
17095
7d13ff5f
AD
170962001-11-30 Akim Demaille <akim@epita.fr>
17097
17098 * tests/reduce.at (Useless Nonterminals): Fix.
17099
892a3995
AD
171002001-11-30 Akim Demaille <akim@epita.fr>
17101
17102 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
17103 if body instead of `;' to pacify GCC's warnings.
17104
68f1e3ed
AD
171052001-11-30 Akim Demaille <akim@epita.fr>
17106
17107 Instead of mapping the LHS of unused rules to -1, keep the LHS
17108 valid, but flag the rules as invalid.
17109
17110 * src/gram.h (rule_t): `useful' is a new member.
17111 * src/print.c (print_grammar): Adjust.
17112 * src/derives.c (set_derives): Likewise.
17113 * src/reader.c (packgram, reduce_output): Likewise.
17114 * src/reduce.c (reduce_grammar_tables): Likewise.
17115 * tests/reduce.at (Underivable Rules, Useless Rules): New.
17116
d2d1b42b
AD
171172001-11-30 Akim Demaille <akim@epita.fr>
17118
17119 * src/reduce.c (reduce_output): Formatting changes.
17120 * src/print.c (print_results, print_grammar): Likewise.
17121 * tests/regression.at (Rule Line Numbers)
17122 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
17123
760b53a8
AD
171242001-11-30 Akim Demaille <akim@epita.fr>
17125
17126 * src/reduce.c (nonterminals_reduce): Instead of throwing away
17127 useless nonterminals, move them at the end of the symbol arrays.
17128 (reduce_output): Adjust.
17129 * tests/reduce.at (Useless Nonterminals): Adjust.
17130
00238958
AD
171312001-11-30 Akim Demaille <akim@epita.fr>
17132
17133 * src/reduce.c: Various comment/formatting changes.
17134 (nonterminals_reduce): New, extracted from...
17135 (reduce_grammar_tables): here.
17136 (reduce_grammar): Call nonterminals_reduce.
17137
396452de
PE
171382001-11-29 Paul Eggert <eggert@twinsun.com>
17139
17140 * src/bison.simple (YYSTACK_REALLOC): Remove.
17141 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
17142 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
17143 New macros.
17144 (union yyalloc): New type.
17145 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
17146 an arbitrary restriction on hosts where size_t is wider than int.
17147
17148 (yyparse): Don't dump core if alloca or malloc fails; instead, report
17149 a parser stack overflow. Allocate just one block of memory for all
17150 three stacks, instead of allocating three blocks; this typically is
17151 faster and reduces fragmentation.
17152
17153 Do not limit the number of items in the stack to a value that fits
17154 in 'int', as this is an arbitrary limit on hosts with 64-bit
17155 size_t and 32-bit int.
17156
147e184c
MA
171572001-11-29 Marc Autret <autret_m@epita.fr>
17158
17159 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
17160 of defining YYERROR_VERBOSE.
17161 [AT_DATA]: $4 is now out of C declarations in the prologue.
17162
426cf563
MA
171632001-11-28 Marc Autret <autret_m@epita.fr>
17164
17165 * src/reader.c (parse_dquoted_param): New.
17166 (parse_skel_decl): Use it.
17167 * src/lex.h: Add its prototype.
17168 * src/lex.c (literalchar): Become not static.
17169
c7925b99
MA
171702001-11-28 Marc Autret <autret_m@epita.fr>
17171
17172 * src/output.h: And put its extern declaration here.
17173 * src/output.c (error_verbose): Define here.
17174 (prepare): Echo name modification.
17175 * src/getargs.h: Clean its extern declaration.
17176 * src/getargs.c (error_verbose_flag): Remove.
17177 (getargs): Remove case 'e'.
17178 * src/options.c (option_table): 'error-verbose' is now seen as simple
17179 percent option.
17180 Include output.h.
17181
17182 * src/reader.c (read_declarations): Remove case tok_include.
17183 (parse_include_decl): Remove.
17184 * src/lex.h (token_t): Remove tok_include.
17185 * src/options.c (option_table): 'include' is now a simple command line
17186 option.
17187
5b5d1929
MA
171882001-11-28 Marc Autret <autret_m@epita.fr>
17189
17190 * src/bison.simple: Adjust muscle names.
17191 * src/muscle_tab.c (muscle_init): Also rename the muscles.
17192 * src/output.c (prepare): s/_/-/ for the muscles names.
17193 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
17194
8850be4b
MA
171952001-11-28 Marc Autret <autret_m@epita.fr>
17196
17197 * src/bison.simple: Fix debug.
17198 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
17199
4a38e613
AD
172002001-11-28 Akim Demaille <akim@epita.fr>
17201
17202 * src/LR0.c (shifts_new): New.
17203 (save_shifts, insert_start_shift, augment_automaton): Use it.
17204
4b35e1c1
AD
172052001-11-28 Akim Demaille <akim@epita.fr>
17206
17207 * src/closure.c (closure): `b' and `ruleno' denote the same value:
17208 keep ruleno only.
17209
d2b04478
AD
172102001-11-28 Akim Demaille <akim@epita.fr>
17211
17212 * src/closure.c (closure): Instead of looping over word in array
17213 then bits in words, loop over bits in array.
17214
2c4c30aa
AD
172152001-11-28 Akim Demaille <akim@epita.fr>
17216
17217 * src/closure.c (closure): No longer optimize the special case
17218 where all the bits of `ruleset[r]' are set to 0, to make the code
17219 clearer.
17220
576890b7
AD
172212001-11-28 Akim Demaille <akim@epita.fr>
17222
17223 * src/closure.c (closure): `r' and `c' are new variables, used to
17224 de-obfuscate accesses to RULESET and CORE.
17225
cb487d7d
AD
172262001-11-28 Akim Demaille <akim@epita.fr>
17227
17228 * src/reduce.c (reduce_print): Use ngettext.
17229 (dump_grammar): Improve the trace accuracy.
17230
6013d43f
AD
172312001-11-28 Akim Demaille <akim@epita.fr>
17232
17233 * src/reduce.c (dump_grammar): Don't translate trace messages.
17234
cb4956ee
AD
172352001-11-28 Akim Demaille <akim@epita.fr>
17236
17237 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
17238 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
17239 as all tags are free'ed afterwards.
17240 From Enrico Scholz.
17241
648185ab
PE
172422001-11-27 Paul Eggert <eggert@twinsun.com>
17243
17244 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
17245 use alloca when we didn't want to, and vice versa.
17246
68254a03
MA
172472001-11-27 Marc Autret <autret_m@epita.fr>
17248
9113b58f
AD
17249 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
17250 initialization.
68254a03
MA
17251 * src/output.c (prepare): Remove its update.
17252
04d843a2
MA
172532001-11-27 Marc Autret <autret_m@epita.fr>
17254
17255 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
17256 Use %error-verbose.
17257
d2079671 172582001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
17259
17260 * src/bison.simple: Remove YYERROR_VERBOSE using.
17261 Use %%error_verbose.
17262 (yyparse): Likewise.
17263 * src/output.c (prepare): Give its final value.
17264 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
17265 * src/getargs.h: Add its extern declaration.
17266 * src/getargs.c (error_verbose_flag): New int.
17267 (getargs): Update to catch new case.
17268 * src/options.c (option_table): 'error-verbose' is a new option.
17269 (shortopts): Update.
17270
e0327bc8
AD
172712001-11-27 Akim Demaille <akim@epita.fr>
17272
17273 * src/system.h: Use intl/libgettext.h.
17274 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
17275
000f1a3c
AD
172762001-11-27 Akim Demaille <akim@epita.fr>
17277
17278 * tests/torture.at (Exploding the Stack Size with Malloc):
17279 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
17280
26cfe0be
AD
172812001-11-27 Akim Demaille <akim@epita.fr>
17282
17283 * src/files.c: Include error.h.
17284 Reported by Hans Aberg.
17285
f6bd5427
MA
172862001-11-26 Marc Autret <autret_m@epita.fr>
17287
d2079671 17288 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
17289 (read_declarations): Add case tok_include.
17290 * src/getargs.h (include): Add its extern definition.
17291 * src/getargs.c (include): New const char *.
17292 (getargs): Add case '-I'.
17293 * src/options.c (option_table): Add include as command line and
17294 percent option.
17295 * src/lex.h (token_t): Add tok_include.
17296
2ca209c1
AD
172972001-11-26 Akim Demaille <akim@epita.fr>
17298
17299 * src/reader.c (readgram): Make sure rules for mid-rule actions
17300 have a lineno equal to that of their host rule.
17301 Reported by Hans Aberg.
17302 * tests/regression.at (Rule Line Numbers): New.
17303
0e41b407
AD
173042001-11-26 Akim Demaille <akim@epita.fr>
17305
17306 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
17307 size_ts.
17308
173092001-11-26 Akim Demaille <akim@epita.fr>
17310
17311 * src/complain.c, src/complain.h (error): Remove, provided by
17312 lib/error.[ch].
17313
e0c40012
AD
173142001-11-26 Akim Demaille <akim@epita.fr>
17315
17316 * src/reader.c (read_declarations): Don't abort on tok_illegal,
17317 issue an error message.
17318 * tests/regression.at (Invalid %directive): New.
17319 Reported by Hans Aberg.
17320
5e147124
AD
173212001-11-26 Akim Demaille <akim@epita.fr>
17322
17323 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
17324 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
17325
a034c8b8
AD
173262001-11-26 Akim Demaille <akim@epita.fr>
17327
17328 * src/conflicts.c (conflicts_print): Don't complain at all when
17329 there are no reduce/reduce conflicts, and as many shift/reduce
17330 conflicts as expected.
17331 * tests/regression.at (%expect right): Adjust.
17332
c64a20f3
AD
173332001-11-23 Akim Demaille <akim@epita.fr>
17334
17335 * lib/alloca.c: Update, from fileutils.
17336
5b0d29bb
AD
173372001-11-23 Akim Demaille <akim@epita.fr>
17338
17339 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
17340
722c4bfe
AD
173412001-11-23 Akim Demaille <akim@epita.fr>
17342
17343 * src/system.h: Include alloca.h.
17344 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
17345
6255b435
AD
173462001-11-23 Akim Demaille <akim@epita.fr>
17347
17348 * src/print_graph.c (print_actions): Remove `rule', unused.
17349 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
17350 pacify GCC's signed < unsigned warnings.
17351 * src/closure.c (itemsetsize): Likewise.
17352 * src/reader.c (symbol_list_new): Static.
17353
b29b2ed5
AD
173542001-11-23 Akim Demaille <akim@epita.fr>
17355
17356 Attaching lineno to buckets is stupid, since only one copy of each
17357 symbol is kept, only the line of the first occurrence is kept too.
17358
17359 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
17360 * src/reader.c (rline_allocated): Remove, unused.
17361 (symbol_list): Have a `line' member.
17362 (symbol_list_new): New.
17363 (readgram): Use it.
17364 * src/print.c (print_grammar): Output the rule line numbers.
17365 * tests/regression.at (Solved SR Conflicts)
17366 (Unresolved SR Conflicts): Adjust.
17367 Reported by Hans Aberg.
17368
a81b1d4a
MA
173692001-11-22 Marc Autret <autret_m@epita.fr>
17370
17371 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
17372
c1ecb3c1
MA
173732001-11-22 Marc Autret <autret_m@epita.fr>
17374
17375 * src/muscle_tab.c (muscle_init): Remove initialization of
17376 skeleton muscle.
17377 * src/output.c (output_master_parser): Do it here.
17378
fbe01355
AD
173792001-11-20 Akim Demaille <akim@epita.fr>
17380
17381 * po/sv.po: New.
17382 * configure.in (ALL_LINGUAS): Adjust.
17383 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
17384 longer contains strings to translate.
17385
81e895c0
AD
173862001-11-19 Akim Demaille <akim@epita.fr>
17387
17388 * src/conflicts.c (conflicts_print): Add a missing \n.
17389
6bb1878b
AD
173902001-11-19 Akim Demaille <akim@epita.fr>
17391
17392 * src/nullable.c (nullable_print): New.
17393 (set_nullable): Call it when tracing.
17394 Better locality of variables.
17395
d9ec2d07
AD
173962001-11-19 Akim Demaille <akim@epita.fr>
17397
17398 * src/print.c (print_actions): Better locality of variables.
17399
720e5c1b
AD
174002001-11-19 Akim Demaille <akim@epita.fr>
17401
17402 * src/derives.c (print_derives): Fix and enrich.
17403 * src/closure.c (print_fderives): Likewise.
17404
fb908786
AD
174052001-11-19 Akim Demaille <akim@epita.fr>
17406
17407 * src/closure.c (itemsetend): Remove, replaced with...
17408 (itemsetsize): new.
17409
125ecb56
AD
174102001-11-19 Akim Demaille <akim@epita.fr>
17411
17412 * src/LR0.c (kernel_end): Remove, replaced with...
17413 (kernel_size): new.
17414
d8cf039f
AD
174152001-11-19 Akim Demaille <akim@epita.fr>
17416
17417 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
17418 to clarify.
17419
7bec0760
AD
174202001-11-19 Akim Demaille <akim@epita.fr>
17421
17422 * src/closure.c (closure): Use arrays instead of pointers to clarify.
17423
c87d4863
AD
174242001-11-19 Akim Demaille <akim@epita.fr>
17425
17426 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
17427 trace messages.
17428 * src/LR0.c: Likewise.
17429 (allocate_itemsets): Use arrays instead of pointers to clarify.
17430
9bfe901c
AD
174312001-11-19 Akim Demaille <akim@epita.fr>
17432
17433 * src/getargs.c (statistics_flag): Replace with...
17434 (trace_flag): New.
17435 (longopts): Accept --trace instead of --statistics.
17436 * src/getargs.h, src/options.c: Adjust.
17437 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
17438 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
17439
97db7bd4
AD
174402001-11-19 Akim Demaille <akim@epita.fr>
17441
cc72668c 17442 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
17443 pointers to clarify the code.
17444 (save_reductions, save_shifts): Factor common parts of alternatives.
17445
2c5f66ed
AD
174462001-11-19 Akim Demaille <akim@epita.fr>
17447
17448 * src/LR0.c (new_state, get_state): Complete TRACE code.
17449 * src/closure.c: Include `reader.h' to get `tags', needed by the
17450 trace code.
17451 Rename the conditional DEBUG as TRACE.
17452 Output consistently TRACEs to stderr, not stdout.
17453 * src/derives.c: Likewise.
17454 * src/reduce.c: (inaccessable_symbols): Using if is better style
17455 than goto.
17456 Use `#if TRACE' instead of `#if 0' for tracing code.
17457
300f275f
AD
174582001-11-19 Akim Demaille <akim@epita.fr>
17459
17460 * src/system.h (LIST_FREE, shortcpy): New.
17461 * src/LR0.c: Use them.
17462 * src/output.c (free_itemsets, free_reductions, free_shifts):
17463 Remove, replaced by LIST_FREE.
17464
f59c437a
AD
174652001-11-19 Akim Demaille <akim@epita.fr>
17466
17467 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
17468 (REDUCTIONS_ALLOC): New.
17469 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
17470 allocation.
17471
6986fd9e
AD
174722001-11-19 Akim Demaille <akim@epita.fr>
17473
17474 * src/LR0.c (new_state): Complete trace code.
17475 * src/nullable.c (set_nullable): Don't translate traces.
17476
4bc30f78
AD
174772001-11-19 Akim Demaille <akim@epita.fr>
17478
17479 * src/print_graph.c (print_core): Better locality of variables.
17480 * src/print.c (print_core): Likewise.
17481
08a946e0
AD
174822001-11-19 Akim Demaille <akim@epita.fr>
17483
17484 * src/vcg.c: You do the output, so you are responsible of the
17485 handling of VCG syntax, in particular: use quotearg.
17486 * src/print_graph.c: Don't.
17487 (print_actions): Don't output the actions as part of the nodes,
17488 since that's the job of the edges.
17489 (print_state): Don't output by hand: fill the node description,
9bfe901c 17490 and ask for its output.
08a946e0 17491
f0473484
AD
174922001-11-19 Akim Demaille <akim@epita.fr>
17493
cc72668c
AD
17494 * src/bison.simple (yyparse): When verbosely reporting an error,
17495 no longer put additional quotes around token names.
f0473484
AD
17496 * tests/calc.at: Adjust.
17497
e41dc700
AD
174982001-11-19 Akim Demaille <akim@epita.fr>
17499
17500 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
17501 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
17502 * src/output.c: Adjust.
17503
652a871c
AD
175042001-11-19 Akim Demaille <akim@epita.fr>
17505
17506 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
17507 (rule_t): this.
17508 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
17509
b2ed6e58
AD
175102001-11-19 Akim Demaille <akim@epita.fr>
17511
17512 * src/gram.h (rule_t): New.
17513 (rule_table): New.
17514 (rrhs, rlhs): Remove, part of state_t.
17515 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
17516 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
17517 * src/reader.c, src/reduce.c: Adjust.
17518
edad7067
AD
175192001-11-19 Akim Demaille <akim@epita.fr>
17520
17521 * src/reader.c (symbols_output): New, extracted from...
17522 (packsymbols): Here.
17523 (reader): Call it.
17524
3feec034
AD
175252001-11-19 Akim Demaille <akim@epita.fr>
17526
17527 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
17528 (maxrhs): this new function.
17529
ddcd5fdf
AD
175302001-11-19 Akim Demaille <akim@epita.fr>
17531
cc72668c 17532 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
17533 Adjust.
17534
bb527fc2
AD
175352001-11-19 Akim Demaille <akim@epita.fr>
17536
cc72668c 17537 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
17538 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
17539 * src/lalr.c: Adjust.
17540
a845a697
AD
175412001-11-19 Akim Demaille <akim@epita.fr>
17542
17543 * src/lalr.c (initialize_LA): Only initialize LA. Let...
17544 (set_state_table): handle the `lookaheads' members.
17545
f004bf6a
AD
175462001-11-19 Akim Demaille <akim@epita.fr>
17547
cc72668c
AD
17548 * src/lalr.h (lookaheads): Removed array, whose contents is now
17549 a member of...
f004bf6a
AD
17550 (state_t): this structure.
17551 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
17552 Adjust.
17553
de326cc0
AD
175542001-11-19 Akim Demaille <akim@epita.fr>
17555
cc72668c
AD
17556 * src/lalr.h (consistent): Removed array, whose contents is now
17557 a member of...
de326cc0
AD
17558 (state_t): this structure.
17559 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
17560 Adjust.
17561
90b4416b
AD
175622001-11-19 Akim Demaille <akim@epita.fr>
17563
cc72668c
AD
17564 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
17565 contents are now members of...
90b4416b
AD
17566 (state_t): this structure.
17567 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
17568 Adjust.
17569
9703cc49
AD
175702001-11-19 Akim Demaille <akim@epita.fr>
17571
17572 * src/lalr.h (state_t): New.
17573 (state_table): Be a state_t * instead of a core **.
17574 (accessing_symbol): Remove, part of state_t.
17575 * src/lalr.c: Adjust.
17576 (set_accessing_symbol): Merge into...
17577 (set_state_table): this.
17578 * src/print_graph.c, src/conflicts.c: Adjust.
17579
d803322e
AD
175802001-11-14 Akim Demaille <akim@epita.fr>
17581
17582 * tests/calc.at, tests/output.at, tests/regression.at,
17583 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
17584 now the tests are run in private dirs, therefore AC_CLEANUP and
17585 family can be simplified to 0-ary.
17586 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
17587 use abs. path to find config.h.
17588 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
17589 stderr, there can be way too much random noise.
17590 Instead pass -Werror to GCC and rely on the exit status.
17591 Reported by Wolfram Wagner.
17592
3d76b07d
AD
175932001-11-14 Akim Demaille <akim@epita.fr>
17594
17595 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
17596 defined only if yyoverflow is defined, to avoid `warning: unused
17597 variable `yyvs1''.
17598 Reported by The Test Suite.
17599
09b503c8
AD
176002001-11-14 Akim Demaille <akim@epita.fr>
17601
17602 * src/print.c: Include reduce.h.
17603 Reported by Hans Aberg.
17604
176052001-11-14 Akim Demaille <akim@epita.fr>
17606
17607 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
17608 Revert a previous patch: these are really const.
17609 * src/conflicts.c (conflict_report): Additional useless pair of
17610 braces to pacify GCC's warnings for `if () if () {} else {}'.
17611 * src/lex.c (parse_percent_token): Replace equal_offset with
17612 arg_offset.
17613 arg is const.
17614 Be sure to strdup `arg' when used, since there is no reason for
17615 token_buffer not to change.
17616
0f37a994
AD
176172001-11-14 Akim Demaille <akim@epita.fr>
17618
17619 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
17620 definition.
17621 * src/main.c (main): Use them.
17622 Suggested by Hans Aberg.
17623
d39d93b8
AD
176242001-11-12 Akim Demaille <akim@epita.fr>
17625
17626 * src/system.h (ngettext): Now that we use ngettext, be sure to
17627 provide a default definition when NLS are not used.
17628
9edcd895
AD
176292001-11-12 Akim Demaille <akim@epita.fr>
17630
17631 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
17632 Use @kbd to denote user input.
17633 (Language and Grammar): ANSIfy the example.
17634 Adjust its layout for info/notinfo.
17635 (Location Tracking Calc): Output error messages to stderr.
17636 Output locations in a more GNUtically correct way.
17637 Fix a couple of Englishos.
17638 Adjust @group/@end group pairs.
17639
7da99ede
AD
176402001-11-12 Akim Demaille <akim@epita.fr>
17641
e3aa65c5 17642 %expect was not functioning at all.
7da99ede
AD
17643
17644 * src/conflicts.c (expected_conflicts): Set to -1.
17645 (conflict_report): Use ngettext.
17646 (conflicts_print): Check %expect and make its violation an error.
17647 * doc/bison.texinfo (Expect Decl): Adjust.
17648 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
17649 * tests/regression.at (%expect not enough, %expect right)
17650 (%expect too much): New.
17651
ba9dda1a
AD
176522001-11-12 Akim Demaille <akim@epita.fr>
17653
17654 * tests/regression.at (Conflicts): Rename as...
17655 (Unresolved SR Conflicts): this.
17656 (Solved SR Conflicts): New.
17657
337c5bd1
AD
176582001-11-12 Akim Demaille <akim@epita.fr>
17659
17660 * src/reduce.c (print_results): Rename as...
17661 (reduce_output): This.
17662 Output to OUT, passed as argument, instead of output_obstack.
17663 (dump_grammar): Likewise.
17664 (reduce_free): New.
17665 Also free V1.
17666 (reduce_grammar): No longer call reduce_output, since...
17667 * src/print.c (print_results): do it.
17668 * src/main.c (main): Call reduce_free;
17669
c73a41af
AD
176702001-11-12 Akim Demaille <akim@epita.fr>
17671
17672 * src/conflicts.c (print_reductions): Accept OUT as argument.
17673 Output to it, not to output_obstack.
17674 * src/print.c (print_actions): Adjust.
17675
0df87bb6
AD
176762001-11-12 Akim Demaille <akim@epita.fr>
17677
17678 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
17679 the result instead of using...
17680 (src_total, rrc_total, src_count, rrc_count): Remove.
17681 (any_conflicts): Remove.
17682 (print_conflicts): Split into...
17683 (conflicts_print, conflicts_output): New.
17684 * src/conflicts.h: Adjust.
17685 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 17686 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
17687 * tests/regression.at (Conflicts): New.
17688 Reported by Tom Lane.
17689
e4d3d4de
AD
176902001-11-12 Akim Demaille <akim@epita.fr>
17691
17692 * tests/regression.at (Invalid input): Remove, duplicate with
17693 ``Invalid input: 1''.
17694
6d7d248e
AD
176952001-11-12 Akim Demaille <akim@epita.fr>
17696
17697 * tests/torture.at (AT_DATA_STACK_TORTURE)
17698 (Exploding the Stack Size with Alloca)
17699 (Exploding the Stack Size with Malloc): New.
17700
e9e4c321
AD
177012001-11-12 Akim Demaille <akim@epita.fr>
17702
17703 * src/bison.simple (YYSTACK_REALLOC): New.
17704 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 17705 Reported by Per Allansson.
e9e4c321 17706
5f7e0832
AD
177072001-11-12 Pascal Bart <pascal.bart@epita.fr>
17708
17709 * src/bison.simple: Define type yystype instead of YYSTYPE, and
17710 define CPP macro, which substitute YYSTYPE by yystype.
17711 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
17712 with yyltype/YYLTYPE. This allows inclusion of the generated
17713 header within the parser if the compiler, such as GGC, accepts
17714 multiple equivalent #defines.
17715 From Akim.
17716
e3f1699f
AD
177172001-11-05 Akim Demaille <akim@epita.fr>
17718
17719 * src/reader.c (symbols_output): New, extracted from...
17720 (packsymbols): here.
17721 (reader): Adjust.
17722
65be0866
AD
177232001-11-05 Akim Demaille <akim@epita.fr>
17724
17725 * src/lex.c (parse_percent_token): s/quotearg/quote/.
17726
e4d910bf
AD
177272001-11-05 Akim Demaille <akim@epita.fr>
17728
17729 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
17730 pattern.
17731
951366c1
AD
177322001-11-05 Akim Demaille <akim@epita.fr>
17733
17734 * src/options.h (struct option_table_struct): set_flags is void*.
17735 * src/options.c (longopts): Support `--output' and `%output'.
17736 (usage): Adjust.
17737 * src/lex.h (tok_setopt): Remove, replaced with...
17738 (tok_intopt, tok_stropt): these new guys.
17739 * src/lex.c (getopt.h): Not needed.
17740 (token_buffer, unlexed_token_buffer): Not const.
17741 (percent_table): Promote `-' over `_' in directive names.
17742 Active `%name-prefix', `file-prefix', and `output'.
17743 (parse_percent_token): Accept possible arguments to directives.
17744 Promote `-' over `_' in directive names.
17745
d8988b2f
AD
177462001-11-04 Akim Demaille <akim@epita.fr>
17747
17748 * doc/bison.texinfo (Decl Summary): Split the list into
17749 `directives for grammars' and `directives for bison'.
17750 Sort'em.
17751 Add description of `%name-prefix', `file-prefix', and `output'.
17752 Promote `-' over `_' in directive names.
17753 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
17754 Simplify the description of `--name-prefix'.
17755 Promote `-' over `_' in directive names.
17756 Promote `--output' over `--output-file'.
17757 Fix the description of `--defines'.
17758 * tests/output.at: Exercise %file-prefix and %output.
17759
6468d18e
AD
177602001-11-02 Akim Demaille <akim@epita.fr>
17761
17762 * doc/refcard.tex: Update.
17763
6b7e85b9
AD
177642001-11-02 Akim Demaille <akim@epita.fr>
17765
17766 * src/symtab.h (SUNDEF): New.
17767 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
17768 stand for `uninitialized', instead of 0.
17769 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
17770 * src/lex.c (lex): Adjust.
17771
17772 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
17773 Number it 0.
17774 Let yylex return it instead of a plain 0.
17775 Reported by Dick Streefland.
17776
cd5aafcf
AD
177772001-11-02 Akim Demaille <akim@epita.fr>
17778
17779 * tests/regression.at (Mixing %token styles): New test.
17780
037ca2f1
AD
177812001-11-02 Akim Demaille <akim@epita.fr>
17782
17783 * src/reader.c (parse_thong_decl): Formatting changes.
17784 (token_translations_init): New, extracted from...
17785 (packsymbols): Here.
17786 Adjust.
17787
270a173c
AD
177882001-11-01 Akim Demaille <akim@epita.fr>
17789
17790 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
17791 Check that `9foo.y' produces correct cpp guards.
17792 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
17793 guards.
17794 Reported by Wwp.
17795
561f9a30
AD
177962001-11-01 Akim Demaille <akim@epita.fr>
17797
17798 * tests/regression.at (Invalid input: 2): New.
17799 * src/lex.c (unlexed_token_buffer): New.
17800 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
17801 too.
17802 Reported by Wwp.
17803
f987e9d2
AD
178042001-11-01 Akim Demaille <akim@epita.fr>
17805
17806 * tests/calc.at: Catch up with 1.30.
17807 * configure.in: Bump to 1.49a.
17808 Adjust to newer Autotest.
17809
0846f581
PB
178102001-10-19 Pascal Bart <pascal.bart@epita.fr>
17811
17812 * src/conflicts.c: Move global variables rrc_total and src_total ...
17813 (print_conflicts): here.
17814 * src/output.c (output): Free global variable user_toknums.
17815 * src/lex.c (token_obstack): Become static.
17816
3c1a79b3
AD
178172001-10-18 Akim Demaille <akim@epita.fr>
17818
17819 * tests/atlocal.in (GCC): Add.
17820 * tests/calc.at: s/m4_match/m4_bmatch/.
17821 s/m4_patsubst/m4_bpatsubst/.
17822 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
17823 * configure.in: AC_SUBST(GCC).
17824
5d52e7d0
MA
178252001-10-14 Marc Autret <autret_m@epita.fr>
17826
17827 * src/options.c (create_long_option_table): Fix.
17828
631aa1d3
AD
178292001-10-10 Akim Demaille <akim@epita.fr>
17830
17831 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
17832
f6ec6d13
AD
178332001-10-04 Akim Demaille <akim@epita.fr>
17834
17835 * src/reader.c (parse_union_decl): Push the caracters in
17836 union_obstack, not attrs_obstack.
17837
342b8b6e
AD
178382001-10-04 Akim Demaille <akim@epita.fr>
17839
17840 Merge in the branch 1.29.
17841
17842 * src/reader.c (packsymbols): Use a temporary obstack for
17843 `%%tokendef', since output_stack is already used elsewhere.
17844
17845 2001-10-02 Akim Demaille <akim@epita.fr>
17846
17847 Bump 1.29d.
17848
17849 2001-10-02 Akim Demaille <akim@epita.fr>
17850
17851 Version 1.29c.
17852
17853 2001-10-02 Akim Demaille <akim@epita.fr>
17854
17855 * tests/regression.at (Invalid CPP headers): New.
17856 From Alexander Belopolsky.
17857 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
17858
17859 2001-10-02 Akim Demaille <akim@epita.fr>
17860
17861 * tests/regression.at (Invalid input): New.
17862 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
17863 Reported by Shura.
17864
17865 2001-10-02 Akim Demaille <akim@epita.fr>
17866
17867 * tests/calc.at: Now that --debug works, the tests must be adjusted.
17868
17869 2001-10-02 Akim Demaille <akim@epita.fr>
17870
17871 * src/output.c (output_parser): Assert `skeleton'.
17872 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
17873 systems.
17874 From Shura.
17875
17876 2001-10-01 Marc Autret <autret_m@epita.fr>
17877
17878 * src/lex.h: Echo modifications.
17879 * src/lex.c (unlex): Parameter is now token_t.
17880 From Hans Aberg.
17881
17882 2001-10-01 Marc Autret <autret_m@epita.fr>
17883
17884 * src/main.c: Include lex.h.
17885 From Hans Aberg.
17886
17887 2001-09-29 Akim Demaille <akim@epita.fr>
17888
17889 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
17890
17891 2001-09-28 Akim Demaille <akim@epita.fr>
17892
17893 * tests/testsuite.at: Update to newer Autotest.
17894 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
17895
17896 2001-09-27 Akim Demaille <akim@epita.fr>
17897
17898 Position independent wrapper.
17899
17900 * tests/bison: Remove.
17901 * tests/bison.in: New.
17902 * configure.in: Adjust.
17903
17904 2001-09-27 Paul Eggert <eggert@twinsun.com>
17905
17906 Port quotearg fixes from tar 1.13.24.
17907
17908 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
17909 tm to be declared.
17910 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
17911 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
17912
17913 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
17914 * m4/mbrtowc.m4: New file.
17915 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
17916 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
17917
17918 2001-09-27 Akim Demaille <akim@epita.fr>
17919
17920 Bump to 1.29c.
17921
17922 2001-09-27 Akim Demaille <akim@epita.fr>
17923
17924 Version 1.29b.
17925
17926 2001-09-25 Akim Demaille <akim@epita.fr>
17927
17928 * src/system.h: Include `xalloc.h'.
17929 Remove it from the C files.
17930 * src/files.c (output_files): Free the obstacks.
17931 * src/lex.c (init_lex): Rename as...
17932 (lex_init): this.
17933 (lex_free): New.
17934 * src/main.c (main): Use it.
17935
17936 2001-09-24 Marc Autret <autret_m@epita.fr>
17937
17938 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
17939 to output informations in fout (FILE*).
17940 (open_graph, close_graph): Likewise.
17941 (output_graph, output_edge, output_node): Likewise.
17942 * src/vcg.h: Update function prototypes.
17943 * src/print_graph.c (print_graph): Open output graph file.
17944 (print_actions): Adjust.
17945 * src/files.h: Remove extern declaration.
17946 * src/files.c: Remove graph_obstack declaration.
17947 (open_files): Remove graph_obstack initialization.
17948 (output_files): Remove graph_obstack saving.
17949
17950 2001-09-24 Marc Autret <autret_m@epita.fr>
17951
17952 * src/files.c (compute_output_file_names): Fix.
17953
17954 2001-09-24 Marc Autret <autret_m@epita.fr>,
17955 Akim Demaille <akim@epita.fr>
17956
17957 * src/reader.c (reader): Remove call to free_symtab ().
17958 * src/main.c (main): Call it here.
17959 Include symtab.h.
17960 * src/conflicts.c (initialize_conflicts): Rename as...
17961 (solve_conflicts): this.
17962 * src/print.c (print_core, print_actions, print_state)
17963 (print_grammar): Dump to a file instead a `output_obstack'.
17964 (print_results): Dump `output_obstack', and then proceed with the
17965 FILE *.
17966 * src/files.c (compute_output_file_names, close_files): New.
17967 (output_files): Adjust.
17968 * src/main.c (main): Adjust.
17969
17970 2001-09-23 Marc Autret <autret_m@epita.fr>
17971
17972 * src/files.c (compute_header_macro): Computes header macro name
17973 from spec_defines_file when given.
17974
17975 2001-09-23 Marc Autret <autret_m@epita.fr>
17976
17977 * src/files.c (output_files): Add default extensions.
17978
17979 2001-09-22 Akim Demaille <akim@epita.fr>
17980
17981 * src/conflicts.c (finalize_conflicts): Rename as...
17982 (free_conflicts): this.
17983
17984 2001-09-22 Akim Demaille <akim@epita.fr>
17985
17986 * src/gram.c (gram_free): Rename back as...
17987 (dummy): this.
17988 (output_token_translations): Free `token_translations'.
17989 * src/symtab.c (free_symtab): Free the tag field.
17990
17991 2001-09-22 Akim Demaille <akim@epita.fr>
17992
17993 Remove `translations' as it is always set to true.
17994
17995 * src/gram.h: Adjust.
17996 * src/reader.c (packsymbols, parse_token_decl): Adjust
17997 * src/print.c (print_grammar): Adjust.
17998 * src/output.c (output_token_translations): Adjust.
17999 * src/lex.c (lex): Adjust.
18000 * src/gram.c: Be sure the set pointers to NULL.
18001 (dummy): Rename as...
18002 (gram_free): this.
18003
18004 2001-09-22 Akim Demaille <akim@epita.fr>
18005
18006 * configure.in: Invoke AM_LIB_DMALLOC.
18007 * src/system.h: Use dmalloc.
18008 * src/LR0.c: Be sure to have pointers initialized to NULL.
18009 (allocate_itemsets): Allocate kernel_items only if needed.
18010
18011 2001-09-22 Akim Demaille <akim@epita.fr>
18012
18013 * configure.in: Bump to 1.29b.
18014 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
18015 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
18016 need xmalloc.c in calc.y.
18017 From Pascal Bart.
18018
18019 2001-09-21 Akim Demaille <akim@epita.fr>
18020
18021 Version 1.29a.
18022 * Makefile.maint, config/config.guess, config/config.sub,
18023 * config/missing: Update from masters.
18024 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
18025 upon package.m4.
18026 * configure.in (ALL_LINGUAS): Add `tr'.
18027
18028 2001-09-21 Akim Demaille <akim@epita.fr>
18029
18030 * tests/Makefile.am (package.m4): Move to...
18031 ($(srcdir)/$(TESTSUITE)): here.
18032
18033 2001-09-20 Akim Demaille <akim@epita.fr>
18034
18035 * src/complain.c: No longer try to be standalone: use system.h.
18036 Don't assume __STDC__ is defined to 1. Just test if it is defined.
18037 * src/complain.h: Likewise.
18038 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
18039 Remove the unused variable `n'.
18040 From Albert Chin-A-Young.
18041
18042 2001-09-18 Marc Autret <autret_m@epita.fr>
18043
18044 * doc/bison.1: Update.
18045 * doc/bison.texinfo (Bison Options): Update --defines and --graph
18046 descriptions.
18047 (Option Cross Key): Update.
18048 Add --graph.
18049
18050 2001-09-18 Marc Autret <autret_m@epita.fr>
18051
18052 * tests/regression.at: New test (comment in %union).
18053
18054 2001-09-18 Marc Autret <autret_m@epita.fr>
18055
18056 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
18057 do that.
18058 Reported by Keith Browne.
18059
18060 2001-09-18 Marc Autret <autret_m@epita.fr>
18061
18062 * tests/output.at: Add tests for --defines and --graph.
18063
18064 2001-09-18 Marc Autret <autret_m@epita.fr>
18065
18066 * tests/output.at: Removes tests of %{header,src}_extension features.
18067
18068 2001-09-18 Akim Demaille <akim@epita.fr>
18069
18070 * tests/Makefile.am (package.m4): New.
18071 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
18072 (_AT_CHECK_CALC_ERROR): Likewise.
18073 Factor the `, ' part of verbose error messages.
18074
18075 2001-09-18 Marc Autret <autret_m@epita.fr>
18076
18077 * src/getargs.c (longopts): Declare --defines and --graph as options
18078 with optional arguments.
18079 * src/files.h: Add extern declarations.
18080 * src/files.c (spec_graph_file, spec_defines_file): New.
18081 (output_files): Update.
18082 Remove CPP-outed code.
18083
18084 2001-09-18 Marc Autret <autret_m@epita.fr>
18085
18086 Turn off %{source,header}_extension feature.
18087
18088 * src/files.c (compute_exts_from_gf): Update.
18089 (compute_exts_from_src): Update.
18090 (output_files): CPP-out useless code.
18091 * src/files.h: Remove {header,source}_extension extern declarations.
18092 * src/reader.c (parse_dquoted_param): CPP-out.
18093 (parse_header_extension_decl): Remove.
18094 (parse_source_extension_decl): Remove.
18095 (read_declarations): Remove cases tok_{hdrext,srcext}.
18096 * src/lex.c (percent_table): Remove {header,source}_extension entries.
18097 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
18098
18099 2001-09-10 Akim Demaille <akim@epita.fr>
18100
18101 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
18102 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
18103 (AT_CHECK_OUTPUT): this.
18104 Merely check ls' exit status, its output is useless.
18105
18106 2001-09-10 Akim Demaille <akim@epita.fr>
18107
18108 * tests/calc.at: Use m4_match.
18109 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
18110
18111 2001-09-10 Marc Autret <autret_m@epita.fr>,
18112 Akim Demaille <akim@epita.fr>
18113
18114 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
18115 enum color_e.
18116 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
18117 to `normal'.
18118 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
18119 * src/lex.h: Adjust prototype.
18120 (token_t): Add `tok_undef'.
18121 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
18122 (parse_percent_token): Now returns token_t.
18123 Add default statement in switch.
18124 (lex): Separate `c' as an input variable, from the token_t result
18125 part.
18126 (unlexed): Is a token_t.
18127
18128 2001-09-10 Akim Demaille <akim@epita.fr>
18129
18130 * configure.in: Bump to 1.29a.
18131
18132 2001-09-07 Akim Demaille <akim@epita.fr>
18133
18134 Version 1.29.
18135
18136 2001-08-30 Akim Demaille <akim@epita.fr>
18137
18138 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
18139 * m4/atconfig.m4: Remove.
18140 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
18141 * tests/bison: New.
18142 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
18143 m4_if, m4_patsubst, and m4_regexp.
18144 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
18145 `input' file instead of echo.
18146
18147 2001-08-29 Akim Demaille <akim@epita.fr>
18148
18149 Bump to 1.28e.
18150
18151 2001-08-29 Akim Demaille <akim@epita.fr>
18152
18153 Version 1.28d.
18154
18155 2001-08-29 Paul Eggert <eggert@twinsun.com>
18156
18157 * src/bison.simple (yyparse): Don't take the address of an
18158 item before the start of an array, as that doesn't conform to
18159 the C Standard.
18160
18161 2001-08-29 Robert Anisko <anisko_r@epita.fr>
18162
18163 * doc/bison.texinfo (Location Tracking Calc): New node.
18164
18165 2001-08-29 Paul Eggert <eggert@twinsun.com>
18166
18167 * src/output.c (output): Do not define const, as this now
18168 causes more problems than it cures.
18169
18170 2001-08-29 Akim Demaille <akim@epita.fr>
18171
18172 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
18173 the nodes.
18174 Be sure to tag the `detailmenu'.
18175
18176 2001-08-29 Akim Demaille <akim@epita.fr>
18177
18178 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
18179 download in a tmp dir.
18180
18181 2001-08-28 Marc Autret <autret_m@epita.fr>
18182
18183 * config/depcomp: New file.
18184
18185 2001-08-28 Marc Autret <autret_m@epita.fr>
18186
18187 * doc/bison.1 (mandoc): Adjust.
18188 From Juan Manuel Guerrero.
18189
18190 2001-08-28 Marc Autret <autret_m@epita.fr>
18191
18192 * src/print_graph.c (print_state): Fix.
18193
18194 2001-08-27 Marc Autret <autret_m@epita.fr>
18195
18196 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
18197 char * members.
18198 Echo modifications to the functions prototypes.
18199 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
18200
18201 2001-08-27 Marc Autret <autret_m@epita.fr>
18202
18203 * src/vcg.c: Include `xalloc.h'.
18204 (add_colorentry): New.
18205 (add_classname): New.
18206 (add_infoname): New.
18207 * src/vcg.h: Add new prototypes.
18208
18209 2001-08-27 Akim Demaille <akim@epita.fr>
18210
18211 * Makefile.maint: Sync. again with CVS Autoconf.
18212
18213 2001-08-27 Akim Demaille <akim@epita.fr>
18214
18215 * Makefile.maint: Formatting changes.
18216 (po-update, cvs-update, update): New targets.
18217 (AMTAR): Remove.
18218
18219 2001-08-27 Akim Demaille <akim@epita.fr>
18220
18221 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
18222 * Makefile.maint: Sync. with CVS Autoconf.
18223
18224 2001-08-27 Marc Autret <autret_m@epita.fr>
18225
18226 * src/vcg.h (struct infoname_s): New.
18227 (struct colorentry_s): New.
18228 (graph_s): New fields {vertical,horizontal}_order in structure.
18229 Add `infoname' field.
18230 Add `colorentry' field;
18231 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
18232 (G_HORIZONTAL_ORDER): New.
18233 (G_INFONAME): New.
18234 (G_COLORENTRY): New.
18235 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
18236 Add output of `infoname'.
18237 Add output of `colorentry'.
18238
18239 2001-08-27 Marc Autret <autret_m@epita.fr>
18240
18241 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
18242 This one shadowed a global parameter.
18243
18244 2001-08-24 Marc Autret <autret_m@epita.fr>
18245
18246 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
18247 instead of `unsigned'.
18248 (print_state): Do not call obstack_object_size () in obstack_grow ()
18249 to avoid macro variables shadowing.
18250
18251 2001-08-23 Marc Autret <autret_m@epita.fr>
18252
18253 * src/lex.c (percent_table): Typo: s/naem/name/.
18254 Add graph option.
18255 Normalize new options declarations.
18256
18257 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
18258
18259 * tests/suite.at: Exercise %header_extension and %source_extension.
18260
18261 2001-08-16 Marc Autret <autret_m@epita.fr>
18262
18263 * src/reader.c (parse_dquoted_param): New.
18264 (parse_header_extension_decl): Use it.
18265 (parse_source_extension_decl): Likewise.
18266
18267 2001-08-16 Marc Autret <autret_m@epita.fr>
18268
18269 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
18270 (get_xxxx_str): Use assert () instead of complain ().
18271 Remove return invokations in default cases.
18272 (get_decision_str): Modify default behaviour. Remove second argument.
18273 Echo modifications on calls.
18274 (output_graph): Fix.
18275
18276 2001-08-16 Marc Autret <autret_m@epita.fr>
18277
18278 * src/getargs.c (usage): Update with ``-g, --graph''.
18279
18280 2001-08-16 Marc Autret <autret_m@epita.fr>
18281
18282 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
18283 (Option Cross Key): Likewise.
18284 * doc/bison.1: Update.
18285
1c8c2190
PB
182862001-09-25 Pascal Bart <pascal.bart@epita.fr>
18287
18288 * src/output.c (output_master_parser): Don't finish action_obstack.
18289 (output_parser): Don't care about the muscle action, here.
18290 (prepare): Copy the action_obstack in the action muscle.
18291 (output): Free action_obstack.
18292
180d45ba
PB
182932001-09-23 Pascal Bart <pascal.bart@epita.fr>
18294
18295 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
18296 will contain `%union' declaration.
18297 (parse_union_decl): Delete #line directive output.
18298 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
18299 informations about %union.
18300 (parse_union_decl): Copy the union_obstack in the muscle stype.
18301 * src/bison.simple: Add new #line directive.
18302 Add typdef %%stype YYSTYPE.
18303
c51d1a19
PB
183042001-09-23 Pascal Bart <pascal.bart@epita.fr>
18305
18306 * src/bison.simple: Add new `#line' directive.
18307
6f9344da
PB
183082001-09-22 Pascal Bart <pascal.bart@epita.fr>
18309
18310 * src/bison.simple: New `#line' directive.
18311 * src/output.c (output_parser): Support new dynamic muscle input_line.
18312
652def80
MA
183132001-09-22 Marc Autret <autret_m@epita.fr>
18314
18315 * src/output.c (output_master_parser): New.
18316 (output_parser): Be more re-entrant.
18317
25b222fa
MA
183182001-09-21 Marc Autret <autret_m@epita.fr>
18319
18320 * src/reader.c (copy_definition, parse_union_decl): Update and use
18321 `linef' muscle.
18322 (copy_action): Likewise.
18323 Use obstack_1grow ().
18324 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
18325
6bc35ae5
MA
183262001-09-21 Marc Autret <autret_m@epita.fr>
18327
18328 * src/options.c (option_table): Adjust.
18329 * src/lex.c (parse_percent_token): Fix.
18330
c0629aa1
PB
183312001-09-20 Pascal Bart <pascal.bart@epita.fr>
18332
18333 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 18334
82b6d266
PB
183352001-09-20 Pascal Bart <pascal.bart@epita.fr>
18336
18337 * src/lex.c (parse_percent_token): Change type of variable `tx', which
18338 is now an option_table_struct*.
18339 (option_strcmp): New function option_strcmp.
18340 (parse_percent_token): Call option_strcmp.
18341 * src/getargs.c (xalloc.h, options.h): Include it.
18342 (getargs): Call create_long_option_table.
18343 (getargs): Free longopts at the end of the function.
18344 (shortopts): Move in options.c.
18345 * src/options.c (create_long_option_table): New function. Convert
18346 information from option_table to option structure.
18347 * src/reader.c (options.h): Include it.
18348
18349 * src/Makefile.am: Adjust.
18350 * src/options.c (option_table): Create from longopts and percent_table.
18351 * src/getargs.c (longopts): Delete.
18352 * src/lex.c (struct percent_table_struct): Delete.
18353 (percent_table): Delete.
18354 (options.h): Include it.
18355 * src/options.c: Create.
18356 * src/options.h: Create.
18357 Declare enum opt_access_e.
18358 Define struct option_table_struct.
18359
75f5aaea
MA
183602001-09-20 Marc Autret <autret_m@epita.fr>
18361
18362 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
18363 sections of Bison.
18364
f508cb0a
PB
183652001-09-19 Pascal Bart <pascal.bart@epita.fr>
18366
18367 * src/bison.simple: s/%%filename/%%skeleton.
18368 * src/muscle_tab.c (getargs.h): Include it.
18369 (muscle_init): Insert new muscle skeleton.
18370
13105fc1
PB
183712001-09-18 Pascal Bart <pascal.bart@epita.fr>
18372
18373 * src/output.c (output_parser): Delete unused variable actions_dumped.
18374
b0c4483e
PB
183752001-09-07 Pascal Bart <pascal.bart@epita.fr>
18376
18377 * src/output.c (output): Delete call to reader_output_yylsp.
18378 * src/reader.c (reader): Likewise.
ba0fe3c7 18379 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 18380
11d82f03
MA
183812001-09-02 Marc Autret <autret_m@epita.fr>
18382
18383 * src/reader.c: Include muscle_tab.h.
18384 (parse_union_decl): Update.
18385 (parse_macro_decl): Rename parse_muscle_decl.
18386 Update to use renamed functions and variable.
18387 (read_declarations, copy_action, read_additionnal_code, : Updated
18388 with correct variables and functions names.
18389 (packsymbols, reader): Likewise.
342b8b6e 18390
11d82f03 18391 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 18392
11d82f03
MA
18393 * src/output.c: Include muscle_tab.h
18394 In all functions using macro_insert, change by using muscle_insert ().
18395 (macro_obstack): Rename muscle_obstack.
18396 Echo modifications in the whole file.
18397 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
18398 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
18399 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
18400
18401 * src/muscle_tab.h: Update double inclusion macros.
18402 (macro_entry_s): Rename muscle_entry_s.
18403 Update prototypes.
342b8b6e 18404
11d82f03
MA
18405 * src/muscle_tab.c: Include muscle_tab.h.
18406 Rename macro_tabble to muscle_table.
18407 (mhash1, mhash2, mcmp): Use muscle_entry.
18408 (macro_init): Rename muscle_init. Update.
18409 (macro_insert): Rename muscle_insert. Update.
18410 (macro_find): Rename muscle_find. Update.
18411
18412 * src/main.c: Include muscle_tab.h.
18413 (main): Call muscle_init ().
18414 * src/Makefile.am (bison_SOURCES): Echo modifications.
18415
93a37297
MA
184162001-09-02 Marc Autret <autret_m@epita.fr>
18417
f753cd62 18418 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 18419
f753cd62
MA
18420 * src/muscle_tab.c, src/muscle_tab.h: Add files.
18421
184222001-09-02 Marc Autret <autret_m@epita.fr>
18423
18424 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 18425
682d48cd
PB
184262001-09-01 Pascal Bart <pascal.bart@epita.fr>
18427
342b8b6e 18428 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
18429 filename.
18430
087c8fda
MA
184312001-09-01 Marc Autret <autret_m@epita.fr>
18432
18433 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
18434 to an explicit value to activate the feature. We do it here.
18435
dda680cb
PB
184362001-08-31 Pascal Bart <pascal.bart@epita.fr>
18437
18438 * src/output.c (prepare): Delete the `filename' muscule insertion.
18439 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
18440 (parse_union_decl): Likewise.
18441 * src/macrotab.c (macro_init): Initialize filename by infile.
18442
9e644e64
MA
184432001-08-31 Marc Autret <autret_m@epita.fr>
18444
18445 * src/bison.simple (YYLSP_NEEDED): New definition.
18446 * src/output.c (prepare): Add macro insertion of `locations_flag'
18447
17da6427
PB
184482001-08-31 Pascal Bart <pascal.bart@epita.fr>
18449
18450 * src/output.c (prepare): Delete insertion of previous muscles,
18451 and insert the `prefix' muscles.
18452 * src/macrotab.c (macro_init): Likewise.
18453 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 18454 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
18455 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
18456 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 18457 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
18458 name_prefix.
18459
e8cb70b9
PB
184602001-08-31 Pascal Bart <pascal.bart@epita.fr>
18461
18462 * src/main.c (main): Standardize.
18463 * src/output.c (output_table_data, output_parser): Likewise.
18464 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
18465
63c2d5de
MA
184662001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
18467
342b8b6e 18468 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
18469 %%epilogue.
18470 * src/output.c (output): Rename %%declarations to %%prologue.
18471 * src/bison.simple: Echo modifications.
342b8b6e 18472
d8cb5183
MA
184732001-08-31 Marc Autret <autret_m@epita.fr>
18474
18475 * src/reader.c (readgram): CleanUp.
18476 (output_token_defines): Likewise.
18477 (packsymbols): Likewise.
18478 (reader): Likewise.
18479 * src/output.c (output): CPP-out useless code.
18480
6c686258
PB
184812001-08-31 Pascal Bart <pascal.bart@epita.fr>
18482
342b8b6e 18483 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
18484 output_trailers and output_headers.
18485 * src/output.h: Remove obsolete functions prototypes of output_headers
18486 and output_trailers.
18487
8f451ef7
PB
184882001-08-30 Pascal Bart <pascal.bart@epita.fr>
18489
18490 * src/main.c: Include macrotab.h.
342b8b6e 18491 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
18492 Adjust functions prototypes.
18493 * src/macrotab.c (macro_insert): Constify key and value.
18494 (macro_find): Constify key.
18495 (macro_insert): Include 'xalloc.h'
18496 (macro_insert): Use XMALLOC.
18497 (macro_find): Constify return value.
18498 * src/output.c (output_table_data): Rename table to table_data.
18499 (output_parser): Constify macro_key, macro_value.
18500
997b6fd0 185012001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
18502
18503 * src/reader.c (parse_skel_decl): New.
342b8b6e 18504 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
18505 * src/lex.h (token_t): New token `tok_skel'.
18506 * src/lex.c (percent_table): Add skeleton option entry.
18507 Standardize.
18508
ff48177d
MA
185092001-08-29 Marc Autret <autret_m@epita.fr>
18510
18511 * src/bison.simple: Add %%user_code directive at the end.
18512 * src/reader.c (read_additionnal_code): New.
18513 (reader): Use it.
18514 * src/output.c (output_program): Remove.
18515 (output): Update.
18516
b33160bf
MA
185172001-08-28 Marc Autret <autret_m@epita.fr>
18518
18519 * src/output.c (output_actions): Clean up.
4e5caae2 18520 (output_gram): CPP-out useless code.
b33160bf
MA
18521 * src/reader.c (reader): Clean up, CPP-out useless code.
18522
d1a2daf7
PB
185232001-08-28 Pascal Bart <pascal.bart@epita.fr>
18524
342b8b6e 18525 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 18526 directive.
d1a2daf7
PB
18527 * src/bison.simple: Add `%%definitions'.
18528
2b763dfe
MA
185292001-08-28 Marc Autret <autret_m@epita.fr>
18530
18531 * config/depcomp: New file.
18532
f1a87ef6
PE
185332001-08-27 Paul Eggert <eggert@twinsun.com>
18534
18535 * src/bison.simple (yyparse): Don't take the address of an
18536 item before the start of an array, as that doesn't conform to
18537 the C Standard.
18538
82e236e2
RA
185392001-08-27 Robert Anisko <robert.anisko@epita.fr>
18540
f1a87ef6 18541 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
18542 obstack. It was done too late here.
18543
18544 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
18545 completely wrong.
18546 (reader): Initialize the macro obstack here, since we need it to grow
18547 '%define' directives.
18548
18549 * src/reader.h: Declare the macro obstack as extern.
18550
b0cfa28a
RA
185512001-08-27 Robert Anisko <robert.anisko@epita.fr>
18552
18553 * src/output.c (output_parser): Fix. Store single '%' characters in
18554 the output obstack instead of throwing them away.
18555
6fc74234
AD
185562001-08-27 Akim Demaille <akim@epita.fr>
18557
18558 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
18559
9c76d118
RA
185602001-08-25 Robert Anisko <robert.anisko@epita.fr>
18561
18562 * lib/Makefile.am: Adjust.
18563
a8289c62
RA
185642001-08-25 Robert Anisko <robert.anisko@epita.fr>
18565
18566 * src/bison.simple: Update and add '%%' directives.
18567
b6610515
RA
185682001-08-25 Robert Anisko <robert.anisko@epita.fr>
18569
18570 * src/reader.c (reader): Remove calls to 'output_headers' and
18571 'output_trailers'. Remove some C output.
18572 (readgram): Disable a piece of code that was writing a default
18573 definition for 'YYSTYPE'.
18574 (reader_output_yylsp): Remove.
18575 (packsymbols): Output token defintions to a macro.
18576 (copy_definition): Disable C output.
6fc74234 18577
b6610515
RA
18578 * src/reader.c (parse_macro_decl): New function used to parse macro
18579 declarations.
18580 (copy_string2): Put the body of copy_string into this new function.
18581 Add a parameter to let the caller choose whether he wants to copy the
18582 string delimiters or not.
18583 (copy_string): Be a simple call to copy_string2 with the last argument
18584 bound to true.
18585 (read_declarations): Add case for macro definition.
18586 (copy_identifier): New.
6fc74234 18587 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
18588 rather than lex.
18589
26f609ff
RA
185902001-08-25 Robert Anisko <robert.anisko@epita.fr>
18591
18592 * src/output.c (prepare): Add prefixed names.
18593 (output_parser): Output semantic actions.
18594 (output_parser): Fix bug on '%%line' directives.
6fc74234 18595
26f609ff
RA
18596 * src/output.c (output_headers): Remove. The C code printed by this
18597 function should now be in the skeletons.
18598 (output_trailers): Remove.
18599 (output): Disable call to 'reader_output_yylsp'.
18600 (output_rule_data): Do not output tables to the table obstack.
18601
18602 * src/output.c: Remove some C dedicated output.
18603 Improve the use of macro and output obstacks.
18604 (output_defines): Remove.
6fc74234 18605
26f609ff
RA
18606 * src/output.c (output_token_translations): Associate 'translate'
18607 table with a macro. No output to the table obstack.
18608 (output_gram): Same for 'rhs' and 'prhs'.
18609 (output_stos): Same for 'stos'.
18610 (output_rule_data): Same for 'r1' and 'r2'.
18611 (token_actions): Same for 'defact'.
18612 (goto_actions): Same for 'defgoto'.
18613 (output_base): Same for 'pact' and 'pgoto'.
18614 (output_table): Same for 'table'.
18615 (output_check): Same for 'check'.
6fc74234 18616
26f609ff
RA
18617 * src/output.c (output_table_data): New function.
18618 (output_short_table): Remove.
18619 (output_short_or_char_table): Remove.
6fc74234 18620
26f609ff
RA
18621 * src/output.c (output_parser): Replace most of the skeleton copy code
18622 with something new. Skeletons are now processed character by character
18623 rather than line by line, and Bison looks for '%%' macros. This is the
18624 first step in making Bison's output process (a lot) more flexible.
18625 (output_parser): Use the macro table.
18626
6f43b113
RA
186272001-08-25 Robert Anisko <robert.anisko@epita.fr>
18628
18629 * src/main.c (main): Initialize the macro table.
18630
dd3127cf
RA
186312001-08-25 Robert Anisko <robert.anisko@epita.fr>
18632
18633 * src/lex.c (percent_table): Add tok_define.
18634 * src/lex.h: Add tok_define.
18635
aa321494
RA
186362001-08-25 Robert Anisko <robert.anisko@epita.fr>
18637
18638 * src/macrotab.c: New file.
18639 * src/macrotab.h: New file.
18640 * src/Makefile.am: Update.
18641
68bd3b6b
RA
186422001-08-25 Robert Anisko <robert.anisko@epita.fr>
18643
18644 * lib/hash.c: New file.
18645 * lib/hash.h: New file.
18646 * lib/Makefile.am: Update.
18647
45f8dd1e
AD
186482001-08-15 Akim Demaille <akim@epita.fr>
18649
18650 Version 1.28c.
18651
40a64a7a 186522001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
18653
18654 * src/reader.c (readgram): Indent output macro YYSTYPE.
18655 (packsymbols): Likewise.
18656 (output_token_defines): Likewise.
18657 * src/files.c: Standardize.
18658 (compute_header_macro): New.
18659 (defines_obstack_save): New. Use compute_header_macro.
18660 (output_files): Update. Use defines_obstack_save.
18661
f9a8293a
AD
186622001-08-15 Akim Demaille <akim@epita.fr>
18663
18664 * doc/bison.texinfo (Table of Symbols): Document
18665 YYSTACK_USE_ALLOCA.
18666
150ca7a7
AD
186672001-08-15 Akim Demaille <akim@epita.fr>
18668
18669 * missing: Update from CVS Automake.
18670 * config/config.guess, config/config.sub, config/texinfo.tex:
18671 Update from gnu.org.
18672
69b5cec4
AD
186732001-08-15 Akim Demaille <akim@epita.fr>
18674
18675 * Makefile.maint: Sync with CVS Autoconf.
18676
f2b5126e
PB
186772001-08-14 Pascal Bart <pascal.bart@epita.fr>
18678
69b5cec4 18679 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
18680 `fdl.texi'.
18681 * doc/fdl.texi: Add to package.
18682
4ecbf796
MA
186832001-08-14 Marc Autret <autret_m@epita.fr>
18684
18685 Turn on %{source,header}_extension features.
18686
69b5cec4 18687 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
18688 source_extension.
18689 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 18690 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
18691 between options.
18692
95fb5662
MA
186932001-08-14 Marc Autret <autret_m@epita.fr>
18694
18695 * src/files.c (compute_base_names): Add extensions computing when
18696 `--file-prefix' used.
18697 Standardize function calls.
18698
78d09da9
MA
186992001-08-13 Marc Autret <autret_m@epita.fr>
18700
69b5cec4 18701 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
18702 defining it (defined but null disables alloca).
18703
5a009f2c
MA
187042001-08-13 Marc Autret <autret_m@epita.fr>
18705
18706 * src/bison.simple (_yy_memcpy): CPP reformat.
18707
1e41465a
PB
187082001-08-13 Pascal Bart <pascal.bart@epita.fr>
18709
18710 * tests/atconfig.in (CPPFLAGS): Fix.
18711
c67a198d
PB
187122001-08-10 Pascal Bart <pascal.bart@epita.fr>
18713
79282c6c 18714 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
18715 `gpl.texi'.
18716 * doc/gpl.texi: Add to package.
18717
09a6de7e
MA
187182001-08-10 Marc Autret <autret_m@epita.fr>
18719
18720 * src/print_graph.h: Fix.
18721 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
18722
b77b9ee0
AD
187232001-08-10 Akim Demaille <akim@epita.fr>
18724
18725 * src/system.h: Provide default declarations for stpcpy, strndup,
18726 and strnlen.
18727
3e259915
MA
187282001-08-10 Robert Anisko <anisko_r@epita.fr>
18729
18730 * doc/bison.texinfo (Locations): Update @$ stuff.
18731
ca96bc2d
MA
187322001-08-09 Robert Anisko <anisko_r@epita.fr>
18733
18734 * src/bison.simple (YYLLOC_DEFAULT): Update.
18735 (yyparse): Adjust.
18736
fdc6758b
MA
187372001-08-08 Marc Autret <autret_m@epita.fr>
18738
b77b9ee0 18739 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
18740 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
18741 Reported by Fabrice Bauzac.
957d4dbf 18742
600cad3b
MA
187432001-08-08 Marc Autret <autret_m@epita.fr>
18744
18745 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
18746 * src/vcg.c (output_node): Fix.
18747 * src/vcg.h: Cleanup.
18748 * src/print_graph.c: Add comments.
b77b9ee0 18749 (node_output_size): New global variable. Simplify the formatting of
600cad3b 18750 the VCG graph output.
b77b9ee0 18751 (print_actions): Unused code is now used. It notifies the final state
600cad3b 18752 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 18753 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
18754 blue.
18755 Get the current node name and node_obstack by argument.
18756 (node_obstack): New variable.
18757 (print_state): Manage node_obstack.
18758 (print_core): Use node_obstack given by argument.
18759 A node is not only computed here but in print_actions also.
18760 (print_graph): CPP out useless code instead of commenting it.
18761
976e528f
AD
187622001-08-07 Pascal Bart <pascal.bart@epita.fr>
18763
18764 * tests/atconfig.in (CPPFLAGS): Fix.
18765
20e8e5ca
AD
187662001-08-07 Akim Demaille <akim@epita.fr>
18767
18768 * src/print_graph.c (quote): New.
18769 (print_core): Use it.
18770
957d4dbf 187712001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 18772
3e3da797
AD
18773 * src/vcg.c (complain.h): Include it.
18774 Unepitaize `return' invocations.
c4b66126 18775 [NDEBUG] (main): Remove.
79282c6c 18776 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
18777 * src/files.c (open_files): Initialize graph_obstack.
18778 * src/print_graph.c (print_actions): CPP out useless code.
18779 (print_core): Don't output the last `\n' in labels.
18780 Use `quote'.
18781 * src/files.c (output_files): Output the VCG file.
18782 * src/main.c (main): Invoke print_graph ();
3e3da797 18783
957d4dbf 187842001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
18785
18786 Automaton VCG graph output.
18787 Using option ``-g'' or long option ``--graph'', you can generate
18788 a gram_filename.vcg file containing a VCG description of the LALR (1)
18789 automaton of your grammar.
18790
18791 * src/main.c: Call to print_graph() function.
18792 * src/getargs.h: Update.
18793 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
18794 (graph_flag): New flag.
18795 (longopts): Update.
18796 (getargs): Add case `g'.
18797 * src/files.c (graph_obstack): New obstack struct.
18798 (open_files): Initialize new obstack.
18799 (output_files): Saves graph_obstack if required.
18800 * src/files.h (graph_obstack): New extern declaration.
18801 * src/Makefile.am: Add new source files.
18802
927c1557 188032001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
18804
18805 * src/print_graph.c, src/print_graph.h (graph): New.
18806 * src/vcg.h: New file.
18807 * src/vcg.c: New file, VCG graph handling.
18808
7333d403
AD
188092001-08-06 Marc Autret <autret_m@epita.fr>
18810
18811 Add of %source_extension and %header_extension which specify
18812 the source or/and the header output file extension.
18813
18814 * src/files.c (compute_base_names): Remove initialisation of
18815 src_extension and header_extension.
18816 (compute_exts_from_gf): Update.
18817 (compute_exts_from_src): Update.
18818 (output_files): Update.
18819 * src/reader.c (parse_header_extension_decl): New.
18820 (parse_source_extension_decl): New.
18821 (read_declarations): New case statements for the new tokens.
18822 * src/lex.c (percent_table): Add entries for %source_extension
18823 and %header_extension.
18824 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
18825
84163231
AD
188262001-08-06 Marc Autret <autret_m@epita.fr>
18827
18828 * configure.in: Bump to 1.28c.
18829 * doc/bison.texinfo: Texinfo thingies.
18830
8303fc42
AD
188312001-08-04 Pascal Bart <pascal.bart@epita.fr>
18832
18833 * tests/atconfig.in (CPPFLAGS): Add.
18834 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
18835
70a84437
AD
188362001-08-03 Akim Demaille <akim@epita.fr>
18837
18838 Version 1.28b.
18839
2ce10144
AD
188402001-08-03 Akim Demaille <akim@epita.fr>
18841
18842 * tests/Makefile.am (check-local): Ship testsuite.
18843 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
18844 Include `string.h'.
18845
1e3e4bc1
AD
188462001-08-03 Akim Demaille <akim@epita.fr>
18847
18848 * configure.in: Try using -Wformat when compiling.
18849
42b45b7f
AD
188502001-08-03 Akim Demaille <akim@epita.fr>
18851
18852 * configure.in: Bump to 1.28b.
18853
8f13fe33
AD
188542001-08-03 Akim Demaille <akim@epita.fr>
18855
18856 * src/complain.c: Adjust strerror_r portability issues.
18857
b37ba92c
AD
188582001-08-03 Akim Demaille <akim@epita.fr>
18859
18860 Version 1.28a.
18861
b0ce6046
AD
188622001-08-03 Akim Demaille <akim@epita.fr>
18863
18864 * src/getargs.c, src/getarg.h (skeleton)): Constify.
18865 * src/lex.c (literalchar): Avoid name clashes on `buf'.
18866 * src/getargs.c: Include complain.h.
18867 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
18868 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
18869
d01c415b
AD
188702001-08-03 Akim Demaille <akim@epita.fr>
18871
18872 * src/reader.c (readgram): Display hidden chars in error messages.
18873
459dd1a6
AD
188742001-08-03 Akim Demaille <akim@epita.fr>
18875
18876 Update to gettext 0.10.39.
18877
53b74c0c
AD
188782001-08-03 Akim Demaille <akim@epita.fr>
18879
18880 * lib/strspn.c: New.
18881
234a3be3
AD
188822001-08-01 Marc Autret <autret_m@epita.fr>
18883
18884 * doc/bison.texinfo: Update.
18885 * doc/bison.1 (mandoc): Update.
18886 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
18887 * src/files.c: Support output files extensions computing.
18888 (src_extension): New static variable.
18889 (header_extension): New static variable.
18890 (tr): New function.
18891 (get_extension_index): New function, gets the index of an extension
18892 filename in a string.
18893 (compute_exts_from_gf): New function, computes extensions from the
18894 grammar file extension.
18895 (compute_exts_from_src): New functions, computes extensions from the
18896 C source file extension, file given by ``-o'' option.
18897 (compute_base_names): Update.
18898 (output_files): Update.
18899
847bf1f5
AD
189002001-08-01 Robert Anisko <anisko_r@epita.fr>
18901
d995fee7 18902 * doc/bison.texi: Document @$.
847bf1f5
AD
18903 (Locations): New section.
18904
d074a105
AD
189052001-07-18 Akim Demaille <akim@epita.fr>
18906
18907 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
18908 * config/prev-version.txt, config/move-if-change: New.
18909 * Makefile.am: Adjust.
18910
3419715d
AD
189112001-07-08 Pascal Bart <pascal.bart@epita.fr>
18912
18913 * src/bison.simple (yyparse): Suppress warning `comparaison
18914 between signed and unsigned'.
18915
62ab6972
AD
189162001-07-05 Pascal Bart <pascal.bart@epita.fr>
18917
18918 * src/getargs.h (raw_flag): Remove.
18919 * src/getargs.c: Die on `-r'/`--raw'.
18920 * src/lex.c (parse_percent_token): Die on `%raw'.
18921 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
18922 * tests/calc.at: Suppress test with option `--raw'.
18923
1e24cc5b
AD
189242001-07-14 Akim Demaille <akim@epita.fr>
18925
18926 * config/: New.
18927 * configure.in: Require Autoconf 2.50.
18928 Update to gettext 0.10.38.
18929
32dfccf8
AD
189302001-03-16 Akim Demaille <akim@epita.fr>
18931
18932 * doc/bison.texinfo: ANSIfy the examples.
18933
cd5bd6ac
AD
189342001-03-16 Akim Demaille <akim@epita.fr>
18935
18936 * getargs.c (skeleton): New variable.
18937 (longopts): --skeleton is a new option.
18938 (shortopts, getargs): -S is a new option.
18939 * getargs.h: Declare skeleton.
18940 * output.c (output_parser): Use it.
18941
5141b016
AD
189422001-03-16 Akim Demaille <akim@epita.fr>
18943
18944 * m4/strerror_r.m4: New.
18945 * m4/error.m4: Run AC_FUNC_STRERROR_R.
18946 * lib/error.h, lib/error.c: Update.
18947
447992b9
AD
189482001-03-16 Akim Demaille <akim@epita.fr>
18949
18950 * src/getargs.c (longopts): Clean up.
18951
274d42ce
AD
189522001-02-21 Akim Demaille <akim@epita.fr>
18953
18954 * src/reader.c (gensym): `gensym_count' is your own.
18955 Use a static buf to create the symbol name, as token_buffer is no
18956 longer a buffer.
18957
22c821f3
AD
189582001-02-08 Akim Demaille <akim@epita.fr>
18959
18960 * src/conflicts.c (conflict_report): Be sure not to append to res
18961 between two calls, which could happen if both first sprintf were
18962 skipped, but not the first cp += strlen.
18963
18569462
AD
189642001-02-08 Akim Demaille <akim@epita.fr>
18965
18966 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
18967 New, from fileutils 4.0.37.
18968 * configure.in: Require Autoconf 2.49c. I took some time before
18969 making this decision. This is the only way out for portability
18970 issues in Bison, it would mean way too much duplicate effort to
18971 import in Bison features implemented in 2.49c since 2.13.
18972 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
18973
0d8f3c8a
AD
189742001-02-02 Akim Demaille <akim@epita.fr>
18975
18976 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 18977 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 18978
f17bcd1f
AD
189792001-01-19 Akim Demaille <akim@epita.fr>
18980
18981 Get rid of the ad hoc handling of token_buffer in the scanner: use
18982 the obstacks.
18983
18984 * src/lex.c (token_obstack): New.
18985 (init_lex): Initialize it. No longer call...
18986 (grow_token_buffer): this. Remove it.
18987 Adjust all the places which used it to use the obstack.
18988
511e79b3
AD
189892001-01-19 Akim Demaille <akim@epita.fr>
18990
18991 * src/lex.h: Rename all the tokens:
18992 s/\bENDFILE\b/tok_eof/g;
18993 s/\bIDENTIFIER\b/tok_identifier/g;
18994 etc.
18995 Let them be enums, not #define, to ease debugging.
18996 Adjust all the code.
18997
0d6508ef
AD
189982001-01-18 Akim Demaille <akim@epita.fr>
18999
19000 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
19001 * src/lex.c (maxtoken, grow_token_buffer): Static.
19002
6deb4447
AD
190032001-01-18 Akim Demaille <akim@epita.fr>
19004
19005 Since we now use obstacks, more % directives can be enabled.
19006
19007 * src/lex.c (percent_table): Also accept `%yacc',
19008 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
19009 `%debug'.
19010 Handle the actions for `%semantic_parser' and `%pure_parser' here,
19011 instead of returning a token.
19012 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
19013 * src/reader.c (read_declarations): Adjust.
19014 * src/files.c (open_files): Don't call `compute_base_names', don't
19015 compute `attrsfile' since they depend upon data which might be
19016 *in* the input file now.
19017 (output_files): Do it here.
19018 * src/output.c (output_headers): Document the fact that this patch
19019 introduces a guaranteed SEGV for semantic parsers.
19020 * doc/bison.texinfo: Document them.
19021 * tests/suite.at: Exercise these %options.
19022
ff4423cc
AD
190232000-12-20 Akim Demaille <akim@epita.fr>
19024
19025 Also handle the output file (--verbose) with obstacks.
19026
19027 * files.c (foutput): Remove.
19028 (output_obstack): New.
19029 Adjust all dependencies.
19030 * src/conflicts.c: Return a string.
19031 * src/system.h (obstack_grow_string): Rename as...
19032 (obstack_sgrow): this. Be ready to work with non literals.
19033 (obstack_fgrow4): New.
19034
956dba3a
AD
190352000-12-20 Akim Demaille <akim@epita.fr>
19036
19037 * src/files.c (open_files): Fix the computation of short_base_name
19038 in the case of `-o foo.tab.c'.
19039
337bab46
AD
190402000-12-20 Akim Demaille <akim@epita.fr>
19041
19042 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
19043 (copy_dollar): Now that everything uses obstacks, get rid of the
19044 FILE * parameters.
19045
5d3214b8
AD
190462000-12-20 Akim Demaille <akim@epita.fr>
19047
19048 * src/files.c (open_files): Actually the `.output' file is based
19049 on the short_base_name, not base_name.
19050 * tests/suite.at (Checking output file names): Adjust.
19051
29092a57
AD
190522000-12-20 Akim Demaille <akim@epita.fr>
19053
19054 * src/bison.s1: Remove, we now use directly...
19055 * src/bison.simple: this.
19056 * src/Makefile.am: Use pkgdata instead of data.
19057
ea5607fd
AD
190582000-12-20 Akim Demaille <akim@epita.fr>
19059
19060 * src/files.c (guard_obstack): New.
19061 (open_files): Initialize it.
19062 (output_files): Dump it...
19063 * src/files.h: Export it.
19064 * src/reader.c (copy_guard): Use it.
19065
27110317
AD
190662000-12-19 Akim Demaille <akim@epita.fr>
19067
19068 * src/files.c (outfile, defsfile, actfile): Removed as global
19069 vars.
19070 (open_files): Don't compute them.
19071 (output_files): Adjust.
19072 (base_name, short_base_name): Be global.
19073 Adjust dependencies.
19074
19c50364
AD
190752000-12-19 Akim Demaille <akim@epita.fr>
19076
19077 * src/files.c (strsuffix): New.
19078 (stringappend): Be just like strcat but allocate.
19079 (base_names): Eve out from open_files.
19080 Try to simplify the rather hairy computation of base_name and
19081 short_base_name.
19082 (open_files): Use it.
19083 * tests/suite.at (Checking output file names): New test.
19084
573c1d9f
AD
190852000-12-19 Akim Demaille <akim@epita.fr>
19086
19087 * src/system.h (obstack_grow_literal_string): Rename as...
19088 (obstack_grow_string): this.
19089 * src/output.c (output_parser): Recognize `%% actions' instead of
19090 `$'.
19091 * src/bison.s1: s/$/%% actions/.
19092 * src/bison.hairy: Likewise.
19093
ef7ddedd
AD
190942000-12-19 Akim Demaille <akim@epita.fr>
19095
19096 * src/output.c (output_parser): Compute the `#line' lines when
19097 there are.
19098 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
19099 Suggested by Hans Aberg.
19100
ff61dabd
AD
191012000-12-19 Akim Demaille <akim@epita.fr>
19102
19103 Let the handling of the skeleton files be local to the procedures
19104 that use it.
19105
19106 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
19107 longer static.
19108 (fparser, open_extra_files): Remove.
19109 (open_files, output_files): Don't take care of fparser.
19110 * src/files.h: Adjust.
19111 * src/output.c (output_parser): Open and close the file to the
19112 skeleton.
19113 * src/reader.c (read_declarations): When %semantic_parser, open
19114 fguard.
19115
55b96341
AD
191162000-12-19 Akim Demaille <akim@epita.fr>
19117
19118 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
19119 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
19120
358c15b7
AD
191212000-12-19 Akim Demaille <akim@epita.fr>
19122
19123 * src/files.c (open_files): Yipee! We no longer need all the code
19124 looking for `/tmp' since we have no tmp file.
19125
7de3329e
AD
191262000-12-19 Akim Demaille <akim@epita.fr>
19127
19128 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
19129 New macros.
19130 * src/files.c (open_files): Less dependency on MSDOS etc.
19131
3abcd459
AD
191322000-12-14 Akim Demaille <akim@epita.fr>
19133
19134 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
19135 Provide a default definition.
19136 Use it when executing the default @ action.
19137 * src/reader.c (reader_output_yylsp): No longer include
19138 `timestamp' and `text' in the default YYLTYPE.
19139
2a91a95e
AD
191402000-12-12 Akim Demaille <akim@epita.fr>
19141
19142 * src/reader.c (copy_definition, parse_union_decl, copy_action)
19143 (copy_guard): Quote the file names.
19144 Reported by Laurent Mascherpa.
19145
14d3eb9b
AD
191462000-12-12 Akim Demaille <akim@epita.fr>
19147
19148 * src/output.c (output_headers, output_program, output): Be sure
19149 to escape special characters when outputting filenames.
19150 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
19151 (output_headers): Don't depend on them, Use ACTSTR.
19152
d7045ec6
AD
191532000-11-17 Akim Demaille <akim@epita.fr>
19154
19155 * lib/obstack.h: Formatting changes.
19156 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
19157 prevents type checking.
19158 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
19159 cast the value to (void *): assigning a `foo *' to a `void *'
19160 variable is valid.
19161 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
19162 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
19163 append characters.
19164
6fd54b73
AD
191652000-11-17 Akim Demaille <akim@epita.fr>
19166
19167 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
19168 as...
19169 (suite.m4, regression.m4, calc.m4): these.
19170 * tests/atgeneral.m4: Update from CVS Autoconf.
19171
4c50eae6
AD
191722000-11-17 Akim Demaille <akim@epita.fr>
19173
19174 * tests/regression.m4 (%union and --defines): New test,
19175 demonstrating a current bug in the obstack implementation.
19176
a35f64ea
AD
191772000-11-17 Akim Demaille <akim@epita.fr>
19178
19179 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
19180 macros.
19181 Use them to declare the variables which are global or local to
19182 `yyparse'.
19183
7de23534
AD
191842000-11-17 Akim Demaille <akim@epita.fr>
19185
19186 * acconfig.h: Remove, no longer used.
19187
aa7815f5
AD
191882000-11-07 Akim Demaille <akim@epita.fr>
19189
19190 * src: s/Copyright (C)/Copyright/g.
19191
5af1f549
AD
191922000-11-07 Akim Demaille <akim@epita.fr>
19193
19194 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
19195 defining.
19196 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
19197
553e2b22
AD
191982000-11-07 Akim Demaille <akim@epita.fr>
19199
19200 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
19201 Merge in a single CPP if/else.
19202
8a4f41d6
AD
192032000-11-07 Akim Demaille <akim@epita.fr>
19204
19205 * src/output.c (output): Remove useless variables.
19206 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
19207 argument `data' for consistency with the prototypes.
19208 Qualify it `const'.
19209 (obstack_copy, obstack_copy0): Rename the second argument as
19210 `address' for consistency. Qualify it `const'.
19211 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
19212 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
19213 `const' their input argument (`data' or `address').
19214 Adjust the corresponding macros to include `const' in casts.
19215
095a3fb5
AD
192162000-11-03 Akim Demaille <akim@epita.fr>
19217
19218 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
19219 s/PFILE1/BISON_HAIRY/.
19220 Adjust dependencies.
19221
d1cdce7c
AD
192222000-11-03 Akim Demaille <akim@epita.fr>
19223
090c5ebf 19224 For some reason, this was not applied.
d1cdce7c
AD
19225
19226 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
19227 `unlink': it's no longer used.
19228
9311529b
AD
192292000-11-03 Akim Demaille <akim@epita.fr>
19230
19231 * src/files.c (skeleton_find): New function, eved out of...
19232 (open_files, open_extra_files): here.
19233
d8880f69
AD
192342000-11-03 Akim Demaille <akim@epita.fr>
19235
19236 Don't use `atexit'.
19237
19238 * src/files.c (obstack_save): New function.
19239 (done): Rename as...
19240 (output_files): this.
19241 Use `obstack_save'.
19242 * src/main.c (main): Don't use `atexit' to register `done', since
19243 it no longer has to remove tmp files, just call `output_files'
19244 when there are no errors.
19245
0dbb648e
AD
192462000-11-02 Akim Demaille <akim@epita.fr>
19247
19248 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
19249 `unlink': it's no longer used.
19250 * src/files.h: Formatting changes.
19251
896fe5c1
AD
192522000-11-02 Akim Demaille <akim@epita.fr>
19253
19254 Remove the last uses of mktemp and unlink/delete.
19255
19256 * src/files.c (fdefines, ftable): Removed.
19257 (defines_ostack, table_obstack): New.
19258 Adjust dependencies of the former into uses of the latter.
19259 * src/output.c (output_short_or_char_table, output_short_table):
19260 Convert to using obstacks.
19261 * src/reader.c (copy_comment2): Accept one FILE * and two
19262 obstacks.
19263 (output_token_defines, reader_output_yylsp): Use obstacks.
19264 * src/system.h (obstack_fgrow3): New.
1f65350a 19265 * po/POTFILES.in: Adjust.
896fe5c1 19266
dd60faec
AD
192672000-11-01 Akim Demaille <akim@epita.fr>
19268
19269 Change each use of `fattrs' into a use of `attrs_obstack'.
19270
19271 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
19272 * src/files.c (fattrs): Remove.
19273 (attrs_obstack): New.
19274 Adjust all dependencies.
19275 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
19276
8c7ebe49
AD
192772000-11-01 Akim Demaille <akim@epita.fr>
19278
19279 Introduce obstacks.
19280 Change each use of `faction' into a use of `action_obstack'.
19281
19282 * lib/obstack.h, lib/obstack.c: New files.
19283 * src/files.c (faction): Remove.
19284 (action_obstack): New.
19285 Adjust all dependencies.
19286
77aee789
AD
192872000-10-20 Akim Demaille <akim@epita.fr>
19288
19289 * lib/quote.h (PARAMS): New macro. Use it.
19290
43591cec
AD
192912000-10-16 Akim Demaille <akim@epita.fr>
19292
19293 * src/output.c (output_short_or_char_table): New function.
19294 (output_short_table, output_token_translations): Use it.
19295 (goto_actions): Use output_short_table.
19296
1e9798d5
AD
192972000-10-16 Akim Demaille <akim@epita.fr>
19298
19299 * src/symtab.c (bucket_new): New function.
19300 (getsym): Use it.
19301
19302 * src/output.c (output_short_table): New argument to display the
19303 comment associated with the table.
19304 Adjust dependencies.
19305 (output_gram): Use it.
19306 (output_rule_data): Nicer output layout for YYTNAME.
19307
f282676b
AD
193082000-10-16 Akim Demaille <akim@epita.fr>
19309
19310 * src/lex.c (read_typename): New function.
19311 (lex): Use it.
19312 * src/reader.c (copy_dollar): Likewise.
19313
550a72a3
AD
193142000-10-16 Akim Demaille <akim@epita.fr>
19315
19316 * src/reader.c (copy_comment2): Expect the input stream to be on
19317 the `/' which is suspected to open a comment, instead of being
19318 called after `//' or `/*' was read.
19319 (copy_comment, copy_definition, parse_union_decl, copy_action)
19320 (copy_guard): Adjust.
19321
131e2fef
AD
193222000-10-16 Akim Demaille <akim@epita.fr>
19323
19324 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
19325 `read_signed_integer'.
19326
79282c5a
AD
193272000-10-16 Akim Demaille <akim@epita.fr>
19328
19329 * src/reader.c (copy_dollar): New function.
19330 (copy_guard, copy_action): Use it.
19331
ff4a34be
AD
193322000-10-16 Akim Demaille <akim@epita.fr>
19333
19334 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
19335 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
19336 New files, from Fileutils 4.0.27.
19337 * src/main.c (printable_version): Remove.
19338 * src/lex.c, src/reader.c: Use `quote'.
19339
193402000-10-04 Akim Demaille <akim@epita.fr>
19341
19342 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
19343
14ded682
AD
193442000-10-04 Akim Demaille <akim@epita.fr>
19345
19346 * doc/bison.texinfo: Various typos spotted by Neil Booth.
19347
8e03724b
AD
193482000-10-04 Akim Demaille <akim@epita.fr>
19349
19350 When a literal string is used to define two different tokens,
19351 `bison -v' segfaults.
19352 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
19353
19354 * tests/regression.m4: New file.
19355 Include the core of the sample provided by Piotr Gackiewicz.
19356 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
19357 properly.
19358
a9e64249
AD
193592000-10-04 Akim Demaille <akim@epita.fr>
19360
19361 * src/reader.c (parse_expect_decl): Keep `count' within the size
19362 of `buffer'.
19363 From Neil Booth.
19364
da9abf43
AD
193652000-10-02 Paul Eggert <eggert@twinsun.com>
19366
19367 * bison.s1 (yyparse): Assign the default value
19368 unconditionally, to avoid a GCC warning and make the parser a
19369 tad smaller.
19370
c33638bb
AD
193712000-10-02 Akim Demaille <akim@epita.fr>
19372
19373 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
19374 options.
19375
444c570a
AD
193762000-10-02 Akim Demaille <akim@epita.fr>
19377
19378 * src/derives.c, src/print.c, src/reduce.c: To ease the
19379 translation, move some `\n' out of the translated strings.
19380
89cab50d
AD
193812000-10-02 Akim Demaille <akim@epita.fr>
19382
19383 The location tracking mechanism is precious for parse error
19384 messages. Nevertheless, it is enabled only when `@n' is used in
19385 the grammar, which is a different issue (you can use it in error
19386 message, but not in the grammar per se). Therefore, there should
19387 be another means to enable it.
19388
19389 * src/getargs.c (getargs): Support `--locations'.
19390 (usage): Report it.
19391 * src/getargs.h (locationsflag): Export it.
19392 * src/lex.c (percent_table): Support `%locations'.
19393 * src/reader.c (yylsp_needed): Remove this variable, now replaced
19394 with `locationsflag'.
19395 * doc/bison.texinfo: Document `--locations' and `%locations'.
19396 Sort the options.
19397 * tests/calc.m4: Test it.
19398
19399 For regularity of the names, replace each
19400 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
19401 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
19402 In addition replace each `flag' with `_flag'.
19403
d6c2cba0
AD
194042000-10-02 Akim Demaille <akim@epita.fr>
19405
19406 Also test parse error messages, including with YYERROR_VERBOSE.
19407
19408 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
19409 associative).
19410 Use it to check the computations.
19411 Use it to check `nonassoc' is honored.
19412 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
19413 `--yyerror-verbose'.
19414 (_AT_CHECK_CALC): Adjust to this option.
19415 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
19416
5a35a6cb
AD
194172000-10-02 Akim Demaille <akim@epita.fr>
19418
19419 Test also `--verbose', `--defines' and `--name-prefix'. Testing
19420 the latter demonstrates a flaw in the handling of non debugging
19421 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
19422 was used in order to simplify:
19423
19424 #if YYDEBUG
19425 if (yydebug)
19426 {
19427 ...
19428 }
19429 #endif
19430
19431 into
19432
19433 if (yydebug)
19434 {
19435 ...
19436 }
19437
19438 unfortunately this leads to a CPP conflict when
19439 `--name-prefix=foo' is used since it produces `#define yydebug
19440 foodebug'.
19441
19442 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
19443 (YYDPRINTF): New macro.
19444 Spread its use.
19445 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
19446 the bison options.
19447 Also test `--verbose', `--defines' and `--name-prefix'.
19448
71da9eea
AD
194492000-10-02 Akim Demaille <akim@epita.fr>
19450
19451 Improve the readability of the produced parsers.
19452
19453 * src/bison.s1: Formatting changes.
19454 Improve the comment related to the `$' mark.
19455 (yydefault): Don't fall through to `yyresume': `goto' there.
19456 * src/output.c (output_parser): When the `$' is met, skip the end
19457 of its line.
19458 New variable, `number_of_dollar_signs', to check there's exactly
19459 one `$' in the parser skeleton.
19460
95e36146
AD
194612000-10-02 Akim Demaille <akim@epita.fr>
19462
19463 * lib/xstrdup.c: New file, from the fileutils.
19464 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
19465 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
19466 instead of strlen + xmalloc + strcpy.
19467 * src/symtab.c (copys): Remove, use xstrdup instead.
19468
d7020c20
AD
194692000-10-02 Akim Demaille <akim@epita.fr>
19470
19471 * src/gram.h (associativity): New enum type which replaces the
19472 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
19473 `right_assoc', `left_assoc' and `non_assoc'.
19474 Adjust all dependencies.
19475 * src/reader.c: Formatting changes.
19476 (LTYPESTR): Don't define it, use it as a literal in
19477 `reader_output_yylsp'.
19478 * src/symtab.h (symbol_class): New enum type which replaces the
19479 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
19480 `sunknown', `stoken and `snterm'.
19481
1916f98e
AD
194822000-10-02 Akim Demaille <akim@epita.fr>
19483
19484 * src/getargs.c (fixed_outfiles): Rename as...
19485 (yaccflag): for consistency and accuracy.
19486 Adjust dependencies.
19487
d7913476
AD
194882000-10-02 Akim Demaille <akim@epita.fr>
19489
19490 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
19491 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
19492 difficult and introduced a lot of core dump. It turns out that
19493 Bison used an implementation of `xmalloc' based on `calloc', and
19494 at various places it does depend upon the initialization to 0. I
19495 have not tried to isolate the pertinent places, and all the former
19496 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
19497 someone should address this issue.
19498
19499 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
19500 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
19501 files.
19502 Adjust dependencies.
19503 * src/warshall.h: New file.
19504 Propagate.
19505
340ef489
AD
195062000-10-02 Akim Demaille <akim@epita.fr>
19507
19508 Various anti-`extern in *.c' changes.
19509
19510 * src/system.h: Include `assert.h'.
19511
b2ca4022
AD
195122000-10-02 Akim Demaille <akim@epita.fr>
19513
19514 * src/state.h (nstates, final_state, first_state, first_shift)
19515 (first_reduction): Move their exportation from here...
19516 * src/LR0.h: to here.
19517 Adjust dependencies.
19518 * src/getargs.c (statisticsflag): New variable.
19519 Add support for `--statistics'.
19520 Adjust dependencies.
19521
19522 Remove a lot of now useless `extern' statements in most files.
19523
403b315b
AD
195242000-10-02 Akim Demaille <akim@epita.fr>
19525
19526 * src/LR0.h: New file.
19527 Propagate its use.
19528
07a58c13
AD
195292000-10-02 Akim Demaille <akim@epita.fr>
19530
19531 * src/print.h: New file.
19532 Propagate its use.
19533 * src/print.c: Formatting and ordering changes.
19534 (verbose, terse): Replace with...
19535 (print_results): this new function.
19536 Adjust dependencies.
19537
0619caf0
AD
195382000-10-02 Akim Demaille <akim@epita.fr>
19539
19540 * src/conflicts.c (conflict_report): New function.
19541 (conflict_log, verbose_conflict_log): Replace with...
19542 (print_conflicts): this function.
19543 Adjust dependencies.
19544 * src/conflicts.h: New file.
19545 Propagate its inclusion.
19546
3519ec76
AD
195472000-10-02 Akim Demaille <akim@epita.fr>
19548
19549 * src/nullable.h: New file.
19550 Propagate its inclusion.
19551 * src/nullable.c: Formatting changes.
19552
015acc48
AD
195532000-10-02 Akim Demaille <akim@epita.fr>
19554
19555 * src/reduce.h: New file.
19556 Propagate its inclusion.
19557 * src/reduce.c: Topological sort and other formatting changes.
19558 (bool, TRUE, FALSE): Move their definition to...
19559 * src/system.h: here.
19560
8963a27b
AD
195612000-10-02 Akim Demaille <akim@epita.fr>
19562
19563 * src/files.c: Formatting changes.
19564 (tryopen, tryclose, openfiles): Rename as...
19565 (xfopen, xfclose, open_files): this.
19566 (stringappend): static.
19567 * src/files.h: Complete the list of exported symbols.
19568 Propagate its use.
19569
a70083a3
AD
195702000-10-02 Akim Demaille <akim@epita.fr>
19571
19572 * src/reader.h: New file.
19573 Propagate its use instead of tedious list of `extern' and
19574 prototypes.
19575 * src/reader.c: Formatting changes, topological sort,
19576 s/register//.
19577
abadc117
AD
195782000-10-02 Akim Demaille <akim@epita.fr>
19579
19580 * src/lex.h: Prototype `lex.c' exported functions.
19581 * src/reader.c: Adjust.
19582 * src/lex.c: Formatting changes.
19583 (safegetc): Rename as...
19584 (xgetc): this.
19585
720d742f
AD
195862000-10-02 Akim Demaille <akim@epita.fr>
19587
19588 * src/lalr.h: New file.
19589 Propagate its inclusion instead of prototypes and `extern'.
19590 * src/lalr.c: Formatting changes, topological sorting etc.
19591
f2acea59
AD
195922000-10-02 Akim Demaille <akim@epita.fr>
19593
19594 * src/output.c (token_actions): Introduce a temporary array,
19595 YYDEFACT, that makes it possible for this function to use
19596 output_short_table.
19597
d019d655
AD
195982000-10-02 Akim Demaille <akim@epita.fr>
19599
19600 `user_toknums' is output as a `short[]' in `output.c', while it is
19601 defined as a `int[]' in `reader.c'. For consistency with the
19602 other output tables, `user_toknums' is now defined as a table of
19603 shorts.
19604
19605 * src/reader.c (user_toknums): Be a short table instead of an int
19606 table.
19607 Adjust dependencies.
19608
19609 Factor the short table outputs.
19610
19611 * src/output.c (output_short_table): New function.
19612 * src/output.c (output_gram, output_stos, output_rule_data)
19613 (output_base, output_table, output_check): Use it.
19614
6c89f1c1
AD
196152000-10-02 Akim Demaille <akim@epita.fr>
19616
19617 * src/output.c (output): Topological sort of the functions, in
19618 order to get rid of the `static' prototypes.
19619 No longer use `register'.
19620 * src/output.h: New file.
19621 Propagate its inclusion in files explicitly prototyping functions
19622 from output.c.
19623
d9efd181
AD
196242000-09-21 Akim Demaille <akim@epita.fr>
19625
19626 * src/atgeneral.m4: Update from Autoconf.
19627
c29240e7 196282000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
19629
19630 * src/closure.h: New file.
19631 * src/closure.c: Formatting changes, topological sort over the
19632 functions, use of closure.h.
19633 (initialize_closure, finalize_closure): Rename as...
19634 (new_closure, free_closure): these. Adjust dependencies.
19635 * src/LR0.c: Formatting changes, topological sort, use of
19636 cloture.h.
19637 (initialize_states): Rename as...
19638 (new_states): this.
19639 * src/Makefile.am (noinst_HEADERS): Adjust.
19640
499daa50
AD
196412000-09-20 Akim Demaille <akim@epita.fr>
19642
19643 * src/acconfig.h: Don't protect config.h against multiple
19644 inclusion.
19645 Don't define PARAMS.
19646 * src/system.h: Define PARAMS.
19647 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
19648 purpose of config.h. system.h must not try to fix wrong
19649 definitions in config.h.
19650
cc84fd5d
AD
196512000-09-20 Akim Demaille <akim@epita.fr>
19652
19653 * src/derives.h: New file.
19654 * src/main.c, src/derives.h: Use it.
19655 Formatting changes.
19656 * src/Makefile.am (noinst_HEADERS): Adjust.
19657
db5b3a89
AD
196582000-09-20 Akim Demaille <akim@epita.fr>
19659
19660 * tests/atgeneral.m4: Update from Autoconf.
19661 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
19662 (AT_CHECK_CALC): New macros.
19663 Use these macros to test bison with options `', `--raw',
19664 `--debug', `--yacc', `--yacc --debug'.
19665
ceed8467
AD
196662000-09-19 Akim Demaille <akim@epita.fr>
19667
19668 * src/output.c: Formatting changes.
19669 * src/machine.h: Remove, leaving its contents in...
19670 * src/system.h: here.
19671 Include stdio.h.
19672 Adjust all dependencies on stdio.h and machine.h.
19673 * src/getargs.h: New file.
19674 Let all `extern' declarations about getargs.c be replaced with
19675 inclusion of `getargs.h'.
19676 * src/Makefile.am (noinst_HEADERS): Adjust.
19677
19678 * tests/calc.m4 (yyin): Be initialized in main, not on the global
19679 scope.
19680 (yyerror): Returns void, not int.
19681 * doc/bison.texinfo: Formatting changes.
19682
05a1d24b
AD
196832000-09-19 Akim Demaille <akim@epita.fr>
19684
19685 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
19686 portable.
19687
cbd25751
AD
196882000-09-18 Akim Demaille <akim@epita.fr>
19689
19690 * configure.in: Append WARNING_CFLAGS to CFLAGS.
19691 * src/Makefile.am (INCLUDES): Don't.
19692 Be ready to fetch headers in lib/.
19693
13863333
AD
196942000-09-18 Akim Demaille <akim@epita.fr>
19695
19696 * doc/bison.texinfo: Update the copyright.
19697 ANSIfy and GNUify the examples.
19698 Remove the old menu.
19699
0d533154
AD
197002000-09-18 Akim Demaille <akim@epita.fr>
19701
19702 First set of tests: use the `calc' example from the documentation.
19703
19704 * src/bison.s1 (yyparse): Condition the code using `yytname' which
19705 is defined only when YYDEBUG is.
19706 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
19707 * src/files.c (tryopen, tryclose): Formatting changes.
19708 Move to the top and be static.
19709 * src/reader.c (read_signed_integer): Likewise.
19710 * tests/calc.m4: New file.
19711 * Makefile.am, suite.m4: Adjust.
19712 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
19713
e79137ac
AD
197142000-09-18 Akim Demaille <akim@epita.fr>
19715
19716 Add support for an Autotest test suite for Bison.
19717
19718 * m4/m4.m4, m4/atconfig.m4: New files.
19719 * m4/Makefile.am (EXTRA_DIST): Adjust.
19720 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
19721 files.
19722 * src/getargs.c: Display a more standard --version message.
19723 * src/reader.c (reader): Formatting changes.
19724 No longer depend upon VERSION_STRING.
19725 * configure.in: No longer use `dnl'.
19726 Set up the test suite and the new directory `tests/.
19727 (VERSION_STRING): Remove.
19728
27821bff
AD
197292000-04-14 Akim Demaille <akim@epita.fr>
19730
19731 * src/reader.c (copy_comment2): New function, same as former
19732 `copy_comment', but outputs into two FILE *.
19733 (copy_comment): Use it.
19734 (parse_union_decl): Use it.
19735 (get_type, parse_start_decl): Use the same `invalid' message.
19736 (parse_start_decl, parse_union_decl): Use the same `multiple'
19737 message.
19738 (parse_union_decl, copy_guard, copy_action): Use the same
19739 `unmatched' message.
19740 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
19741
cfe5fbc0
AD
197422000-03-31 Akim Demaille <akim@epita.fr>
19743
19744 * src/files.c (tryopen, tryclose): Move to the top.
19745 Be static.
19746
cb7db13e
AD
197472000-03-31 Akim Demaille <akim@epita.fr>
19748
19749 * src/main.c (main): Don't call `done', exit does it.
19750
a0f6b076
AD
197512000-03-31 Akim Demaille <akim@epita.fr>
19752
36281465
AD
19753 * allocate.c: s/return (foo)/return foo/.
19754 * lalr.c: Likewise.
19755 * LR0.c: Likewise.
19756 * output.c: Likewise.
19757 * reader.c: Likewise.
19758 * symtab.c: Likewise.
19759 * vmsgetargs.c: Likewise.
19760
197612000-03-31 Akim Demaille <akim@epita.fr>
19762
19763 Clean up the error reporting functions.
a0f6b076
AD
19764
19765 * src/report.c: New file.
19766 * src/report.h: Likewise.
19767 * src/Makefile.am: Adjust.
19768 * m4/error.m4: New file.
19769 * m4/Makefile.am: Adjust.
19770 * configure.in (jm_PREREQ_ERROR): Call it.
19771 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
19772 Remove.
19773 (fatal, fatals): Remove. All callers use complain.c::fatal.
19774 (warn, warni, warns, warnss, warnss): Remove. All callers use
19775 complain.c::complain.
19776 (toomany): Remove, use fatal instead.
19777 * src/files.c (done): No argument, use complain_message_count.
19778 * src/main.c (main): Register `done' to `atexit'.
19779
19780 * src/getargs.c (usage): More `fputs', less `fprintf'.
19781
18539825
AD
197822000-03-28 Akim Demaille <akim@epita.fr>
19783
19784 * lib/: New directory.
19785 * Makefile.am (SUBDIRS): Adjust.
19786 * configure.in: Adjust.
19787 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
19788 useless.
19789 * src/alloca.c: Moved to lib/.
19790 * src/getopt.c: Likewise.
19791 * src/getopt1.c: Likewise.
19792 * src/getopt.h: Likewise.
19793 * src/ansi2knr.c: Likewise.
19794 * src/ansi2knr.1: Likewise.
19795 * src/Makefile.am: Adjust.
19796 * lib/Makefile.am: New file.
19797
9f306f2a
AD
197982000-03-28 Akim Demaille <akim@epita.fr>
19799
19800 * src/getargs.c (usage): Refresh the help message.
19801
0ba347b6
AD
198022000-03-17 Akim Demaille <akim@epita.fr>
19803
19804 * src/getopt1.c: Updated from textutils 2.0e
19805 * src/getopt.c: Likewise.
19806 * src/getopt.h: Likewise.
19807
dbe7f271
AD
198082000-03-17 Akim Demaille <akim@epita.fr>
19809
19810 * src/Makefile.am (bison.simple): Fix the awk program: quote only
19811 the file name, not the whole `#line LINE FILE'.
19812
75bbe78d
AD
198132000-03-17 Akim Demaille <akim@epita.fr>
19814
19815 On syntax errors, report the token on which we choked.
19816
aa5fd0ee
AD
19817 * src/bison.s1 (yyparse): In the label yyerrlab, when
19818 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 19819
7b306f52
AD
198202000-03-17 Akim Demaille <akim@epita.fr>
19821
aa5fd0ee 19822 * src/reader.c (copy_at): New function.
7b306f52
AD
19823 (copy_guard): Use it.
19824 (copy_action): Use it.
19825
e87b5700
AD
198262000-03-17 Akim Demaille <akim@epita.fr>
19827
19828 Be kind to translators, save some useless translations.
19829
aa5fd0ee 19830 * src/main.c (banner): New function.
e87b5700
AD
19831 (fatal_banner): Use it.
19832 (warn_banner): Use it.
19833
ae3c3164
AD
198342000-03-17 Akim Demaille <akim@epita.fr>
19835
aa5fd0ee
AD
19836 * src/reader.c (copy_definition): Use copy_string and
19837 copy_comment. Removed now unused `match', `ended',
19838 `cplus_comment'.
ae3c3164
AD
19839 (copy_comment, copy_string): Moved, to be visible from
19840 copy_definition.
19841
4dc58e7c
AD
198422000-03-17 Akim Demaille <akim@epita.fr>
19843
aa5fd0ee
AD
19844 * src/reader.c (copy_string): Declare `static inline'. No
19845 problems with inline, since it is checked by configure.
4dc58e7c
AD
19846 (copy_comment): Likewise.
19847
0a6384c4
AD
198482000-03-17 Akim Demaille <akim@epita.fr>
19849
aa5fd0ee 19850 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 19851
3cef001a
AD
198522000-03-17 Akim Demaille <akim@epita.fr>
19853
aa5fd0ee 19854 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
19855 (copy_action): Use it. Removed now unused `match', `ended',
19856 `cplus_comment'.
19857 (copy_guard): Likewise.
19858
ca36d2ef
AD
198592000-03-17 Akim Demaille <akim@epita.fr>
19860
aa5fd0ee 19861 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
19862 (copy_action): Use it.
19863 (copy_guard): Likewise.
19864
6666f98f
AD
198652000-03-17 Akim Demaille <akim@epita.fr>
19866
19867 Change the handling of @s so that they behave exactly like $s.
19868 There is now a pseudo variable @$ (readble and writable), location
19869 of the lhs of the rule (by default ranging from the location of
19870 the first symbol of the rhs, to the location of the last symbol,
19871 or, if the rhs is empty, YYLLOC).
19872
19873 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
19874 yyval.
19875 (yyparse): When providing a default semantic action, provide a
19876 default location action.
19877 (after the $): No longer change `*YYLSP', just stack YYLOC the
19878 same way you stack YYVAL.
19879 * src/reader.c (read_declarations): Use warns.
19880 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
19881 (copy_action, case '@'): Likewise.
19882 Use a standard error message, to save useless work from
19883 translators.
19884
41aca2e0
AD
198852000-03-17 Akim Demaille <akim@epita.fr>
19886
aa5fd0ee
AD
19887 * src/bison.s1: Formatting and cosmetics changes.
19888 * src/reader.c: Likewise.
41aca2e0
AD
19889 Update the Copyright notice.
19890
dc08c1d5
AD
198912000-03-17 Akim Demaille <akim@epita.fr>
19892
aa5fd0ee
AD
19893 * src/bison.s1 (#line): All set to `#line' only, since the
19894 Makefile now handles them.
dc08c1d5 19895
9ee3c97b
AD
198962000-03-16 Akim Demaille <akim@epita.fr>
19897
19898 * src/output.c (output_rule_data): Output the documentation of
19899 some of the tables.
19900 (Copyright notice): Update.
19901 Formatting changes.
19902
0de741ca
AD
199032000-03-16 Akim Demaille <akim@epita.fr>
19904
19905 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
19906 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
19907 One `#if YYDEBUG' remains, since it uses variables which are
19908 defined only if `YYDEBUG != 0'.
19909
bb10be54
AD
199102000-03-16 Akim Demaille <akim@epita.fr>
19911
19912 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
19913 and related variables so that the similarities are highlighted.
19914
b07b484a
AD
199152000-03-16 Akim Demaille <akim@epita.fr>
19916
19917 * src/bison.s1: Properly indent CPP directives.
19918
361f60b3
AD
199192000-03-16 Akim Demaille <akim@epita.fr>
19920
19921 * src/bison.s1: Properly indent the `alloca' CPP section.
19922
8c44d3ec
AD
199232000-03-16 Akim Demaille <akim@epita.fr>
19924
19925 Do not hard code values of directories in `configure.in'.
19926 Update the `configure' tool chain.
19927
19928 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
19929 src/makefile.am.
19930 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
19931 (AC_OUTPUT): Add m4/Makefile.
19932 Bump to bison 1.28a, 1.29 has never been released.
19933 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
19934 handled via src/Makefile.am.
19935 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
19936 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
19937 autoheader.
19938 * Makefile.am (SUBDIRS): Add m4.
19939 (ACLOCAL_AM_FLAGS): New variable.
19940 (AUTOMAKE_OPTIONS): Add check-news.
19941 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
19942 the proper line number and file name.
19943 (DEFS): Propagate the location of bison library files and of the
19944 locale files.
19945 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
19946 builddir.
19947 * acinclude.m4: Remove, replaced by the directory m4.
19948 * m4/Makefile.am (EXTRA_DIST): New variable.
19949 * m4/gettext.m4: New file, from the fileutils.
19950 * m4/lcmessage.m4: Likewise
19951 * m4/progtest.m4: Likewise.
19952 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
19953
f95997e7
AD
199542000-03-10 Akim Demaille <akim@epita.fr>
19955
19956 * src/closure.c:
19957 Formatting changes of various comments.
19958 Respect the GNU coding standards at various places.
19959 Don't use `_()' when no translation is needed.
19960
199611999-12-13 Jesse Thilo <jthilo@gnu.org>
19962
19963 * src/files.c:
19964 OS/2 honors TMPDIR environment variable.
19965
199661999-12-13 Jesse Thilo <jthilo@gnu.org>
19967
19968 * doc/bison.texinfo: Tweaked spelling and grammar.
19969 Updated ISBN.
19970 Removed reference to price of printed copy.
19971 Mention BISON_SIMPLE and BISON_HAIRY.
19972
199731999-12-13 Jesse Thilo <jthilo@gnu.org>
19974
19975 * configure.in, NEWS:
19976 Bison 1.29 released.
19977
199781999-10-27 Jesse Thilo <jthilo@gnu.org>
19979
19980 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
19981 Added reference card.
19982
199831999-07-26 Jesse Thilo <jthilo@gnu.org>
19984
19985 * po/ru.po: Added Russian translation.
19986
199871999-07-26 Jesse Thilo <jthilo@gnu.org>
19988
19989 * configure.in: Added Russian translation.
19990
199911999-07-06 Jesse Thilo <jthilo@gnu.org>
19992
19993 * configure.in, NEWS, README:
19994 Released version 1.28.
19995
199961999-06-14 Jesse Thilo <jthilo@gnu.org>
19997
19998 * src/system.h:
19999 Squashed redefinition warning on some systems.
20000
20001 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
20002 Have configure build version string instead of relying on ANSI string
20003 concatentation.
20004
200051999-06-14 Jesse Thilo <jthilo@gnu.org>
20006
20007 * po/POTFILES.in: Got rid of version.c.
20008
200091999-06-14 Jesse Thilo <jthilo@gnu.org>
20010
20011 * acconfig.h, configure.in:
20012 Have configure build version string instead of relying on ANSI string
20013 concatentation.
20014
200151999-06-08 Jesse Thilo <jthilo@gnu.org>
20016
20017 * doc/bison.1:
20018 Dropped mention of `+' for long-named options.
20019
200201999-05-30 Jesse Thilo <jthilo@gnu.org>
20021
20022 * src/files.c: Added <unistd.h> for unlink().
20023
20024 * src/Makefile.am, src/system.h:
20025 I18n fixes.
20026
200271999-05-30 Jesse Thilo <jthilo@gnu.org>
20028
20029 * README: Added a FAQ list.
20030
20031 * configure.in, acconfig.h:
20032 I18n fixes.
20033
200341999-05-30 Jesse Thilo <jthilo@gnu.org>
20035
20036 * doc/FAQ, doc/Makefile.am:
20037 Added a FAQ list.
20038
200391999-05-19 Jesse Thilo <jthilo@gnu.org>
20040
20041 * src/alloc.h, src/symtab.h, src/version.c:
20042 Protected inclusion of "config.h" with HAVE_CONFIG_H.
20043
200441999-04-18 Jesse Thilo <jthilo@gnu.org>
20045
20046 * src/.cvsignore, src/Makefile.am:
20047 Reorganized: sources in `src', documentation in `doc'.
20048
20049 * src/lex.c (literalchar):
20050 fixed the code for escaping double quotes (thanks
20051 Jonathan Czisny.)
20052
200531999-04-18 Jesse Thilo <jthilo@gnu.org>
20054
20055 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
20056 Adjusted paths to reflect directory reorganization.
20057
200581999-04-18 Jesse Thilo <jthilo@gnu.org>
20059
20060 * doc/.cvsignore, doc/Makefile.am:
20061 Reorganized: sources in `src', documentation in `doc'.
20062
200631999-04-18 Jesse Thilo <jthilo@gnu.org>
20064
20065 * configure.in:
20066 Updated AC_INIT file to reflect directory reorganization.
20067
20068 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
20069 Reorganized: sources in `src', documentation in `doc'.
20070
200711999-04-13 Jesse Thilo <jthilo@gnu.org>
20072
20073 * src/allocate.c:
20074 Don't declare calloc() and realloc() if not necessary.
20075
200761999-04-13 Jesse Thilo <jthilo@gnu.org>
20077
20078 * configure.in, acconfig.h, acinclude.m4:
20079 Don't declare calloc() and realloc() if not necessary.
20080
200811999-03-23 Jesse Thilo <jthilo@gnu.org>
20082
20083 * po/.cvsignore: Added i18n support.
20084
200851999-03-23 Jesse Thilo <jthilo@gnu.org>
20086
20087 * acconfig.h, configure.in, Makefile.am:
20088 Added i18n support.
20089
200901999-03-22 Jesse Thilo <jthilo@gnu.org>
20091
20092 * src/bison.s1: Fixed #line numbers.
20093
200941999-03-15 Jesse Thilo <jthilo@gnu.org>
20095
20096 * po/es.po, po/fr.po, po/nl.po, po/de.po:
20097 Added PO files from Translation Project.
20098
200991999-03-03 Jesse Thilo <jthilo@gnu.org>
20100
20101 * Makefile.am:
20102 Added support for non-ANSI compilers (ansi2knr).
20103
201041999-02-16 Jesse Thilo <jthilo@gnu.org>
20105
20106 * configure.in: Bumped version number to 1.27.
20107
20108 * Makefile.am:
20109 Added `bison.simple' to list of files removed by `make distclean'.
20110
201111999-02-12 Jesse Thilo <jthilo@gnu.org>
20112
20113 * src/files.c, src/files.h:
20114 Defined locations of parser files in config.h instead of Makefile.
20115
201161999-02-12 Jesse Thilo <jthilo@gnu.org>
20117
20118 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
20119 Defined locations of parser files in config.h instead of Makefile.
20120
201211999-02-09 Jesse Thilo <jthilo@gnu.org>
20122
20123 * Makefile.am:
20124 Removed inappropriate use of $< macro.
20125
201261999-02-05 Jesse Thilo <jthilo@gnu.org>
20127
20128 * po/Makefile.in.in, po/POTFILES.in:
20129 Add `po' directory skeleton.
20130
201311999-01-27 Jesse Thilo <jthilo@gnu.org>
20132
20133 * README: Document help-bison list.
20134
20135 * configure.in: Add check for mkstemp().
20136
201371999-01-20 Jesse Thilo <jthilo@gnu.org>
20138
20139 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
20140 Hush a few compiler warnings.
20141
20142 * src/files.c:
20143 Add tryclose(), which verifies that fclose was successful.
20144 Hush a couple of compiler warnings.
20145
201461999-01-20 Jesse Thilo <jthilo@gnu.org>
20147
20148 * Makefile.am, OChangeLog:
20149 ChangeLog is now automatically generated. Include the old version as
20150 OChangeLog.
20151
201521999-01-14 Jesse Thilo <jthilo@gnu.org>
20153
20154 * 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:
20155 Update FSF address.
20156
201571999-01-14 Jesse Thilo <jthilo@gnu.org>
20158
20159 * doc/bison.texinfo: Fix formatting glitch.
20160
20161 * doc/bison.texinfo: Update FSF address.
20162
201631999-01-14 Jesse Thilo <jthilo@gnu.org>
20164
20165 * acconfig.h: Update FSF address.
20166
201671999-01-08 Jesse Thilo <jthilo@gnu.org>
20168
20169 * src/system.h:
20170 Don't define PACKAGE here, since config.h defines it.
20171
201721998-12-30 Jesse Thilo <jthilo@gnu.org>
20173
20174 * src/reader.c: Update copyright date.
20175
20176 * src/main.c:
20177 Ditch sprintf to statically-sized buffers in fatal/warn functions in
20178 favor of output directly to stderr (avoids buffer overruns).
20179
20180 * src/reader.c: Some checks for premature EOF.
20181
20182 * 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:
20183 Use prototypes if the compiler understands them.
20184
20185 * src/files.c: Honor TMPDIR on Unix hosts.
20186 Use prototypes if the compiler understands them.
20187
20188 * src/reader.c:
20189 Fix a couple of buffer overrun bugs.
20190 Use prototypes if the compiler understands them.
20191
20192 * src/system.h: Include unistd.h and ctype.h.
20193 Use #ifdef instead of #if for NLS symbols.
20194
201951998-12-30 Jesse Thilo <jthilo@gnu.org>
20196
20197 * doc/bison.texinfo:
20198 Delete comment "consider using @set for edition number, etc..." since
20199 we now are doing so.
20200
202011998-12-30 Jesse Thilo <jthilo@gnu.org>
20202
20203 * configure.in:
20204 Use prototypes if the compiler understands them.
20205
20206 * NEWS: Document 1.26 highlights.
20207
20208 * Makefile.am: Require Automake 1.3 or later.
20209
20210 * acconfig.h:
20211 Use prototypes if the compiler understands them.
20212
202131998-12-29 Jesse Thilo <jthilo@gnu.org>
20214
20215 * src/version.c:
20216 Use VERSION symbol from automake for version number.
20217
202181998-12-29 Jesse Thilo <jthilo@gnu.org>
20219
20220 * acconfig.h, configure.in, version.cin:
20221 Use VERSION symbol from automake for version number.
20222
202231998-11-28 Jesse Thilo <jthilo@gnu.org>
20224
20225 * Makefile.am:
20226 Distribute original version of simple parser (bison.s1), not built
20227 version (bison.simple).
20228
202291998-11-28 Jesse Thilo <jthilo@gnu.org>
20230
20231 * doc/bison.texinfo: Add info dir entry.
20232
20233 * doc/bison.texinfo:
20234 Let automake put version number into documentation.
20235
202361998-11-26 Jesse Thilo <jthilo@gnu.org>
20237
20238 * src/bison.cld, src/build.com, src/vmshlp.mar:
20239 Add non-RCS files from /gd/gnu/bison.
20240
202411998-11-26 Jesse Thilo <jthilo@gnu.org>
20242
20243 * doc/bison.1:
20244 Document the BISON_HAIRY and BISON_SIMPLE variables.
20245
202461998-11-25 Jesse Thilo <jthilo@gnu.org>
20247
20248 * src/version.c: Build version.c automatically.
20249
20250 * src/reader.c:
20251 Fix token numbering (used to start at 258, not 257).
20252
20253 * src/system.h: Include config.h.
20254
20255 * src/getargs.c: Update bug report address.
20256
20257 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
20258 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
20259
202601998-11-25 Jesse Thilo <jthilo@gnu.org>
20261
20262 * Makefile.am:
20263 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
20264
20265 * configure.in, version.cin:
20266 Build version.c automatically.
20267
20268 * AUTHORS: Add AUTHORS file.
20269
20270 * README: Update bug report address.
20271
20272 * bison.simple:
20273 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
20274
20275 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
20276 Add automake stuff.
20277
202781998-11-25 Jesse Thilo <jthilo@gnu.org>
20279
20280 * doc/bison.texinfo: Clean up some formatting.
20281
202821998-05-05 Richard Stallman <rms@gnu.org>
20283
20284 * doc/bison.texinfo:
20285 Explain better why to make a pure parser.
20286
202871998-01-05 Richard Stallman <rms@gnu.org>
20288
20289 * src/files.c (openfiles):
20290 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
20291 find a temporary directory, if possible. Do not unlink files while
20292 they are open.
20293
202941997-08-25 Richard Stallman <rms@gnu.org>
20295
20296 * src/reader.c (stack_offset;):
20297 Change some warni to warns.
20298
20299 * src/lex.c (literalchar): Use warns, not warni.
20300
203011997-06-28 Richard Stallman <rms@gnu.org>
20302
20303 * src/bison.s1: Add a Bison version comment.
20304
20305 * src/main.c (fatal, warn, berror):
20306 Use program_name.
20307
203081997-06-28 Richard Stallman <rms@gnu.org>
20309
20310 * Makefile.in (bison_version): New variable.
20311 (dist): Use that variable.
20312 (bison.s1): Substitute the Bison version into bison.simple.
20313
20314 * bison.simple: Add a Bison version comment.
20315
203161997-06-18 Richard Stallman <rms@gnu.org>
20317
20318 * src/main.c (fatal, warn, berror):
20319 Make error messages standard.
20320 (toomany): Improve error message text.
20321
20322 * 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:
20323 new.h renamed to alloc.h.
20324
203251997-06-18 Richard Stallman <rms@gnu.org>
20326
20327 * Makefile.in: new.h renamed to alloc.h.
20328
203291997-05-24 Richard Stallman <rms@gnu.org>
20330
20331 * src/lex.c (literalchar):
20332 Fix the code for escaping \, " and '.
20333
20334 (lex): Avoid trouble when there are many chars
20335 to discard in a char literal with just several chars in it.
20336
203371997-05-17 Richard Stallman <rms@gnu.org>
20338
20339 * src/bison.s1:
20340 Use malloc, if using alloca is troublesome.
20341 (YYSTACK_USE_ALLOCA): New flag macro.
20342 Define it for some systems and compilers.
20343 (YYSTACK_ALLOC): New macro.
20344 (yyparse): Use YYSTACK_ALLOC to allocate stack.
20345 If it was malloc'd, free it.
20346
203471997-05-17 Richard Stallman <rms@gnu.org>
20348
20349 * bison.simple:
20350 Use malloc, if using alloca is troublesome.
20351 (YYSTACK_USE_ALLOCA): New flag macro.
20352 Define it for some systems and compilers.
20353 (YYSTACK_ALLOC): New macro.
20354 (yyparse): Use YYSTACK_ALLOC to allocate stack.
20355 If it was malloc'd, free it.
20356
203571997-04-23 Richard Stallman <rms@gnu.org>
20358
20359 * src/bison.s1:
20360 (alloca) [__hpux]: Always define as __builtin_alloca.
20361
203621997-04-23 Richard Stallman <rms@gnu.org>
20363
20364 * bison.simple:
20365 (alloca) [__hpux]: Always define as __builtin_alloca.
20366
203671997-04-22 Richard Stallman <rms@gnu.org>
20368
20369 * src/bison.s1:
20370 [__hpux]: Include alloca.h (right for HPUX 10)
20371 instead of declaring alloca (right for HPUX 9).
20372
20373 * src/bison.s1 (__yy_memcpy):
20374 Declare arg `count' as unsigned int.
20375 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
20376
203771997-04-22 Richard Stallman <rms@gnu.org>
20378
20379 * bison.simple:
20380 [__hpux]: Include alloca.h (right for HPUX 10)
20381 instead of declaring alloca (right for HPUX 9).
20382
20383 * bison.simple (__yy_memcpy):
20384 Declare arg `count' as unsigned int.
20385 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
20386
203871997-01-03 Richard Stallman <rms@gnu.org>
20388
20389 * src/allocate.c: [__STDC__ or _MSC_VER]:
20390 Declare calloc and realloc to return void *.
20391
203921997-01-02 Richard Stallman <rms@gnu.org>
20393
20394 * src/system.h:
20395 [_MSC_VER]: Include stdlib.h and process.h.
20396 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
20397
20398 * src/main.c (main): Return FAILURE as a value.
20399 (printable_version): Declare arg as int, not char.
20400
204011997-01-02 Richard Stallman <rms@gnu.org>
20402
20403 * Makefile.in (dist):
20404 Explicitly check for symlinks, and copy them.
20405
204061996-12-19 Richard Stallman <rms@gnu.org>
20407
20408 * src/files.c:
20409 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
20410
204111996-12-18 Paul Eggert <eggert@gnu.org>
20412
20413 * src/bison.s1 (yyparse):
20414 If __GNUC__ and YYPARSE_PARAM are both defined,
20415 declare yyparse to have a void * argument.
20416
204171996-12-18 Paul Eggert <eggert@gnu.org>
20418
20419 * bison.simple (yyparse):
20420 If __GNUC__ and YYPARSE_PARAM are both defined,
20421 declare yyparse to have a void * argument.
20422
204231996-12-17 Richard Stallman <rms@gnu.org>
20424
20425 * src/reduce.c (nbits): Add some casts.
20426
204271996-08-12 Richard Stallman <rms@gnu.org>
20428
20429 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
20430
204311996-08-12 Richard Stallman <rms@gnu.org>
20432
20433 * bison.simple: Test _MSDOS as well as _MSDOS_.
20434
204351996-07-31 Richard Stallman <rms@gnu.org>
20436
20437 * src/bison.s1:
20438 [__sun && __i386]: Include alloca.h.
20439
204401996-07-31 Richard Stallman <rms@gnu.org>
20441
20442 * bison.simple:
20443 [__sun && __i386]: Include alloca.h.
20444
204451996-07-30 Richard Stallman <rms@gnu.org>
20446
20447 * src/bison.s1: Comment change.
20448
20449 * src/bison.s1: Test _MSDOS_, not MSDOS.
20450
204511996-07-30 Richard Stallman <rms@gnu.org>
20452
20453 * bison.simple: Comment change.
20454
20455 * bison.simple: Test _MSDOS_, not MSDOS.
20456
204571996-06-01 Richard Stallman <rms@gnu.org>
20458
20459 * 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:
20460 Insert `_' macro around many string constants.
20461
20462 * src/main.c:
20463 Insert `_' macro around many string constants.
20464
20465 (main): Call setlocale, bindtextdomain and textdomain.
20466
20467 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
20468 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
20469 [ENABLE_NLS]: Include libintl.h.
20470 [ENABLE_NLS] (gettext): Define.
20471 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
20472 (N_, PACKAGE, LOCALEDIR): New macros.
20473
204741996-06-01 Richard Stallman <rms@gnu.org>
20475
20476 * POTFILES.in: New file.
20477
20478 * Makefile.in (allocate.o):
20479 Define target explicitly.
20480
20481 * Makefile.in (CFLAGS): Set to @CFLAGS@.
20482 (LDFLAGS): Set to @LDFLAGS@.
20483 (configure): Run autoconf only if preceding `cd' succeeds.
20484 (bison.s1): Redirect output to temporary file then move the
20485 temporary to the target, rather than redirecting directly to bison.s1.
20486 (clean): Remove config.status and config.log.
20487 (distclean): Don't remove config.status here.
20488
204891996-05-12 Richard Stallman <rms@gnu.org>
20490
20491 * src/bison.s1:
20492 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
20493
204941996-05-12 Richard Stallman <rms@gnu.org>
20495
20496 * bison.simple:
20497 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
20498
204991996-05-11 Richard Stallman <rms@gnu.org>
20500
20501 * src/bison.s1 (__yy_memcpy):
20502 Really reorder the args, as was supposedly done on Feb 14 1995.
20503 (yyparse): Calls changed accordingly.
20504
205051996-05-11 Richard Stallman <rms@gnu.org>
20506
20507 * Makefile.in (dist): Don't use $(srcdir).
20508
20509 * bison.simple (__yy_memcpy):
20510 Really reorder the args, as was supposedly done on Feb 14 1995.
20511 (yyparse): Calls changed accordingly.
20512
205131996-01-27 Richard Stallman <rms@gnu.org>
20514
20515 * src/output.c (output_rule_data):
20516 Test YYERROR_VERBOSE in the conditional
20517 around the definition of ttyname.
20518
205191995-12-29 Richard Stallman <rms@gnu.org>
20520
20521 * src/bison.s1:
20522 Fix line numbers in #line commands.
20523
205241995-12-29 Richard Stallman <rms@gnu.org>
20525
20526 * bison.simple:
20527 Fix line numbers in #line commands.
20528
205291995-12-27 Richard Stallman <rms@gnu.org>
20530
20531 * src/bison.s1 (YYPARSE_PARAM_DECL):
20532 In C++, make it always null.
20533 (YYPARSE_PARAM_ARG): New macro.
20534 (yyparse): Use YYPARSE_PARAM_ARG.
20535
205361995-12-27 Richard Stallman <rms@gnu.org>
20537
20538 * bison.simple (YYPARSE_PARAM_DECL):
20539 In C++, make it always null.
20540 (YYPARSE_PARAM_ARG): New macro.
20541 (yyparse): Use YYPARSE_PARAM_ARG.
20542
205431995-11-29 Richard Stallman <rms@gnu.org>
20544
20545 * doc/bison.texinfo:
20546 Describe literal string tokens, %raw, %no_lines, %token_table.
20547
205481995-11-29 Daniel Hagerty <hag@gnu.org>
20549
20550 * doc/bison.texinfo: Fixed update date
20551
205521995-10-16 Richard Stallman <rms@gnu.org>
20553
20554 * src/version.c: Version 1.25.
20555
205561995-10-16 Richard Stallman <rms@gnu.org>
20557
20558 * NEWS: *** empty log message ***
20559
205601995-10-16 Richard Stallman <rms@gnu.org>
20561
20562 * doc/bison.1, doc/bison.rnh:
20563 Add new options.
20564
205651995-10-15 Richard Stallman <rms@gnu.org>
20566
20567 * src/vmsgetargs.c, src/getargs.c:
20568 Added -n, -k, and -raw switches.
20569 (noparserflag, toknumflag, rawtoknumflag): New variables.
20570
20571 * src/symtab.h (SALIAS):
20572 New #define for adding aliases to %token.
20573 (struct bucket): Added `alias' field.
20574
20575 * src/reduce.c (reduce_grammar):
20576 Revise error message.
20577 (print_notices): Remove final `.' from error message.
20578
20579 * src/reader.c (reader_output_yylsp):
20580 New function.
20581 (readgram): Use `#if 0' around code that accepted %command
20582 inside grammar rules: The documentation doesn't allow it,
20583 and it will fail since the %command processors scan for the next %.
20584 (parse_token_decl): Extended the %token
20585 declaration to allow a multi-character symbol as an alias.
20586 (parse_thong_decl): New function.
20587 (read_declarations): Added %thong declarations.
20588 (read_declarations): Handle NOOP to deal with allowing
20589 % declarations as another means to specify the flags.
20590 (readgram): Allow %prec prior to semantics embedded in a rule.
20591 (skip_to_char, read_declarations, copy_definition)
20592 (parse_token_decl, parse_start_decl, parse_type_decl)
20593 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
20594 (get_type_name, copy_guard, copy_action, readgram)
20595 (get_type, packsymbols): Revised most error messages.
20596 Changed `fatal' to `warnxxx' to avoid aborting for error.
20597 Revised and use multiple warnxxx functions to avoid using VARARGS1.
20598 (read_declarations): Improve the error message for
20599 an invalid character. Do not abort.
20600 (read_declarations, copy_guard, copy_action): Use
20601 printable_version to avoid unprintable characters in printed output.
20602 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
20603 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
20604 Allow the type of a non-terminal can be given
20605 more than once, as long as all specifications give the same type.
20606
20607 * src/output.c:
20608 (output_headers, output_trailers, output, output_gram)
20609 (output_rule_data): Implement noparserflag variable.
20610 Implement toknumflag variable.
20611 (output): Call reader_output_yylsp to output LTYPESTR.
20612
20613 * src/main.c (main):
20614 If reader sees an error, don't process the grammar.
20615 (fatals): Updated to not use VARARGS1.
20616 (printable_version, int_to_string, warn, warni, warns, warnss)
20617 (warnsss): New error reporting functions. Avoid abort for error.
20618
20619 * src/lex.h:
20620 Added THONG and NOOP for alias processing.
20621 Added SETOPT for the new code that allows setting options with %flags.
20622
20623 * src/lex.c:
20624 Include getopt.h. Add some extern decls.
20625 (safegetc): New function to deal with EOF gracefully.
20626 (literalchar); new function to deal with reading \ escapes.
20627 (lex): Use literalchar.
20628 (lex): Implemented "..." tokens.
20629 (literalchar, lex, parse_percent_token): Made tokenbuffer
20630 always contain the token. This includes growing the token
20631 buffer while reading an integer.
20632 (parse_percent_token): Replaced if-else statement with percent_table.
20633 (parse_percent_token): Added % declarations as another
20634 way to specify the flags -n, -l, and -r. Also added hooks for
20635 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
20636 major changes to files.c.
20637 (lex) Retain in the incoming stream a character following
20638 an incorrect '/'.
20639 (skip_white_space, lex): Revised most error messages
20640 and changed fatal to warn to avoid aborting.
20641 (percent_table): Added %thong declarations.
20642
20643 * src/gram.h: Comment changes.
20644
20645 * src/files.c (openfiles, open_extra_files, done):
20646 Add faction flag
20647 and actfile file. Handle noparserflag. Both for -n switch.
20648
20649 * src/conflicts.c (resolve_sr_conflict):
20650 Remove use of alloca.
20651
206521995-06-01 Jim Meyering <meyering@gnu.org>
20653
20654 * doc/bison.texinfo: *** empty log message ***
20655
206561995-05-06 Richard Stallman <rms@gnu.org>
20657
20658 * src/bison.s1: Comment change.
20659
206601995-05-06 Richard Stallman <rms@gnu.org>
20661
20662 * bison.simple: Comment change.
20663
206641995-05-03 Richard Stallman <rms@gnu.org>
20665
20666 * src/version.c: Version now 1.24.
20667
20668 * src/bison.s1: Change distribution terms.
20669
20670 * src/version.c: Version now 1.23.
20671
206721995-05-03 Richard Stallman <rms@gnu.org>
20673
20674 * doc/bison.texinfo:
20675 Rewrite "Conditions for Using Bison".
20676 Update version to 1.24.
20677
206781995-05-03 Richard Stallman <rms@gnu.org>
20679
20680 * bison.simple: Change distribution terms.
20681
206821995-02-23 Richard Stallman <rms@gnu.org>
20683
20684 * src/files.c: Test __VMS_POSIX as well as VMS.
20685
206861995-02-14 Jim Meyering <meyering@gnu.org>
20687
20688 * src/bison.s1 (__yy_memcpy):
20689 Renamed from __yy_bcopy to avoid
20690 confusion. Reverse FROM and TO arguments to be consistent with
20691 those of memcpy.
20692
206931995-02-14 Jim Meyering <meyering@gnu.org>
20694
20695 * bison.simple (__yy_memcpy):
20696 Renamed from __yy_bcopy to avoid
20697 confusion. Reverse FROM and TO arguments to be consistent with
20698 those of memcpy.
20699
207001994-11-10 David J. MacKenzie <djm@gnu.org>
20701
20702 * NEWS: reformat
20703
20704 * NEWS: New file.
20705
20706 * Makefile.in (DISTFILES): Include NEWS.
20707
20708 * Makefile.in (DISTFILES):
20709 Include install-sh, not install.sh.
20710
20711 * configure.in: Update to Autoconf v2 macro names.
20712
207131994-10-05 David J. MacKenzie <djm@gnu.org>
20714
20715 * Makefile.in: fix typo
20716
20717 * Makefile.in (prefix, exec_prefix):
20718 Let configure set them.
20719
207201994-09-28 David J. MacKenzie <djm@gnu.org>
20721
20722 * Makefile.in: Set datadir to $(prefix)/share.
20723
207241994-09-15 Richard Stallman <rms@gnu.org>
20725
20726 * src/bison.s1:
20727 Update copyright notice and GPL version.
20728
207291994-09-15 Richard Stallman <rms@gnu.org>
20730
20731 * bison.simple:
20732 Update copyright notice and GPL version.
20733
207341994-07-12 Richard Stallman <rms@gnu.org>
20735
20736 * src/reduce.c, src/reader.c:
20737 entered into RCS
20738
207391994-05-05 David J. MacKenzie <djm@gnu.org>
20740
20741 * Makefile.in: entered into RCS
20742
207431994-03-26 Richard Stallman <rms@gnu.org>
20744
20745 * src/bison.s1: entered into RCS
20746
207471994-03-26 Richard Stallman <rms@gnu.org>
20748
20749 * bison.simple: entered into RCS
20750
207511994-03-25 Richard Stallman <rms@gnu.org>
20752
20753 * src/main.c: entered into RCS
20754
207551994-03-24 Richard Stallman <rms@gnu.org>
20756
20757 * src/conflicts.c: entered into RCS
20758
207591994-01-02 Richard Stallman <rms@gnu.org>
20760
20761 * Makefile.in: *** empty log message ***
20762
207631993-11-21 Richard Stallman <rms@gnu.org>
20764
20765 * src/bison.s1: *** empty log message ***
20766
207671993-11-21 Richard Stallman <rms@gnu.org>
20768
20769 * doc/bison.texinfo: entered into RCS
20770
20771 * doc/bison.texinfo: *** empty log message ***
20772
207731993-11-21 Richard Stallman <rms@gnu.org>
20774
20775 * bison.simple: *** empty log message ***
20776
207771993-10-25 David J. MacKenzie <djm@gnu.org>
20778
20779 * doc/bison.texinfo: *** empty log message ***
20780
207811993-10-19 Richard Stallman <rms@gnu.org>
20782
20783 * src/bison.s1: *** empty log message ***
20784
207851993-10-19 Richard Stallman <rms@gnu.org>
20786
20787 * bison.simple: *** empty log message ***
20788
207891993-10-14 Richard Stallman <rms@gnu.org>
20790
20791 * src/bison.s1: *** empty log message ***
20792
207931993-10-14 Richard Stallman <rms@gnu.org>
20794
20795 * bison.simple: *** empty log message ***
20796
207971993-09-14 David J. MacKenzie <djm@gnu.org>
20798
20799 * doc/bison.texinfo: *** empty log message ***
20800
208011993-09-13 Noah Friedman <friedman@gnu.org>
20802
20803 * Makefile.in: *** empty log message ***
20804
208051993-09-10 Richard Stallman <rms@gnu.org>
20806
20807 * src/conflicts.c: *** empty log message ***
20808
20809 * src/system.h: entered into RCS
20810
208111993-09-10 Richard Stallman <rms@gnu.org>
20812
20813 * doc/bison.1: entered into RCS
20814
208151993-09-06 Noah Friedman <friedman@gnu.org>
20816
20817 * src/version.c: entered into RCS
20818
208191993-09-06 Noah Friedman <friedman@gnu.org>
20820
20821 * Makefile.in: *** empty log message ***
20822
208231993-07-30 David J. MacKenzie <djm@gnu.org>
20824
20825 * Makefile.in: *** empty log message ***
20826
208271993-07-24 Richard Stallman <rms@gnu.org>
20828
20829 * src/bison.s1: *** empty log message ***
20830
208311993-07-24 Richard Stallman <rms@gnu.org>
20832
20833 * bison.simple: *** empty log message ***
20834
208351993-07-08 David J. MacKenzie <djm@gnu.org>
20836
20837 * Makefile.in: *** empty log message ***
20838
208391993-07-04 Richard Stallman <rms@gnu.org>
20840
20841 * src/bison.s1: *** empty log message ***
20842
208431993-07-04 Richard Stallman <rms@gnu.org>
20844
20845 * bison.simple: *** empty log message ***
20846
208471993-06-26 David J. MacKenzie <djm@gnu.org>
20848
20849 * src/getargs.c: entered into RCS
20850
208511993-06-26 David J. MacKenzie <djm@gnu.org>
20852
20853 * doc/bison.texinfo: *** empty log message ***
20854
20855 * doc/bison.1: New file.
20856
208571993-06-25 Richard Stallman <rms@gnu.org>
20858
20859 * src/getargs.c: New file.
20860
208611993-06-16 Richard Stallman <rms@gnu.org>
20862
20863 * src/bison.s1: *** empty log message ***
20864
208651993-06-16 Richard Stallman <rms@gnu.org>
20866
20867 * bison.simple: *** empty log message ***
20868
208691993-06-03 Richard Stallman <rms@gnu.org>
20870
20871 * src/bison.s1: New file.
20872
208731993-06-03 Richard Stallman <rms@gnu.org>
20874
20875 * doc/bison.texinfo: *** empty log message ***
20876
208771993-06-03 Richard Stallman <rms@gnu.org>
20878
20879 * bison.simple: New file.
20880
208811993-05-19 Richard Stallman <rms@gnu.org>
20882
20883 * doc/bison.texinfo: New file.
20884
208851993-05-07 Noah Friedman <friedman@gnu.org>
20886
20887 * Makefile.in: *** empty log message ***
20888
208891993-04-28 Noah Friedman <friedman@gnu.org>
20890
20891 * src/reader.c: *** empty log message ***
20892
208931993-04-23 Noah Friedman <friedman@gnu.org>
20894
20895 * src/alloc.h: entered into RCS
20896
208971993-04-20 David J. MacKenzie <djm@gnu.org>
20898
20899 * src/version.c: *** empty log message ***
20900
20901 * src/files.c, src/allocate.c:
20902 entered into RCS
20903
20904 * src/reader.c: *** empty log message ***
20905
20906 * src/lex.c: entered into RCS
20907
20908 * src/conflicts.c: New file.
20909
20910 * src/symtab.c: entered into RCS
20911
20912 * src/alloc.h: New file.
20913
20914 * src/LR0.c: entered into RCS
20915
209161993-04-18 Noah Friedman <friedman@gnu.org>
20917
20918 * src/reader.c: New file.
20919
20920 * src/version.c: *** empty log message ***
20921
209221993-04-18 Noah Friedman <friedman@gnu.org>
20923
20924 * Makefile.in: *** empty log message ***
20925
209261993-04-17 Noah Friedman <friedman@gnu.org>
20927
20928 * Makefile.in: *** empty log message ***
20929
209301993-04-15 Richard Stallman <rms@gnu.org>
20931
20932 * src/main.c, src/files.c:
20933 New file.
20934
209351993-04-15 Noah Friedman <friedman@gnu.org>
20936
20937 * configure.in: entered into RCS
20938
20939 * configure.in: *** empty log message ***
20940
20941 * configure.in: New file.
20942
209431993-04-14 Richard Stallman <rms@gnu.org>
20944
20945 * Makefile.in: New file.
20946
209471993-04-13 Richard Stallman <rms@gnu.org>
20948
20949 * src/version.c: New file.
20950
209511993-03-25 Richard Stallman <rms@gnu.org>
20952
20953 * src/output.c: entered into RCS
20954
209551992-09-25 Richard Stallman <rms@gnu.org>
20956
20957 * configure.bat: entered into RCS
20958
209591992-06-22 Richard Stallman <rms@gnu.org>
20960
20961 * src/vmsgetargs.c: entered into RCS
20962
209631992-06-22 Richard Stallman <rms@gnu.org>
20964
20965 * doc/bison.rnh: entered into RCS
20966
209671992-04-20 David J. MacKenzie <djm@gnu.org>
20968
20969 * README: entered into RCS
20970
209711992-01-22 Richard Stallman <rms@gnu.org>
20972
20973 * src/machine.h: entered into RCS
20974
209751991-12-21 Richard Stallman <rms@gnu.org>
20976
20977 * src/lalr.c, src/closure.c:
20978 entered into RCS
20979
209801991-12-20 Richard Stallman <rms@gnu.org>
20981
20982 * src/state.h: entered into RCS
20983
209841991-12-18 Richard Stallman <rms@gnu.org>
20985
20986 * src/print.c, src/nullable.c, src/derives.c:
20987 entered into RCS
20988
209891991-11-03 David J. MacKenzie <djm@gnu.org>
20990
20991 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
20992 entered into RCS
20993
209941988-09-09 Richard Stallman <rms@gnu.org>
20995
20996 * src/bison.hairy: entered into RCS
20997
209981987-12-16 Richard Stallman <rms@gnu.org>
20999
21000 * REFERENCES: entered into RCS
dc546b0f 21001
f294a2c2 21002
04098407 21003 -----
f294a2c2 21004
04098407 21005 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
9126263e 21006 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
95021767 21007 Free Software Foundation, Inc.
f294a2c2 21008
04098407
PE
21009 Copying and distribution of this file, with or without
21010 modification, are permitted provided the copyright notice and this
21011 notice are preserved.