]> git.saurik.com Git - bison.git/blame - ChangeLog
Fix testsuite for ./configure --enable-gcc-warnings:
[bison.git] / ChangeLog
CommitLineData
c4bd5bf7
JD
12006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
2
3 Fix testsuite for ./configure --enable-gcc-warnings:
4 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
5 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
6 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
7 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
8 * test/regression.at (Diagnostic that expects two alternatives):
9 Likewise.
10
46356ea4
PE
112006-10-12 Paul Eggert <eggert@cs.ucla.edu>
12
231ed89a
PE
13 * bootstrap.conf (gnulib_modules): Add config-h.
14 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
15 worry about HAVE_CONFIG_H.
16 * lib/abitset.c: Likewise.
17 * lib/bitset.c: Likewise.
18 * lib/bitset_stats.c: Likewise.
19 * lib/bitsetv-print.c: Likewise.
20 * lib/bitsetv.c: Likewise.
21 * lib/ebitset.c: Likewise.
22 * lib/get-errno.c: Likewise.
23 * lib/lbitset.c: Likewise.
24 * lib/subpipe.c: Likewise.
25 * lib/timevar.c: Likewise.
26 * lib/vbitset.c: Likewise.
27 * lib/bitset.c: Include "bitset.h" first, to test interface.
28 * lib/bitset_stats.c: Include "bitset_stats.h" first.
29 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
30 * lib/bitsetv.c: Include "bitsetv.h" first.
31 * lib/get-errno.c: Include "get-errno.h" first.
32 * m4/.cvsignore: Add config-h.m4.
33 * tests/actions.at (Default %printer and %destructor for ...):
34 Adjust expected line numbers in output to reflect removal of #if
35 HAVE_CONFIG_H lines.
36 * tests/glr-regression.at (Missed %merge type warnings when ...):
37 Likewise.
38 * tests/regression.at (Braced code in declaration in rules section):
39 Likewise.
40 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
41 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
42 Include <config.h> unconditionally.
43
46356ea4
PE
44 * bootstrap: Sync from coreutils, as follows:
45
46 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
47
48 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
49 variable was sometimes used without being initialized. This
50 messed up the installation of the INSTALL file in some cases.
51
52 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
53
54 * bootstrap (usage, main program, symlink_to_gnulib): Add option
55 --copy. Inspired by a suggestion from Bruno Haible.
56
57 2006-10-03 Jim Meyering <jim@meyering.net>
58
59 * bootstrap: Undo last change to this file, since now gnulib-tool
60 sticks with the automake default in generating dependencies.
61
dd4bf078
PE
622006-10-12 Paul Eggert <eggert@cs.ucla.edu>
63
cf2a5f7c
PE
64 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
65 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
66
67 * doc/bison.1: Add copyright notice.
68
69 * data/glr.c: Don't include <stdarg.h>; not used.
70
35fe0834
PE
71 * NEWS: The -g and --graph options now output graphs in Graphviz
72 DOT format, not VCG format.
73 * doc/bison.1: Likewise.
74 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
fcab4a2e
PE
75 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
76 of this change in
77 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
35fe0834
PE
78 * TODO: Remove Graphviz entry.
79 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
80 remove vcg.c, vcg.h, vcg_defaults.h.
81 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
82 * src/graphviz.c, src/graphviz.h: New files.
83 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
84 * src/files.h: Make comment more generic.
85 * src/main.c (main): Likewise.
86 * src/print_graph.h: Likewise.
87 * src/getargs.c (usage): Make usage description more generic.
88 * src/print_graph.c: Include graphviz.h rather than vcg.h.
89 (static_graph, fgraph): Remove. All uses changed to pass
90 arguments instead of sharing a static var.
91 (print_core, print_actions, print_state, print_graph):
92 Output graphviz format rather than VCG format.
93 * tests/.cvsignore: Remove *.vcg; add *.dot.
94 * tests/output.at: Expect *.dot files, not *.vcg files.
95
dd4bf078
PE
96 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
97 accommodates the 2006-10-08 change.
98
efdd7421
PE
992006-10-11 Bob Rossi <bob@brasko.net>
100
101 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
102 (b4_yyssa, b4_yyerror_range): New macros.
103 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
104 (yypvarsinit): Remove init of removed fields.
105 (yypushparse): Remove use of removed fields; use new macros instead.
106
96a1981a
PE
1072006-10-11 Paul Eggert <eggert@cs.ucla.edu>
108
109 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
110 in a push parser. Reindent slightly to match yacc.c better.
111
1122006-10-11 Bob Rossi <bob@brasko.net>
113
46356ea4
PE
114 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
115 yymsg_alloc fields.
116 (yypvarsinit, yypushparse): Remove init of removed fields.
117 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
96a1981a 118
c1630a8b
PE
1192006-10-09 Paul Eggert <eggert@cs.ucla.edu>
120
121 * THANKS: Add Paolo Bonzini and Bob Rossi.
122
90b9908d
PB
1232006-10-08 Paolo Bonzini <bonzini@gnu.org>
124
125 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
126 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
127 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
128 b4_define_user_cde and uses): Remove.
129 (b4_comment, b4_prefix, b4_sync_start): New.
130 * data/bison.m4: New file, with most of the content removed from c.m4.
131 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
132 * src/output.c (output_skeleton): Pass bison.m4.
133 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
134 only if specified.
135
cf806753
PE
1362006-10-05 Paul Eggert <eggert@cs.ucla.edu>
137
138 Fix test failure reported by Tom Lane in
139 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
140 and try to make such failures easier to catch in the future.
141 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
142 that's now the caller's responsibility.
143 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
144 Set yychar = YYEOF if it's negative.
145 * tests/actions.at (yylex): Abort if asked to read past EOF.
146 * tests/conflicts.at (yylex): Likewise.
147 * tests/cxx-type.at (yylex): Likewise.
148 * tests/glr-regression.at (yylex): Likewise.
149 * tests/input.at (yylex): Likewise.
150 * tests/regression.at (yylex): Likewise.
151 * tests/torture.at (yylex): Likewise.
152
0e2f006a
PE
1532006-10-01 Paul Eggert <eggert@cs.ucla.edu>
154
155 Fix problems with translating English-language diagnostics.
156 * bootstrap: Fix bug introduced in recent bootstrap changes, with
157 respect to bison-runtime pot generation. The YY_ stuff
158 wasn't being captured.
159 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
160 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
161 * runtime-po/POTFILES.in: Add data/push.c.
162
e3ddc1e3
PE
1632006-09-29 Paul Eggert <eggert@cs.ucla.edu>
164
165 Merge bootstrap changes from coreutils.
166
167 2006-09-28 Jim Meyering <jim@meyering.net>
168
169 Automatically generated dependencies are important even
170 when all of the sources in a directory come from gnulib.
171 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
172 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
173
174 2006-09-23 Jim Meyering <jim@meyering.net>
175
176 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
177
178 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
179
180 * bootstrap: Add support for --force.
181 (usage): New function. Describe usage less tersely.
182 (CVS_only_file): New var.
183
01e972b3
PE
1842006-09-21 Paul Eggert <eggert@cs.ucla.edu>
185
186 * data/push.c (YYPUSH_MORE): Make it an enum instead.
187 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
188 Adjust white space and comments to match GNU style better.
189
c63d3e90
PE
1902006-09-20 Bob Rossi <bob@brasko.net>
191
192 * data/push.c (yyresult_get): Remove function.
193 (YYPUSH_MORE): Add #define.
194 (yypushparse): Modify return value.
195
e70f46d1
PE
1962006-09-20 Paul Eggert <eggert@cs.ucla.edu>
197
198 * stamp-h.in: Remove; no longer needed.
199 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
200 Remove config.h, config.hin, intl (no longer created).
201 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
202 stamp-h1.
203
204 Sync bootstrap from coreutils, as follows:
205
206 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
207
208 * bootstrap (symlink_to_gnulib): New function.
209 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
210 to copies-of-gnulib.
211 (cp_mark_as_generated, slurp, gnulib_files):
212 Avoid making a copy if it's the same as the old version.
213 (gnulib_files): Add support for this variable (used by Bison).
214
a92be413
PE
2152006-09-20 Paul Eggert <eggert@cs.ucla.edu>
216
217 * src/getargs.c (usage): Rework to use conventions similar to
218 coreutils, to make translation a bit easier and the code a bit
219 smaller. Problem reported by Tim Van Holder.
220
4f82b42a
PE
2212006-09-15 Paul Eggert <eggert@cs.ucla.edu>
222
3b2942e6
PE
223 Use some of gnulib's new modules, taken from coreutils.
224
225 * bootstrap: Sync from coreutils, except add support for gnulib_files.
226 * bootstrap.conf: New file.
227 (gnulib_modules): Add configmake, inttypes, unistd.
228 (XGETTEXT_OPTIONS): Add complain, complain_at,
229 fatal, fatal_at, warn, warn_at, unexpected_end.
230 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
231 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
232 (gl_EARLY): Add.
233 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
234 (gl_INIT): Add
235 (GNULIB_AUTOCONF_SNIPPET): Remove.
236 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
237 the pickiest.
238 * lib/.cvsignore: Add inttypes_.h.
239 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
240 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
241 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
242 no-longer-necessary initializations.
243 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
244 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
245 use the unistd module.
246 * src/system.h: Likewise.
247 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
248 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
249 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
250 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
251 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
252 * src/system.h: Include inttypes.h unconditionally, now that we
253 use the inttypes module. Don't bother to include stdint.h, since
254 inttypes.h now does that for us.
255 (LOCALEDIR): Remove, now that we use the configmake module.
256 * src/getargs.c: Include configmake.h.
257 * src/main.c: Likewise.
258 * src/output.c: Likewise.
259 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
260 not from $abs_top_builddir, since config.h moved.
261
262
4f82b42a
PE
263 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
264 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
265
266 * src/parse-gram.y (symbol_declaration): Don't put statements
267 before declarations; it's not portable to C89.
268 * src/scan-code.l (handle_action_at): Likewise.
269
270 * src/scan-code.l: Always initialize braces_level; the old code
271 left it uninitialized and therefore had undefined behavior.
272
273 Don't attempt to redefine 'assert', since it runs afoul of
274 systems where standard headers (mistakenly) include <assert.h>.
275 Instead, define and use our own alternative, called 'aver'.
276 * src/reader.c: Don't include assert.h, since we no longer
277 use assert.
278 * src/scan-code.l: Likewise.
279 * src/system.h (assert): Remove, replacing with....
280 (aver): New function, taking a bool arg. All uses changed.
281 * src/tables.c (pack_vector): Ensure that aver arg is bool,
282 not merely an integer.
283
31c10e38
PE
2842006-09-15 Bob Rossi <bob@brasko.net>
285
286 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
287 * data/c.m4 (YYPUSH): New.
288 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
289 * src/getargs.c (push_parser): New var.
290 * src/getargs.h (push_parser): New declaration.
291 * src/output.c (prepare): Add macro insertion of `push_flag'.
292 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
293 (prologue_declaration): Parse %push-parser.
294 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
295 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
296 list of removed lines from the traces observed.
297 (AT_CHECK_CALC_LALR): Added push parser tests.
298
fa7b79c0
PE
2992006-09-13 Paul Eggert <eggert@cs.ucla.edu>
300
21fe08ca
PE
301 * NEWS: Version 2.3a.
302 * configure.ac (AC_INIT): Likewise.
303
e8ec4d9b
PE
304 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
305 "#define YYSTYPE int" that caused "make maintainer-check" to fail
306 due to header ordering dependencies. I don't know why the #define
307 was there.
308
fa7b79c0
PE
309 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
310 runtime cost when YYDEBUG is not defined, and so that some tests
311 that used to fail now work. Problem and initial suggestion by
312 Paolo Bonzini.
313 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
314 * data/glr.cc (b4_parser_class_name):
315 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
316 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
317 (yydebug_) [YYDEBUG]: New member.
318 (yycdebug_): Now defined only if YYDEBUG.
319 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
320 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
321 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
322 if YYYDEBUG.
323 (debug_stream, set_debug_stream, debug_level, set_debug_level):
324 Define only if YYDEBUG.
325 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
326 set_debug_level.
327 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
328 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
329 AT_CHECK_CALC_GLR_CC that are working now.
330
4ec13d60
PE
3312006-09-12 Paul Eggert <eggert@cs.ucla.edu>
332
333 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
334 We don't need them in glr.cc, and glr.c defines them.
335 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
336 assumes that defining it to anything is the same as defining
337 it to 1. Problem reported by Paolo Bonzini.
338
8e1687ae
PE
3392006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
340
341 * data/c.m4 (b4_null, b4_case): Define.
342 * src/output.c (prepare_symbols): Use b4_null.
343 (user_actions_output): Use b4_case.
344
3dc5e96b
PE
3452006-09-11 Paul Eggert <eggert@cs.ucla.edu>
346
aef3da86
PE
347 * data/glr.c (b4_shared_declarations): Put start-header first,
348 before any #includes that we generate, so that feature-test
349 macros work. Problem reported by Michael Deutschmann in
350 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
351 * data/lalr1.cc: Likewise.
352 * doc/bison.texinfo (Prologue): Document that feature-test macros
353 should be defined before any Bison declarations.
354 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
355 that depend on location.hh after, not before, Bison decls, since
356 we now include location.hh after the first user prologue.
357
3dc5e96b
PE
358 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
359 Sander Brandenburg in
360 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
361 Also, fix minor white space and comment issues.
aef3da86
PE
362 (Prologue): Mention that it's better to define feature-test macros
363 before Bison declarations. Problem reported by Michael Deutschmann.
364
365 * README-cvs: Fix typo: "&" should be "&&". Problem reported
366 by Jim Meyering.
367 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
368 This adjusts to recent gnulib changes.
3dc5e96b 369
b2a0b7ca
JD
3702006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
371
372 Finish implementation of per-type %destructor/%printer. Discussed
373 starting at
374 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
375 and
376 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
377 * NEWS (2.3+): Add a description of this feature to the default
378 %destructor/%printer description.
379 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
380 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
381 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
382 list node contains a semantic type.
383 * src/symtab.c, src/symtab.h: Extend with a table that associates
384 semantic types with their %destructor's and %printer's.
385 (semantic_type_from_uniqstr, semantic_type_get,
386 semantic_type_destructor_set, semantic_type_printer_set): New functions
387 composing the public interface of that table.
388 (symbol_destructor_get, symbol_destructor_location_get,
389 symbol_printer_get, symbol_printer_location_get): If there's no
390 per-symbol %destructor/%printer, look up the per-type before trying
391 the default.
392 * tests/actions.at (Per-type %printer and %destructor): New test case.
393 * tests/input.at (Default %printer and %destructor redeclared):
394 Extend to check that multiple occurrences of %symbol-default in a
395 single %destructor/%printer declaration is an error.
396 (Per-type %printer and %destructor redeclared, Unused values with
397 per-type %destructor): New test cases.
398
3be03b13
JD
3992006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
400
401 Require default %destructor/%printer to be declared using
402 %symbol-default instead of an empty symbol list, and start working on
403 new per-type %destructor/%printer. Discussed at
404 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
405 * NEWS (2.3+): Add %symbol-default to example.
406 * bison.texinfo (Freeing Discarded Symbols): Likewise.
407 (Bison Symbols): Add entry for %symbol-default.
408 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
409 (generic_symlist, generic_symlist_item): New nonterminals for creating
410 a list in which each item is a symbol, semantic type, or
411 %symbol-default.
412 (grammar_declaration): Use generic_symlist in %destructor and %printer
413 declarations instead of symbols.1 or an empty list.
414 (symbol_declaration, precedence_declaration, symbols.1): Update actions
415 for changes to symbol_list.
416 * src/reader.c: Update for changes to symbol_list.
417 * src/scan-code.l: Likewise.
418 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
419 * src/symlist.c, src/symlist.h: Extend such that a list node may
420 represent a semantic type or a %symbol-default in addition to just an
421 ordinary symbol. Add switched functions for setting %destructor's and
422 %printer's.
423 * tests/actions.at, tests/input.at: Add %symbol-default to all default
424 %destructor/%printer declarations.
425
3508ce36
JD
4262006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
427
428 Whether the default %destructor/%printer applies to a particular symbol
429 isn't a question of whether the user *declares* that symbol (in %token,
430 for example). It's a question of whether the user by any means
431 *defines* the symbol at all (by simply using a char token, for
432 example). $end is defined by Bison whereas any other token with token
433 number 0 is defined by the user. The error token is always defined by
434 Bison regardless of whether the user declares it with %token, but we
435 may one day let the user define error as a nonterminal instead.
436 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
437 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
438 the meaning of "user-defined".
439 * tests/actions.at (Default %printer and %destructor for user-declared
440 end token): Rename to...
441 (Default %printer and %destructor for user-defined end token): ...
442 this.
443
444 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
445 computation of whether to apply the default, don't maintain a list of
446 every Bison-defined symbol. Instead, just check for a first character
447 of '$', which a user symbol cannot have, and check for the error token.
448
9350499c
JD
4492006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
450
451 Don't apply the default %destructor or %printer to the error token,
452 $undefined, or $accept. This change fits the general rule that the
453 default %destructor and %printer are only for user-declared symbols,
454 and it solves several difficulties that are described in the new test
455 cases listed below.
456 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
457 * tests/actions.at (Default %printer and %destructor are not for error
458 or $undefined, Default %printer and %destructor are not for $accept):
459 New test cases.
460
4d7370cb
JD
4612006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
462
463 Allow %start after the first rule.
464 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
465 when parsing the first rule.
466 (check_and_convert_grammar): Search for it here after all grammar
467 declarations have been parsed. Skip midrules, which have dummy LHS
468 nonterminals.
469 * src/symtab.c (symbol_is_dummy): New function.
470 * src/symtab.h (symbol_is_dummy): Declare it.
471 * tests/input.at (%start after first rule): New test.
472
6d0ef4ec
JD
4732006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
474
475 Redo some of the previous commit: add back the ability to use
476 non-aliased/undeclared string literals since it might be useful to
477 those declaring %token-table.
478 * src/reader.c (check_and_convert_grammar): Undo changes in previous
479 commit: don't worry about complaints from symbols_pack.
480 * src/symtab.c (symbol_new, symbol_class_set,
481 symbol_check_alias_consistency): Undo changes in previous commit: count
482 each string literal as a new symbol and token, assign it a symbol
483 number, and don't complain about non-aliased string literals.
484 (symbols_pack): Since symbol_make_alias still does not decrement symbol
485 and token counts but does still set aliased tokens to the same number,
486 symbol_pack_processor now leaves empty slots in the symbols array.
487 Remove those slots.
488 * tests/regression.at (Undeclared string literal): Remove test case
489 added in previous commit since non-aliased string literals are allowed
490 again.
491 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
492 remove unnecessary string literal declarations.
493 * tests/sets.at (Firsts): Likewise.
494
965537bc
JD
4952006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
496
497 Don't allow an undeclared string literal, but allow a string literal to
498 be used before its declaration.
499 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
500 symbols_pack complained.
501 * src/symtab.c (symbol_new): Don't count a string literal as a new
502 symbol.
503 (symbol_class_set): Don't count a string literal as a new token, and
504 don't assign it a symbol number since symbol_make_alias does that.
505 (symbol_make_alias): It's not necessary to decrement the symbol and
506 token counts anymore. Don't assume that an alias declaration occurs
507 before any uses of the identifier or string, and thus don't assert that
508 one of them has the highest symbol number so far.
509 (symbol_check_alias_consistency): Complain if there's a string literal
510 that wasn't declared as an alias.
511 (symbols_pack): Bail if symbol_check_alias_consistency failed since
512 symbol_pack asserts that every token has been assigned a symbol number
513 although undeclared string literals have not.
514 * tests/regression.at (String alias declared after use, Undeclared
6d0ef4ec 515 string literal): New test cases.
965537bc
JD
516 (Characters Escapes, Web2c Actions): Declare string literals as
517 aliases.
518 * tests/sets.at (Firsts): Likewise.
519
47aee066
JD
5202006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
521
522 In the grammar scanner, STRING_FINISH unclosed constructs and return
523 them to the parser in order to improve error messages.
524 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
525 SC_BRACED_CODE, SC_PROLOGUE): Implement.
526 * tests/input.at (Unclosed constructs): New test case.
527 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
528 seen.
529
530 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
531 unused global.
532
1f6b3679
JD
5332006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
534
535 Handle string aliases for character tokens correctly.
536 * src/symtab.c (symbol_user_token_number_set): If the token has an
537 alias, check and set its alias's user token number instead of its own,
538 which is set to indicate the alias. Previously, every occurrence of
539 the character token in the grammar overwrote that alias indicator with
540 the character code.
541 * tests/input.at (String aliases for character tokens): New test.
542
219741d8
JD
5432006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
544
545 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
546
11daa4e7
PE
5472006-08-11 Paul Eggert <eggert@cs.ucla.edu>
548
549 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
550 to prevent failures when building on older platforms.
551 Check for autopoint failure.
552 Set XGETTEXT_OPTIONS to values that check for C format strings,
553 so that translators are warned about them (this also helps
554 prevent core dumps).
555
556 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
557 function, since it simplifies our code a bit.
558
559 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
560 rather than -W, so we don't get bogus warnings about sign comparisons.
561 Add -Wpointer-arith, since that warning is useful (it reports code
562 that does not conform to C89 and that some compilers reject).
563 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
564 since it's no longer needed.
565
f9bfc42a
JD
5662006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
567
568 Clean up scanners a bit.
569 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
570 definitions so gcc won't warn when obstack_for_string is unused.
571 * src/scan-code.l: config.h and system.h are already #include'd by
572 scan-code-c.c, so get rid of them here.
573 * src/scan-gram.l: Likewise.
574 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
575 definitions rather than duplicating the rest of it.
576 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
577
06e8700a
JD
5782006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
579
580 Suppress signed/unsigned comparison warnings for yycheck.
581 * data/c.m4 (b4_safest_int_type): New macro.
582 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
583 a signed int type, cast it to b4_safest_int_type first.
584 * data/yacc.c: Likewise.
585 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
586 also overwritten.
587
9c437126
PE
5882006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
589
590 * doc/bison.texinfo: Fix some typos.
591
284d8a13
PE
5922006-08-02 Paul Eggert <eggert@cs.ucla.edu>
593
594 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
595 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
596
597 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
598 the latest gnulib does this a different way.
599 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
600 translation was patched, so stop omitting it.
601
ec5479ce
JD
6022006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
603
604 Enable declaration of default %printer/%destructor. Make the parser
605 use these for all user-declared grammar symbols for which the user does
606 not declare a specific %printer/%destructor. Thus, the parser uses it
607 for token 0 if the user declares it but not if Bison generates it as
608 $end. Discussed starting at
609 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
610 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
611 and
612 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
613 * NEWS (2.3+): Mention.
614 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
615 declare a %destructor for a mid-rule's semantic value. It's just
616 impossible to declare one specific to it.
617 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
618 code. Describe default %destructor form.
619 * src/parse-gram.y (grammar_declaration): Parse default
620 %printer/%destructor declarations.
621 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
622 and symbol_destructor_location_get rather than accessing the destructor
623 and destructor_location members of struct symbol.
624 (symbol_printers_output): Likewise but for %printer's.
625 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
626 again.
627 * src/symtab.c (default_destructor, default_destructor_location,
628 default_printer, default_printer_location): New static global
629 variables to record the default %destructor and %printer.
630 (symbol_destructor_get, symbol_destructor_location_get,
631 symbol_printer_get, symbol_printer_location_get): New functions to
632 compute the appropriate %destructor and %printer for a symbol.
633 (default_destructor_set, default_printer_set): New functions to set the
634 default %destructor and %printer.
635 * src/symtab.h: Prototype all those new functions.
636 * tests/actions.at (Default %printer and %destructor): New test to
637 check that the right %printer and %destructor are called, that they're
638 not called for $end, and that $$ and @$ work correctly.
639 (Default %printer and %destructor for user-declared end token): New
640 test to check that the default %printer and %destructor are called for
641 a user-declared end token.
642 * tests/input.at (Default %printer and %destructor redeclared, Unused
643 values with default %destructor): New tests to check related grammar
644 warnings and errors.
645
868d2d96
JD
6462006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
647
648 Clean up handling of %destructor for the end token (token 0).
649 Discussed starting at
650 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
651 and
652 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
653
654 Make the skeletons consistent in how they pop the end token and invoke
655 its %destructor.
656 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
657 state, which has token number 0, since this would invoke the
658 %destructor for the end token.
659 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
660 until after shifting the end token, or else it won't be popped.
661 * data/yacc.c (yyparse): Likewise.
662
663 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
664 it's the end token. Upon termination, destroy an unshifted lookahead
665 even when it's the end token.
666 * data/lalr1.cc (yy::parser::parse): Likewise.
667 * data/yacc.c (yyparse): Likewise.
668
669 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
670 value warnings for the end token when the user gives the end token a
671 %destructor.
672
673 * tests/actions.at (Printers and Destructors): Test all the above.
674
62a9592d
PE
6752006-07-24 Paul Eggert <eggert@cs.ucla.edu>
676
677 Update to latest gnulib and gettext versions.
678 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
679 Add fopen-safer.
680 (gnulib_files): Add m4/warning.m4. Don't worry about files
681 overwritten by autopoint.
682 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
683 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
684 rejects them.
685 Don't use autoreconf; instead, invoke autopoint etc. by hand,
686 so that we can remove the intl files at a better time.
687 (intl_files_to_remove): Remove aclocal.m4, since it gets
688 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
689 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
690 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
691 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
692 Remove datarootdir hack; no longer needed.
693 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
694 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
695 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
696 strdup.h.
697 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
698 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
699
10d6970f
PE
7002006-07-20 Paul Eggert <eggert@cs.ucla.edu>
701
702 * bootstrap: Adjust to today's change to gnulib-tool by invoking
703 it with --assume-autoconf='latest-stable'.
704
50a33993
JD
7052006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
706
707 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
708 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
709 YYSTYPE' and `{'.
710 * src/muscle_tab.h (muscle_grow): Replace the header comments with
711 those from muscle_tab.c since the old ones are misleading.
712
2ce4ed68
AD
7132006-07-13 Akim Demaille <akim@epita.fr>
714
715 Support %define "KEY" {VALUE}.
716 * src/scan-code.h, src/scan-code.l (translate_action)
717 (translate_rule_action, translate_symbol_action, translate_code):
718 Return char *, not const char *.
719 * src/parse-gram.y (declaration): Rename as...
720 (prologue_declaration): this.
721 (string_content): Remove this nonterminal, use STRING.
722 (braceless, content, content.opt): New nonterminal.
723 Use them.
724 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
725 as value.
726 * src/scan-gram.l (getargs.h): Don't include it.
727
db7e5eb5
PE
7282006-07-12 Paul Eggert <eggert@cs.ucla.edu>
729
730 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
731 rather than a for-loop that declares a local bool variable. This
732 should work around a compatibility problem with a Cray x1e C++
733 compiler reported by Hung Nguyen in
734 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
735 The for-loop was introduced in the 2004-11-17 change but I don't
736 know why it was needed.
737
a5d80ba5
AD
7382006-07-12 Akim Demaille <akim@epita.fr>
739
740 * data/c.m4: Comment changes.
741
23eb2a69
AD
7422006-07-10 Akim Demaille <akim@lrde.epita.fr>
743
744 * src/complain.c (error_message, ERROR_MESSAGE): New.
745 To factor...
746 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
747 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
748
ddc8ede1
PE
7492006-07-09 Paul Eggert <eggert@cs.ucla.edu>
750
751 * NEWS: Instead of %union, you can define and use your own union type
752 YYSTYPE if your grammar contains at least one <type> tag.
753 Your YYSTYPE need not be a macro; it can be a typedef.
754 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
755 (Union Decl, Decl Summary): Document this.
756 * data/glr.c (YYSTYPE): Implement this.
757 * data/glr.cc (YYSTYPE): Likewise.
758 * data/lalr1.cc (YYSTYPE): Likewise.
759 * data/yacc.c (YYSTYPE): Likewise.
760 * src/output.c (prepare): Output tag_seen_flag.
761 * src/parse-gram.y (declaration, grammar_declaration):
762 Use 'union_seen' rather than 'typed' to determine whether
763 %union has been seen, since grammars can now be typed without
764 %union.
765 (symbol_declaration, type.opt, symbol_def):
766 Keep track of whether a tag has been seen.
767 * src/reader.c (union_seen, tag_seen): New vars.
768 (typed): remove.
769 * src/reader.h (union_seen, tag_seen, typed): Likewise.
770 * src/scan-code.l (untyped_var_seen): New variable.
771 (handle_action_dollar): Adjust to above changes.
772 (handle_action_dollar, handle_action_at):
773 Improve overflow checking for outlandish numbers.
774 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
775 avoid new diagnostics generated by above changes.
776 * tests/regression.at (YYSTYPE typedef): Add test to check
777 for type tags without %union.
778
779 * src/symlist.c (symbol_list_length): Return int, not unsigned
780 int, since callers expect int. This may need to get revisited
781 once we have proper integer overflow checking.
782
783 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
784 object is now static.
785
786 * src/getargs.c (flags_argmatch): Return void, not int,
787 to pacify ./configure --enable-gcc-warnings.
788
789 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
790 since last_string is already defined to FLEX_PREFIX (last_string).
791
7b42569e
AD
7922006-07-09 Akim Demaille <akim@lrde.epita.fr>
793
794 Implement --warnings/-W.
795 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
796 replaced by...
797 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
798 Adjust callers.
799 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
800 (warnings_args, warnings_types): New.
801 (getargs, short_options, long_options): Accept -W/--warnings.
802 Sort the options by alphabetical order, upper case letter right
803 before its lower case.
804
3b452f4e
JD
8052006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
806
807 Change %merge result type clash warnings to errors. Discussed at
808 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
809 * src/reader.c (record_merge_function_type): Use complain_at.
810 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
811 declared later): Update test case results.
812
b8a41559
AD
8132006-07-09 Akim Demaille <akim@lrde.epita.fr>
814
815 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
816 to be in alphabetical order.
817 (trace_args): Spelling fixes.
818
cd9e1ba2
PE
8192006-07-09 Paul Eggert <eggert@cs.ucla.edu>
820
821 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
822 so they don't collide with user-defined macros.
823 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
824 this was never guaranteed, and now that we're using gnulib stdint,
825 which defines int_fast16_t to long int, the problem is exposed.
826
cb48f191
PE
8272006-07-08 Paul Eggert <eggert@cs.ucla.edu>
828
b8445a15
PE
829 * data/c.m4 (b4_basename): Simplify a bit, since we don't
830 need the full POSIX semantics (and weren't implementing them
831 anyway).
832
cb48f191
PE
833 Adjust to Autoconf 2.60 and today's gnulib.
834 * bootstrap (gnulib_modules): Add stdint.
835 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
836 no longer copies it.
837 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
838 since stdint needs the former and wcwidth (which is now required
839 by mbswidth) needs the latter.
840 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
841 work around a compatibility glitch between gettext 0.14.6 and
842 Autoconf 2.60.
843 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
844 Do not check for uintptr_t, since new stdint module does the right
845 thing.
846 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
847 Add stdint.h, stdint_.h, wcwidth.h.
848 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
849 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
850 stdint.m4, wchar_t.m4, wcwidth.m4.
851 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
852 usual order for ../lib/*.h files.
853 (file_name_split): Use last_component, not base_name, to adjust
854 to gnulib changes.
855 * src/parse-gram.h: Include <strverscmp.h> in the usual order
856 for ../lib/*.h files.
857 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
858 Define unconditionally, since we now assume the stdint module.
859 * src/scan-skel.l: Include <dirname.h>.
860 (BASE_QPUTS): Use last_component, not base_name.
861 * src/system.h: Include <unlocked-io.h> in the usual order
862 for ../lib/*.h files. Include <stdint.h> unconditionally,
863 since we now use the stdint module.
864 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
865 HAVE_UINTPTR_T, since we now use the stdint module.
866 (base_name): Remove decl, since files now include <dirname.h>
867 to get the decl.
868
cd48d21d
AD
8692006-07-08 Akim Demaille <akim@lrde.epita.fr>
870
871 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
872 New, default to 1.
873 * data/yacc.c, data/glr.c, data/location.cc: Use them.
874 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
875 default.
876 * tests/calc.at: Adjust.
877
8ec0a172
AD
8782006-07-08 Akim Demaille <akim@lrde.epita.fr>
879
b8445a15 880 * data/c.m4 (b4_basename): New.
8ec0a172
AD
881 (b4_syncline): Also output the location of its invocation (from
882 the skeleton).
883 (b4_user_action, b4_define_user_action, b4_user_actions)
884 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
885 (b4_user_stype): New.
886 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
887
4a678af8
JD
8882006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
889
890 In the grammar file, the first column is 1 not 0 on the first line as
891 on every other line.
892 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
893 * tests/input.at (Torturing the Scanner): Update output.
894
895 * src/scan-gram.l (scanner_cursor): Declare it static.
896
dd60572a
JD
8972006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
898
899 In warnings, say "previous declaration" rather than "first
900 declaration".
901 * src/symtab.c (redeclaration): Do that here.
902 * src/reader.c (record_merge_function_type): In the case of a result
903 type clash, report the previous declaration rather than the very first
904 one in the grammar file.
905 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
906 declared later): Add a third declaration to check this behavior.
907 * tests/input.at (Incompatible Aliases): Update output.
908
2073e1b6
AD
9092006-06-27 Akim Demaille <akim@epita.fr>
910
911 * doc/Doxyfile.in: New.
912 * doc/Makefile.am: Use it.
913 * src/lalr.h, src/symtab.h: Initial doxygenation.
914
8ee5b538
JD
9152006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
916
917 Don't miss %merge result type warnings just because the LHS types are
fab044e6
JD
918 declared after the %merge. This continues the effort of the previous
919 patch.
8ee5b538
JD
920 * src/reader.c (get_merge_function): Don't set the merger type yet.
921 (record_merge_function_type): New function for setting the merger type
922 and checking for clashes.
923 (grammar_current_rule_merge_set): Set the location of the %merge for
924 the current rule.
925 (packgram): Invoke record_merge_function_type for each rule now that
926 all symbol type declarations have been parsed.
927 * src/reader.h (merger_list.type_declaration_location): New member
928 storing the location of the first %merge from which the type for this
929 merging function was derived.
930 * src/symlist.h (symbol_list.merger_declaration_location): New member
931 storing the location of a rule's %merge, if any.
932 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
933 declared later): New test to catch the error fixed by the above patch.
934
ffa4ba3a
JD
9352006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
936
937 Get action warnings (grammar_rule_check) right even when symbol
fab044e6
JD
938 declarations appear after the rules. Discussed at
939 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
940 and
941 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
942 Don't mistake the type of $$ in a midrule to be that of its parent
943 rule's $$.
ffa4ba3a
JD
944 * src/reader.c (grammar_current_rule_end): Don't invoke
945 grammar_rule_check yet since not all symbol declarations may have been
946 parsed yet.
947 (grammar_midrule_action): Likewise.
948 Don't record whether the midrule's $$ has been used yet since actions
949 haven't been translated yet.
950 Record the midrule's parent rule and its RHS index within the parent
951 rule.
952 (grammar_current_rule_action_append): Don't translate the action yet
953 since not all symbol declarations may have been parsed yet and, thus,
954 warnings about types for $$, $n, @$, and @n can't be reported yet.
955 (packgram): Translate the action and invoke grammar_rule_check now that
956 all symbol declarations have been parsed.
957 * src/scan-code.l (handle_action_dollar): Now that this is invoked
958 after parsing the entire grammar file, the symbol list here in the case
959 of a midrule is actually the midrule's empty RHS, so reference its
960 parent rule's RHS where necessary.
961 On the other hand, now that you can already know it's a midrule, you
962 aren't forced to think $$ has the same type as its parent rule's $$.
963 (handle_action_at): In the case of a midrule, reference the parent rule
964 where necessary.
965 * src/symlist.c (symbol_list_new): Initialize new midrule-related
966 members.
967 (symbol_list_length): Now that this is invoked after all rules have
968 been parsed, a NULL symbol (rather than a NULL symbol list node)
969 terminates a rule. symbol_list_print already does this correctly.
970 * src/symlist.h (symbol_list.midrule_parent_rule,
971 symbol_list.midrule_parent_rhs_index): New members so that midrules can
972 remember their relationships with their parents.
973 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
974 fixed by the above patch.
975 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
976 implementing...
977 (Unused values): ... this old test case and...
978 (Unused values before symbol declarations): ... this new test case.
979 This one is the same as `Unused values' except that all symbol
980 declarations appear after the rules in order to catch the rest of the
981 errors fixed by the above patch.
982
e256e17f
JD
9832006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
984
300a1930
JD
985 More cleanup.
986 * src/reader.c (current_rule): Declare it static since it's no longer
987 used outside this file.
988 (grammar_current_rule_action_append): Remove redundant arguments from
989 translate_rule_action invocation.
990 * src/reader.h (current_rule): Remove this unused extern.
991 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
992 * src/scan-code.l (translate_rule_action): Likewise.
e256e17f 993
381ecb06
JD
9942006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
995
996 Clean up yesterday's patch.
997 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
998 to...
999 * src/reader.c (grammar_current_rule_action_append): ... here for
1000 consistency with grammar_current_rule_symbol_append.
1001 * tests/regression.at (Braced code in declaration in rules section):
1002 Make yyerror and yylex static as usual.
1003
4210cd0b
JD
10042006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
1005
1006 Fix bug that mistakes braced code in a declaration in the rules section
1007 to be a rule action. Mentioned at
1008 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
1009 * src/scan-gram.l: Move midrule action detection from the start of the
1010 scanning of any braced code to...
1011 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
1012 action. For readability, use $2 and @2 rather than the equivalent
1013 global variables.
1014 * tests/regression.at (Braced code in declaration in rules section):
1015 New test to catch the error fixed by the above patch.
1016
1017 Work on code readability some.
1018 * src/scan-code.l (current_rule): Get rid of this misleading and
1019 redundant declaration: it's actually extern'ed in reader.h.
1020 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
1021 translate_action): Add a rule argument and use it instead of the global
1022 current_rule.
1023 (translate_rule_action): This already receives current_rule through an
1024 argument, so pass it on to translate_action instead of assigning
1025 current_rule to current_rule.
1026 (translate_symbol_action, translate_code): Pass rule = NULL to
1027 translate_action.
1028
34f98f46
JD
10292006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
1030
1031 Rename %before-definitions to %start-header and %after-definitions to
1032 %end-header. Don't use these declarations to separate pre-prologue
1033 blocks from post-prologue blocks. Add new order-independent
1034 declarations %before-header and %after-header as alternatives to the
1035 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
1036 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
1037 * NEWS (2.3+): Update for these changes.
1038 * data/glr.c (b4_before_definitions): Update to...
1039 (b4_start_header): ... this.
1040 (b4_after_definitions): Update to...
1041 (b4_end_header): ... this.
1042 * data/glr.cc: Likewise.
1043 * data/lalr1.cc: Likewise.
1044 * data/yacc.c: Likewise.
1045 * doc/bison.texinfo (The prologue): Update names, and replace remaining
1046 prologue blocks with %*-header declarations.
1047 (Calc++ Parser): Likewise.
1048 (Bison Declaration Summary): Update names.
1049 (Bison Symbols): Update description.
1050 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
1051 (PERCENT_END_HEADER): ... this.
1052 (PERCENT_BEFORE_DEFINITIONS): Update to...
1053 (PERCENT_START_HEADER): ... this.
1054 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
1055 (declaration): Update token names and m4 macro names.
1056 When parsing %end-header and %start-header, invoke translate_code
1057 before muscle_code_grow, and no longer set global booleans to remember
1058 whether these declarations have been seen.
1059 Parse new %after-header and %before-header.
1060 * src/reader.c (before_definitions, after_definitions): Remove.
1061 (prologue_augment): Accept a new bool argument to specify whether to
1062 augment the pre-prologue or post-prologue.
1063 * src/reader.h (before_definitions, after_definitions): Remove these
1064 extern's.
1065 (prologue_augment): Add new bool argument.
1066 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
1067 (PERCENT_END_HEADER): ... this.
1068 (PERCENT_BEFORE_DEFINITIONS): Update to...
1069 (PERCENT_START_HEADER): ... this.
1070 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
1071 * tests/actions.at (Printers and Destructors): Update names.
1072
31b2b07e
JD
10732006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
1074
1075 Add comparison operators for C++ location classes. Discussed at
1076 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
1077 * data/c++.m4 (b4_define_location_comparison): New boolean %define
1078 declaration indicating whether filename_type has an operator==. If
1079 filename_type is `std::string', it defaults to `1', `0' otherwise.
1080 * data/location.cc: Iff b4_define_location_comparison is `1', add
1081 operator== and operator!= for class position and for class location.
1082
1083 Some minor fixes.
1084 * src/scan-action.l: Remove unused file.
1085 * src/symtab.c (symbol_printer_set): Use printer_location not
1086 destructor_location.
1087 * src/symtab.h (struct symbol): Replace incorrect source comment for
1088 printer members.
1089 * tests/input.at (Incompatible Aliases): Update output with correct
1090 printer location.
1091
9bc0dd67
JD
10922006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
1093
1094 Don't put the pre-prologue in the header file. For the yacc.c code
1095 file and the glr.c header and code files, move the pre-prologue before
1096 the token definitions. Add new %before-definitions and
1097 %after-definitions to declare code that will go in both the header file
1098 and code file. Discussed at
1099 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
1100 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
1101 and
1102 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
1103 * NEWS (2.3+): Describe these changes.
1104 * data/glr.c (b4_pre_prologue): Move from within to before...
1105 (b4_shared_declarations): ... this.
1106 Add new b4_before_definitions before b4_token_enums.
1107 Add new b4_after_definitions at the end.
1108 * data/glr.cc (b4_pre_prologue): Replace with...
1109 (b4_before_definitions): ... this in the header file.
1110 (b4_after_definitions): New near the end of the header file.
1111 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
1112 code file right before including the header file.
1113 (b4_before_definitions): New in the previous position of
1114 b4_pre_prologue in the header file.
1115 (b4_after_definitions): New near the end of the header file.
1116 * data/yacc.c: Clean up some m4 quoting especially in the header file.
1117 (b4_token_enums_defines): In the code file, move to right before
1118 YYSTYPE for consistency with the header file.
1119 (b4_before_definitions): New right before b4_token_enums_defines in
1120 both the header and code file.
1121 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
1122 header and code file.
1123 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
1124 of prologues for %union dependencies.
1125 (Bison Declaration Summary): In %defines description, mention the
1126 effect of %before-definitions and %after-definitions on the header
1127 file.
1128 (Calc++ Parser): Forward declare driver in a %before-definitions rather
1129 than in the pre-prologue so that make check succeeds.
1130 (Bison Symbols): Add entries for %before-definitions and
1131 %after-definitions.
1132 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
1133 %before-definitions.
1134 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
1135 (declaration): Parse those declarations and append to
1136 b4_before_definitions and b4_after_definitions, respectively.
1137 * src/reader.c (before_definitions, after_definitions): New bools to
1138 track whether those declarations have been seen.
1139 (prologue_augment): Add to the post-prologue if %union,
1140 %before-definitions, or %after-definitions has been seen.
1141 * src/reader.h (before_definitions, after_definitions): New extern's.
1142 * src/scan-gram.l: Scan the new declarations.
1143 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
1144 prologue block in a %before-definitions or a %after-definitions based
1145 on whether the %union is declared.
1146 * tests/regression.at (Early token definitions with --yacc, Early token
1147 definitions without --yacc): Move tests for token definitions into the
1148 post-prologue since token names are no longer defined in the
1149 pre-prologue.
1150
203b9274
AD
11512006-06-20 Akim Demaille <akim@epita.fr>
1152
1153 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
1154 (symbol_get): Use it.
1155 * src/parse-gram.y: Use it.
1156
a7ee59cf
JD
11572006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
1158
1159 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
1160 build succeeds when configured with --enable-gcc-warnings.
1161
5a2baae7
PE
11622006-06-19 Paul Eggert <eggert@cs.ucla.edu>
1163
33ad1a9c
PE
1164 * src/parse-gram.y (char_name): New function.
1165 (CHAR, STRING, string_content): For %printer, properly escape.
1166 (ID): Prefer fputs to fprintf.
1167 (id): Reindent to be consistent with other rules.
1168 Properly quote char.
1169
5a2baae7
PE
1170 The Translation Project changed its way of publishing translations
1171 to maintainers. I haven't received any responses to my request
1172 for supporting the old way, or for documenting the new way. I
1173 have modified 'bootstrap' to use screen scraping
1174 (in this case, HTML scraping). This is unreliable and inelegant,
1175 but I don't see any better way. Yuck.
1176 * bootstrap (TP_URL, WGET_COMMAND): New vars.
1177 (get_translations): New function, which uses HTML scraping to
1178 deduce locations of latest translations.
1179 Use this function to grab both bison and bison-runtime .po files.
1180 Don't bother priming the pump for the runtime-po domain any more,
1181 as it's now translated better than bison is.
1182
58d7a1a1
AD
11832006-06-19 Akim Demaille <akim@epita.fr>
1184
1185 * src/scan-gram.l: No longer "parse" things after `%union' until
1186 `{'. Rather, return a single "%union" token.
1187 No longer make symbols: return strings, and leave the conversion
1188 to symbols to the parser.
1189 (SC_PRE_CODE, token_type): Remove.
1190 * src/parse-gram.y (%union): New field `character'.
1191 Sort tokens.
1192 (CHAR): New token.
1193 (ID, ID_COLON): Now that the scanner no longer makes them
1194 identifiers, adjust all uses to invoke symbol_get.
1195 (id_colon): New, wraps the conversion from string to symbol.
1196 (%union): Accept a possible union_name.
1197 (symbol): Now can be a char.
1198 * data/c.m4 (b4_union_name): Leave a default value.
1199 * data/glr.c, data/yacc.c: Use it.
1200
b931235e
JD
12012006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
1202
1203 For associating token numbers with token names for "yacc.c", don't use
1204 #define statements unless `--yacc' is specified; always use enum
1205 yytokentype. Most important discussions start at:
1206 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
1207 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
1208 and
1209 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
1210 * NEWS (2.3+): Mention.
1211 * data/c.m4 (b4_yacc_if): New.
1212 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
1213 token #define's.
1214 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
1215 on token name definitions.
1216 * src/getargs.c (usage): Capitalize `Yacc' in English.
1217 * src/output.c (prepare): Define b4_yacc_flag.
1218 * tests/regression.at (Early token definitions): Test that tokens names
1219 are defined before the pre-prologue not just before the post-prologue.
1220 Remove this test case and copy to...
1221 (Early token definitions with --yacc): ... this to test #define's.
1222 (Early token definitions without --yacc): ... and this to test enums.
1223
9e6e7ed2
PE
12242006-06-11 Paul Eggert <eggert@cs.ucla.edu>
1225
1226 * NEWS: Reword the post-2.3 change to not be so optimistic about
1227 removing the old "look-ahead" spelling.
1228 Update previous look-ahead/lookahead change reports.
1229 * REFERENCES: look-ahead -> lookahead (since that's
1230 what he actually wrote).
1231 * doc/refcard.tex: look ahead -> lookahead,
1232 look-ahead -> lookahead
1233
742e4900
JD
12342006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
1235
1236 For consistency, use `lookahead' instead of `look-ahead' or
1237 `look_ahead'. Discussed starting at
1238 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
1239 and then at
1240 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
1241 * NEWS: For the next release, note the change to `--report'.
1242 * TODO, doc/bison.1: Update English.
1243 * doc/bison.texinfo: Update English.
1244 (Understanding Your Parser, Bison Options): Document as
1245 `--report=lookahead' rather than `--report=look-ahead'.
1246 * src/conflicts.c: Update English in comments.
1247 (lookahead_set): Rename from look_ahead_set.
1248 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
1249 (resolve_sr_conflict): Rename local look_ahead_tokens to
1250 lookahead_tokens, and update other uses.
1251 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
1252 count_rr_conflicts, conflicts_free): Update uses.
1253 * src/getargs.c (report_args): Move "lookahead" before alternate
1254 spellings.
1255 (report_types): Update uses.
1256 (usage): For `--report' usage description, state `lookahead' spelling
1257 rather than `look-ahead'.
1258 * src/getargs.h (report.report_lookahead_tokens): Rename from
1259 report_look_ahead_tokens.
1260 * src/lalr.c: Update English in comments.
1261 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
1262 (state_lookahead_tokens_count): Rename from
1263 state_look_ahead_tokens_count.
1264 Rename local n_look_ahead_tokens to n_lookahead_tokens.
1265 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
1266 Rename local n_look_ahead_tokens to n_lookahead_tokens.
1267 Update other uses.
1268 Update English in output.
1269 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
1270 * src/print.c: Update English in comments.
1271 (lookahead_set): Rename from look_ahead_set.
1272 (print_reduction): Rename argument lookahead_token from
1273 look_ahead_token.
1274 (print_core, state_default_rule, print_reductions, print_results):
1275 Update uses.
1276 * src/print_graph.c: Update English in comments.
1277 (print_core): Update uses.
1278 * src/state.c: Update English in comments.
1279 (reductions_new): Update uses.
1280 (state_rule_lookahead_tokens_print): Rename from
1281 state_rule_look_ahead_tokens_print, and update other uses.
1282 * src/state.h: Update English in comments.
1283 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
1284 (state_rule_lookahead_tokens_print): Rename from
1285 state_rule_look_ahead_tokens_print.
1286 * src/tables.c: Update English in comments.
1287 (conflict_row, action_row): Update uses.
1288 * tests/glr-regression.at
1289 (Incorrect lookahead during deterministic GLR,
1290 Incorrect lookahead during nondeterministic GLR): Rename
1291 print_look_ahead to print_lookahead.
1292 * tests/torture.at: Update English in comments.
1293 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
1294 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
1295 (Many lookahead tokens): Update uses.
1296 * data/glr.c: Update English in comments.
1297 * lalr1.cc: Likewise.
1298 * yacc.c: Likewise.
1299 * src/conflicts.h: Likewise.
1300 * src/lalr.h: Likewise.
1301 * src/main.c: Likewise.
1302 * src/output.c: Likewise.
1303 * src/parse-gram.c: Likewise.
1304 * src/tables.h: Likewise.
1305 * tests/calc.at: Likewise.
1306
3c40d0b5
JD
13072006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
1308
1309 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
1310
5d278082
PE
13112006-06-07 Paul Eggert <eggert@cs.ucla.edu>
1312
1313 * TODO: Add request from Nelson H. F. Beebe to be able to install
1314 Bison without installing the yacc script.
1315
9e668899
JD
13162006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
1317
1318 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
1319 and yytext if they're already #define'd.
1320 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
1321 * src/scan-code-c.c: ... here.
1322 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
1323 <config.h>.
1324
0c8e079f
JD
13252006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
1326
1327 Get Bison to build again when configured with --enable-gcc-warnings.
1328 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
1329 missing #include's.
1330 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
1331 loc argument as it shadows a global.
1332 * src/scan-gram.l: Remove stray comma that prevents boundary_set
1333 invocation.
1334
1335 * src/.cvsignore: Add scan-code.c.
1336
2346344a
AD
13372006-06-07 Akim Demaille <akim@epita.fr>
1338
1339 * src/scan-gram.l: Move the "add a trailing ; to actions" code
1340 to...
1341 * src/scan-code.l: here.
1342 * tests/input.at (Torturing the Scanner): Fix another location
1343 error.
1344
4862bdfd
AD
13452006-06-07 Akim Demaille <akim@epita.fr>
1346
1347 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
1348
e9071366
AD
13492006-06-06 Akim Demaille <akim@epita.fr>
1350
1351 Extract the parsing of user actions from the grammar scanner.
1352 As a consequence, the relation between the grammar scanner and
1353 parser is much simpler. We can also split "composite tokens" back
1354 into simple tokens.
1355 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
1356 * src/scan-gram.l (add_column_width, adjust_location): Move to and
1357 rename as...
1358 * src/location.h, src/location.c (add_column_width)
1359 (location_compute): these.
1360 Fix the column count: the initial column is 0.
1361 (location_print): Be robust to ending column being 0.
1362 * src/location.h (boundary_set): New.
1363 * src/main.c: Adjust to scanner_free being renamed as
1364 gram_scanner_free.
1365 * src/output.c: Include scan-code.h.
1366 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
1367 Use boundary_set.
1368 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
1369 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
1370 which is now, again, a separate token.
1371 Adjust all dependencies.
1372 Whereever actions with $ and @ are used, use translate_code.
1373 (action): Remove this nonterminal which is now useless.
1374 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
1375 (grammar_current_rule_action_append): Use translate_code.
1376 (packgram): Bound check ruleno, itemno, and rule_length.
1377 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
1378 (last_string, last_braced_code_loc, max_left_semantic_context)
1379 (scanner_initialize, scanner_free, scanner_last_string_free)
1380 (gram_out, gram_lineno, YY_DECL_): Move to...
1381 * src/scan-gram.h: this new file.
1382 (YY_DECL): Rename as...
1383 (GRAM_DECL): this.
1384 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
1385 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
1386 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
1387 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
1388 Move these declarations, and...
1389 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
1390 these to...
1391 * src/flex-scanner.h: this new file.
1392 * src/scan-gram.l (rule_length, rule_length_overflow)
1393 (increment_rule_length): Remove.
1394 (last_braced_code_loc): Rename as...
1395 (gram_last_braced_code_loc): this.
1396 Adjust to the changes of the parser.
1397 Move all the handling of $ and @ into...
1398 * src/scan-code.l: here.
1399 * src/scan-gram.l (handle_dollar, handle_at): Remove.
1400 (handle_action_dollar, handle_action_at): Move to...
1401 * src/scan-code.l: here.
1402 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
1403 scan-code.h, scan-code-c.c, scan-gram.h.
1404 (EXTRA_bison_SOURCES): Add scan-code.l.
1405 (BUILT_SOURCES): Add scan-code.c.
1406 (yacc): Be robust to white spaces.
1407
1408 * tests/conflicts.at, tests/input.at, tests/reduce.at,
1409 * tests/regression.at: Adjust the column numbers.
1410 * tests/regression.at: Adjust the error message.
7891a7c4 1411
184e42f0
JD
14122006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
1413
1414 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
1415 Use Akim's wording from
1416 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
1417
7891a7c4
JD
14182006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
1419
1420 Between Bison releases, manually append `+' to the previous Bison
1421 release number, and use that as a signal to automatically print the
1422 ChangeLog's CVS Id keyword from --version. Discussed starting at
1423 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
1424 * ChangeLog: Add Id header.
1425 * configure.ac (AC_INIT): Append `+' to `2.3'.
1426 * src/.cvsignore: Add revision.c.
1427 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
1428 (BUILT_SOURCES): Add revision.c.
1429 (revision.c): New target rule. This file defines a new global variable
1430 named revision. It initializes it with either the Id from ChangeLog
1431 or, if VERSION doesn't contain `+', with the empty string.
1432 * src/getargs.c (version): Print the value of revision.
1433 * src/revision.h: Extern revision.
1434
4ad3ed84
PE
14352006-06-05 Paul Eggert <eggert@cs.ucla.edu>
1436
1437 * NEWS: Version 2.3.
1438 * configure.ac (AC_INIT): Likewise.
1439
02103984
PE
14402006-05-30 Paul Eggert <eggert@cs.ucla.edu>
1441
1442 * data/glr.c (YYRECOVERING): Define to be a function-like macro
1443 with no arguments, not as an object-like macro. This is for
1444 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
1445 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
1446 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
1447 Document this.
1448
2c08afa5
JD
14492006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
1450
1451 * src/getargs.c (usage): Back out yesterday's modification of the
1452 --help output so that we don't have to wait for translation before
1453 releasing 2.3.
1454
6077da58
PE
14552006-05-29 Paul Eggert <eggert@cs.ucla.edu>
1456
1457 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
1458 Problem reported by Akim Demaille.
1459
2a26b6c2
JD
14602006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
1461
1462 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
1463
aefef0d6
PE
14642006-05-26 Paul Eggert <eggert@cs.ucla.edu>
1465
1466 * data/yacc.c (yy_reduce_print): Omit trailing white space in
1467 generated source code. Problem reported by Frans Englich in
1468 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
1469
fcd8e201
PE
14702006-05-22 Paul Eggert <eggert@cs.ucla.edu>
1471
1472 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
1473 shell, not within 'make', so that 'make' by an ordinary builder
1474 (using GNU make) does not worry about configuring gzip. This also
1475 works around a bug reported independently by Keith Thompson and by
1476 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
1477 stderr rather than stdout, messing up the build logs.
1478
7b5cdcbd
JD
14792006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
1480
1481 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
1482 to make sure that YYID will never be unused. This fixes a 'make
1483 maintainer-check' failure caused by the recent changes to the 'Trivial
1484 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
1485 not used.
1486 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
1487
5ad0a449
JD
14882006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
1489
1490 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
1491 state before an empty RHS is always resolved here. Only the location
1492 of that state is guaranteed to be resolved, and that's enough. This
1493 fixes the remaining bug reported by Derek M. Jones in
1494 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
1495 * tests/glr-regression.at (Uninitialized location when reporting
1496 ambiguity): Test the above case.
1497 Also, the embedded comments in this test case claim it checks the case
1498 of an empty RHS that has inherited the initial location. However, the
1499 corresponding LHS was already resolved, so yyresolveLocations didn't
1500 actually have reason to modify it. Fix this by forcing
1501 nondeterministic operation at the beginning of the parse.
1502
50cce58e
PE
15032006-05-20 Paul Eggert <eggert@cs.ucla.edu>
1504
1505 * data/c.m4 (b4_yy_symbol_print_generate):
1506 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
1507 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
1508 of the bugs reported today by Derek M Jones in
1509 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
1510 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
1511 defined to be a type name without parens or brackets.
1512 (Location Type): Similarly for YYLTYPE.
1513 * tests/regression.at (Trivial grammars): Put in a test for this
1514 bug that will be caught by 'make maintainer-check' (though not,
1515 alas, by 'make check' unless your compiler is picky).
1516
ab8d9dc5
PE
15172006-05-19 Paul Eggert <eggert@cs.ucla.edu>
1518
0d2c8934 1519 * NEWS: Version 2.2.
ab8d9dc5
PE
1520 * configure.ac (AC_INIT): Likewise.
1521
9138c575
JD
15222006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
1523
1524 * data/glr.c (yyreportTree): Make room in yystates for the state
1525 preceding the RHS. This fixes the segmentation fault reported by Derek
1526 M. Jones in
1527 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
1528 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
1529 to the user. Reported for yyreportTree by Derek M. Jones later in the
1530 same thread.
1531 * THANKS: Add Derek M. Jones.
1532 Update my email address.
1533 Fix typo in Steve Murphy's name.
1534
276f48df
PE
15352006-05-14 Paul Eggert <eggert@cs.ucla.edu>
1536
d6645148
PE
1537 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
1538 checking against YYLAST that caused the parser to miss a potential
1539 alternative in its diagnostic.
1540 Problem reported by Maria Jose Moron Fernandez in
1541 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
1542 * data/lalr1.cc (yysyntax_error_): Likewise.
1543 * data/yacc.c (yysyntax_error): Likewise.
1544 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
1545 tokens, in case we run into an older C compiler.
1546 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
1547 Use them to check for the off-by-one error fixed above.
1548
276f48df
PE
1549 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
1550 YYSIZE_T, not size_t.
1551 * tests/regression.at (Trivial grammars): New test, to catch
1552 the error fixed by the above patch.
1553
cd8b5791
AD
15542006-05-14 Akim Demaille <akim@lrde.epita.fr>
1555
1556 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
1557 scheme.
1558 Reported by Steve Murphy.
1559
34376418
AD
15602006-05-14 Akim Demaille <akim@lrde.epita.fr>
1561
1562 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
1563 * data/glr.cc: b4_location_flag is now b4_locations_flag.
1564
327afc7c
AD
15652006-05-14 Akim Demaille <akim@lrde.epita.fr>
1566
1567 Implement --trace=m4.
1568 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
1569 * src/output.c (output_skeleton): When set, pass -dV to m4.
1570
1571 Factor the handling of flags in m4.
1572 * src/output.c (prepare): Rename the muscle names debug, defines,
1573 error_verbose to debug_flag, defines_flag, error_verbose_flag.
1574 * data/c.m4: Adjust.
1575 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
1576 Use b4_define_flag_if to define other b4_FLAG_if macros.
1577 (b4_location_if): As a consequence, rename as...
1578 (b4_locations_if): this, for consistency.
1579 Adjust all the skeletons.
1580
ba9ecd19
AD
15812006-05-14 Akim Demaille <akim@lrde.epita.fr>
1582
1583 * etc/bench.pm: Shorten bench names.
1584
4e83ea15
AD
15852006-05-14 Akim Demaille <akim@lrde.epita.fr>
1586
1587 * src/output.h, src/output.c (error_verbose): Move to...
1588 * src/getargs.h, src/getargs.c: here.
1589 Sort the flags.
1590 Adjust dependencies.
1591
6e93d810
PE
15922006-05-13 Paul Eggert <eggert@cs.ucla.edu>
1593
1594 * data/c.m4 (b4_copyright): Put the special exception for Bison
1595 skeletons here, so we don't have to put it in each skeleton. All
b15296ff
PE
1596 uses changed. Suggested by Akim Demaille. Also, wrap the
1597 copyright notice, in case it is longer than 80 columns. Replace
1598 comma by newline after title.
6e93d810 1599
eaea13f5
PE
16002006-05-11 Paul Eggert <eggert@cs.ucla.edu>
1601
1602 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
1603 incompatibility, not a bug. Mention that it wasn't fixed as of
1604 flex 2.5.33.
1605
3cf084ec
AD
16062006-05-11 Akim Demaille <akim@lrde.epita.fr>
1607
1608 * examples/extexi: Enforce the precedence of concatenation over
1609 >>.
0a9f1c7d 1610 Reported by Tommy Nordgren.
3cf084ec 1611
32c96bd7
AD
16122006-05-11 Akim Demaille <akim@lrde.epita.fr>
1613
1614 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
1615 with the member "token".
f94705b2 1616 Reported by Martin Nylin.
32c96bd7 1617
eaea13f5
PE
16182006-05-08 Paul Eggert <eggert@cs.ucla.edu>
1619
1620 * data/glr.c: Switch to Bison 2.2 special-exception language in
1621 the copyright notice. Use more-regular format for titles and
1622 copyright notices.
1623 * data/glr.cc: Likewise.
1624 * data/location.cc: Likewise.
1625 * data/yacc.cc: Likewise.
1626 * doc/bison.texinfo (Conditions): Document this.
1627 * NEWS: likewise. Upgrade version to 2.2.
1628
6e2d1146
AD
16292006-04-27 Akim Demaille <akim@lrde.epita.fr>
1630
1631 * data/glr.cc: Remove dead code.
1632
47671055
PE
16332006-04-25 Paul Eggert <eggert@cs.ucla.edu>
1634
1635 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
1636 that variable and the line breaks the bootstrap. Problem reported
1637 by Juan M. Guerrero.
1638
ed2e6384
AD
16392006-04-24 Akim Demaille <akim@lrde.epita.fr>
1640
1641 * doc/bison.texinfo (Multiple start-symbols): New.
1642
3cedc2dc
AD
16432006-04-24 Akim Demaille <akim@lrde.epita.fr>
1644
1645 * etc/README, etc/bench.pl: New.
1646
b2ddc3f3
AD
16472006-04-03 Akim Demaille <akim@lrde.epita.fr>
1648
1649 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
1650 rule.
1651 Reported by Mickael Labau.
1652 * tests/input.at (Torturing the Scanner): Test it.
1653
91e3ac9a
PE
16542006-03-16 Paul Eggert <eggert@cs.ucla.edu>
1655
1656 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
1657 Problem reported by Bob Rossi.
1658
16592006-03-13 Paul Eggert <eggert@cs.ucla.edu>
1660
1661 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
1662 and didn't really work.
1663 For the index, use @ifnotinfo, not @iftex.
1664 Minor cleanups of spacing and terminology.
1665
5cf61e93
AD
16662006-03-12 Akim Demaille <akim@lrde.epita.fr>
1667
1668 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
1669 of AT_NAME_PREFIX when %name-prefix is not used.
1670
aa08666d
AD
16712006-03-12 Akim Demaille <akim@lrde.epita.fr>
1672
1673 Apply --prefix to C++ skeletons too: they change the namespace.
1674 The test suite already exercize these cases.
1675 * data/c++.m4 (b4_namespace): New.
1676 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
1677 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
1678 * data/yacc.c, data/glr.c: Remove a useless `[]'.
1679 * doc/bison.texinfo: Document it.
1680 (Option Cross Key): Use @multitable in all formats. It looks
1681 nicer, even in TeX outputs.
1682 (Rules): Use the same code whatever the output type is.
1683 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
1684 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
1685 * tests/calc.at: Use it, instead of hard coding `yy'.
91e3ac9a 1686
45567173
AD
16872006-03-10 Akim Demaille <akim@lrde.epita.fr>
1688
1689 * TODO: Remove dead items.
1690
e9d8f881 16912006-03-10 Akim Demaille <akim@lrde.epita.fr>
55ba27be
AD
1692
1693 * doc/FAQ: Remove, merged into...
1694 * doc/bison.texinfo (FAQ): this.
1695 * doc/Makefile.am (EXTRA_DIST): Adjust.
1696
c095d689
AD
16972006-03-10 Akim Demaille <akim@lrde.epita.fr>
1698
1699 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
1700 even if empty.
1701 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
1702 * doc/bison.texinfo (Calc++ Scanner): Use it.
1703
6e0f8287
PE
17042006-03-09 Paul Eggert <eggert@cs.ucla.edu>
1705
1706 Fix two nits reported by twlevo, plus one more that I discovered.
1707
1708 * src/assoc.h (assoc_to_string): Give a name to the arg, as
1709 this is the usual Bison style.
1710 * src/location.h (location_print): Likewise.
1711
1712 * src/reader.h (token_name): Likewise.
1713
d6b771c3
PE
17142006-03-08 Paul Eggert <eggert@cs.ucla.edu>
1715
1716 Fix some nits reported by twlevo.
1717 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
1718 and "POSIX". Use more-modern syntax for URLs. Mention C++
1719 and ask for Java. Don't hardwire OS version numbers. Add
1720 copyright notice.
1721 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
1722 * src/conflicts.c (solved_conflicts_obstack): Now static.
1723
1e137b71
JD
17242006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
1725
1726 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
1727 page. Say "you can use it" not "you may use it" as on the web page;
1728 we're describing capabilities not granting permission.
1729
73f2e47e
PE
17302006-03-06 Paul Eggert <eggert@cs.ucla.edu>
1731
6d05403d
PE
1732 * data/glr.c (yyresolveLocations): Rename local variables to avoid
1733 shadowing warnings. Use usual patter for iterating through RHS.
1734 * tests/glr-regression.at
1735 (Uninitialized location when reporting ambiguity):
1736 Modify yylex so that it uses its argument, rather than trying
1737 to rely on ARGSUSED (which doesn't work for gcc with warnings).
1738 const char -> char const.
1739
73f2e47e
PE
1740 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
1741 Don't use tabs inside commands; it messes up 'ps'.
1742 Problem reported by twlevo.
1743
8710fc41
JD
17442006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
1745
1746 * tests/glr-regression.at (Uninitialized location when reporting
1747 ambiguity): New test case.
1748 * data/glr.c (yyresolveLocations): New function, which uses
1749 YYLLOC_DEFAULT.
1750 (yyresolveValue): Invoke yyresolveLocations before reporting an
1751 ambiguity.
1752 * doc/bison.texinfo (Default Action for Locations): Note
1753 YYLLOC_DEFAULT's usage for ambiguity locations.
1754 (GLR Semantic Actions): Cross-reference those notes.
1755
ae952af2
JD
17562006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
1757
1758 * tests/glr-regression.at (Leaked semantic values when reporting
1759 ambiguity): Remove unnecessary union and type declarations.
1760 (Leaked lookahead after nondeterministic parse syntax error): New test
1761 case.
1762 * data/glr.c (yyparse): Check for zero stacks remaining before
1763 attempting to shift the lookahead so that you don't lose it.
1764
35ee866a
JD
17652006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
1766
1767 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
1768 * tests/glr-regression.at (Leaked semantic values when reporting
1769 ambiguity): New test case.
1770 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
1771 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
1772 now unnecessary yystackp parameter.
1773 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
1774 destructors can be called.
1775
1776 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
1777 in existing testcases.
1778
520181ab
JD
17792006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
1780
1781 Don't leak semantic values for parent RHS when a user action cuts the
1782 parser, and clean up related code a bit.
1783 * tests/glr-regression.at (Leaked merged semantic value if user action
35ee866a
JD
1784 cuts parse): Rename to...
1785 (Leaked semantic values if user action cuts parse): ... this. Add check
520181ab
JD
1786 for leaked parent RHS values.
1787 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
1788 between an unresolved state (non-empty chain of semantic options) and
1789 an incomplete one (signaled by an empty chain).
ae952af2 1790 (yyresolveStates): Document the interface. Move all manipulation of a
520181ab
JD
1791 successfully or unsuccessfully resolved yyGLRState to...
1792 (yyresolveValue): ... here so that yyresolveValue always leaves a
1793 yyGLRState with consistent data and thus is easier to understand.
1794 Remove the yyvalp and yylocp parameters since they are always just
1795 taken from the yys parameter. When reporting a discarded merged value
1796 in debugging output, note that it is incompletely merged. Document the
1797 interface.
1798 (yyresolveAction): If resolving any of the RHS states fails, destroy
1799 them all rather than leaking them. Thus, as long as user actions are
1800 written to clean up the RHS correctly, yyresolveAction always cleans up
1801 the RHS of a semantic option. Document the interface.
1802
18d9185c
PE
18032006-02-27 Paul Eggert <eggert@cs.ucla.edu>
1804
1805 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
1806 led to a segmentation fault in GNU Pascal. Problem reported
1807 by Waldek Hebisch.
1808
841a7737
JD
18092006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
1810
1811 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
1812 mid-rule action inside a nonterminal symbol in order to declare a
1813 destructor for its semantic value.
1814
fc3f467f
PE
18152006-02-16 Paul Eggert <eggert@cs.ucla.edu>
1816
1817 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
1818 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
1819 __cplusplus && ! defined _STDLIB_H && !
1820 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
1821 defined free))]: Include <stdlib.h> rather than rolling our own
1822 declarations of malloc and free, to avoid problems with
1823 incompatible declarations (using 'throw') C++'s stdlib.h. This
1824 should fix Debian bug 340012
1825 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
1826 reported by Guillaume Melquiond.
1827
a3af26dd
PE
18282006-02-13 Paul Eggert <eggert@cs.ucla.edu>
1829
4d7bc38c
PE
1830 * NEWS: Clarify symbols versus types in unused-value warnings.
1831
a3af26dd
PE
1832 * configure.ac (AC_INIT): Bump version number.
1833
4e26c69e
PE
18342006-02-13 Paul Eggert <eggert@cs.ucla.edu>
1835
1836 * NEWS: Version 2.1a.
1837 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
1838 since C99 requires this.
1839
498e897c
PE
18402006-02-11 Paul Eggert <eggert@cs.ucla.edu>
1841
1842 * m4/c-working.m4: New file.
1843 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
1844
57bb17ca
PE
18452006-02-10 Paul Eggert <eggert@cs.ucla.edu>
1846
1847 * Makefile.maint: Merge from coreutils.
1848
0be105dc
PE
18492006-02-09 Paul Eggert <eggert@cs.ucla.edu>
1850
1851 More portability fixes for problems summarized by Nelson H. F. Beebe.
1852
1853 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
1854 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
1855 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
1856 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
1857 messes up because C++ code is compiled in 32-bit mode but linked
1858 in 64-bit mode.
1859
6fc0c024
PE
18602006-02-08 Paul Eggert <eggert@cs.ucla.edu>
1861
1862 More portability fixes for problems summarized by Nelson H. F. Beebe.
1863
7870f699
PE
1864 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
1865 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
1866
6fc0c024
PE
1867 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
1868 nodist_PROGRAMS, since we don't need to actually compile the
1869 example if we're just doing a plain 'make'. This avoids bothering
1870 the installer unnecessarily about problems due to weird C++
1871 compilers.
1872
fe6c2fde
PE
18732006-02-06 Paul Eggert <eggert@cs.ucla.edu>
1874
1875 More portability fixes for problems summarized by Nelson H. F. Beebe.
1876
1877 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
1878 than #include "...", and compile with -I'.'. The old method was
1879 not portable, according to Posix and the C standard, and it does
1880 not work with Sun C 5.7, where previous #line directives affect
1881 the working directory used in later #include "..." directives.
1882
927b425b
JMG
18832006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1884
1885 Various DJGGP specific issues in /djgpp
1886
d9735e9e
PE
18872006-02-02 Paul Eggert <eggert@cs.ucla.edu>
1888
1889 More portability fixes for problems summarized by Nelson H. F. Beebe.
1890
1891 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
1892 '#include <map>' works and that you can apply ++ to iterators.
1893
5a6755af
PE
18942006-02-01 Paul Eggert <eggert@cs.ucla.edu>
1895
67a0dc4f
PE
1896 Work around portability problems summarized by Nelson H. F. Beebe in
1897 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
1898
8c86f0ef
PE
1899 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
1900 that '#include <string>' works.
1901
de35dd59
PE
1902 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
1903 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
1904 "warning: sorry: semantics of inline function static data `const
1905 unsigned char translate_table[262]' are wrong (you'll wind up with
1906 multiple copies)".
1907
67a0dc4f
PE
1908 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
1909 or, xor to not_, and_, or_, and xor_, respectively. This works
1910 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
1911 random system header somewhere that includes the equivalent of
1912 <iso646.h>.
1913
5a6755af
PE
1914 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
1915 -E" works; it apparently doesn't work with PathScale EKO Compiler
67a0dc4f 1916 Suite Version 2.0.
5a6755af 1917
3f001415
JD
19182006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
1919
1920 During deterministic GLR operation, user actions should be able to
1921 influence the parse by changing yychar. To make this easier to fix and
1922 to make glr.c easier to evolve in general, don't maintain yytoken in
1923 parallel with yychar; just compute yytoken when needed.
1924 * tests/glr-regression.at (Incorrect lookahead during deterministic
1925 GLR): Check that setting yychar in a user action has the intended
1926 effect.
1927 * data/glr.c (yyGLRStack): Remove yytokenp member.
1928 (yyclearin): Don't set *yytokenp.
1929 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
1930 yychar rather than *yytokenp to determine the current lookahead.
1931 Compute yytoken locally when needed.
1932 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
1933 point to.
1934
1935 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
1936 after `--report' documentation.
1937
e2a8c0f5
PE
19382006-01-30 Paul Eggert <eggert@cs.ucla.edu>
1939
1940 * src/parse-gram.y (grammar_declaration): Location of printer
1941 symbol is @1, not list->location. Bug reported by twlevo.
1942 * tests/input.at (Incompatible Aliases): Adjust to above change.
1943
6b702268
PE
19442006-01-29 Paul Eggert <eggert@cs.ucla.edu>
1945
27622431
PE
1946 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
1947 all the test at once. This makes the output easier to read in the
1948 normal case.
1949
6b702268
PE
1950 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
1951 got from <http://bro-ids.org/download.html>. The bug is that
1952 when two actions appeared in succession, the second one was
1953 scanned before the first one was added to the grammar rule
1954 as a midrule action. Bison then output the incorrect warning
1955 "parse.y:905.17-906.36: warning: unused value: $3".
1956 * src/parse-gram.y (BRACED_CODE, action): These are no longer
1957 associated with a value.
1958 (rhs): Don't invoke grammar_current_rule_action_append.
1959 (action): Invoke it here instead.
1960 * src/reader.c (grammar_midrule_action): Now extern.
1961 (grammar_current_rule_action_append): Don't invoke
1962 grammar_midrule_action; that is now the scanner's job.
1963 * src/reader.h (last_string, last_braced_code_loc):
1964 (grammar_midrule_action): New decls.
1965 * src/scan-gram.l (last_string): Now extern, sigh.
1966 (last_braced_code_loc): New extern variable.
1967 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
1968 rule already has an action.
1969 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
1970 * tests/input.at (AT_CHECK_UNUSED_VALUES):
1971 Add some tests to check that the above changes fixed the bug.
1972
d40ba6c2
PE
19732006-01-27 Paul Eggert <eggert@cs.ucla.edu>
1974
1975 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
1976 All used changed. Check whether the symbol has a destructor,
1977 not whether it is typed.
1978 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
1979 that the values are still reported as unused. All line numbers
1980 adjusted.
1981
401aace6
PE
19822006-01-23 Paul Eggert <eggert@cs.ucla.edu>
1983
1984 Work around a bug in bro 0.8, which underparenthesizes its
1985 definition of YYLLOC_DEFAULT.
1986 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
1987 their arguments.
1988 * data/lalr1.cc: Likewise.
1989 * data/yacc.cc: Likewise.
1990
06f01bc4
PE
19912006-01-22 Paul Eggert <eggert@cs.ucla.edu>
1992
401aace6
PE
1993 Work around a bug in Pike 7.0, and give the Pike folks a
1994 better way to override the usual int widths.
1995 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
1996 user can override the types.
1997 (short): #undef, to work around a bug in Pike 7.0.
1998 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
1999 (union yyalloc.yyss): Use yytype_int16 rather than short.
2000 All uses changed.
2001 (yysigned_char): Remove.
2002 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
2003 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
2004 * tests/regression.at (Web2c Actions): Adjust to above changes.
2005
2006 * src/reader.c (check_and_convert_grammar): New function.
2007 (reader): Close the input file even if something went wrong during
2008 parsing. Minor file descriptor leak reported by twlevo.
2009
06f01bc4
PE
2010 * src/assoc.c (assoc_to_string): Use a default: abort (); case
2011 to pacify gcc -Wswitch-default.
2012 * src/scan-gram.l (adjust_location): Use a default: break; case
2013 to pacify gcc -Wswitch-default.
2014 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
2015 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
2016 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
2017 Move these decls to scan-skel.l, since they don't need to be
2018 visible elsewhere.
2019 * src/scan-skel.l: Accept the above decls.
2020 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
2021 is used.
2022
02650b7f
PE
20232006-01-21 Paul Eggert <eggert@cs.ucla.edu>
2024
2025 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
2026 since we don't want to insist on a version number at the start
2027 of the changelog every time.
2028 * Makefile.maint: Sync from coreutils a bit better.
2029 (sc_trailing_blank): Renamed from sc_trailing_space.
2030 All uses changed.
2031 (sc_no_if_have_config_h, sc_require_config_h):
2032 (sc_prohibit_assert_without_use): New rules.
2033 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
2034 (sc_dd_max_sym_length): Fix leading spaces in rule.
2035 (sc_system_h_headers): Prefix with @.
2036 (sc_useless_cpp_parens, m4-check): Output line numbers.
2037 (changelog-check): Allow version only in head.
2038 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
2039 satisfy new Makefile.maint rule.
2040 * data/glr.c: Likewise.
2041 * data/glr.cc: Likewise.
2042 * data/lalr1.cc: Likewise.
2043 * data/yacc.c: Likewise.
2044 * lib/ebitsetv.c: Likewise.
2045 * lib/lbitset.c: Likewise.
2046 * lib/subpipe.c: Likewise.
2047 * lib/timevar.c: Likewise.
2048 * src/system.h: Likewise.
2049 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
2050 * djgpp/Makefile.maint: Add copyright notice.
2051 * djgpp/README.in: Likewise.
2052 * djgpp/config.bat: Likewise.
2053 * djgpp/config.site: Likewise.
2054 * djgpp/config_h.sed: Likewise.
2055 * djgpp/djunpack.bat: Likewise.
2056 * djgpp/config.sed: Fix copyright notice to match standard format.
2057 * djgpp/subpipe.h: Likewise.
2058 * lib/bitsetv-print.c: Likewise.
2059 * lib/bitsetv.c: Likewise.
2060 * lib/subpipe.h: Likewise.
2061 * lib/timevar.c: Likewise.
2062 * lib/timevar.h: Likewise.
2063 * djgpp/subpipe.c: Use standard recipe for config.h.
2064 * lib/abitset.c: Likewise.
2065 * lib/bitset.c: Likewise.
2066 * lib/bitset_stats.c: Likewise.
2067 * lib/bitsetv-print.c: Likewise.
2068 * lib/bitsetv.c: Likewise.
2069 * lib/ebitsetv.c: Likewise.
2070 * lib/get-errno.c: Likewise.
2071 * lib/lbitset.c: Likewise.
2072 * lib/subpipe.c: Likewise.
2073 * lib/timevar.c: Likewise.
2074 * lib/vbitset.c: Likewise.
2075 * tests/local.at: Likewise.
2076 * src/scan-gram.l: Don't include verify.h, since system.h does
2077 that for us.
2078 * .x-sc_require_config_h: New file.
2079 * .x-sc_unmarked_diagnostics: New file.
2080
287c78f6
PE
20812006-01-20 Paul Eggert <eggert@cs.ucla.edu>
2082
287c78f6
PE
2083 Be a bit more systematic about using 'abort'.
2084 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
2085 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
2086 Put 'default: abort ();' before some other case, to satisfy older
2087 pedantic compilers.
2088 * lib/bitset_stats.c (bitset_stats_init): Likewise.
2089 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
2090 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
2091 * src/conflicts.c (resolve_sr_conflict): Likewise.
68cae94e
PE
2092 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
2093 (get_decision_str, get_orientation_str, get_node_alignment_str):
2094 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
2095 (get_linestyle_str, get_arrowstyle_str): Likewise.
2096 * src/conflicts.c (resolve_sr_conflict):
2097 Use a default case rather than one for the one remaining enum
2098 value, to catch invalid enum values as well.
2099 * src/lalr.c (set_goto_map, map_goto):
2100 Prefer "assert (FOO);" to "if (!FOO) abort ();".
2101 * src/nullable.c (nullable_compute, token_definitions_output):
2102 Likewise.
2103 * src/reader.c (packgram, reader): Likewise.
2104 * src/state.c (transitions_to, state_new, state_reduction_find):
2105 Likewise.
2106 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
2107 (symbol_pack): Likewise.
2108 * src/tables.c (conflict_row, pack_vector): Likewise.
287c78f6
PE
2109 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
2110 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
68cae94e
PE
2111 * src/system.h: Don't include <assert.h>.
2112 (assert): New macro.
2113
2114 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
2115 (Destructor Decl, Parser Function, Pure Calling):
2116 Describe rules for braces inside C code more carefully.
287c78f6 2117
c66dfadd
PE
21182006-01-19 Paul Eggert <eggert@cs.ucla.edu>
2119
c21493b8
PE
2120 Fix some porting glitches found by Nelson H. F. Beebe.
2121 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
2122 compilers that don't understand that abort () does not return.
2123 * src/state.c (transitions_to): Likewise.
2124 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
2125 that '#include <cstdlib>' works.
2126 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
2127 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
2128 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
2129 for the benefit of some pre-C99 compilers.
2130
b6e3facf
PE
2131 * bootstrap: Undo changes to gnulib files that autoreconf made.
2132
c66dfadd
PE
2133 Minor fixups to get 'make maintainer-check' to work.
2134 * configure.ac: Don't use -Wnested-externs, as it's incompatible
2135 with the new verify.h implementation.
2136 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
2137 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
2138 * data/yacc.c (YYUSE): Likewise.
2139 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
2140 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
2141 * src/parse-gram.y (declaration): Don't pass a string constant
2142 to a function that expects char *, since GCC might complain
2143 about the constant value.
2144 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
2145 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
2146 before #defining them.
2147 * tests/glr-regression.at
2148 (Incorrectly initialized location for empty right-hand side in GLR):
2149 In yyerror, use the msg arg.
2150 (Corrupted semantic options if user action cuts parse):
2151 (Incorrect lookahead during deterministic GLR):
2152 (Incorrect lookahead during nondeterministic GLR):
2153 Don't name a local var 'index'; it shadows string.h's 'index'.
2154
ed94ef2a
AD
21552006-01-19 Akim Demaille <akim@epita.fr>
2156
2157 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
2158 location, not just parts of it.
2159
e9ad4aec
PE
21602006-01-18 Paul Eggert <eggert@cs.ucla.edu>
2161
d6ca7905
PE
2162 * NEWS: Document the fact that multiple %unions are now allowed.
2163 * doc/bison.texinfo (Union Decl): Likewise.
51cbef6f
PE
2164 * TODO: This feature is now implemented, so remove it from
2165 the wishlist.
d6ca7905 2166
ef1b70e0
PE
2167 * Makefile.maint: Merge with coreutils Makefile.maint.
2168 (CVS_LIST): Use build-aux version if available.
2169 (VERSION_REGEXP): New macro.
2170 (syntax-check-rules): Add sc_no_if_have_config_h,
2171 sc_prohibit_assert_without_use, sc_require_config_h,
2172 sc_useless_cpp_parens.
2173 (sc_obsolete_symbols): Check for O_NDELAY.
2174 (sc_dd_max_sym_length): Track coreutils.
2175 (sc_unmarked_diagnostics): Look in all files, not just *.c.
2176 (sc_useless_cpp_parens): New rule.
2177 (news-date-check): Look for version or today's date.
2178 (changelog-check): Don't require version number near head.
2179 (copyright-check): Use current year instead of hardwiring 2005.
2180 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
2181 (announcement): Add --gpg-key-ID.
2182
2183 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
2184 with "file system".
2185
2073ce56 2186 Avoid undefined behavior that addressed just before the start of an
e9ad4aec
PE
2187 array. Problem reported by twlevo.
2188 * src/reader.c (packgram): Prepend a new sentinel before ritem.
2189 * src/lalr.c (build_relations): Rely on new sentinel.
2190 * src/gram.c (gram_free): Adjust to new sentinel.
2191
b7691f15
JD
21922006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
2193
2194 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
2195 yylookaheadNeeds. All uses updated.
2196 (yysplitStack): Rename local yynewLookaheadStatuses to
2197 yynewLookaheadNeeds.
2198 * data/glr-regression.at (Incorrect lookahead during nondeterministic
2199 GLR): In comments, change `lookahead status' to `lookahead need'.
2200
ddee1b06
PH
22012006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
2202
2203 * data/glr.c (yysplitStack): A little stylistic rewrite.
2204
12f4614d
PH
22052006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
2206
2207 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
2208
32c29292
JD
22092006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
2210
2211 * doc/bison.texinfo: Fix some typos.
2212 (GLR Semantic Actions): New subsection discussing special
2213 considerations because GLR semantic actions might be deferred.
2214 (Actions): Mention look-ahead usage of yylval.
2215 (Actions and Locations): Mention look-ahead usage of yylloc.
2216 (Special Features for Use in Actions): Add YYEOF entry and mention it
2217 in the yychar entry.
2218 In the yychar entry, remove mention of the local yychar case (pure
2219 parser) since this is irrelevant information when writing semantic
2220 actions and since it's already discussed in `Bison Symbols' where
2221 yychar is otherwise described as an external variable.
2222 In the yychar entry, don't call it the `current' look-ahead since it
2223 isn't when semantic actions are deferred.
2224 In the yychar and yyclearin entries, add note about deferred semantic
2225 actions.
2226 Add yylloc and yylval entries discussing look-ahead usage.
2227 (Look-Ahead Tokens): When discussing yychar, don't call it the
2228 `current' look-ahead, and do mention yylval and yylloc.
2229 (Error Recovery): Cross-reference `Action Features' when mentioning
2230 yyclearin.
2231 (Bison Symbols): In the yychar entry, don't call it the `current'
2232 look-ahead.
2233 In the yylloc and yylval entries, mention look-ahead usage.
2234
de366a2f 22352006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2781dbd1
JD
2236
2237 * tests/glr-regression.at: Update copyright year to 2006.
2238
bf70fa87
JD
22392006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2240
2241 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
2242 use during nondeterministic operation to track which stacks have
2243 actually needed the current lookahead.
2244 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
2245 Allocate, deallocate, resize, and otherwise shuffle space for
2246 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
2247 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
2248 appropriately during nondeterministic operation.
2249 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
2250 members to store the current lookahead to be used by the deferred
2251 user action.
2252 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
2253 from which the RHS is taken. Set the lookahead members of the new
2254 yySemanticOption according to the lookahead status for stack yyk.
2255 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
2256 yyaddDeferredAction.
2257 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
2258 members of yySemanticOption before invoking yyuserAction, and then set
2259 them back to their current values afterward.
2260 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
2261 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
2262 * tests/glr-regression.at: Remove `.' from the ends of recent test case
2263 titles for consistency.
2264 (Leaked merged semantic value if user action cuts parse): In order to
2265 suppress lint warnings, use arguments in merge function, and assign
2266 char value < 128 in main.
2267 (Incorrect lookahead during deterministic GLR): New test case.
2268 (Incorrect lookahead during nondeterministic GLR): New test case.
2269
05449a2c
JD
22702006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2271
de366a2f 2272 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
05449a2c
JD
2273 !yyvaluep as signal that no semantic value is available to print.
2274 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
2275 to print a semantic value.
2276
4158e0a1 22772006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
fd2493f7 2278
4158e0a1
JD
2279 * tests/glr-regression.at: For consistency with my newer test cases,
2280 don't thank myself.
2281
d659304d
JD
22822006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
2283
2284 * data/glr.c (yyresolveValue): When merging semantic options, if at
2285 least one user action succeeds but a later one cuts the parse, then
2286 destroy the semantic value before returning rather than leaking it.
2287 (yyresolveStates): If a user action cuts the parse and thus
2288 yyresolveValue fails, ignore the (unset) semantic value rather than
2289 corrupting the yyGLRState, and empty the semantic options list since
2290 the user actions should have called all necessary destructors.
2291 Simplify code with YYCHK.
2292 * tests/glr-regression.at (Corrupted semantic options if user action
2293 cuts parse): New test case.
2294 (Undesirable destructors if user action cuts parse): New test case.
2295 Before applying any of this patch, this test case never actually failed
2296 for me... but only because the corrupted semantic options usually
2297 masked this bug.
2298 (Leaked merged semantic value if user action cuts parse): New test
2299 case.
2300
6ec2c0f2
AD
23012006-01-05 Akim Demaille <akim@epita.fr>
2302
2303 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
2304
1b9c21fb
PE
23052006-01-04 Paul Eggert <eggert@cs.ucla.edu>
2306
2307 * data/c.m4 (b4_c_modern): New macro, with a new provision for
2308 _MSC_VER. Problem reported by Cenzato Marco.
2309 (b4_c_function_def): Use it.
2310 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
2311 b4_c_modern.
2312 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
2313 than rolling our own.
2314
84866159
AD
23152006-01-04 Akim Demaille <akim@epita.fr>
2316
2317 Also warn about non-used mid-rule values.
2318 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
2319 member.
2320 (symbol_list_new): Adjust.
2321 * src/reader.c (symbol_typed_p): New.
2322 (grammar_rule_check): Use it.
2323 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
2324 Check its rule.
2325 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
2326 Use it.
2327 * tests/actions.at (Exotic Dollars): Adjust.
2328
378f4bd8
AD
23292006-01-04 Akim Demaille <akim@epita.fr>
2330
2331 * src/reader.c (grammar_midrule_action): If $$ is set in a
2332 mid-rule, move the `used' bit to its lhs.
2333 * tests/input.at (Unused values): New.
2334 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
2335
e2a21b6f
PE
23362006-01-03 Paul Eggert <eggert@cs.ucla.edu>
2337
54662697
PE
2338 * doc/bison.texinfo (Bison Options): Say more accurately what
2339 --yacc does.
2340 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
2341 about declarations in the grammar when in Yacc mode, as POSIX does
2342 not require a diagnostic when the grammar uses extensions.
2343
2344 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
2345
073f9288
PE
2346 Warn about dubious constructions like "%token T T".
2347 Reported by twlevo.
2348 * src/symtab.h (struct symbol.declared): New member.
2349 * src/symtab.c (symbol_new): Initialize it to false.
2350 (symbol_class_set): New arg DECLARING, specifying whether
2351 this is a declaration that we want to warn about, if there
2352 is more than one of them. All uses changed.
2353
1221b78a
PE
2354 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
2355 Allow multiple %union directives, whose contents concatenate.
2356 * src/parse-gram.y (grammar_declaration): Likewise.
2357 Use muscle_code_grow, so that we don't need stype_line any more.
2358 All uses changed.
2359
2360 * src/muscle_tab.c (muscle_grow): Fix comment.
2361
e2a21b6f
PE
2362 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
2363 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
2364 Update copyright year to 2006.
2365
8f7e3cf9
AD
23662006-01-03 Akim Demaille <akim@epita.fr>
2367
2368 Have glr.cc pass (some of) the calc.at tests.
2369 * data/glr.cc (b4_parse_param_orig): New.
2370 (b4_parse_param): Improve its definition, and bound it more
2371 clearly in the skeleton.
2372 (b4_epilogue): Append, instead of prepending, in order to keep
2373 #line consistency.
2374 Simplify the generation of auxiliary functions: locations and
2375 purity are mandated.
2376 (b4_global_tokens_and_yystype): Honor it.
2377 * data/location.cc (c++.m4): Don't include it.
2378 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
2379 and AT_SKEL_CC_IF.
2380 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
2381 AT_LALR1_CC_IF.
2382 Be sure to initialize the first position's filename.
2383 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
2384 mandated anyway.
2385 (AT_CHECK_CALC_GLR_CC): New.
2386 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
2387
3953ed88
AD
23882006-01-02 Akim Demaille <akim@epita.fr>
2389
2390 * src/output.c (output_skeleton): Don't hard wire the inclusion of
2391 c.m4.
0a96ba81 2392 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
3953ed88
AD
2393 * data/glr.cc: Do not include stack.hh.
2394
9ecafbbf
AD
23952006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
2396
2397 * data/glr.c: Reformat whitespace with tabs.
2398 (b4_lpure_formals): Remove this unused m4 macro.
2399 * tests/cxx-type.at: Reformat whitespace with tabs.
2400 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
2401 since it's a member. Rename type to isNterm for clarity.
2402
c4d497a0
AD
24032005-12-29 Akim <akim@sulaco.local>
2404
2405 Let glr.cc catch up with symbol_value_print.
2406 * data/glr.cc (b4_yysymprint_generate): Replace by...
2407 (b4_yy_symbol_print_generate): this.
2408 (yy_symbol_print, yy_symbol_value_print): Declare them.
2409
4517da37
PE
24102005-12-28 Paul Eggert <eggert@cs.ucla.edu>
2411
2412 * src/location.h (boundary): Note that a line or column equal
2413 to INT_MAX indicates an overflow.
2414 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
2415 (rule_length_overflow, increment_rule_length, add_column_width):
2416 New functions.
2417 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
2418 (<SC_BRACED_CODE>"}"):
2419 Use increment_rule_length rather than incrementing it by hand.
2420 (adjust_location, handle_syncline): Diagnose overflow.
2421 (handle_action_dollar, handle_action_at):
2422 Fix bug with monstrosities like $-2147483648.
2423 Remove now-unnecessary checks.
2424 (scan_integer): Verify assumptions and remove now-unnecessary checks.
2425 (convert_ucn_to_byte): Verify assumptions.
2426 (handle_syncline): New arg LOC. All callers changed.
2427 Don't store through a value derived from char const * pointer.
2428
2429 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
2430 GCC warnings.
2431
e3233bf6
PE
24322005-12-27 Paul Eggert <eggert@cs.ucla.edu>
2433
2434 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
2435 Remove unnecessary forward static decls.
2436
8f3596a6
AD
24372005-12-27 Akim Demaille <akim@epita.fr>
2438
2439 * src/reader.c (grammar_current_rule_check): Also check that $$
2440 is used.
2441 Take the rule to check as argument, hence rename as...
2442 (grammar_rule_check): this.
2443 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
2444 Rename as...
2445 (grammar_rule_begin, grammar_rule_end): these, for consistency.
2446 (grammar_midrule_action, grammar_symbol_append): Now static.
2447 * tests/torture.at (input): Don't rely on the default action
2448 being always performed.
2449 * tests/calc.at: "Set" $$ even when the action is "cut" with
2450 YYERROR or other.
2451 * tests/actions.at (Exotic Dollars): Instead of using unused
2452 values, check that the warning is issued.
2453
721be13c
PE
24542005-12-22 Paul Eggert <eggert@cs.ucla.edu>
2455
2456 * NEWS: Improve wording for unused-value warnings.
2457
a0af42fc
AD
24582005-12-22 Akim Demaille <akim@epita.fr>
2459
2460 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
2461 (b4_yysymprint_generate): Rename as...
2462 (b4_yy_symbol_print_generate): this.
2463 Generate yy_symbol_print instead of yysymprint.
2464 Generate also yy_symbol_value_print, and use it.
2465
affac613
AD
24662005-12-22 Akim Demaille <akim@epita.fr>
2467
721be13c 2468 * NEWS: Warn about unused values.
affac613
AD
2469 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
2470 a `used' member.
2471 (symbol_list_n_get, symbol_list_n_used_set): New.
2472 (symbol_list_n_type_name_get): Use symbol_list_n_get.
2473 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
2474 * src/reader.c (grammar_current_rule_check): Check that values are
2475 used.
2476 * src/symtab.c (symbol_print): Accept 0.
2477 * tests/existing.at: Remove the type information.
2478 Empty the actions.
2479 Remove useless actions (beware of mid-rule actions: perl -000
2480 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
2481 * tests/actions.at (Exotic Dollars): Use unused values.
2482 * tests/calc.at: Likewise.
2483 * tests/glr-regression.at (No users destructors if stack 0 deleted):
2484 Likewise.
2485
2486 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
2487 rule_useful_p.
2488
9d9b8b70
PE
24892005-12-21 Paul Eggert <eggert@cs.ucla.edu>
2490
8bb4c753
PE
2491 Undo 2005-12-01 tentative license wording change. The wording is
2492 still being reviewed by the lawyers, and we don't want to wait for
2493 them before publishing a test release. For now, revert to the
2494 previous wording.
2495 * NEWS: Undo 2005-12-01 change.
2496 * data/glr.c: Revert to previous license wording.
2497 * data/glr.cc: Likewise.
2498 * data/lalr1.cc: Likewise.
2499 * data/location.cc: Likewise.
2500 * data/yacc.c: Likewise.
2501
9d9b8b70
PE
2502 * NEWS: Reword %destructor vs YYABORT etc.
2503 * data/glr.c: Use American spacing, for consistency.
2504 * data/glr.cc: Likewise.
2505 * data/lalr1.cc: Likewise.
2506 * data/yacc.c: Likewise.
2507 * data/yacc.c: Reformat comments slightly.
2508 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
2509 for consistency. Fix some spelling errors and reword recently-included
2510 text slightly.
2511 * tests/cxx-type.at: Cast results of malloc, for C++.
2512
2c3b392a
AD
25132005-12-21 Joel E. Denny <address@hidden>
2514
2515 * tests/cxx-type.at: Construct a tree, count the parents of shared
2516 nodes, and free each node once and only once. Previously, the memory
2517 for semantic values was leaked instead.
2518
d6cff4dc
AD
25192005-12-21 Joel E. Denny <address@hidden>
2520
2521 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
2522 (yylval, yylloc): If pure, #define to yystackp->yyval and
2523 yystackp->yyloc similar to yychar and yynerrs.
2524 (yyparse): If pure, remove local yylval and yylloc. Add local
2525 yystackp to accommodate pure definitions of yylval and yylloc.
2526 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
2527 yylvalp and yyllocp to &yylval and &yylloc.
2528 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
2529 namespace. Previously, nerrs and char were missing, but lval and lloc
2530 weren't necessary.
2531 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
2532 yylvalp and yyllocp parameters since, if pure, these are now always
2533 accessible through yystackp. If not pure, they are still accessible
2534 globally.
2535 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
2536 `if (YYID (N))' to pacify lint.
2537
a85284cf
AD
25382005-12-21 Akim Demaille <akim@epita.fr>
2539
2540 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
2541 destroy the RHS symbols of a rule.
2542 * data/yacc.c (yylen): Initialize to 0.
2543 Keep its value to the number of items to possibly shift.
2544 In particular, a regular successful parse that ends on YYFINAL by
2545 a (internal) YYACCEPT must not have yylen != 0.
2546 (yyerrorlab, yyreturn): Pop the RHS.
2547 Reorder a bit to emphasize the `shifting' bits of code.
2548 (YYPOPSTACK): Now accept a number of items to pop.
2549 * data/lalr1.cc: Likewise.
2550 * data/glr.c: Formatting changes.
2551 Use goto instead of fall through.
2552 * doc/bison.texinfo (Destructor Decl): Complete.
2553
d508c281
JMG
25542005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2555
2556 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
2557 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
2558 * djgpp/config.bat: Replace every occurence of the file name
2559 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
2560 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
2561 * djgpp/config.sed: Replace every occurence of the file name
2562 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
2563 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
2564 * djgpp/djunpack.bat: DJGPP specific file.
2565 * djgpp/fnchange.lst: DJGPP specific file.
2566 * djgpp/README.in: Add new information about how to unpack the bison
2567 source on MSDOS and other systems which have 8.3 file name restrictions
2568 using djunpack.bat and fnchange.lst.
2569
3e7a2cd9
PE
25702005-12-12 Paul Eggert <eggert@cs.ucla.edu>
2571
2572 * bootstrap (build_cvs_prefix): Remove; unused.
2573 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
2574 when getting gnulib.
2575
25762005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
2577
2578 * data/glr.c: Reorder typedef declarations for structs to match order
2579 of struct declarations.
2580 Rename yystack everywhere to yystackp except in yyparse where it's not
2581 a pointer.
2582 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
2583 consistency.
2584 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
2585 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
2586 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
2587 lint.
2588
877519f8
PE
25892005-12-09 Paul Eggert <eggert@cs.ucla.edu>
2590
0eca5a39
PE
2591 * tests/sets.at (Accept): Fix typos in regular expression used to
2592 sed out the final state number.
2593
2cec9080
PE
2594 Work around portability problem on Solaris 10: flex-generated
2595 files include <stdio.h> before <config.h>, which messes up
2596 because the latter defines __EXTENSIONS__. Address the problem
2597 by creating two new little files that include <config.h> first,
2598 then include the flex-generated files. Rewrite everyone else
2599 to include <config.h> first, as well.
2600 * lib/timevar.c: Always include "config.h".
2601 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
2602 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
2603 (EXTRA_bison_SOURCES): New macro.
2604 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
2605 * src/system.h: Don't include config.h.
2606 * src/LR0.c: Include <config.h> first.
2607 * src/assoc.c: Likewise.
2608 * src/closure.c: Likewise.
2609 * src/complain.c: Likewise.
2610 * src/conflicts.c: Likewise.
2611 * src/derives.c: Likewise.
2612 * src/files.c: Likewise.
2613 * src/getargs.c: Likewise.
2614 * src/gram.c: Likewise.
2615 * src/lalr.c: Likewise.
2616 * src/location.c: Likewise.
2617 * src/main.c: Likewise.
2618 * src/muscle_tab.c: Likewise.
2619 * src/nullable.c: Likewise.
2620 * src/output.c: Likewise.
2621 * src/parse-gram.y: Likewise.
2622 * src/print.c: Likewise.
2623 * src/print_graph.c: Likewise.
2624 * src/reader.c: Likewise.
2625 * src/reduce.c: Likewise.
2626 * src/relation.c: Likewise.
2627 * src/state.c: Likewise.
2628 * src/symlist.c: Likewise.
2629 * src/symtab.c: Likewise.
2630 * src/tables.c: Likewise.
2631 * src/uniqstr.c: Likewise.
2632 * src/vcg.c: Likewise.
2633
877519f8
PE
2634 * src/parse-gram.y: Fix minor problems uncovered by lint.
2635 (current_lhs, current_lhs_location): Now static.
2636 (current_assoc): Remove unused variable.
2637
2638 Cleanups so that Bison-generated parsers have less lint.
2639 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
2640 Prepend /*ARGSUSED*/, for lint's sake.
2641 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
2642 definition if 'lint' is defined.
2643 (YYID): New macro (or function, if lint).
2644 All uses of /*CONSTCOND*/0 replaced by YYID(0).
2645 * data/yacc.c: Likewise.
2646 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
2647 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
2648 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
2649 is C++ only.
2650 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
2651 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
2652 Use YYID(0) rather than 0, for lint.
2653 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
2654 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
2655
f5228370
PE
26562005-12-07 Paul Eggert <eggert@cs.ucla.edu>
2657
2658 * tests/glr-regression.at
2659 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
2660 Close memory leak reported by twlevo.
2661
69ce078b
PE
26622005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
2663
6ff99711
PE
2664 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
2665 all stacks.
2666 (yyparse): Iterate another stack in order to call user destructors.
69ce078b
PE
2667 * tests/glr-regression.at (No users destructors if stack 0 deleted):
2668 New test case.
2669 (Duplicated user destructor for lookahead): This test now is expected
2670 to succeed.
2671
af3412cd
PE
26722005-12-01 Paul Eggert <eggert@cs.ucla.edu>
2673
32b5b719 2674 * NEWS: Document the following change.
af3412cd
PE
2675 * data/yacc.c: Say "parser skeleton" rather than "file", since
2676 it's no longer just a file.
2677 * data/glr.c: Grant a special exception for C GLR parsers, that
2678 reads like the already-existing exception for C LALR(1) parsers.
2679 * data/glr.cc: Likewise.
2680 * data/lalr1.cc: Likewise.
2681 * data/location.cc: Likewise.
2682 * data/yacc.c: Reword the "written by" statement to clarify that
2683 it was the parser skeleton, not the entire output file.
2684 * data/glr.c: Written by Paul Hilfinger.
2685 * data/glr.cc: Written by Akim Demaille.
2686 * data/lalr1.cc: Likewise.
2687
035aa4a0
PE
26882005-11-18 Paul Eggert <eggert@cs.ucla.edu>
2689
d9963c85
PE
2690 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
2691 Fix typos in previous change that broke 'make check'.
2692 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
2693 supported in C.
2694 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
2695 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
2696 We can revert this once things settle down.
2697
035aa4a0
PE
2698 * src/conflicts.c (conflicts_print): Don't print file name twice
2699 when %expect fails because there were no conflicts.
2700 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
2701 change.
2702 * tests/conflicts.at (%expect not enough, %expect too much):
2703 (%expect with reduce conflicts): Adjust to new behavior.
2704
27052005-11-18 Akim Demaille <akim@epita.fr>
2706
2707 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
2708 errors.
2709 * NEWS: Document this.
2710 * doc/bison.texinfo (Expect Decl): Likewise.
2711
d1ff7a7c
AD
27122005-11-16 Akim Demaille <akim@epita.fr>
2713
2714 Generalize the display of semantic values and locations in traces.
2715 * data/glr.c (yy_reduce_print): Fix indices (again).
2716 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
2717 literal integers.
2718 * data/lalr1.cc (yyreduce_print): Rename as...
2719 (yy_reduce_print): this.
2720 Display values and locations.
2721 * data/yacc.c (yy_reduce_print): Likewise.
2722 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
2723 (yysymprint): Move higher to be visible from yy_reduce_print).
2724 (yyparse): Adjust.
2725 * tests/calc.at: Adjust the expected length of the traces.
2726
6de5398d
AD
27272005-11-14 Akim Demaille <akim@epita.fr>
2728
2729 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
2730 from 1 to N, while values and location start at 0.
2731 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
2732
a1373f55
AD
27332005-11-14 Akim Demaille <akim@epita.fr>
2734
2735 * data/glr.c (yy_reduce_print): Fix the $ number.
2736
613d8952
AD
27372005-11-14 Akim Demaille <akim@epita.fr>
2738
2739 "Use" parse parameters.
2740 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
2741 * data/glr.c, data/glr.cc: Use them.
2742 * data/glr.c (YYUSE): Have a C++ definition that supports
2743 non-pointer types.
2744
b2741627
AD
27452005-11-14 Akim Demaille <akim@epita.fr>
2746
2747 * data/glr.c (yyexpandGLRStack): Declare only if defined.
2748
5059b5c8
AD
27492005-11-14 Akim Demaille <akim@epita.fr>
2750
42249483
AD
2751 * data/glr.cc: New.
2752 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5059b5c8 2753
4626a15d
AD
27542005-11-12 Akim Demaille <akim@epita.fr>
2755
2756 Let position and location be PODs.
2757 * data/location.cc (position::initialize, location::initialize): New.
2758 (position::position, location::location): Define only if
2759 b4_location_constructors is defined.
2760 * data/lalr1.cc (b4_location_constructors): Define it for backward
2761 compatibility.
2762 * doc/bison.texinfo (Initial Action Decl): Use initialize.
2763
27642005-11-12 Akim Demaille <akim@epita.fr>
98ae9643
AD
2765
2766 * data/lalr1.cc: Move the body of the ctor and dtor into the
2767 parser file (instead of the header).
2768 Wrap the implementations in a "namespace yy".
2769
27702005-11-12 Akim Demaille <akim@epita.fr>
2771
2772 Have glr.c include its header file when created.
2773 * data/glr.c (b4_shared_declarations): New.
2774 Output them verbatim in the parser if !%defines, otherwise
2775 output then in the header file, and include it instead.
2776
1989d947
AD
27772005-11-11 Akim Demaille <akim@epita.fr>
2778
2779 * data/glr.c: Comment changes.
2780
27812005-11-11 Akim Demaille <akim@epita.fr>
62b08cfc
AD
2782
2783 When yydebug, report semantic and location values for reductions.
2784 * data/glr.c (yy_reduce_print): Report the semantic values and the
2785 locations.
2786 (YY_REDUCE_PRINT): Adjust.
2787 (yyglrReduce): Use them.
2788 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
2789 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
2790 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
2791 traces.
2792
02998094
AD
27932005-11-10 Akim Demaille <akim@epita.fr>
2794
2795 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
2796 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
2797 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
2798
5210672f
PE
27992005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
2800
2801 * m4/cxx.m4, examples/Makefile.am: Don't build
2802 examples/calc++ if no C++ compiler is available. (trivial change)
2803
a8991a1d
AD
28042005-11-09 Akim Demaille <akim@epita.fr>
2805
2806 * src/scan-skel.l: Use a couple of asserts.
2807
36b5e963
AD
28082005-11-03 Akim Demaille <akim@epita.fr>
2809
2810 In some (weird) cases, the final state number is incorrect.
2811 Reported by Alexandre Duret-Lutz.
2812 * src/LR0.c (state_list_append): Remove the computation of
2813 final_state.
2814 (save_reductions): Do it here.
2815 (get_state): Alpha conversion.
2816 (generate_states): Use a for loop.
2817 * src/gram.h (item_number_is_rule_number)
2818 (item_number_is_symbol_number): New.
2819 * src/state.c: Use assert.
2820 * src/system.h: Include assert.h.
2821 * tests/sets.at (Accept): New.
2822
44e7ead1
PH
28232005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
2824
2825 * data/glr.c (yyfill): Adjust comment.
36b5e963 2826 (yyresolveAction): Initialize default location properly
44e7ead1
PH
2827 for empty right-hand sides.
2828 (yydoAction): Ditto.
2829 Add comment explaining apparently dead code.
36b5e963
AD
2830 * tests/glr-regression.at
2831 (Incorrectly initialized location for empty right-hand side in GLR):
44e7ead1 2832 New test.
36b5e963 2833
e10a80ee
PE
28342005-10-30 Paul Eggert <eggert@cs.ucla.edu>
2835
2836 * bootstrap (cleanup_gnulib): New function. Use it to clean up
2837 gnulib when interrupted. This fixes some race conditions and
2838 works around some portability problems (one noted by Paul
2839 Hilfinger).
2840
067b32ee
AD
28412005-10-22 Akim <akim@epita.fr>
2842
2843 * Makefile.cfg: Adjust to config -> build-aux.
2844 Reported by twledo.
2845
4b367315
AD
28462005-10-21 Akim Demaille <akim@epita.fr>
2847
2848 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
2849 the %parse-params.
2850 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
2851 * data/yacc.c (b4_Pure_if): Rename as...
2852 (b4_yacc_pure_if): this.
2853 (YY_SYMBOL_PRINT, yyparse): Adjust.
2854 * doc/bison.texinfo: Formatting changes.
2855
24cc23d9
AD
28562005-10-21 Akim Demaille <akim@epita.fr>
2857
2858 Finish the transition config -> build-aux.
2859 * configure.ac, Makefile.am: Use build-aux.
2860 * config/prev-version, config/announce-gen, config/Makefile.am:
2861 Move to...
2862 * build-aux/prev-version, build-aux/announce-gen,
2863 * build-aux/Makefile.am: here.
2864
d4476375
AD
28652005-10-14 Akim Demaille <akim@epita.fr>
2866
2867 * examples/calc++/test: Use set -x only when VERBOSE.
2868
302c0aee
PE
28692005-10-13 Paul Eggert <eggert@cs.ucla.edu>
2870
2871 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
2872 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
2873
7625ec2c
AD
28742005-10-13 Akim Demaille <akim@epita.fr>
2875
2876 * src/scan-skel.l: Output the base name parts of the parser and
2877 header file names.
302c0aee 2878 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7625ec2c
AD
2879 additional checks.
2880 Use this to exercise C++ outputs in subdirs.
2881 Reported by Oleg Smolsky.
2882
ba0fe3c7
PE
28832005-10-12 Paul Eggert <eggert@cs.ucla.edu>
2884
2885 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
2886 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
2887 Problem reported by John P. Hartmann.
2888 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
2889 already defined it.
2890
9b8a5ce0
AD
28912005-10-12 Akim Demaille <akim@epita.fr>
2892
2893 * src/parse-gram.y (version_check): Exit 63 to please missing
2894 (stands for "version mismatch).
2895 * tests/input.at, doc/bison.texinfo: Adjust.
2896
4f6e011e
PE
28972005-10-10 Paul Eggert <eggert@cs.ucla.edu>
2898
2899 Work around portability problems with Visual Age C compiler
2900 (xlc and xlC_r) reported by John P. Hartmann.
2901 * data/location.cc (initial_column, initial_line): Remove.
2902 All uses replaced by 0 and 1.
2903 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
2904 that xlc complains about.
2905 * src/scan-skel.l (skel_wrap): Likewise.
4d7aa45e 2906 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
ba0fe3c7 2907 as __STDC__.
4d7aa45e
PE
2908 * data/yacc.c (YYMODERN_C): New macro, which also looks at
2909 __STDC_VERSION__. Use it everywhere instead of looking at
2910 __STDC__ and __cplusplus.
4f6e011e 2911
a1b3bf8c
AD
29122005-10-10 Akim Demaille <akim@epita.fr>
2913
2914 * examples/calc++/test: Be quiet unless VERBOSE.
2915
412e44aa
PE
29162005-10-05 Paul Eggert <eggert@cs.ucla.edu>
2917
2a4647a3
PE
2918 * data/c.m4 (yydestruct, yysymprint):
2919 Use YYUSE instead of casting to void.
2920 * data/glr.c (YYUSE): New macro.
2921 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
2922 Use it instead of rolling our own.
2923 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
2924 (YYCHK1):
2925 Use /*CONSTCOND*/ to suppress lint warnings.
2926 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
2927 (YY_STACK_PRINT): Use 'false' not '0'.
2928 (YYUSE): New macro.
2929 (yysymprint_, yydestruct_): Use it instead of rolling our own.
2930 * data/yacc.c (YYUSE): New macro.
2931 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
2932 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
2933 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
2934
2935
412e44aa
PE
2936 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
2937 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
2938
88c6637f
PE
29392005-10-04 Paul Eggert <eggert@cs.ucla.edu>
2940
2f4f028d
PE
2941 Undo the parts of the unlocked-I/O change that substituted
2942 putc or puts for printf. This might hurt performance a bit,
2943 but some people prefer the printf style.
2944 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
2945 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
2946 All uses replaced by YYFPRINTF and YYDPRINTF.
2947 * data/yacc.c: Likewise.
2948 * lib/bitset.c (bitset_print): Likewise.
2949 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
2950 putc and puts.
2951 * lib/lbitset.c (debug_lbitset): Likewise.
2952 * src/closure.c (print_firsts, print_fderives): Likewise.
2953 * src/gram.c (grammar_dump): Likewise.
2954 * src/lalr.c (look_ahead_tokens_print): Likewise.
2955 * src/output.c (escaped_output): Likewise.
2956 (user_actions_output): Break apart two printfs.
2957 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
2958 * src/reduce.c (reduce_print): Likewise.
2959 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2960 * src/system.h: Include unlocked-io.h rathe than stdio.h.
2961
88c6637f
PE
2962 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
2963 Use assignments rather than casts-to-void to suppress
2964 unused-variable warnings. This pacifies 'lint'.
2965 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
2966 unused-variable warnings.
2967
fb32e373
JMG
29682005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2969
2970 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
2971
edb8f44f
PE
29722005-10-02 Paul Eggert <eggert@cs.ucla.edu>
2973
fb9c0b33
PE
2974 Use unlocked I/O for a minor performance improvement on hosts like
2975 GNU/Linux and Solaris that support unlocked I/O. The basic idea
2976 is to use the gnlib unlocked-io module, and to prefer putc and
2977 puts to printf when either will work (since the latter doesn't
2978 come in an unlocked flavor).
2979 * bootstrap (gnulib_modules): Add unlocked-io.
2980 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
2981 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
2982 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
2983 and similarly for puts and putc and printf.
2984 * data/yacc.c: Likewise.
2985 * lib/bitset.c (bitset_print): Likewise.
2986 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
2987 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
2988 to printf.
2989 * lib/lbitset.c (debug_lbitset): Likewise.
2990 * src/closure.c (print_firsts, print_fderives): Likewise.
2991 * src/gram.c (grammar_dump): Likewise.
2992 * src/lalr.c (look_ahead_tokens_print): Likewise.
2993 * src/output.c (escaped_output): Likewise.
2994 (user_actions_output): Coalesce two printfs.
2f4f028d 2995 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
fb9c0b33
PE
2996 * src/reduce.c (reduce_print): Likewise.
2997 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2f4f028d 2998 * src/system.h: Include unlocked-io.h rather than stdio.h.
fb9c0b33 2999
edb8f44f
PE
3000 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
3001 this confuses xgettext.
3002
b50d2359
AD
30032005-10-02 Akim Demaille <akim@epita.fr>
3004
3005 * bootstrap (gnulib_modules): Add strverscmp.
3006 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
3007 * m4/.cvsignore: Add strverscmp.m4.
3008 * src/parse-gram.y (%require): New token, new rule.
3009 (version_check): New.
3010 * src/scan-gram.l (%require): Adjust.
3011 * tests/input.at (AT_REQUIRE): New.
3012 Use it.
3013 * doc/bison.texinfo (Require Decl): New.
3014 (Calc++ Parser): Use %require.
3015
21667f64
AD
30162005-10-02 Akim Demaille <akim@epita.fr>
3017
3018 * data/location.cc: New.
3019
2b81e969
AD
30202005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
3021 Akim Demaille <akim@epita.fr>
3022
3023 Make sure -odir/foo.cc creates dir/location.hh etc.
3024 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
3025 (spec_file_prefix, spec_verbose_file, spec_graph_file)
3026 (spec_defines_file): Now const.
3027 (dir_prefix): New.
3028 (short_base_name): Remove.
3029 * src/files.c: Adjust.
3030 (dirname.h): Include.
3031 (base_name): Don't prototype it.
3032 (finput): Remove, duplicates gram_in.
3033 (full_base_name, short_base_name): Replace by...
3034 (all_but_ext, all_but_tab_ext): these.
3035 (compute_base_names): Rename as...
3036 (compute_file_name_parts): this.
3037 Update to compute the new variables, including dir_prefix.
3038 Adjust dependencies.
3039 * src/output.c (prepare): Output them.
3040 * src/reader.c: Adjust to use gram_in, not finput.
3041 * src/scan-skel.l (@dir_prefix@): New.
3042
ad6a9b97
JMG
30432005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3044
3045 * lib/subpipe.c: New function end_of_output_subpipe() added
3046 to allow support for non-posix systems. This is a no-op function
3047 for posix systems.
3048
3049 * lib/subpipe.h: New function end_of_output_subpipe() added
3050 to allow support for non-posix systems. This is a no-op function
3051 for posix systems.
3052
3053 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
3054 handle the lack of pipe/fork functionality on non-posix systems.
3055
3056 * djgpp/Makefile.maint: DJGPP specific file.
3057
3058 * djgpp/README.in: DJGPP specific file.
3059
3060 * djgpp/config.bat: DJGPP specific configuration file.
3061
3062 * djgpp/config.sed: DJGPP specific configuration file.
3063
3064 * djgpp/config.site: DJGPP specific configuration file.
3065
3066 * djgpp/config_h.sed: DJGPP specific configuration file.
3067
3068 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
3069
3070 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
3071
fc695704
AD
30722005-10-02 Akim Demaille <akim@epita.fr>
3073
3074 * data/location.cc: New, extract from...
3075 * data/lalr1.cc: here.
3076 (location.hh): Include it after the user prologue, in case the
3077 filename type is defined by the user.
3078 Forward declation location and position before the pre-prologue.
3079 (yyresult_): Rename as...
3080 (yyresult): this, it's a local variable, not an attribute.
3081 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
3082
30832005-10-01 Akim Demaille <akim@epita.fr>
5215c87f
AD
3084
3085 * examples/extexi: Restore the #line generation.
3086
fb9712a9
AD
30872005-09-30 Akim Demaille <akim@epita.fr>,
3088 Alexandre Duret-Lutz <adl@gnu.org>
3089
3090 Move the token type and YYSTYPE in the parser class.
3091 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
3092 (parser::token): New, from the moved free definition of tokens.
3093 (parser::semantic_value): Now a full definition instead of an
3094 indirection to YYSTYPE.
3095 (b4_post_prologue): No longer included in the header file, but
3096 in the implementation file.
3097 * doc/bison.texi (C+ Language Interface): Update.
3098 * src/parse-gram.y: Support unary %define.
3099 * tests/actions.at: Define global_tokens_and_yystype for backward
3100 compatibility until we update the tests.
3101 * tests/calc.at: Idem.
3102 (first_line, first_column, last_line, last_column): Define for lalr1.cc
3103 to simplify the code.
3104
55f0c7b1
PE
31052005-09-29 Paul Eggert <eggert@cs.ucla.edu>
3106
3107 Port to SunOS 4.1.4, which lacks strtoul and strerror.
3108 Ah, the good old days! Problem reported by Peter Klein.
3109 * bootstrap (gnulib_modules): Add strerror, strtoul.
3110 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
3111 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
3112
fb9712a9 31132005-09-29 Akim Demaille <akim@epita.fr>
d4fb5e3c
AD
3114
3115 * data/c.m4 (b4_error_verbose_if): New.
3116 * data/lalr1.cc: Use it.
3117 (YYERROR_VERBOSE_IF): Remove.
3118 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
3119 parser members, replaced by...
3120 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
3121 local variables.
3122 (yysyntax_error_): Takes the state number as argument.
3123 (yyreduce_print_): Use the argument yyrule, not the former
3124 attribute yyn_.
3125
8a6f72f3
PE
31262005-09-26 Paul Eggert <eggert@cs.ucla.edu>
3127
3128 * bootstrap (gnulib_modules): Add verify.
3129 * lib/.cvsignore: Add verify.h.
3130 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
3131 * src/system.h (verify): Remove.
3132 Include verify.h instead.
3133 * src/tables.c (tables_generate): Use new API for 'verify'.
3134
0d50976f
PE
31352005-09-21 Paul Eggert <eggert@cs.ucla.edu>
3136
ebc3737e
PE
3137 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
3138 local variables whose names begin with 'yy'.
3139 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
3140 Trivial changes from Joel E. Denny.
3141
0d50976f
PE
3142 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
3143 it itself.
3144 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
3145 don't use alloca any more.
3146
3147 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
3148 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
62c4328e 3149 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
0d50976f
PE
3150 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
3151 to match yacc.c, to test more hosts.
3152
a05b79df
PE
31532005-09-20 Paul Eggert <eggert@cs.ucla.edu>
3154
55289366
PE
3155 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
3156 doesn't affect behavior.
3157 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
3158 Solaris, AIX, MSC.
3159 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
3160 This works a bit better with glibc, if user code has already included
3161 stdlib.h.
3162 * doc/bison.texinfo (Bison Parser): Document that users can't
3163 arbitrarily use malloc and free for other purposes. Document
3164 that <alloca.h> and <malloc.h> might be included.
3165 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
3166 user must declare alloca.
3167
a05b79df
PE
3168 * HACKING (release): Forwarn the Translation Project about
3169 stable releses.
3170
3ab2ca22
AD
31712005-09-20 Akim Demaille <akim@epita.fr>
3172
3173 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
3174
a9739e7c
PE
31752005-09-19 Paul Eggert <eggert@cs.ucla.edu>
3176
a702593e
PE
3177 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
3178 (YYSTACK_ALLOC_MAXIMUM): Use it.
3179 (yysyntax_error): New function.
3180 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
3181 multiple syntax errors are reported, and alloca is being used.
3182 Instead, reallocate buffers twice as big each time, so that
3183 we waste at most half the allocated memory. Start with a small
3184 (128-byte) buffer that will suffice in most cases anyway.
3185 Use yysyntax_error to do most of the work.
3186
3187 * doc/bison.texinfo (Error Reporting, Table of Symbols):
3188 yynerrs is the number of errors reported, not the number of
3189 errors encountered.
3190
a9739e7c
PE
3191 * tests/glr-regression.at (Duplicated user destructor for lookahead):
3192 Mark it as expected to fail.
3193 Cast result of malloc; problem reported by twlevo@xs4all.nl.
3194 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
3195 Don't start user-code symbols with "yy", to avoid name space problems.
3196
f479c6c6
AD
31972005-09-19 Akim Demaille <akim@epita.fr>
3198
3199 Remove the traits, failed experiment.
3200 It never proved useful, and anyway because of the current
3201 definition, it was not possible to have several specialization of
3202 this traits, making it useless.
3203 * data/lalr1.cc (yy:traits): Remove.
3204 Inline its definitions in the parser class.
3205
e2586f82
AD
32062005-09-19 Akim Demaille <akim@epita.fr>
3207
3208 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
3209 least Mac OSX with a /usr/local install of gettext.
3210
2e8cf949
AD
32112005-09-19 Akim Demaille <akim@epita.fr>
3212
3213 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
3214 and yytoken for similarity with the other skeletons.
3215
c7fb0b90
AD
32162005-09-19 Akim Demaille <akim@epita.fr>
3217
4e26c69e 3218 * NEWS, configure.ac: update version number to 2.1a.
c7fb0b90 3219
1bd0deda
PE
32202005-09-16 Paul Eggert <eggert@cs.ucla.edu>
3221
3222 * NEWS: Version 2.1.
3223
3224 * NEWS: Remove notice of yytname change, since it was never in an
3225 official release.
3226 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
3227 diagnostic.
3228 * src/output.c (prepare): Likewise.
3229 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
3230 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
3231 is not defined. This is an awful hack, but it's enough for now.
3232 All callers changed.
3233 * tests/glr-regression-at (make_value): Args are const pointers now,
3234 to avoid GCC warning.
3235 (Duplicated user destructor for lookahead): New test. Currently
3236 skipped. It fails on my host but I'm not sure it'll always fail.
3237
32382005-09-16 Akim Demaille <akim@epita.fr>
c1432f65
AD
3239
3240 * src/symtab.h (struct symbol): Declare the printer and destructor
3241 as const, to avoid accidental calls to free.
3242 (symbol_destructor_set, symbol_printer_set): Adjust.
3243 * src/symtab.c: Adjust.
3244
1bd0deda 32452005-09-16 Akim Demaille <akim@epita.fr>
cf147260
AD
3246
3247 * data/c.m4 (b4_token_enums): New.
3248 (b4_token_defines): Rename as...
3249 (b4_token_enums_defines): this.
3250 (b4_token_defines): New, output only the #defines.
3251 * data/yacc.c, data/glr.c: Adjust.
3252 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
3253 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
3254 as default values.
3255
dbcdae2d
AD
32562005-09-16 Akim Demaille <akim@epita.fr>
3257
3258 * data/lalr1.cc (yylex_): Remove, inline its code.
3259 (yyreport_syntax_error_): Remove, replaced by...
3260 (yysyntax_error_): this which returns a string and leaves to the
3261 caller the call to the users' error function.
3262 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
3263 Move from members of the parser object...
3264 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
3265 to local variables of the parse function.
3266
70d8f291
AD
32672005-09-16 Akim Demaille <akim@epita.fr>
3268
3269 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
3270 since it's in Bison's name space.
3271
b47dbebe
PE
32722005-09-15 Paul Eggert <eggert@cs.ucla.edu>
3273
ae199bf1
PE
3274 * data/glr.c (yyresolveValue): Add default case to pacify
3275 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
3276
b47dbebe
PE
3277 * NEWS: Document when yyparse started to return 2.
3278 * doc/bison.texinfo (Parser Function): Document when yyparse
3279 returns 2.
3280
3281 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
3282 (b4_filename_type): Renamed back from b4_file_name_type. All uses
3283 changed.
3284 (class position): file_name -> filename (reverting). All uses changed.
3285
32862005-09-14 Paul Eggert <eggert@cs.ucla.edu>
3287
3288 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
3289 do anything if $@ exists. This reverts part of the 2005-07-07
3290 patch.
3291
00292f66
PE
32922005-09-11 Paul Eggert <eggert@cs.ucla.edu>
3293
3294 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
3295 contains obsolete information and isn't worth distributing as a
3296 separate file anyway.
3297 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
3298 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
3299 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
3300 (yyparse): Abort if user code uses longjmp to throw an unexpected
3301 value.
3302
a420f962
PE
33032005-09-09 Paul Eggert <eggert@cs.ucla.edu>
3304
00292f66
PE
3305 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
3306 Suggested by twlevo@xs4all.nl.
3307
127287e9
PE
3308 * data/glr.c (YYCHK1): Do not assume YYE is in range.
3309 This avoids a diagnostic from gcc -Wswitch-enum.
3310 Problem reported by twlevo@xs4all.nl.
3311
a420f962
PE
3312 * doc/bison.texinfo: Don't use "filename", as per GNU coding
3313 standards. Use "file name" or "file" or "name", depending on
3314 the context.
3315 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
3316 not to hack/foo.tab.c.
3317 (Calc++ Top Level): 2nd arg of main is not const.
48b16bbc
PE
3318 * data/glr.c: b4_filename -> b4_file_name.
3319 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
3320 All uses changed.
3321 (class position): filename -> file_name. All uses changed.
3322 * data/yacc.c: b4_filename -> b4_file_name.
3323 * lib/bitset.h: filename -> file_name in local vars.
3324 * lib/bitset_stats.c: Likewise.
3325 * src/files.c: Likewise.
3326 * src/scan-skel.l ("@output ".*\n): Likewise.
3327 * src/files.c (file_name_split): Renamed from filename_split.
3328 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
a420f962
PE
3329
33302005-09-08 Paul Eggert <eggert@cs.ucla.edu>
3331
3332 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
3333 to accommodate latest gnulib.
3334
3335 * tests/glr-regression.at (Duplicate representation of merged trees):
3336 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
3337
3338 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
3339 needed.
3340
42a6501d
PE
33412005-08-26 Paul Eggert <eggert@cs.ucla.edu>
3342
3343 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
3344 All uses changed. Invoke user destructor after an error during a
3345 split parse (trivial change from Joel E. Denny).
3346
3347 * tests/glr-regression.at
3348 (User destructor after an error during a split parse): New test case.
3349 Problem reported by Joel E. Denny in:
3350 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
3351
ef9a1faf
PE
33522005-08-25 Paul Eggert <eggert@cs.ucla.edu>
3353
5b4aaf78
PE
3354 * README-cvs: Give URLs for recommended tools.
3355 Mention Gzip version problem, and bootstrapping issues.
3356 Remove troubleshooting section, as it's somewhat obsolete.
3357
b5240ba5
PE
3358 * bootstrap (no_cache): New var, to accommodate different wget
3359 variants. Use it instead of '-C off'. Problem reported by
3360 twlevo@xs4all.nl.
3361
ef9a1faf
PE
3362 * data/glr.c (yydestroyStackItem): New function.
3363 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
3364 debugging information. Problem reported by Joel E. Denny.
3365
e6efa9da
AD
33662005-08-25 Akim Demaille <akim@epita.fr>
3367
3368 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
3369
adc90f13
PE
33702005-08-24 Paul Eggert <eggert@cs.ucla.edu>
3371
3372 * data/glr.c (yyrecoverSyntaxError, yyreturn):
3373 Don't invoke destructor on unresolved entries.
3374 * tests/glr-regression.at
3375 (User destructor for unresolved GLR semantic value): New test case.
3376 Problem reported by Joel E. Denny in:
3377 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
3378
f9315de5
PE
33792005-08-21 Paul Eggert <eggert@cs.ucla.edu>
3380
15d29c1f
PE
3381 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
3382 Add strnlen.c.
3383 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
3384 lib-prefix.m4, po.m4.
3385
dd5f2af2
PE
3386 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
3387 in yydestruct diagnostic, since it might not be an error.
3388 Problem reported by Joel Denny near end of
3389 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6250acbd 3390 * data/lalr1.cc (yyerturn): Likewise.
dd5f2af2
PE
3391 * data/yacc.c (yyreturn): Likewise.
3392 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
3393
3394 * src/files.c: Remove obsolete FIXME comment.
3395
3396 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
3397 with the other templates, and to fix bogus run-on messages such
3398 as the one reported at the end of
3399 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
3400 All callers changed to avoid the newline.
3401 (yyprocessOneStack): Output two lines rather than one, to accommodate
3402 the above change. This changes the debug output format slightly.
3403
f9315de5
PE
3404 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
3405 reported by Joel E. Denny in
3406 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
3407 (trivial change).
3408 * tests/glr-regression.at (Duplicate representation of merged trees):
3409 New test, from Joel E. Denny in:
3410 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
3411 * THANKS: Add Joel E. Denny.
3412
3413 * configure.ac (AC_INIT): Bump to 2.0c.
3414
04098407
PE
34152005-07-24 Paul Eggert <eggert@cs.ucla.edu>
3416
3417 * NEWS: Version 2.0b.
3418
ca5d2013
PE
3419 * Makefile.am (SUBDIRS): Put examples before tests, so that
3420 "make check" doesn't finish with "All 1 tests passed".
3421
3d54b576
PE
3422 * tests/regression.at (Token definitions): Don't rely on
3423 AT_PARSER_CHECK for data that contains backslashes. It currently
3424 uses 'echo', and 'echo' isn't portable if its argument contains
3425 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
3426 that the byte '\0xff' is not printable in the C locale; it is,
3427 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
3428 not printable, so use '\0x81' to test.
3429
d53ae497
PE
3430 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
3431 version of GCC, since the macro is used with non-GCC compilers.
3432
fc01665e
PE
3433 Fix core dump reported by Pablo De Napoli in
3434 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
3435 * tests/regression.at (Invalid inputs with {}): New test.
3436 * src/parse-gram.y (token_name): Translate type before using
3437 it as an index.
3438
04098407
PE
3439 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
3440 the user's name space. All uses changed to __attribute__
3441 ((__unused__)).
3442 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
3443 Add __attribute__ ((__noreturn__)).
3444
3445 * etc/clcommit: Remove. We weren't using it, and it failed
3446 "make maintainer-distcheck".
3447 * Makefile.maint: Merge from coreutils.
3448 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
3449 (syntax-check-rules): Change list of rules as described below.
3450 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
3451 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
3452 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
3453 (sc_trailing_space): New rules.
3454 (sc_xalloc_h_in_src): Remove.
3455 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
3456 (sc_space_tab, sc_error_exit_success, sc_changelog):
3457 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
3458 (makefile-check, po-check, author_mark_check):
3459 (makefile_path_separator_check, copyright-check):
3460 Use grep -n, to make it easier to find violations.
3461 Use CVS_LIST and CVS_LIST_EXCEPT.
3462 (header_regexp, h_re): Remove.
3463 (dd_c): New macro.
3464 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
3465 (my-distcheck): Use more-modern GCC flags.
3466 (signatures, %.asc): Remove.
3467 (rel-files, announcement): Remove signatures.
3468 Restore old updating code, even though we don't use it, so
3469 that we're the same as coreutils.
3470 (alpha, beta, major): Depend on news-date-check.
3471 Make the upload commands.
3472
3473 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
3474 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
3475 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
3476 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
3477 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
3478 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
3479 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
3480 * tests/sets.at: Likewise.
3481
3482 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
3483 we comment out the Autoconf version number.
3484 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
3485 it's error-prone and "make maintainer-distcheck" rejects it.
3486
3487 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
3488 Indent calls to "error" to pacify "make maintainer-distcheck",
3489 when the calls are not intended to be translated.
3490 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
3491
3492 * src/Makefile.am (DEFS): Use +=, to pacify
3493 "make maintainer-distcheck".
3494 (bison_SOURCES): Add scan-skel.h.
3495 (sc_tight_scope): New rule, from coreutils.
3496
3497 * src/files.c (src_extension, header_extension):
3498 Now static, not extern.
3499 * src/getargs.c (short_options): Likewise.
3500 * src/muscle_tab.c (muscle_table): Likewise.
3501 * src/parse-gram.y (current_class, current_type, current_prec):
3502 Likewise.
3503 * src/reader.c (grammar_end, previous_rule_end): Likewise.
3504 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
3505 * src/main.c (main): Cast bindtextdomain and textdomain calls to
3506 void, to avoid warning when NLS is disabled.
3507 * src/output.c: Include scan-skel.h.
3508 (scan_skel): Remove decl, since scan-skel.h does this.
3509 (output_skeleton):
3510 Indent calls to "error" to pacify "make maintainer-distcheck".
3511 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
3512 * src/reader.h (gram_end, gram_lineno): New decls to pacify
3513 "make maintainer-distcheck".
3514 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
3515 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
3516 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
3517 (skel_lex_destroy, scan_skel): Move these decls to...
3518 * src/scan-skel.h: New file.
3519 * src/uniqstr.c (uniqstr_assert):
3520 Indent calls to "error" to pacify "make maintainer-distcheck".
3521
3522 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
3523 not @VAR@.
3524
3525 * tests/torture.at: Revamp to avoid misuse of atoi that
3526 "make maintainer-distcheck" complained about.
3527
3528 * examples/extexi (message): Don't print a message more than once,
3529 and omit line-number decoration that makes Emacs compile think
3530 that informative messages are worth worrying about.
3531
35322005-07-22 Paul Eggert <eggert@cs.ucla.edu>
3533
3534 * configure.ac: Update version number.
3535
3536 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
3537 accidentally.
3538 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
3539 autogenerated by the maintainer.
3540 * examples/calc++/.cvsignore: Add *.yy.
3541
3542 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
3543 * lib/bitset_stats.c (bitset_stats_init): Likewise.
3544 * lib/bitsetv.c (bitsetv_alloc): Likewise.
3545
3546 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
3547
3548 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
3549 from maintainer-distcheck about casting the argument of 'free'.
3550
3551 * NEWS: Mention recent yytname changes.
3552 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
3553
3554 * bootstrap: For translations that have not yet been upgraded to
3555 the new runtime-po domain, prime the pump by extracting the
3556 relevant strings from the obsolete translations. This code can be
3557 removed once the bison-runtime domain has been translated by each
3558 team.
3559
3560 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
3561 now that token names are already quoted.
3562
3563 Fix problem reported by Anthony Heading.
3564 * data/glr.c (YYTOKEN_TABLE): New macro.
3565 (yytname): Define if YYTOKEN_TABLE.
3566 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
3567 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
3568 (YYERROR_VERBOSE): Define the same way the other skeletons do.
3569 * src/output.c (prepare_symbols): Output token_table_flag.
3570
0ffda363
PE
35712005-07-21 Paul Eggert <eggert@cs.ucla.edu>
3572
3573 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
3574 again if the first call fails.
3575
3576 * data/glr.c (yytnamerr): New function.
3577 (yyreportSyntaxError): Use it to dequote most string literals.
3578 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
3579 with other skeletons. All uses changed.
3580 (yytnameerr_): New function.
3581 (yyreport_syntax_error): Use it to dequote most string literals.
3582 * data/yacc.c (yytnamerr): New function.
3583 (yyerrlab): Use it to decode most string literals.
3584 * doc/bison.texinfo (Decl Summary, Calling Convention):
3585 Clarify quoting convention of yytname.
3586 * src/output.c (prepare_symbols): Quote all names. This undoes
3587 the 2005-04-17 change, which is now accomplished (mostly) via
3588 changes in the parsers as described above.
3589 * tests/regression.at (Token definitions, Web2c Actions):
3590 Undo most 2005-04-17 change here, too.
3591
35922005-07-20 Paul Eggert <eggert@cs.ucla.edu>
3593
3594 Fix more problems reported by twlevo@xs4all.nl.
3595 * tests/cxx-type.at: Don't pipe output of ./types through sed to
3596 remove trailing spaces. This loses the exit status of ./types,
3597 and isn't needed since ./types shouldn't be emitting trailing
3598 spaces.
3599 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
3600 as the stack isn't valid in that case.
3601
3602 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
3603 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
3604 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
3605 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
3606 is used.
3607 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
3608 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
3609 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
3610 Likewise.
3611
3612 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
3613 overly-picky compilers that reject 'char *foo = "bar";'.
3614
3615 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
3616 to FILE * parameter, not to stderr. This fixes a typo introduced
3617 in the 2005-07-12 change.
3618
3619 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
3620 warnings from GCC 4.
3621
3622 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
3623 (yyglrShiftDefer, yysplitStack):
3624 Remove unused parameters b4_pure_formals. All uses changed.
3625 (yyglrShift): Remove unused parameters b4_user_formals.
3626 All uses changed.
3627 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
3628
6100a9aa
PE
36292005-07-18 Paul Eggert <eggert@cs.ucla.edu>
3630
258b75ca
PE
3631 Destructor cleanups and regularization among the three skeletons.
3632 * NEWS: Document the behavior changes.
3633 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
3634 stack before failing, as the cleanup code will do it for us now.
3635 * data/lalr1.cc (yyerrlab): Likewise.
3636 * data/glr.c (yyparse): Pop everything off the stack before
3637 freeing it, so that destructors get called properly.
3638 * data/lalr1.cc (yyreturn): Likewise.
3639 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
3640 This is more consistent.
3641 * doc/bison.texinfo (Destructor Decl): Mention more reasons
3642 why destructors might be called. 1.875 -> 2.1.
3643 (Destructor Decl, Decl Summary, Table of Symbols):
3644 Some English-language cleanups for %destructor.
3645 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
3646 Add output line for destructor of start symbol.
3647 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
3648 because of that same extra output line.
3649
1a059451
PE
3650 * NEWS: Document minor wording changes in diagnostics of
3651 Bison-generated parsers.
3652 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
3653 Remove unused formals. All uses changed.
3654 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
3655 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
3656 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
3657 Rename yyoverflowab to yyexhaustedlab.
3658 When memory exhaustion occurs during syntax-error reporting,
3659 report it separately rather than in a single diagnostic; this
3660 eases translation.
3661 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
3662 (Memory Exhausted): Renamed from Parser Stack Overflow.
3663 Revamp wording slightly to prefer "memory exhaustion".
3664 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
3665
97460c78
PE
3666 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
3667
30757c8c
PE
3668 Add i18n support to the GLR skeleton. Partially fix the C++
3669 skeleton; a C++ expert needs to finish this. Remove debugging
3670 msgids; there's little point to having them translated, since they
3671 can be understood only by someone who can read the
3672 (English-language) source code.
3673
3674 Generate runtime-po/bison-runtime.pot automatically, so that we
3675 don't have to worry about garbage getting in that file. We'll
3676 make sure after the next official release that old msgids don't
3677 get lost. See
3678 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
3679
3680 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
3681 Now auto-generated.
3682 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
3683 Fix typos in explanations of the runtime file.
3684 * bootstrap: Change gettext keyword from YYI18N to YY_.
3685 Use standard Makefile.in.in in runtime-po, since we'll arrange
3686 for backward-compatible bison-runtime.po files in a different way.
3687 * data/glr.c (YY_): New macro, from yacc.c.
3688 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
3689 Translate messages intended for users.
3690 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
3691 the wording in the other skeletons. We don't know that the memory
3692 is virtual.
3693 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
3694 Use same method that yacc.c uses.
3695 Don't translate debugging messages.
3696 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
3697 it doesn't work (yet), and requires C++ expertise to fix.
3698 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
3699 Move defn to a more logical place, to be consistent with other
3700 skeletons.
3701 Don't translate debugging messages.
3702 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
3703 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
3704 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
3705 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
3706
ac8c5689
PE
3707 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
3708 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
3709 void, not int.
3710 * tests/glr-regression.at (Badly Collapsed GLR States):
3711 Likewise.
3712 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
3713 yylex should return 0 at EOF rather than aborting.
3714
6100a9aa
PE
3715 Improve tests for stack overflow in GLR parser.
3716 Problem reported by twlevo@xs4all.nl.
3717 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
3718 All uses removed.
3719 (yyStackOverflow): Just longjmp, but with value 2 so that caller
3720 can handle the problem.
3721 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
3722 (yyparse): New local variable yyresult to record the result.
3723 Use result of setjmp to set it, rather than storing itinto
3724 struct.
3725 (yyDone): Remove label.
3726 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
3727 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
3728 if YYABORT is used).
3729 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
3730 yyparse status; put status > 1 into diagnostic.
3731 Check that status==2 works.
3732 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
3733 Use exit status 3 for failure to open (which shouldn't happen).
3734
15f40952
PE
37352005-07-17 Paul Eggert <eggert@cs.ucla.edu>
3736
67fd79c4
PE
3737 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
3738 1 on syntax error; just let yyparse do its thing.
3739 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
3740 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
3741 (Exploding the Stack Size with Alloca):
3742 (Exploding the Stack Size with Malloc):
3743 Expect exit status 2, not 1, since the parser is supposed to blow
3744 its stack. Problem reported by twlevo@xs4all.nl.
3745
15f40952
PE
3746 * data/glr.c (yyparse): Don't assume that the initial calls
3747 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
3748 Print a stack-overflow message and fail instead.
3749 Initialize the line-number information before creating the stack,
3750 so that the stack-overflow message can report line zero safely.
3751
f32c66b5
PE
37522005-07-14 Paul Eggert <eggert@cs.ucla.edu>
3753
a22ff96f 3754 Fix problems reported by twlevo@xs4all.nl.
e2688cd9
PE
3755 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
3756 (yyuserMerge): Provide a default case if b4_mergers is empty.
3757 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
3758 * tests/glr-regression.at
3759 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
c70fdfcd 3760 Add casts to pacify C++ compilers.
1beb0b24
PE
3761 * tests/glr-regression.at (Improper merging of GLR delayed action
3762 sets): Declare yylex before using it.
f32c66b5 3763 * tests/Makefile.am (maintainer-check-g++): Fix a stray
a22ff96f
PE
3764 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
3765 test for valgrind; valgrind is independent of g++.
3766 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
3767 for compatibility with POSIX 1003.1-2001 (if running coreutils).
3768 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
3769 Use a destructor, so that we can expand the stack. Change
3770 YYSTYPE to char * so that we can free it. Cast result of malloc.
f32c66b5 3771
d741bd1b
PE
37722005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
3773
3774 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
3775 a valgrind failure. Problem reported by twlevo@xs4all.nl.
3776
0410a6e0
PE
37772005-07-13 Paul Eggert <eggert@cs.ucla.edu>
3778
3779 * PACKAGING: New file, suggested by Bruno Haible and taken from
3780 similar wording in gettext's PACKAGING file.
3781 * NEWS: Mention PACKAGING.
3782 * Makefile.am (EXTRA_DIST): Add PACKAGING.
3783
f7ab6a50
PE
37842005-07-12 Paul Eggert <eggert@cs.ucla.edu>
3785
baf785db 3786 * NEWS: Document recent i18n improvements.
f7ab6a50
PE
3787 * bootstrap: Get runtime translations into runtime-po.
3788 Create runtime-po files automatically, if possible.
3789 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
3790 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
3791 does not infringe on the user's name space.
3792 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
3793 * doc/bison.texinfo (Internationalization): Revamp the English
3794 and Texinfo syntax a bit, to try to make it clearer.
3795 (Bison Options, Option Cross Key): Mention --print-localedir.
3796 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
3797 YYENABLE_NLS. Quote a bit more.
3798 * runtime-po/.cvsignore: New file.
3799 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
3800 * runtime-po/Rules-quot: Remove; now created by bootstrap.
3801 * runtime-po/quot.sed: Likewise.
3802 * runtime-po/boldquot.sed: Likewise.
3803 * runtime-po/en@quot.header: Likewise.
3804 * runtime-po/en@boldquot.header: Likewise.
3805 * runtime-po/insert-header.sin: Likewise.
3806 * runtime-po/remove-potcdate.sin: Likewise.
3807 * runtime-po/Makevars: Likewise.
3808 * runtime-po/LINGUAS: Likewise.
3809 * runtime-po/de.po: Likewise; we will rely on the translation project
3810 to maintain this, so "bootstrap" should get it.
0410a6e0 3811 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
f7ab6a50
PE
3812 its value.
3813 * src/main.c (main): Bind the bison-runtime domain, too.
3814
38152005-07-12 Bruno Haible <bruno@clisp.org>
3816
3817 * data/yacc.c: Include <libintl.h> when NLS is enabled.
3818 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
3819 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
3820 * runtime-po: New directory.
3821 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
3822 $(DOMAIN).pot-update rule, so that old messages are never dropped.
3823 * runtime-po/Rules-quot: New file, copied from po/.
3824 * runtime-po/quot.sed: Likewise.
3825 * runtime-po/boldquot.sed: Likewise.
3826 * runtime-po/en@quot.header: Likewise.
3827 * runtime-po/en@boldquot.header: Likewise.
3828 * runtime-po/insert-header.sin: Likewise.
3829 * runtime-po/remove-potcdate.sin: Likewise.
3830 * runtime-po/Makevars: New file.
3831 * runtime-po/POTFILES.in: New file.
3832 * runtime-po/LINGUAS: New file.
3833 * runtime-po/bison-runtime.pot: New file.
3834 * runtime-po/de.po: New file.
3835 * m4/bison.m4: New file.
3836 * Makefile.am (SUBDIRS): Add runtime-po.
3837 (aclocaldir, aclocal_DATA): New variables.
3838 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
3839 Define aclocaldir.
3840 * src/getargs.c (usage): Document --print-localedir option.
3841 (PRINT_LOCALEDIR_OPTION): New enum item.
3842 (long_options): Add --print-localedir option.
3843 (getargs): Handle --print-localedir option.
3844 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
3845 (Internationalization): New section.
3846
22dda0f0
AD
38472005-07-12 Akim Demaille <akim@epita.fr>
3848
3849 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
3850 for consistency with the rest of the code.
3851 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
3852 Add separators.
3853
82b248ad
AD
38542005-07-12 Akim Demaille <akim@epita.fr>
3855
3856 * src/parse-gram.y: Use %printer instead of YYPRINT.
3857
fa0e9314
AD
38582005-07-12 Akim Demaille <akim@epita.fr>
3859
867a3e00
AD
3860 * src/symtab.h, src/symtab.c (symbol_print): New.
3861 * src/symlist.h, src/symlist.c (symbol_list_print): New.
3862 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
3863
38642005-07-12 Akim Demaille <akim@epita.fr>
3865
3866 * data/glr.c (b4_syncline): Fix (swap) the definitions of
fa0e9314
AD
3867 b4_at_dollar and b4_dollar_dollar.
3868
e054b190
PE
38692005-07-11 Paul Eggert <eggert@cs.ucla.edu>
3870
3871 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
3872 and Pennello's paper.
3873
34160ec4
PE
38742005-07-09 Paul Eggert <eggert@cs.ucla.edu>
3875
407d4a75
PE
3876 * data/yacc.c (yyparse): Undo previous patch. Instead,
3877 set yylsp[0] and yyvsp[0] only if the initial action
3878 sets yylloc and yylval, respectively.
3879
34160ec4
PE
3880 * data/yacc.c (yyparse): In the initial action, set
3881 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
3882 This avoids the use of undefined variables if the initial
3883 action does not set yylloc and/or yylval.
3884
c3d5a4a7
PE
38852005-07-07 Paul Eggert <eggert@cs.ucla.edu>
3886
b34d96c1
PE
3887 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
3888 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
3889 Remove from CVS. These files are automatically generated.
3890 * examples/extexi: Clarify that this file is now part of Bison,
3891 not GNU M4, and that it works with any POSIX-compatible Awk.
3892 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
3893 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
3894 so that we also get calc++-parser.yy. Geneate it.
3895 Use $(AWK), not gawk, since any conforming Awk will do.
3896 Put comment before action, since older 'make' can't handle comment
3897 in action.
3898 $(BUILT_SOURCES): List all built sources, not just some of them.
3899 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
3900 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
3901 $($(calc_sources_generated)): Remove unnecessary test for existence
3902 of target. (This had a shell syntax error anyway; a stray "x".)
3903 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
3904 calc++-parser.yy.
3905 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
3906
c3d5a4a7
PE
3907 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
3908 implied by the other modules.
3909
828c373b
AD
39102005-07-06 Akim Demaille <akim@epita.fr>
3911
3912 Bind examples/calc++ to the package.
3913 * examples/calc++/Makefile: Remove, replaced by...
3914 * examples/calc++/Makefile.am: ... this new file.
3915 * examples/calc++/test: Remove input.
3916 * examples/calc++/compile: Remove.
3917 * examples/Makefile.am: New.
3918 * configure.ac, Makefile.am: Adjust.
3919 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
3920
63cb01d6
PE
39212005-07-05 Paul Eggert <eggert@cs.ucla.edu>
3922
fd2df2ed
PE
3923 * data/glr.c (yyFail): Drastically simplify; since the format argument
3924 never had any % directives, we can simply pass it to yyerror.
3925 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
3926 be modified later, as that is the usual style in glr.c.
3927 Problems reported by Paul Hilfinger.
3928
63cb01d6
PE
3929 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
3930 and size overflow errors.
3931 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
3932 in case the user prolog sets feature-test macros like _GNU_SOURCE.
3933 (YYSIZEMAX): New macro.
3934 (yystpcpy): New function, taken from yacc.c.
3935 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
3936 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
3937 so that we don't have to maintain their signatures.
3938 (yyFail): Check for buffer overflow, by using vsnprintf rather
3939 than vsprintf. Allocate a bigger buffer if possible.
3940 Report an error if buffer allocation fails.
3941 (yyStackOverflow): New function.
3942 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
3943 the initialization was successful. It might fail if storage was
3944 exhausted.
3945 (yyexpandGLRStack): Add more checks for storage allocation failure.
3946 Use yyStackOverflow to report failures.
3947 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
3948 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
3949 Don't assume stack number fits in int.
3950 (yysplitStack): Check for storage allocation failure.
3951 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
3952 can print diagnostics on storage allocation failure. All callers
3953 changed.
3954 (yyresolveValue): Use yybool for boolean.
3955 (yyreportSyntaxError): Check for size-calculation overflow.
3956 This code is taken from yacc.c.
3957 (yyparse): Check for storage allocation errors when allocating
3958 the initial stack.
3959
1c59e0a1
AD
39602005-07-05 Akim Demaille <akim@epita.fr>
3961
3962 Extract calc++ from the documentation.
3963 * doc/bison.texinfo (Calc++): Add the extraction marks.
3964 * examples/extexi: New, from the aborted GNU Programming 2E.
3965 Separate the different paragraph of a file with empty lines.
3966 * examples/Makefile: Use it to extract the whole calc++ example.
3967
8a0adb01
AD
39682005-06-24 Akim Demaille <akim@epita.fr>
3969
3970 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
3971 class typedefs.
3972
12545799
AD
39732005-06-22 Akim Demaille <akim@epita.fr>
3974
3975 * doc/bison.texinfo (C++ Language Interface): First stab.
3976 (C++ Parsers): Remove.
3977
99be0235
AD
39782005-06-22 Akim Demaille <akim@epita.fr>
3979
3980 * data/lalr1.cc (yylex_): Honor %lex-param.
3981
0ffd4fd1
AD
39822005-06-22 Akim Demaille <akim@epita.fr>
3983
3984 Start a set of simple examples.
3985 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
3986 * examples/calc++/calc++-driver.hh,
3987 * examples/calc++/calc++-parser.yy,
3988 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
3989 * examples/calc++/compile, examples/calc++/test: New.
3990
0925ebb4
PE
39912005-06-09 Paul Eggert <eggert@cs.ucla.edu>
3992
3993 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
3994 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
3995 which stems from the 2005-05-27 patch.
3996
43d3b664
PH
39972005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
3998
3999 * data/glr.c: Modify treatment of unused parameters to permit use
4000 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
4001
3062864d
PE
40022005-05-30 Paul Eggert <eggert@cs.ucla.edu>
4003
4004 Fix infringement on user name space reported by Janos Zoltan Szabo.
4005 * data/yacc.c (yyparse): strlen -> yystrlen.
4006
989b5b8e
AD
40072005-05-30 Akim Demaille <akim@epita.fr>
4008
4009 * data/lalr1.cc (_): New.
4010 Translate the various messages.
4011
bedf57f5
PE
40122005-05-27 Paul Eggert <eggert@cs.ucla.edu>
4013
4014 Fix infringement on user name space reported by Bruno Haible.
4015 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
4016 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
4017 the user's name space.
4018 (alloca): Include <stdlib.h> to get it, if it's not built in.
4019 (YYMALLOC, YYFREE): Define only if needed.
4020 (malloc, free): Declare, but only if needed, as this infringes on
4021 the user name space.
4022
4d1801f1
PE
40232005-05-25 Paul Eggert <eggert@cs.ucla.edu>
4024
4025 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
4026 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
4027 with %d format.
4028 * lib/ebitset.c (min, max): Undef before defining.
4029 * lib/vbitset.c (min, max): Likewise.
4030 * lib/subpipe.c (create_subpipe): Save local variables in case
4031 vfork clobbers them.
4032
40332005-05-24 Bruno Haible <bruno@clisp.org>
4034
4035 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
4036 error message syntax used by gcc-4.0.
4037
b94a9e1e
PE
40382005-05-23 Paul Eggert <eggert@cs.ucla.edu>
4039
85ac3861
PE
4040 * README: Mention m4 1.4.3. Remove obsolete advice about
4041 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
4042
b94a9e1e
PE
4043 * bootstrap: Remove workaround for problem I encountered with
4044 gettext 0.14.1; it seems to be fixed now.
4045
51c30d21
PE
40462005-05-22 Paul Eggert <eggert@cs.ucla.edu>
4047
009ce67d
PE
4048 * NEWS: Version 2.0a.
4049
f2a97c62
PE
4050 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
4051 the previous change.
4052
c8775f93
PE
4053 Various maintainer cleanups.
4054 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
4055 conftest*, for benefit of CVS commands run at the same time as
4056 "configure". Add build-aux, since "bootstrap" now creates it and
4057 its subfiles.
4058 * Makefile.cfg (move_if_change): Remove.
4059 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
4060 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
4061 (po_repo, do-po-update, po-update, wget_files, get-targets):
4062 (config.guess-url_prefix, config.sub-url_prefix):
4063 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
4064 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
4065 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
4066 Remove.
4067 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
4068 this is now the recommended name.
4069 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
4070 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
4071 ylwrap. These files now go into build-aux.
4072 * config/move-if-change: Remove.
4073 * config/prev-version.txt: Bump from 1.75 to 2.0.
4074
3ea5f0ec
PE
4075 * bootstrap: Add stdio-safer, unistd-safer modules.
4076 Remove m4/glibc2.m4 (introduced by latest gnulib, but
4077 we don't need it).
4078 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
4079 fopen-safer.c, stdio-safer.h, unistd-safer.h.
4080 * lib/subpipe.c: Include "unistd-safer.h".
4081 (create_subpipe): Make sure all the newly-created
4082 file descriptors are > 2, so that diagnostics don't
4083 get sent down them (which might cause Bison to hang, in theory).
4084 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
4085 * src/files.c (xfopen): Use fopen_safer, not fopen.
4086
51c30d21
PE
4087 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
4088 yesterday's yacc.c fix.
4089
cea1469d
PE
40902005-05-21 Paul Eggert <eggert@cs.ucla.edu>
4091
3ea5f0ec
PE
4092 * data/glr.c, data/lalr1.cc: Update copyright date.
4093
cea1469d
PE
4094 Fix a destructor bug reported by Wolfgang Spraul in
4095 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
4096 * data/yacc.c (yyabortlab): Don't call destructor, and
4097 don't set yychar to EMPTY.
4098 (yyoverflowlab): Don't call destructor.
4099 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
4100 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
4101 since we no longer output the message "discarding lookahead token
4102 end of input ()".
4103
5e6f62f2
PH
41042005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
4105
4106 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
4107 fix a small glitch in debugging output.
4108 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
4109 after YY_SYMBOL_PRINT where needed.
4110
4111 (struct yyGLRState): Add some comments.
4112 (struct yySemanticOption): Add some comments.
4113 (union yyGLRStackItem): Add comment.
4114
4115 (yymergeOptionSets): Correct this to properly perform the union,
4116 avoiding infinite reported by Michael Rosien.
4117 Update comment.
4118
4119 * tests/glr-regression.at: Add test for GLR merging error reported
4120 by M. Rosien.
cea1469d 4121
0fb669f9
PE
41222005-05-13 Paul Eggert <eggert@cs.ucla.edu>
4123
4124 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
4125 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
4126 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
4127 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
4128 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
4129 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
4130 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
4131 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
4132 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
4133 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
4134 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
4135 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
4136 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
4137 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
4138 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
4139 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
4140 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
4141 src/derives.h, src/files.c, src/files.h, src/getargs.c,
4142 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
4143 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
4144 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
4145 src/output.h, src/parse-gram.c, src/parse-gram.h,
4146 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
4147 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
4148 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
4149 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
4150 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
4151 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
4152 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
4153 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
4154 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
4155 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
4156 tests/reduce.at, tests/regression.at, tests/sets.at,
4157 tests/synclines.at, tests/testsuite.at, tests/torture.at:
4158 Update FSF postal mail address.
4159
51f4735e
PE
41602005-05-11 Paul Eggert <eggert@cs.ucla.edu>
4161
4162 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
4163 Problem reported by Ralf Menzel.
4164
80ce3401
PE
41652005-05-01 Paul Eggert <eggert@cs.ucla.edu>
4166
4167 * tests/actions.at: Test that stack overflow invokes destructors.
4168 From Marcus Holland-Moritz.
4169 * data/yacc.c (yyerrlab): Move the code that destroys the stack
4170 from here....
4171 (yyreturn): to here. That way, destructors are called properly
4172 even if the stack overflows, or the user calls YYACCEPT or
4173 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
4174 (yyoverflowlab): Destroy the lookahead.
4175
41762005-04-24 Paul Eggert <eggert@cs.ucla.edu>
4177
4178 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
4179
72f000b0
PE
41802005-04-17 Paul Eggert <eggert@cs.ucla.edu>
4181
4182 * NEWS: Bison-generated C parsers no longer quote literal strings
4183 associated with tokens.
4184 * src/output.c (prepare_symbols): Don't escape strings,
4185 since users don't want to see C escapes.
4186 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
4187 in diagnostics.
c19683bb 4188 * tests/input.at (Torturing the Scanner): Likewise.
72f000b0
PE
4189 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
4190
1094323f
PE
41912005-04-16 Paul Eggert <eggert@cs.ucla.edu>
4192
4193 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
4194 the data size is known to be too small and we can't increase it.
4195 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
4196
ca407bdf
PE
41972005-04-15 Paul Eggert <eggert@cs.ucla.edu>
4198
4199 * src/parse-gram.y: Include quotearg.h.
4200 (string_as_id): Quote $1 before using it as a key, since the
4201 lexer no longer quotes it for us.
4202 (string_content): Don't strip quotes, since lexer no longer
4203 quotes it for us.
4204 * src/scan-gram.l: Include quotearg.h.
4205 ("\""): Omit quote.
4206 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
4207 a key, since the rest of the lexer doesn't quote it.
4208 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
4209 * tests/regression.at (Token definitions): Check for backslashes
4210 in token strings.
4211
4212 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
4213 (YYSIZE_T): Define to unsigned long int when using an older compiler.
4214 (yyparse): Revamp code to generate long syntax error message, to
4215 make it easier to translate, and to avoid problems with arithmetic
4216 overflow. Change "virtual memory" to "memory" in diagnostic, since
4217 we don't know whether the memory is virtual.
4218
1ce59070
PE
42192005-04-13 Paul Eggert <eggert@cs.ucla.edu>
4220
4221 * NEWS: Bison-generated C parsers now use the _ macro to
4222 translate strings.
4223 * data/yacc.c (_) [!defined _]: New macro.
4224 All English strings wrapped inside this macro.
4225 * doc/bison.texinfo (Bison Parser): Document _.
4226 * po/POTFILES.in: Include src/parse-gram.c, since it now
4227 includes translateable strings that parse-gram.y doesn't.
4228
a749a695
PE
42292005-04-12 Paul Eggert <eggert@cs.ucla.edu>
4230
4231 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
4232 reverting the 2004-10-11 change to this function.
4233 (symbol_check_alias_consistency): Don't call symbol_type_set
4234 if the type name is already correct.
4235 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
4236
8fb1053b
PE
42372005-03-25 Paul Eggert <eggert@cs.ucla.edu>
4238
4239 * tests/regression.at (Token definitions): Don't use a token named
4240 c, as that generates a "#define c ..." that runs afoul of buggy
4241 stdlib.h that uses the identifier c as a member of struct
4242 drand48_data. Problem reported by Horst Wente.
4243
ff498c4a
PE
42442005-03-21 Paul Eggert <eggert@cs.ucla.edu>
4245
4246 * bootstrap: Change translation URL from
4247 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
4248 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
4249 redirection glitches. Problem reported by twlevo@xs4all.nl.
4250
65211d70
PE
42512005-03-20 Paul Eggert <eggert@cs.ucla.edu>
4252
4253 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
4254 after operands; POSIX says this isn't portable for the c99 command.
4255
9577fb1f
PE
42562005-03-18 Paul Eggert <eggert@cs.ucla.edu>
4257
4258 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
4259 immediately if a data overrun has occurred; this may help us track
4260 down what may be a spurious failure on MacOS.
4261
78b178f7
PE
42622005-03-17 Paul Eggert <eggert@cs.ucla.edu>
4263
a2599d0f
PE
4264 Respond to problems reported by twlevo@xs4all.nl.
4265
4266 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
4267
78b178f7
PE
4268 * src/vcg.h: Comment fix.
4269 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
4270 (G_CMAX): Change to -1 instead of INT_MAX.
4271
4272 * data/yacc.c (yyparse): Omit spaces before #line.
78b178f7 4273
7296e729
PE
42742005-03-15 Paul Eggert <eggert@cs.ucla.edu>
4275
4276 * src/tables.c (state_number_to_vector_number): Put it inside an
4277 "#if 0", since it's not currently used. Problem reported by
4278 Roland McGrath.
4279
05ac60f3
PE
42802005-03-06 Paul Eggert <eggert@cs.ucla.edu>
4281
4282 * src/output.c (escaped_output): Renamed from
4283 escaped_file_name_output, since we now use it for symbol tags as
4284 well. All uses changed.
4285 (symbol_destructors_output, symbol_printers_output):
4286 Escape symbol tags too.
4287 Problem reported by Matyas Forstner in
4288 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
4289
4290 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
4291 not needed.
4292 * src/output.c (user_actions_output, token_definitions_output,
4293 symbol_destructors_output, symbol_printers_output): Likewise.
4294 * src/reader.c (prologue_augment): Likewise.
4295 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
4296
4297 * src/vcg.c (output_edge): Don't quote linestyle arg.
4298 Problem reported by twlevo@xs4all.nl.
4299
7eb453ac
PE
43002005-02-28 Paul Eggert <eggert@cs.ucla.edu>
4301
4302 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
4303 example, reported by Derek M Jones. Also, make the example even
4304 more outrageous, to better illustrate how bad the problem is.
4305
4c04c52a
PE
43062005-02-24 Paul Eggert <eggert@cs.ucla.edu>
4307
4308 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
4309 putsym. Typo reported by Sebastian Piping.
4310
a61e1620
PE
43112005-02-23 Paul Eggert <eggert@cs.ucla.edu>
4312
4313 * doc/bison.texinfo (Language and Grammar): some -> same
4314 (Epilogue): int he -> in the
4315 Typos reported by Sebastian Piping via Justin Pence.
4316
9ec93868
PE
43172005-02-07 Paul Eggert <eggert@cs.ucla.edu>
4318
4319 * tests/glr-regression.at (Improper handling of embedded actions
4320 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
4321 embedded actions and $-N in GLR parsers", work around an Autoconf bug
4322 with dollar signs in test names.
4323 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
4324 for a similar reason.
4325
73ce7e7e
PE
43262005-01-28 Paul Eggert <eggert@cs.ucla.edu>
4327
4328 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
4329 wants to redefine G_VIEW.
4330
2e72b98e
PE
43312005-01-27 Paul Eggert <eggert@cs.ucla.edu>
4332
4333 * src/vcg.c (get_view_str): Remove case for normal_view.
4334 Problem reported by twlevo@xs4all.nl.
4335
e0d634e5
PE
43362005-01-24 Paul Eggert <eggert@cs.ucla.edu>
4337
ccf830a4
PE
4338 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
4339 Problem reported by twlevo@xs4all.nl.
4340
e0d634e5
PE
4341 * doc/bison.texinfo: Change @dircategory from "GNU programming
4342 tools" to "Software development". Requested by Richard Stallman
4343 via Karl Berry.
4344
7bbc8cb0
PE
43452005-01-23 Paul Eggert <eggert@cs.ucla.edu>
4346
4347 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
4348 Problem reported by twlevo@xs4all.nl.
4349
08b770bc
PE
43502005-01-21 Paul Eggert <eggert@cs.ucla.edu>
4351
4352 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
4353 keyword; it's not needed with modern compilers, and it doesn't
4354 affect correctness with older compilers. Suggested by
4355 twlevo@xs4all.nl.
4356
95f22ad2
PE
43572005-01-17 Paul Eggert <eggert@cs.ucla.edu>
4358
4359 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
4360 gcc -Wswitch-default.
4361 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
4362 * data/yacc.c (yyparse): Likewise.
4363
d229d15c
PE
43642005-01-12 Paul Eggert <eggert@cs.ucla.edu>
4365
4366 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
4367 already. Let config.h define any nonstandard values.
4368
ecadd90f
PE
43692005-01-10 Paul Eggert <eggert@cs.ucla.edu>
4370
4371 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
4372 for the benefit of slower hosts. Problem reported by
4373 Nelson H. F. Beebe.
4374
213744b5
PE
43752005-01-07 Paul Eggert <eggert@cs.ucla.edu>
4376
4377 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
4378 being defined and not used.
4379 * data/lalr1.cc (yyparse): Likewise.
4380 Use "if (false)" rather than "if (0)".
4381
249d3236
PE
43822005-01-05 Paul Eggert <eggert@cs.ucla.edu>
4383
4384 * TODO: Mention that we should allow NUL bytes in tokens.
4385
987cc1fb
PE
43862005-01-02 Paul Eggert <eggert@cs.ucla.edu>
4387
4388 * src/scan-skel.l (<<EOF>>): Don't close standard output.
4389 Problem reported by Hans Aberg.
4390
08fe02d9
PE
43912005-01-01 Paul Eggert <eggert@cs.ucla.edu>
4392
4393 * src/getargs.c (version): Happy new year; update overall
4394 program copyright date from 2004 to 2005.
4395
4396 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
4397 Problem reported by Hans Aberg.
4398 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
4399 (Output file names.): Add a test for the case when standard output
4400 is closed.
4401
010c0266
PE
44022004-12-26 Paul Eggert <eggert@cs.ucla.edu>
4403
4404 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
4405 to fix an oversight in the Bison 2.0 manual.
4406
da12206a
PE
44072004-12-25 Paul Eggert <eggert@cs.ucla.edu>
4408
4409 * NEWS: Version 2.0. Reformat the existing news items since
4410 1.875, so that related items are grouped together.
3a4734aa 4411 * configure.ac (AC_INIT): Bump version to 2.0.
da12206a
PE
4412 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
4413
c935d934
PE
4414 * tests/torture.at (Exploding the Stack Size with Alloca): Set
4415 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
4416 otherwise, we're not testing alloca. Unfortunately there's no
4417 simple way to consult HAVE_ALLOCA here.
4418
da12206a
PE
4419 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
4420 for yymsg, too.
4421
4422 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
4423 hand. This avoids a warning about comparing int to size_t when
4424 GCC warnings are enabled.
4425
0a2c5137
PE
44262004-12-22 Paul Eggert <eggert@cs.ucla.edu>
4427
d7e14fc0
PE
4428 * NEWS: Bison-generated parsers no longer default to using the
4429 alloca function (when available) to extend the parser stack, due
4430 to widespread problems in unchecked stack-overflow detection.
4431 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
4432 responsibility to set it to a positive value. This lets the user
4433 specify a value that is not a preprocessor constant.
4434 * data/yacc.c (YYMAXDEPTH): Likewise.
4435 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
4436 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
4437 to be a compile-time constant. However, explain the constraints on it.
4438 Also, explain the constraints on YYINITDEPTH.
4439 (Table of Symbols): Explain that alloca is no longer the default.
4440 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
4441 to 1.
4442
0a2c5137
PE
4443 * doc/bison.texinfo (Location Default Action): Mention that n must
4444 be zero when k is zero. Suggested by Frank Heckenbach.
4445
e019c247
AD
44462004-12-22 Akim Demaille <akim@epita.fr>
4447
4448 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
4449 (parser::state_type, parser::semantic_type, parser::location_type):
4450 Private, not public.
4451 (parser::parse): Return ints, not bool.
4452 Returning a bool introduces a problem: 0 corresponds to false, and
4453 it seems weird to return false on success. Returning true changes
4454 the conventions for yyparse.
4455 Alternatively we could return void and send an exception.
4456 There is no clear consensus (yet?).
4457 (state_stack, semantic_stack, location_stack): Rename as...
4458 (state_stack_type, semantic_stack_type, location_stack_type): these.
4459 Private, not public.
4460 * tests/c++.at: New.
4461 * tests/testsuite.at, tests/Makefile.am: Adjust.
4462
72731bb7
AD
44632004-12-21 Akim Demaille <akim@epita.fr>
4464
4465 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
4466
9a0d8bec
AD
44672004-12-21 Akim Demaille <akim@epita.fr>
4468
4469 Don't impose std::string for filenames.
4470
4471 * data/lalr1.cc (b4_filename_type): New.
4472 (position::filename): Use it.
4473 (parser.hh): Move the inclusion of stack.hh and location.hh below
4474 the user code, so that needed headers for the filename type can be
4475 included first.
72731bb7
AD
4476 Forward declare them before the user code.
4477 * tests/Makefile.am (check-local, installcheck-local): Pass
4478 TESTSUITEFLAGS to the TESTSUITE.
9a0d8bec 4479
99880de5
AD
44802004-12-20 Akim Demaille <akim@epita.fr>
4481
4482 Use more STL like names: my_class instead of MyClass.
4483
4484 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
4485 (SemanticStack, SemanticType, StateStack, StateType)
4486 (TokenNumberType, Stack, Slice, Traits, Parser::location)
4487 (Parser::value): Rename as...
4488 (location_stack, location_type, rhs_number_type, semantic_stack)
4489 (semantic_type, state_stack, state_type, token_number_type, stack)
4490 (slice, traits, parser::yylloc, parser::yylval): these.
4491
4492 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
4493
9bec482e
PE
44942004-12-19 Paul Eggert <eggert@cs.ucla.edu>
4495
4496 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
4497 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
4498
f6fbd3da
PE
44992004-12-17 Paul Eggert <eggert@cs.ucla.edu>
4500
4501 Remove uses of 'short int' and 'unsigned short int'. This raises
4502 some arbitrary limits. It uses more memory but nowadays that's
4503 not much of an issue.
4504
4505 This change does not affect the generated parsers; that's a different
4506 task, as some users will want to conserve memory there.
4507
4508 Ideally we should use size_t to represent all object counts, and
4509 something like ptrdiff_t to represent signed differences of object
4510 counts; but that will require more code-cleanup than I have the
4511 time to do right now.
4512
4513 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
4514 Use size_t, not int or short int, to count objects.
4515 * src/closure.c (nritemset, closure): Likewise.
4516 * src/closure.h (nritemset, closure): Likewise.
4517 * src/nullable.c (nullable_compute): Likewise.
4518 * src/print.c (print_core): Likewise.
4519 * src/print_graph.c (print_core): Likewise.
4520 * src/state.c (state_compare, state_hash): Likewise.
4521 * src/state.h (struct state): Likewise.
4522 * src/tables.c (default_goto, goto_actions): Likewise.
4523
4524 * src/gram.h (rule_number, rule): Use int, not short int.
4525 * src/output.c (prepare_rules): Likewise.
4526 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
4527 errs, reductions): Likewise.
4528 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
4529 Likewise.
4530 * src/tables.c (vector_number, tally, action_number,
4531 ACTION_NUMBER_MINIMUM): Likewise.
4532 * src/output.c (muscle_insert_short_int_table): Remove.
4533
efeed023
AD
45342004-12-17 Akim Demaille <akim@epita.fr>
4535
4536 * data/lalr1.cc: Extensive Doxygenation.
4537 (error_): Rename as...
4538 (error): this, since it is visible to the user.
4539 Adjust callers.
4540 (Parser::message): Now an automatic variable from...
4541 (Parser::yyreport_syntax_error_): here.
4542 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
4543 Parser::error.
4544 * tests/input.at: Escape $.
4545
bc82c5a5
PE
45462004-12-16 Paul Eggert <eggert@cs.ucla.edu>
4547
4548 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
4549 Parenthesize rhs to avoid obscure problems with mistakes like
4550 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
4551 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
4552 b4_rhs_location): Likewise.
4553 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
4554 b4_rhs_location): Likewise.
4555
fd19f271
AD
45562004-12-16 Akim Demaille <akim@epita.fr>
4557
4558 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
4559 yacc.c: be sure to stay within yycheck_.
4560 * tests/actions.at: Re-enable C++ tests.
4561
10454ea4
AD
45622004-12-16 Akim Demaille <akim@epita.fr>
4563
4564 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
4565 real.
4566
c5b95ccf
AD
45672004-12-16 Akim Demaille <akim@epita.fr>
4568
4569 Use #define to handle the %name-prefix.
4570
4571 * data/glr.c, data/yacc.c: Comment changes.
4572 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
4573 so that one can refer to yylex in the parser file, and have it
4574 renamed, as is the case with other skeletons.
4575
617a8f12
AD
45762004-12-16 Akim Demaille <akim@epita.fr>
4577
4578 Move lalr1.cc internals into yy*.
4579
4580 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
4581 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
4582 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
4583 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
4584 (empty_, final_, terror_, errcode_, ntokens_)
4585 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
4586 (looka_, ilooka_, error_range_, nerrs_):
4587 Rename as...
4588 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
4589 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
4590 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
4591 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
4592 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
4593 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
4594 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
4595 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
4596 these.
4597
1e547e6e
PE
45982004-12-15 Paul Eggert <eggert@cs.ucla.edu>
4599
4600 Fix some problems reported by twlevo at xs4all.
4601 * src/symtab.c (symbol_new): Report an error if the input grammar
4602 contains too many symbols. This is better than calling abort() later.
4603 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
4604 (struct node, struct graph):
4605 Rename member expand to stretch. All uses changed.
4606 (struct graph): Remove member layoutalgorithm. All uses removed.
4607 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
4608 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
4609 All uses changed.
4610 (N_STRETCH): Rename from N_EXPAND. All uses changed.
4611
735d6bd4
AD
46122004-12-15 Akim Demaille <akim@epita.fr>
4613
4614 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
4615 Add more Doxygen comments.
4616 (symprint_, stack_print_, reduce_print_, destruct_, pop)
4617 (report_syntax_error_, translate_): Rename as...
4618 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
4619 (yypop_, yyreport_syntax_error_, yytranslate_): this.
4620
2e1f5829
AD
46212004-12-15 Akim Demaille <akim@epita.fr>
4622
4623 * data/lalr1.cc (lex_): Rename as...
4624 (yylex_): this.
4625 Move the trace here.
4626 Take the %name-prefix into account.
4627 Reported by Alexandre Duret-Lutz.
4628
a3cb6248
AD
46292004-12-15 Akim Demaille <akim@epita.fr>
4630
4631 Simplify the C++ parser constructor.
4632
4633 * data/lalr1.cc (debug_): Rename as...
4634 (yydebug_): so that the parser's internals are always in the yy*
4635 pseudo namespace.
4636 Adjust uses.
4637 (b4_parse_param_decl): Remove the leading comma as it is now only
4638 called as unique argument list.
4639 (Parser::Parser): Remove the constructor accepting a location and
4640 an initial debugging level.
4641 Remove from the other ctor the argument for the debugging level.
4642 (debug_level_type, debug_level, set_debug_level): New.
4643
4644 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
4645 constructor calls.
4646
07fed891
AD
46472004-12-15 Akim Demaille <akim@epita.fr>
4648
4649 Remove b4_root related material: failure experiment
a3cb6248 4650 (which goal was to allow to derive from a class).
07fed891
AD
4651
4652 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
4653 definitions and uses.
4654
e603eaa5
PE
46552004-12-14 Paul Eggert <eggert@cs.ucla.edu>
4656
4657 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
4658 not 2, since it's not portable to subtract 1 from the start of an
4659 array. The new item 0 is never set or used. All uses changed.
4660
4661 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
4662 the default definition of YYLLOC_DEFAULT. Problem reported
4663 by Frank Heckenbach.
4664
fafb007d
PE
46652004-12-12 Paul Eggert <eggert@cs.ucla.edu>
4666
4667 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
4668 the normal case and one for the error case. Just use the
4669 first one uniformly. Problem reported by Frank Heckenbach.
4670 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
4671 use exactly the same macro in both places.
4672 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
4673 so that the normal-case YYRHSLOC works for the error case too.
4674 All uses changed.
4675 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
4676 (YYLLOC_DEFAULT): Use the same macro as glr.c.
4677 * doc/bison.texinfo (Location Default Action): Don't claim that
4678 we have an array of locations. Use the same macro for both glr
4679 and lalr parsers. Mention YYRHSLOC. Mention what happens when
4680 the index is 0.
4681
48814dcd
PE
46822004-12-10 Paul Eggert <eggert@cs.ucla.edu>
4683
a4e1a53b
PE
4684 * HACKING: Update email addresses to send announcements to.
4685
48814dcd
PE
4686 * configure.ac (AC_INIT): Bump version to 1.875f.
4687
337116ba
PE
46882004-12-10 Paul Eggert <eggert@cs.ucla.edu>
4689
4690 * NEWS: Version 1.875e.
4691 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
4692
4693 * src/scan-skel.l: Include "complain.h", for "fatal".
4694
4695 * src/relation.h (relation_print, relation_digraph):
4696 Relation sizes are of type relation_node, not size_t (this is
4697 merely a doc fix, since the two types are equivalent).
4698 (relation_transpose): Relation sizes are of type relation_node,
4699 not int.
4700 * src/relation.c: Likewise.
4701 (top, infinity): Now of type relation_node, not int.
4702 (traverse, relation_transpose): Use relation_node, not int.
4703
4704 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
4705 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
4706 (yyparse): Remove unused local introduced in 2004-10-25 patch.
4707
4708 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
68b082af 4709 specifying whether the test should be skipped. Use it tp
337116ba 4710 specify that the [%defines %skeleton "lalr1.cc"] tests currently
68b082af 4711 fail on some hosts, and should be skipped.
337116ba 4712
da2a7671
PE
47132004-12-08 Paul Eggert <eggert@cs.ucla.edu>
4714
4715 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
4716 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
4717 unless otherwise specified below.
4718
4719 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
4720 to allocate kernel_base, kernel_items, kernel_size, since
4721 they needn't be initialized to 0.
4722 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
4723 * src/closure.c (new_closure): Likewise, for itemset.
4724 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
4725 * src/lalr.c (set_goto_map): Likewise, for temp_map.
4726 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
4727 (build_relations): Likewise for edge, states1, includes.
4728 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
4729 * src/reader.c (packgram): Likewise, for ritem, rules.
4730 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
4731 * src/relation.c (relation_digraph): Likewise for VERTICES.
4732 (relation_transpose): Likewise for new_R, end_R.
4733 * src/symtab.c (symbols_token_translations_init): Likewise for
4734 token_translations.
4735 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
4736 (token_actions): Likewise for yydefact, actrow, conflrow,
4737 conflict_list.
4738 (save_column): Likewise for froms[symno], tos[symno].
4739 (goto_actions): Likewise for state_count.
4740 (pack_table): Likewise for base, pos, check.
4741 (tables_generate): Likewise for width.
4742
4743 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
4744 for initial core. Just have a separate core, so we needn't worry
4745 about whether kernel_size and kernel_base are initialized.
4746
4747 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
4748 kernel_size, kernel_items): Remove unnecessary initialization.
4749 * src/conflicts.c (conflicts): Likewise.
4750 * src/derives.c (derives): Likewise.
4751 * src/muscle_tablc (muscle_insert): Likewise.
4752 * src/relation.c (relation_digraph): Likewise.
4753 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
4754 conflrow, conflict_table, conflict_list, table, check):
4755 Likewise.
4756
4757 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
4758 This is because all callers pass unsigned int.
4759 * src/closure.h (new_closure): Likewise.
4760
4761 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
4762 (build_relations): Initialize includes[i] in all cases.
4763 * src/reader.c (packgram): Always initialize rules[ruleno].prec
4764 and rules[ruleno].precsym. Initialize members in order.
4765 * src/relation.c (relation_transpose): Always initialize new_R[i]
4766 and end_R[i].
4767 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
4768
4769 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
4770 conflict_list[0] was always 0, but now it isn't initialized.
4771
4772 * src/table.c (table_grow): When conflict_table grew, the grown
4773 area wasn't cleared. Fix this.
4774
4775 * lib/.cvsignore: Add strdup.c, strdup.h.
4776 * m4/.cvsignore: Add strdup.m4.
4777
00baeeac
PE
47782004-12-07 Paul Eggert <eggert@cs.ucla.edu>
4779
4780 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
4781 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
4782 GOTO_NUMBER_MAXIMUM, since we occasionally compute
4783 ngotos + 1 without checking for overflow.
4784 (build_relations): Use END_NODE, not -1, to denote end of edges.
4785 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
4786 build_relations): Use goto_number, not int, for goto numbers.
4787 * src/tables.c (save_column, default_goto): Likewise.
4788
be3d9d42
AD
47892004-11-23 Akim Demaille <akim@epita.fr>
4790
4791 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
4792 of #defining from yystype.
4793 Don't typedef yystype, C++ does not need it.
4794 This lets it possible to forward declare it as union.
4795
78e526d5
PE
47962004-11-23 Paul Eggert <eggert@cs.ucla.edu>
4797
4798 * bootstrap (gnulib_modules): Add extensions.
4799 Problem reported by Jim Meyering.
4800
afbb696d
PE
48012004-11-22 Paul Eggert <eggert@cs.ucla.edu>
4802
4803 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
4804 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
4805 src/system.h, src/tables.c: XFREE -> free, to accommodate
4806 recent change to gnulib xalloc.h.
78e526d5 4807 Problem reported by Jim Meyering.
afbb696d 4808
c1f8f16a
AD
48092004-11-17 Akim Demaille <akim@epita.fr>
4810
4811 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
4812
db7e5eb5 48132004-11-17 Akim Demaille <akim@epita.fr>,
9a1e9989
AD
4814 Alexandre Duret-Lutz <adl@gnu.org>
4815
4816 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
4817 changes.
4818 (YYCDEBUG): Adjust.
4819 Use it instead of cdebug_.
4820 (Parser::debug_stream, Parser::set_debug_stream): New.
4821 (Parser::symprint_): Define cdebug_ for temporary backward
4822 compatibility.
4823 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
4824 debug_stream ().
4825
68e11668
AD
48262004-11-17 Akim Demaille <akim@epita.fr>
4827
4828 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
4829 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
4830 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
4831 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
4832
97cbc73e
PE
48332004-10-27 Paul Eggert <eggert@cs.ucla.edu>
4834
4835 * data/glr.c (yyloc_default): Remove; not used.
4836 Problem reported by Frank Heckenbach.
4837
e342c3be
AD
48382004-10-25 Akim Demaille <akim@epita.fr>
4839
4840 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
4841 Introduce another definition to address simple location arrays.
4842 (yyGLRStack): New member: yyerror_range.
4843 (yyrecoverSyntaxError, yyparse): Update it.
4844 (yyrecoverSyntaxError): Use it when shifting the error token to
4845 have an accurate range, equivalent to the one computed by both
4846 yacc.c and lalr1.cc.
4847 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
4848 that column numbers start at column 0, as per GNU Coding
4849 Standards, the others tests, and the doc.
4850 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
4851 Adjust to the above change (first column is 0).
4852 And adjust the location of the "<error>", now covering the whole
4853 line.
4854
93602feb 48552004-10-22 Akim Demaille <akim@epita.fr>
04098407 4856 and Paul Eggert <eggert@cs.ucla.edu>
93602feb
PE
4857
4858 Remove some arbitrary limits on goto numbers and relations.
4859 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
4860 initial values, since they're never used.
4861 (set_goto_map): ngotos is now unsigned, so test for overflow
4862 by seeing whether it wraps around to zero.
4863 * src/lalr.h (goto_number): Now size_t, not short int.
4864 (GOTO_NUMBER_MAXIMUM): Remove.
4865 * src/relation.c (relation_print, traverse, relation_transpose):
4866 Check for END_NODE rather than looking at sign.
4867 * src/relation.h (END_NODE): New macro.
4868 (relation_node): Now size_t, not short int.
4869
dba08b04
PE
48702004-10-22 Paul Eggert <eggert@cs.ucla.edu>
4871
4872 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
4873 keyword, not an identifier. Problem reported by Baron Schwartz in
4874 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
4875
df09ef2e
AD
48762004-10-11 Akim Demaille <akim@epita.fr>
4877
4878 * src/symtab.c (symbol_check_alias_consistency): Also check
4879 type names, destructors, and printers.
4880 Reported by Alexandre Duret-Lutz.
4881 Recode the handling of associativity and precedence in terms
4882 of symbol_precedence_set.
4883 Accept no redeclaration at all, not even equal to the previous
4884 value.
4885 (redeclaration): New.
4886 Use it to factor redeclaration complaints.
4887 (symbol_make_alias): Don't set the type of the alias, let
4888 symbol_check_alias_consistency do it as for other features.
4889 * src/symtab.h (symbol): Add new member prec_location, and
4890 type_location.
4891 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
4892 * tests/input.at (Incompatible Aliases): New.
4893
146bc99d
PE
48942004-10-09 Paul Eggert <eggert@cs.ucla.edu>
4895
4896 .cvsignore fixes to accommodate gnulib changes,
4897 and the practice of naming build directories "_build".
4898 * .cvsignore: Add "_*". Sort.
4899 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
4900 * m4/.cvsignore: Add "*_gl.m4".
4901
e503aa60
AD
49022004-10-06 Akim Demaille <akim@epita.fr>
4903
4904 * src/parse-gram.y (add_param): Fix the truncation of trailing
4905 spaces.
4906
b4a20338
AD
49072004-10-05 Akim Demaille <akim@epita.fr>
4908
4909 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
4910 whether the reducion was empty or not. This leaves room to
4911 improve the use of YYLLOC_DEFAULT in such a case.
4912 lalr1.cc is still experimental, so changing this is acceptable.
4913 And finally, there are probably not many users who changed the
4914 handling of locations in GLR, so changing is admissible too.
4915
4916 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
4917 empty reduction, set @$ to an empty location ending the previously
4918 stacked symbol.
4919 Adjust uses to make sure the code is triggered on empty
4920 reductions.
4921 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
4922 expected output: empty reductions have empty locations.
4923
f85a5e6f
AD
49242004-09-29 Akim Demaille <akim@epita.fr>
4925
4926 * data/lalr1.cc: Move towards a more standard C++ coding style
4927 for templates: Class < T > -> Class<T>.
4928
b203fc2c
AD
49292004-09-29 Akim Demaille <akim@epita.fr>
4930
4931 * data/lalr1.cc: Reinstall the former ctor, for sake of
4932 compatibility, but warn it will be removed.
4933 Move towards a more standard C++ coding style (i.e., type *var ->
4934 type* var).
4935
5b7e1e73
PE
49362004-09-27 Paul Eggert <eggert@cs.ucla.edu>
4937
3fee967f
PE
4938 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
4939 since it's less likely to work if NULs are involved in the future.
5b7e1e73 4940
0dcca5c2
AD
49412004-09-27 Akim Demaille <akim@epita.fr>
4942
4943 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
4944
6dde1c82
AD
49452004-09-27 Akim Demaille <akim@epita.fr>
4946
4947 * data/lalr1.cc (b4_parse_param_decl_1): New.
b203fc2c 4948 (b4_parse_param_decl): Use it to have different names between attribute
6dde1c82
AD
4949 and argument names.
4950 (b4_cc_constructor_call): Likewise.
4951
b233d555
AD
49522004-09-24 Akim Demaille <akim@epita.fr>
4953
4954 * src/parse-gram.y (add_param): Strip the leading and trailing
4955 blanks from a formal argument declaration.
4956 (YY_LOCATION_PRINT): New.
4957
619404e3
AD
49582004-09-24 Akim Demaille <akim@epita.fr>
4959
4960 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
4961 after the location.
4962
dd8d9022
AD
49632004-09-24 Akim Demaille <akim@epita.fr>
4964
4965 * doc/bison.texinfo (Table of Symbols): Sort.
4966
0092f063
AD
49672004-09-21 Akim Demaille <akim@epita.fr>
4968
4969 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
4970 the useless parentheses.
4971 Suggested by Paul Eggert.
4972
451364ed
AD
49732004-09-20 Akim Demaille <akim@epita.fr>
4974
4975 Let the initial-action act on the look-ahead, and use it for the
4976 "initial push" (corresponding to an hypothetical beginning-of-file).
4977 And let lalr1.cc honor %initial-action.
4978
4979 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
4980 example.
4981 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
4982 (Parser::Parser): Remove the ctor that used to initialize it.
4983 (Parser::parse): Like in the other skeletons, issue the "starting
4984 parse" message before any action.
4985 Honor %initial-action.
4986 Initialize the stacks with the lookahead.
4987 * data/yacc.c: Let $$ and @$ in %initial-action designate the
4988 look-ahead.
4989 Push them in the stacks.
4990 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
4991
18d192f0
AD
49922004-09-20 Akim Demaille <akim@epita.fr>
4993
4994 * doc/bison.texinfo (Initial Action Decl): New.
4995
b8458aa5
AD
49962004-09-20 Akim Demaille <akim@epita.fr>
4997
4998 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
4999 clearer criterion to define it.
5000 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
5001 When reducing on an empty RHS, use the latest stacked location as
5002 location.
5003 yylloc is not always available.
5004 * data/glr.c: Likewise.
5005 Also, honor initial-actions.
5006
3fc16193
AD
50072004-09-20 Akim Demaille <akim@epita.fr>
5008
5009 * data/yacc.c (YY_LOCATION_PRINT): New.
5010 Define when we know YYLTYPE's structure, i.e., when the default
5011 YYLLOC_DEFAULT is used.
5012 * data/c.m4 (b4_yysymprint_generate): Use it.
5013 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
5014 value of the result.
5015 (error_start_): Replace with...
5016 (error_range_): this location array.
5017 This allows to replace code relying on the implementation of
5018 locations by portable code.
5019 * data/yacc.c (yylerrsp): Replace with...
5020 (yyerror_range): this.
5021 Every time a token is popped, update yyerror_range[0], to have an
5022 accurate location for the error token.
5023 * data/glr.c (YY_LOCATION_PRINT): New.
5024 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
5025 deference a pointer.
5026 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
5027 report the location in %printers.
5028
5029 * src/scan-skel.l: Instead of abort, report error messages to ease
5030 understanding skeleton scanning failures.
5031
ecfe33e7
AD
50322004-09-16 Akim Demaille <akim@epita.fr>
5033
5034 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
5035 (iterator, const_iterator): these, to be more in the C++ spirit.
5036 Also, return reverse iterators so that when displaying the stack
5037 we display its bottom first.
5038 (Parser::stack_print_, Parser::reduce_print_): Match the messages
5039 from yacc.c.
5040 We should probably use vector here though.
5041
1576d44d
AD
50422004-09-16 Akim Demaille <akim@epita.fr>
5043
5044 Have more complete shift traces.
5045
5046 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
5047 to report Shifts instead of ad hoc YYDPRINTF invocations,
5048 including for the error token.
5049 * data/lalr1.cc (symprint_): Output the location.
5050 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
5051 output the location within the %printer.
5052 Activate GLR tests, at least to make sure they compile properly.
5053 They still don't pass though.
5054 * tests/calc.at: Adjust expect verbose output, since now "Entering
5055 state..." is on a different line than the "Shifting" message.
5056
9c66f418
AD
50572004-09-08 Akim Demaille <akim@epita.fr>
5058
5059 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
5060 Bison directive from the Bison file to the invocation of this
5061 macro, so that these directives are passed to
5062 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
5063 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
5064 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
5065 the extra Bison directives instead of the whole series.
5066 Change the grammar so that there are recoverable errors, and
5067 unrecoverable errors. Now we can have the parser give up before
5068 consuming the whole input. As a result we now can observe that
5069 the lookahead is freed when needed.
5070 Change the parser source to parse argv[1] instead of a hard coded
5071 string.
5072 Simplify yylex, and give a value and location to EOF.
5073 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
5074 passed directives already coded in the file.
5075 Add some tests to check the location of "error".
5076 For some tests, the C++ parser is correct, and not yacc.c.
5077 For other tests, they provide different, but unsatisfying, values,
5078 so keep the C++ value so that at least one parser is "correct"
5079 according to the test suite.
5080 (Actions after errors): Remove, this is subsumed by the
5081 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
5082
52d5733f
AD
50832004-09-06 Akim Demaille <akim@epita.fr>
5084
5085 * data/lalr1.cc: Adjust the indentation of the labels.
04098407 5086 (Parser::pop): New.
52d5733f
AD
5087 Use it.
5088
a0e68930
AD
50892004-09-06 Akim Demaille <akim@epita.fr>
5090
5091 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
5092 argument, an informative message.
5093 Call YY_SYMBOL_PRINT.
5094 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
5095 * data/lalr1.cc (destruct_): Likewise.
5096 In addition, no longer depend on b4_yysymprint_generate and
5097 b4_yydestruct_generate to generate these functions, do it "by
5098 hand".
5099
e757bb10
AD
51002004-09-03 Akim Demaille <akim@epita.fr>
5101
5102 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
5103 invoked, yydestruct the lookahead.
5104 * tests/calc.at (Calculator $1): Update the expected lengths of
5105 traces: there is an added line for the discarded lookahead.
5106 * doc/bison.texinfo (Destructor Decl): Some rewording.
5107 Define "discarded" symbols.
5108
0fe1f06d
AD
51092004-09-02 Akim Demaille <akim@epita.fr>
5110
5111 * data/lalr1.cc (translate_, destruct_): No reason to be static.
5112
284acc8b
AD
51132004-09-02 Akim Demaille <akim@epita.fr>
5114
5115 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
5116 (YYDSYMPRINTF): Rename as...
5117 (YY_SYMBOL_PRINT): this.
5118 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
5119 two.
5120 Use it instead of direct symprint_ calls.
5121 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
5122 one.
5123
a5eb1ed2
AD
51242004-09-02 Akim Demaille <akim@epita.fr>
5125
b7c72fe1
AD
5126 * data/lalr1.cc (b4_yysymprint_generate): New.
5127 (symprint_): New member function, defined when YYDEBUG.
5128 Use it consistently instead of token/nterm debugging output by
5129 hand.
a5eb1ed2
AD
5130 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
5131 %printer calls to use cdebug_ when using lalr1.cc.
5132
417141dd
AD
51332004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
5134
5135 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
5136 with #ifdef YYDEBUG.
5137
2fa09258
AD
51382004-08-26 Akim Demaille <akim@epita.fr>
5139
5140 * doc/bison.texinfo (Implementing Loops): Rename as...
5141 (Implementing Gotos/Loops): this.
5142
9378b508
PE
51432004-08-13 Paul Eggert <eggert@cs.ucla.edu>
5144
5145 Adjust to latest gnulib.
5146 * bootstrap (gnulib_modules): Add xalloc-die.
5147 Set LC_ALL=C so that file names sort consistently.
5148 Prefer the gnulib copies of gettext.m4, glibc21.m4,
5149 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
5150 uintmax_t.m4, ulonglong.m4.
5151 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
5152 po.m4 since we are now using _gl.m4 instead.
5153
87a8ad5c
PE
51542004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
5155
5156 * src/scan-action.l: Remove. Scanning of semantic actions is
5157 handled in scan-gram.l.
5158
dca81a78
PE
51592004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
5160
5161 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
5162
5163 * src/location.h (struct): The file member is a uniqstr.
5164 (equal_boundaries): Use UNIQSTR_EQ for comparison.
5165
c9cbf7c5
PE
51662004-07-22 Paul Eggert <eggert@cs.ucla.edu>
5167
5168 Fix bug with non-%union parsers that have printers or destructors,
5169 which led to a Bison core dump. Reported by Peter Fales in
5170 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2fa09258 5171
c9cbf7c5
PE
5172 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
5173 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
5174 not to our own type.
5175 * src/output.c (symbol_destructors_output, symbol_printers_output):
5176 Don't assume %union.
5177 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
5178 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
5179 UNION-FLAG. All callers changed.
5180 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
5181 Use type char, not unsigned int, when declaring an array of char;
5182 this lets us remove a cast.
5183 (Printers and Destructors): Add non-%union test cases.
5184
fa7e68c3
PE
51852004-06-21 Paul Eggert <eggert@cs.ucla.edu>
5186
5187 * doc/bison.texinfo: Minor editorial changes, mostly to the new
5188 GLR writeups. E.g., avoid frenchspacing and the future tense,
5189 change "lookahead" to "look-ahead", and change "wrt" to "with
5190 respect to".
2fa09258 5191
fa7e68c3
PE
51922004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
5193
5194 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
5195 New sections, split off from the GLR Parsers section. Put the new
5196 Simple GLR Parser near the start of the GLR section, for clarity.
5197 Rewrite connective text.
5198
99a9344e
PE
51992004-06-21 Frank Heckenbach <frank@g-n-u.de>
5200
5201 * doc/bison.texinfo (Simple GLR Parsers): New section.
5202
8dd162d3
PE
52032004-06-21 Paul Eggert <eggert@cs.ucla.edu>
5204
5205 * NEWS, TODO, doc/bison.texinfo:
5206 Use "look-ahead" instead of "lookahead", to be consistent.
5207 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
5208 while we're fixing "look-ahead".
5209 * src/conflicts.c (shift_set): Renamed from shiftset.
5210 (look_ahead_set): Renamed from lookaheadset.
5211 * src/print.c: Likewise.
5212 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
5213 name for "lookahead".
5214 (report_types, usage): Likewise.
5215 * src/getargs.h (report_look_ahead_tokens): Renamed from
5216 report_lookaheads.
5217 * src/lalr.c (compute_look_ahead_tokens): Renamed from
5218 compute_lookaheads.
5219 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
5220 (look_ahead_tokens_print): Renamed from lookaheads_print.
5221 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
5222 state_rule_lookaheads_print.
5223 * src/state.h: Likewise.
5224 (reductions.look_ahead_tokens): Renamed from lookaheads.
5225 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
5226 AT_DATA_LOOKAHEADS_GRAMMAR.
5227
57a90331
PE
52282004-06-03 Paul Eggert <eggert@cs.ucla.edu>
5229
5230 * README: Update location of patched M4 distribution.
5231
8ed3234a
PE
52322004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
5233
5234 Don't assume the C++ compiler takes the same arguments as the C compiler
5235 (trivial change).
5236 * configure.ac (O0CXXFLAGS): New var.
5237 * tests/atlocal.in (CXXFLAGS): Use it.
5238
07971983
PE
52392004-05-29 Paul Eggert <eggert@cs.ucla.edu>
5240
5241 Fix some "make check" problems with C++ reported by
5242 Albert Chin-A-Young for Tru64 C++ in this thread:
5243 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
5244
5245 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
5246 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
5247 Output to a .cc file for C++, not to a .c file.
5248 * tests/calc.at (AT_CHECK_CALC): Likewise.
5249 * tests/regression.at (AT_CHECK_DANCER): Likewise.
5250 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
5251
29058652
PE
52522004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
5253
5254 * tests/calc.at, tests/actions.at: Workaround for SGI
5255 C++ compiler. (trivial change)
5256
62cb8a99
PE
52572004-05-27 Paul Eggert <eggert@cs.ucla.edu>
5258
fd418816
PE
5259 Spent a few hours checking out which prerequisite versions the
5260 current sources actually require. I went all the way back to
5261 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
5262 a seemingly endless set of combinations of versions more recent
5263 than that. The bottom line is that the current sources require
5264 fairly recent versions of the build tools, and it'll be some work
5265 to change this.
5266 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
5267 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
5268 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
5269 Add comments explaining why those particular versions are
5270 currently needed.
2fa09258 5271
62cb8a99
PE
5272 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
5273 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
161a71f3 5274 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
62cb8a99
PE
5275
5276 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
5277 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
5278
caa52c10
PE
52792004-05-26 Paul Eggert <eggert@cs.ucla.edu>
5280
5281 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
5282 0.11.5. Suggested by Bruno Haible.
5283 * bootstrap: Remove gettext version checking.
5284
5285 * doc/bison.texinfo (Decl Summary): Also mention that %union
5286 can depend on prerequisite types. Problem reported by Tim
5287 Van Holder.
5288
4bfd5e4e
PE
52892004-05-25 Paul Eggert <eggert@cs.ucla.edu>
5290
2cef3017
PE
5291 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
5292 * README-alpha: Don't tell people not to package this.
5293
b9c85d5c
PE
5294 * bootstrap: Don't assume $(...) works; use `...` instead.
5295 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
5296 gettext better.
5297
4bfd5e4e
PE
5298 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
5299 put into the -d output file, and mention what to do if YYSTYPE is
5300 defined as a macro.
5301
6a36ff94
PE
53022004-05-24 Paul Eggert <eggert@cs.ucla.edu>
5303
6712933e
PE
5304 Undo change made earlier today: it caused autopoint to not bring
5305 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
5306 autopoint's.
5307
5308 * bootstrap: Check that gettext version matches what's in
5309 configure.ac. Warn users to ignore robots.txt ERROR 404.
5310 * bootstrap: Undo today's earlier change (logged below).
5311 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
b9c85d5c 5312
6a36ff94
PE
5313 The gettext version checking is causing more trouble than it's
5314 curing; remove it. Problem reported by Paul Hilfinger.
5315
5316 * bootstrap: Issue a warning that one can expect a message
5317 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
5318 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
5319
209ea708
PE
53202004-05-23 Paul Eggert <eggert@cs.ucla.edu>
5321
5322 Ensure that the C++ compiler used for testing actually works on a
5323 simple test program; if not, skip the C++-related tests. Problem
5324 reported by Vin Shelton in:
161a71f3 5325 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
209ea708
PE
5326
5327 * m4/cxx.m4: New file.
5328 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
5329 * tests/atlocal.in (BISON_CXX_WORKS): Add.
5330 * tests/local.at (AT_COMPILE_CXX): Use it.
5331
41ca2549
PE
53322004-05-21 Paul Eggert <eggert@cs.ucla.edu>
5333
383e69dc
PE
5334 * data/glr.c (yylloc): Output this macro even if locations are not
5335 being generated, as the GLR parser needs it even in that case.
5336 Problem reported by Troy A. Johnson
5337 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
5338
41ca2549
PE
5339 * configure.ac (AC_INIT): Update to 1.875e.
5340
e476c87d
PE
53412004-05-21 Paul Eggert <eggert@cs.ucla.edu>
5342
5343 * NEWS: Version 1.875d.
5344 * configure.ac (AC_INIT): Likewise.
5345 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
5346
5347 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
5348 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
5349 lalr1.cc runs afoul of the first, and the last two are no longer
5350 supported by GCC 3.4.0.
5351 * README: Mention GNU m4 1.4 or later; mention m4 patches.
5352 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
5353
233a88ad
PE
53542004-05-06 Paul Eggert <eggert@cs.ucla.edu>
5355
5356 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
5357 unsigned int, for compatibility with latest gnulib hash module.
5358 * src/state.c (state_hash, state_hasher): Likewise.
5359 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
5360 * src/uniqstr.c (hash_uniqstr): Likewise.
e476c87d 5361
12ffdd28
PE
53622004-05-03 Paul Eggert <eggert@cs.ucla.edu>
5363
5364 * NEWS: Unescaped newlines are no longer allowed in char & strings.
5365
5366 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
5367 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
5368 character and string literals.
5369 (unexpected_end): New function.
5370 (unexpected_eof): Use it.
5371 (unexpected_newline): New function.
5372 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
5373 actions.
e476c87d 5374
12ffdd28
PE
5375 * NEWS: Document %expect-rr.
5376
5377 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
5378 Fix typo by replacing $1 with $option.
5379 Remove more 'intl'-related files.
9668e2be 5380 Don't DEFUN AM_INTL_SUBDIR twice.
12ffdd28
PE
5381
5382 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
5383 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
5384 strtoul.c.
5385 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
5386 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
5387 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
5388 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
5389 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
5390 * src/.cvsignore: Add *.output.
5391
5392 * src/parse-gram.y: Put copyright notice inside %{ %} so it
5393 gets copied to the output file.
e476c87d 5394
1f65350a
PE
53952004-04-28 Paul Eggert <eggert@twinsun.com>
5396
5397 Get files from the gnulib and po repositories, instead of relying
5398 on them being in our CVS. Upgrade to latest versions of gnulib
5399 and Automake.
5400
5401 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
5402 * bootstrap: Bootstrap from gnulib and po repositories.
5403 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
5404 * README-cvs: Document these changes. Remove version numbers from
5405 mentions of build tools, since they change so often. Mention Flex.
5406
5407 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
5408 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
5409 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
5410 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 5411 does this for us.
12ffdd28
PE
5412 (AC_ISC_POSIX): Remove; we no longer support this
5413 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
5414 (AC_HEADER_STDC): Remove: we now assume C89 or better.
5415 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
5416 Do not check for C89 headers, except for locale.h which is used
5417 by the Yacc library and must port to K&R hosts.
5418 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
5419 Do not check for C89 functions, except for setlocale which is
5420 used by the Yacc library.
5421 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
5422 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
5423 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
5424 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
5425 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
5426 AM_GNU_GETTEXT): Remove; now done by:
5427 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
5428 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
5429 for us.
5430
5431 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
5432 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
5433 Define to empty, as gnulib.mk will do the rest for us.
5434 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
5435 for us.
5436 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
5437 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
5438
5439 * src/files.c: Include gnulib's xstrndup.h.
5440
5441 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
5442 (REALLOC): Use xnrealloc, for likewise.
5443 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
5444 (strnlen, memrchr): Remove decls; functions no longer used.
5445 Include <stpcpy.h>.
5446
5447 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
5448 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
5449 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
5450 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
5451 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
5452 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
5453 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
5454 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
5455 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
5456 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
5457 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
5458 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
5459 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
5460 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
5461 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
5462 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
5463 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
5464 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
5465 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
5466 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
5467 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
5468 Remove, as these files are now generated automatically
5469 by bootstrap or automake.
5470
5471 * po/ChangeLog: Remove: all but one entry was a duplicate
5472 of this file, and I moved that 2000-11-02 entry here.
5473
5474 * config/.cvsignore: Add Makefile, depcomp, install-sh.
5475 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
5476 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
5477 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
5478 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
5479 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
5480 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
5481 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
5482 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
5483 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
5484 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
5485 xstrndup.h.
5486 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
5487 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
5488 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
5489 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
5490 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
5491 * src/.cvsignore: Remove *_.c.
5492
5493
5494 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
5495 support it. (The latest stable gzip doesn't.)
5496
54972004-04-27 Paul Eggert <eggert@twinsun.com>
5498
5499 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
5500 case, as stos_ is now used by destructors due to the 2004-02-09
5501 change.
5502
5503 Remove more K&R C support.
5504 * lib/libiberty.y (PARAMS): Remove. All uses removed.
5505 * lib/subpipe.c (errno): Remove decl.
5506 Include <stdlib.h> unconditionally.
5507 (EXIT_FAILURE): Remove macro.
5508 * src/complain.c (vfprintf, strerror): Remove.
5509 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
5510 unconditionally.
5511 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
5512 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
5513 (strchr, strspn, memchr): Remove decls.
5514 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
5515 unconditionally. Do not declare perror.
5516 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
5517 unconditionally.
5518
5519 * src/complain.c (_): Remove useless defn, as system.h defines this.
5520
5521 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
5522 with latest obstack.h.
5523 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
5524 to procedure types, as obstack.h now does that for us.
5525 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
5526
5527 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
5528 so that this include file can stand alone.
5529 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
5530 does this now. Include subpipe.h first after config.h, to
5531 test whether it can stand alone.
5532
5533 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
5534 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
5535 unused declaration.
5536
5537 * tests/synclines.at (%union synch line): Put a dummy member in
5538 the union, because empty unions aren't allowed in C. Caught
5539 by GCC 3.4.0.
5540
4f16766c
PE
55412004-04-13 Jim Meyering <jim@meyering.net>
5542
5543 * src/conflicts.c (conflicts_print): Correct format string typo:
5544 use `%%' to produce literal `%'. (trivial change)
5545
779e7ceb
PE
55462004-03-30 Paul Eggert <eggert@twinsun.com>
5547
5548 * src/getargs.c (version): Update copyright year to 2004.
5549
5550 * data/c.m4 (b4_int_type): Use 'short int' rather than
5551 'short', and similarly for 'long', 'unsigned', etc.
5552 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
5553 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
5554 yy_yypstack, yydumpstack): Likewise.
5555 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
5556 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
5557 Likewise.
5558 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
5559 yy_stack_print, yyparse): Likewise.
5560 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
5561 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
5562 * lib/bitset.c (bitset_print): Likewise.
5563 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
5564 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
5565 * lib/bitsetv.c (bitsetv_dump): Likewise.
5566 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
5567 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
5568 Likewise.
5569 * src/LR0.c (allocate_itemsets): Likewise.
5570 * src/gram.h (rule_number, rule): Likewise.
5571 * src/lalr.h (goto_number): Likewise.
5572 * src/nullable.c (nullable_compute): Likewise.
5573 * src/output.c (prepare_rules): Likewise.
5574 * src/relation.c (relation_print, relation_digraph): Likewise.
5575 * src/relation.h (relation_node): Likewise.
5576 * src/state.h (state_number, transitions, errs, reductions,
5577 struct state): Likewise.
5578 * src/symtab.h (symbol_number, struct symbol): Likewise.
5579 * src/tables.c (vector_number, tally, action_number,
5580 default_goto, goto_actions): Likewise.
5581 * tests/existing.at (GNU Cim Grammar): Likewise.
5582 * tests/regression.at (Web2c Actions): Likewise.
5583
5584 * src/output.c (muscle_insert_short_int_table): Renamed from
5585 muscle_insert_short_table. All uses changed.
5586
d6328241
PH
55872004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
5588
5589 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
5590 (declaration): Replace expected_conflicts with expected_sr_conflicts.
5591 Add %expect-rr rule.
4f16766c 5592
d6328241
PH
5593 * src/scan-gram.l: Recognize %expect-rr.
5594
4f16766c 5595 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 5596 expected_conflicts.
4f16766c 5597 (expected_rr_conflicts): Declare.
d6328241
PH
5598
5599 * src/conflicts.c (expected_sr_conflicts): Rename from
5600 expected_conflicts.
5601 (expected_rr_conflicts): Define.
5602 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
5603 for GLR parsers.
5604 Use expected_sr_conflicts in place of expected_conflicts.
5605 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 5606
d6328241 5607 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 5608
1452af69
PE
56092004-03-08 Paul Eggert <eggert@gnu.org>
5610
5611 Add support for hex token numbers. Suggested by Odd Arild Olsen in
161a71f3 5612 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
1452af69
PE
5613
5614 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
5615 in lalr1.cc.
5616 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
5617 * src/scan-gram.l (scan_integer): New function.
5618 ({int}): Use it.
5619 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
5620 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
5621 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
5622 Say "long int", not "long", for uniformity with GNU style.
5623
006d217d
PE
56242004-02-25 Paul Eggert <eggert@twinsun.com>
5625
5626 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
5627 compilers. This fixes a problem with Intel's C++ compiler being
5628 chatty, reported by Guido Trentalancia in
161a71f3 5629 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
006d217d 5630
c2729758
ADL
56312004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
5632
5633 Support %destructor and merge error locations in lalr1.cc.
5634
5635 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
5636 (Parser::stos_): Define unconditionally.
5637 (Parser::destruct_): New method. Generate its body with
5638 b4_yydestruct_generate.
5639 (Parser::error_start_): New attribute.
5640 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
5641 token which are discarded.
5642 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
5643 error_start_ when erroneous token are discarded.
5644 (Parser::parse) <yyerrlab1>: Compute the location of the error
5645 token so that it covers all the discarded tokens.
5646 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
5647 it can be called with `%skeleton "lalr1.cc"', and do that.
5648
dd0e0635
PE
56492004-02-02 Paul Eggert <eggert@twinsun.com>
5650
5651 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
5652 $(top_srcdir)/lib and ../lib. This fixes a bug reported
5653 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
5654 There's no need to mention top_builddir since Automake does that
5655 for us.
5656 (INCLUDES): Remove, as Automake says it's obsolescent.
5657 Contents migrated into AM_CPPFLAGS as described above.
5658 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
5659
56602004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
5661
5662 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
5663 (yyreportSyntaxError): Handle case where lookahead token is
5664 YYEMPTY.
5665
be16239b
PH
56662004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5667
5668 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
5669 resulting parsers are compilable with C++.
5670
5fa90832
PE
56712003-12-23 Paul Eggert <eggert@twinsun.com>
5672
5673 * config/depcomp, config/install-sh: Sync with Automake 1.8.
5674 * src/output.c (output_skeleton): Rename local var.
5675 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
5676 Bison tokens, as this runs afoul of the 2003-10-07 change that
5677 disallowed NUL bytes in character constants or string literals.
5678
5679 * tests/local.at: Require Autoconf 2.59's Autotest.
5680 * tests/testsuite.at: Don't include local.at, since we now assume
5681 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
5682 including it.
5683 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
5684 multiple inclusion warnings.
dd0e0635 5685
b165c324
AD
56862003-12-02 Akim Demaille <akim@epita.fr>
5687
5688 * doc/bison.texinfo (How Can I Reset the Parser): More about start
5689 conditions.
5690 From Bruno Haible.
5691
26e06a21
ADL
56922003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
5693
5694 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
5695
92ac3705
PE
56962003-10-07 Paul Eggert <eggert@twinsun.com>
5697
6a5ecb38
PE
5698 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
5699 if testsuite doesn't exist.
5700
92ac3705
PE
5701 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
5702 literals, unfortunately.
5703 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
5704 Complain about NUL bytes in character constants or string literals.
5705
91d2c560
PE
57062003-10-05 Paul Eggert <eggert@twinsun.com>
5707
5708 * NEWS: Don't document %no-default-prec, as it's still
5709 too experimental.
5710 * doc/bison.texinfo: Document %no-default-prec only if
5711 the defaultprec flag is set. Normally it's not.
5712
0cc3da3a
PE
57132003-10-04 Paul Eggert <eggert@twinsun.com>
5714
5715 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
5716 non-modifiable lvalue, instead of a modifiable one.
5717 * doc/bison.texinfo (Actions): Document that $$ can
5718 be assigned to. Do not claim that $$ and $N are
5719 array element references: user code should not rely on this.
5720
22fccf95
PE
57212003-10-01 Paul Eggert <eggert@twinsun.com>
5722
5723 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
5724 (grammar_declaration): Use it.
5725 * src/scan-gram.l: New token %no-default-prec.
5726 * tests/conflicts.at: Revamp tests to use %no-default-prec.
5727 * NEWS, doc/bison.texinfo: Document the above.
5728
fc8f2965
AD
57292003-10-01 Akim Demaille <akim@epita.fr>
5730
5731 VCG no longer supports long_straight_phase.
5732
5733 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
5734 * src/print_graph.c (print_graph): Adjust.
5735
39a06c25
PE
57362003-09-30 Frank Heckenbach <frank@g-n-u.de>
5737 and Paul Eggert <eggert@twinsun.com>
5738
5739 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
5740 Table of Symbols): Document %default-prec.
5741 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
5742 (grammar_declaration): Set default_prec on %default-prec.
5743 * src/scan-gram.l (%default-prec): New token.
5744 * src/reader.h (default_prec): New flag.
5745 * src/reader.c: Likewise.
5746 (packgram): Handle it.
5747 * tests/conflicts.at (%default-prec without %prec,
5748 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 5749
39a06c25
PE
57502003-09-30 Paul Eggert <eggert@twinsun.com>
5751
5752 * tests/testsuite.at: Include local.at, not input.at, fixing
5753 a typo in the 2003-08-25 patch.
5754
62b6aef9
AD
57552003-08-27 Akim Demaille <akim@epita.fr>
5756
5757 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
5758 GCC warnings.
5759
89e1cc61
AD
57602003-08-26 Akim Demaille <akim@epita.fr>
5761
5762 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
5763 "<\#" to avoid magic from Gnus when posting parts of this script.
5764
a08460b0
AD
57652003-08-26 Akim Demaille <akim@epita.fr>
5766
5767 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
5768 (Parser::parse): here.
5769 Adjust: nerrs and errstatus is now replaced by...
5770 (Parser::nerrs_, Parser::errstatus_): New.
5771
603f1cfd
AD
57722003-08-25 Akim Demaille <akim@epita.fr>
5773
5774 * config/announce-gen, Makefile.cfg: New.
5775 * Makefile.am: Adjust.
5776 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
5777 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
5778
cd3684cf
AD
57792003-08-25 Akim Demaille <akim@epita.fr>
5780
5781 When reducing initial empty rules, Bison parser read an initial
5782 location that is not defined. This results in garbage, and that
5783 affects Bison's own parser. Therefore we need (i) to extend Bison
5784 to support a means to initialize this location, and (ii) to use
5785 this CVS Bison to fix CVS Bison's parser.
5786
5787 * src/reader.h, reader.c (epilogue_augment): Remove, replace
5788 with...
5789 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
5790 * src/parse-gram.y: Adjust.
5791 (%initial-action): New.
5792 (%error-verbose): Since we require CVS Bison, there is no reason
5793 not to use it.
5794 * src/scan-gram.l: Adjust.
5795 * src/Makefile.am (YACC): New, to make sure we use our own parser.
5796 * data/yacc.c (yyparse): Use b4_initial_action.
5797
4e03e201
AD
57982003-08-25 Akim Demaille <akim@epita.fr>
5799
5800 * doc/bison.texinfo: Don't promote stdout for error messages.
5801
8c182d05
AD
58022003-08-25 Akim Demaille <akim@epita.fr>
5803
5804 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
5805 From Alexandre Duret-Lutz.
5806
6a60c4cf
PE
58072003-08-25 Akim Demaille <akim@epita.fr>
5808
5809 Version 1.875c.
5810
25f66e1a
AD
58112003-08-25 Akim Demaille <akim@epita.fr>
5812
5813 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
5814 Use them.
5815
5348bfbe
AD
58162003-08-25 Akim Demaille <akim@epita.fr>
5817
5818 * data/lalr1.cc (Parser::reduce_print_): New.
5819 Use it.
5820
47301314
AD
58212003-08-25 Akim Demaille <akim@epita.fr>
5822
5823 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
5824 error recovery loops. This patch is based on
161a71f3 5825 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
47301314
AD
5826 Also, augment the similarity between lalr1.cc and yacc.c.
5827 Note: the locations of error recovery rules are not correct yet.
5828
5829 * data/lalr1.cc: Comment changes to augment the similarity between
5830 lalr1.cc and yacc.c.
5831 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
5832 (yyerrlab1): Remove, but where it used to be (now the bottom part of
5833 yyerrlab), when hitting EOF, pop the whole stack here instead of
5834 merely falling thru the default error handling mechanism.
5835 (yyerrorlab): New label, with the old contents of YYERROR,
5836 plus the following change: pop the stack of rhs corresponding
5837 to the production that invoked YYERROR. That is how Yacc
5838 behaves (required by POSIX).
5839 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
5840 fail.
5841
1f7a61ff
AD
58422003-08-25 Akim Demaille <akim@epita.fr>
5843
5844 Tune local.at so that people can "autom4te -l autotest calc.at -o
5845 calc" for instance, to extract a sub test suite.
5846
5847 * tests/testsuite.at: Move the initialization, Autotest version
5848 requirement, and AT_TESTED invocation into...
5849 * tests/local.at: here.
5850 * tests/testsuite.at: Include it for compatibility with Autoconf
5851 2.57.
5852 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
5853 be ignore.
5854
327b5b56
PE
58552003-08-04 Paul Eggert <eggert@twinsun.com>
5856
5857 Rework code slightly to avoid gcc -Wtraditional warnings.
5858 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
5859 The returned value is now stored in *YY0. All callers changed.
5860 * src/output.c (merge_output): Adjust to the above change.
5861
0051e3ed
PE
58622003-07-26 Paul Eggert <eggert@twinsun.com>
5863
5864 * data/glr.c (YYASSERT): New macro.
5865 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
5866 yyresolveStates, yyprocessOneStack):
5867 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
5868 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 5869
137437c6
PE
58702003-07-25 Paul Eggert <eggert@twinsun.com>
5871
5b620e06
PE
5872 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
5873 for portability to K&R C (after ansi2knr, presumably). See
161a71f3 5874 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5b620e06
PE
5875 by Frank Heckenbach, though I have omitted the structure-initialization
5876 part of his glr-knr.diff patch since I recall that the Portable
5877 C Compiler didn't require that change.
5878
137437c6
PE
5879 Let the user specify how to allocate and free memory.
5880 Derived from a suggestion by Frank Heckenbach in
161a71f3 5881 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
137437c6
PE
5882 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
5883 All uses of free, malloc, realloc changed to use these macros,
5884 and unnecessary casts removed.
5885 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
5886
ddb85ca5
PE
58872003-07-06 Matthias Mann <MatthiasMann@gmx.de>
5888
5889 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
5890 use s.empty() rather than s == "" to test for empty string; see
161a71f3 5891 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
ddb85ca5
PE
5892 (trivial change)
5893
39910e09
AD
58942003-06-25 Akim Demaille <akim@epita.fr>
5895
5896 * config/depcomp, config/install-sh: Update from masters.
5897
0ae99356
PE
58982003-06-20 Paul Eggert <eggert@twinsun.com>
5899
5900 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
5901 and return properly parenthesized result.
5902 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
5903 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
5904 Remove unnecessary parentheses from uses.
5905 * doc/bison.texinfo (Location Default Action): Describe the
5906 conventions for parentheses.
5907
cd05d13c
PE
59082003-06-19 Paul Eggert <eggert@twinsun.com>
5909
81fd08ca
PE
5910 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
5911 yyreportTree): Do not assume that size_t is the same width as int,
5912 when printing sizes. Print sizes using an unsigned format.
5913 Problem reported by Frank Heckenbach in
161a71f3 5914 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 5915
cd05d13c
PE
5916 Port to Forte Developer 7 C compiler.
5917 * data/glr.c (struct YYLTYPE): If locations are not being used,
5918 declare a single dummy member, as empty structs do not conform
5919 to the C standard.
5920 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
5921 the Forte Developer 7 C compiler complains that end-of-loop
5922 code is not reached.
5923
4dcf140b
PE
59242003-06-17 Paul Eggert <eggert@twinsun.com>
5925
5926 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
5927 avoid warnings from picky compilers about redefinition of PARAMS.
5928
8dd76bee
PE
59292003-06-17 Paul Eggert <eggert@twinsun.com>
5930
5931 Version 1.875b.
5932
5933 * NEWS: Document 1.875b.
5934
5935 * lib/bbitset.h: Do not include config.h; that's the includer's job.
5936 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
5937 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
5938 Don't use 'index' in comments, as it's a builtin fn on some hosts.
5939 * lib/bitset_stats.c: Include gettext.h unconditionally, as
5940 per recent gettext manual's suggestion.
5941 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
5942 Use prototypes, not old-style definitions.
5943 * lib/lbitset.c (lbitset_unused_clear): Likewise.
5944 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
5945 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
5946 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
5947 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
5948 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
5949 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
5950 vbitset_or_and_cmp, vbitset_copy): Likewise.
5951
5952 * lib/libiberty.h: Do not include config.h; that's the includer's job.
5953 Do not include <stdlib.h>.
5954 (PARAMS): Define unconditionally for C89.
5955 (ATTRIBUTE_NORETURN): Remove.
5956 (ATTRIBUTE_UNUSED): Define unconditionally.
5957
5958 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
161a71f3 5959 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8dd76bee
PE
5960 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
5961 * lib/vbitset.c, lib/vbitset.h: New files.
5962 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
5963 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
5964 from libbitset.
5965
5966 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
5967 `How Can I Reset @code{yyparse}', since texinfo does not allow
5968 arbitrary @ in node names.
5969
5970 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
5971 shouldn't be needed according to the gettext 0.12.1 documentation
5972 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 5973 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 5974 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 5975 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 5976
8dd76bee
PE
5977 * lib/.cvsignore: Add stdbool.h.
5978 * m4/.cvsignore: Add nls.m4, po.m4.
5979
5980 Upgrade to CVS gnulib.
5981 * stdbool_.h: File renamed from stdbool.h.in.
5982 * configure.ac (AM_STDBOOL_H): Invoke this instead of
5983 AC_HEADER_STDBOOL.
5984 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
5985 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
5986 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
5987 (MOSTLYCLEANFILES): New var.
5988 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
5989 (stdbool.h): New rule.
5990 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
5991 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
5992 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
5993 m4/quote.m4: Upgrade to today's gnulib.
5994
5995 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
5996 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
5997 the tests right now.
5998 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
5999 yyerror are declared before use; C99 requires this.
6000
25005f6a
PH
60012003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
6002
6003 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
6004 first.
6005 (yyrecoverSyntaxError): Correct the logic for setting and testing
6006 yyerrState.
6007 Correct comment on handling EOF.
6008 Allow states with only a default reduction, rather than failing
8dd76bee 6009 (I can't quite reconstruct why these were not allowed before).
25005f6a 6010
137437c6 6011 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 6012 buffer overruns, corrupting state.
8dd76bee
PE
6013
6014 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
6015 definition.
6016 * src/reader.h (max_left_semantic_context): New variable declaration.
6017 * src/scan-gram.l (max_left_semantic_context): Define.
6018 (handle_action_dollar): Update max_left_semantic_context.
6019 * data/glr.c (YYMAXLEFT): New definition.
6020 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
6021 (yyresolveAction): Ditto.
6022
6023 Fixes to problems with location handling in GLR parsers reported by
6024 Frank Heckenbach (2003/06/05).
6025
6026 * data/glr.c (YYLTYPE): Make trivial if locations not used.
6027 (YYRHSLOC): Add parentheses, and define only if locations used.
6028 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
6029 locations not used.
6030 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
6031 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 6032
25005f6a
PH
6033 * tests/cxx-type.at: Exercise location information; update tests
6034 to differentiate output with and without locations.
8dd76bee 6035 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
6036 because default YYLTYPE not yet defined.
6037 Change semantic actions to compute strings, rather than printing
6038 them directly (to test proper passing of semantics values). Change
6039 output to prefix notation and update test data and expected results.
6040 (yylex): Track locations.
6041 (stmtMerge): Return value rather than printing, and include arguments
6042 in value.
8dd76bee 6043
711f40b7
PE
60442003-06-03 Paul Eggert <eggert@twinsun.com>
6045
6046 Avoid warnings generated by GCC 2.95.4 when Bison is
6047 configured with --enable-gcc-warnings.
6048 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
6049 yy::]b4_parser_class_name[::translate_,
6050 yy::Stack::operator[] (unsigned),
6051 yy::Stack::operator[] (unsigned) const,
6052 yy::Slice::operator[] (unsigned),
6053 yy::Slice::operator[] (unsigned) const):
6054 Rename local vars to avoid warnings.
6055 * tests/glr-regression.at (Improper handling of embedded actions
6056 and $-N in GLR parsers): Remove unused local variable from yylex.
6057 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
6058 (void) as arg when not pure, since we now assume C89 when building
6059 Bison. Pacify GCC by using parameter.
6060
ac695f7d
PE
60612003-06-02 Paul Eggert <eggert@twinsun.com>
6062
6063 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
6064 yy::Location::lines, yy::Location::columns): Rename arguments
6065 to avoid shadowing; this removes a warning generated by GCC 3.3.
6066
26ec81e0
PE
60672003-06-01 Paul Eggert <eggert@twinsun.com>
6068
6069 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
6070 to g++, as GCC 3.3 complains if you do it.
6071 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
6072 everything that WARNING_CFLAGS has, except omit warnings
6073 not suitable for C++.
6074 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
6075 * tests/atlocal.in (CXXFLAGS): New var.
6076 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
6077
6078 Fix a GLR parser bug I reported in February; see
161a71f3 6079 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
26ec81e0
PE
6080 The problem was that GLR parsers did not conform to the C standard,
6081 because actions like { $1 = $2 + $3; } expanded to expressions
6082 that invoked YYFILL in separate subexpressions, and YYFILL assigned
6083 to a local variable. The C standard says that expressions
6084 like (var = f ()) + (var = f ()) have undefined behavior.
6085 Another problem was that GCC sometimes issues warnings that
6086 yyfill and its parameters are unused.
6087
6088 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
6089 as possibly unused.
6090 (yyfill): New function.
6091 (YYFILL): Use it.
6092 (yyuserAction): Change type of yynormal to bool, so that it matches
6093 the new yyfill signature. Mark it as possibly unused.
6094
6095
6096 Follow up on a bug I reported in February, where a Bison-generated
6097 parser can loop. Provide a test case and a fix for yacc.c. I
6098 don't have a fix for lalr1.cc or for glr.c, unfortunately.
6099 The original bug report is in:
161a71f3 6100 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
26ec81e0
PE
6101
6102 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
6103 macro's size was becoming unwieldy.
6104 (yyerrlab): Do not discard an empty lookahead symbol, as this
6105 might destroy garbage.
6106 (yyerrorlab): New label, with the old contents of YYERROR,
6107 plus the following change: pop the stack of rhs corresponding
6108 to the production that invoked YYERROR. That is how Yacc
6109 behaves, and POSIX requires this behavior.
6110 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
6111 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
6112 Define 'alarm' to do nothing if unistd.h is not available.
6113 Add a new rule "exp: '-' error;" to test the above change to
6114 data/yacc.c. Use 'alarm' to abort any test taking longer than
6115 10 seconds, as it's probably looping.
6116 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
6117 Also, the new yacc.c generates two fewer diagnostics for an
6118 existing test.
6119
d0829076
PE
61202003-05-24 Paul Eggert <eggert@twinsun.com>
6121
c6ae27df
PE
6122 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
6123 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
6124 This fixes a problem reported by John Bowman when the Compaq/HP
6125 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
6126 -ansi -Wall -gall).
6127 * data/yacc.c (union yyalloc): Likewise.
6128 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 6129
d0829076
PE
6130 Switch from 'int' to 'bool' where that makes sense.
6131
6132 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
6133 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
6134 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
6135 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
6136 Return or accept bool, not int. All callers changed.
6137 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
6138 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
6139 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
6140 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
6141 bitset_or_and_cmp_): Likewise.
6142 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
6143 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
6144 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
6145 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
6146 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
6147 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
6148 bitset_stats_or_and_cmp): Likewise.
6149 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
6150 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
6151 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
6152 ebitset_xor_cmp): Likewise.
6153 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
6154 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
6155 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
6156 lbitset_xor_cmp): Likewise.
6157 * lib/bbitset.h: Include <stdbool.h>.
6158 (struct bitset_vtable): The following members now return bool, not
6159 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
6160 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
6161 or_and_cmp).
6162 * src/conflicts.c (count_rr_conflicts): Likewise.
6163 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
6164 All uses changed.
6165 * lib/ebitset.c (ebitset_obstack_init): Likewise.
6166 * lib/lbitset.c (lbitset_obstack_init): Likewise.
6167 * src/getargs.c (debug_flag, defines_flag, locations_flag,
6168 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
6169 graph_flag): Likewise.
6170 * src/getargs.h (debug_flag, defines_flag, locations_flag,
6171 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
6172 graph_flag): Likewise.
6173 * src/output.c (error_verbose): Likewise.
6174 * src/output.h (error_verbose): Likewise.
6175 * src/reader.c (start_flag, typed): Likewise.
6176 * src/reader.h (typed): Likewise.
6177 * src/getargs.c (LOCATIONS_OPTION): New constant.
6178 (long_options, getargs): Use it.
6179 * src/lalr.c (build_relations): Use bool, not int.
6180 * src/nullable.c (nullable_compute): Likewise.
6181 * src/print.c (print_reductions): Likewise.
6182 * src/tables.c (action_row, pack_vector): Likewise.
6183 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
6184 * src/output.c (prepare): Use it.
6185 * src/output.c (token_definitions_output,
6186 symbol_destructors_output, symbol_destructors_output): Use string,
6187 not boolean integer, to keep track of whether to output separator.
6188 * src/print_graph.c (print_core): Likewise.
6189 * src/state.c (state_rule_lookaheads_print): Likewise.
6190
6191 * config/install-sh: Sync from automake 1.7.5.
6192
6b2584b7
PE
61932003-05-14 Paul Eggert <eggert@twinsun.com>
6194
6195 * src/parse-gram.y (rules_or_grammar_declaration): Require a
6196 semicolon after a grammar declaration, in the interest of possible
6197 future changes to the Bison input language.
6198 Do not allow a stray semicolon at the start of the grammar.
6199 (rhses.1): Allow one or more semicolons after any rule, including
6200 just before "|" as required by POSIX.
6201 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
6202 grammar.
6203
caf37a36
ADL
62042003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
6205
6206 %parse-param support for lalr1.cc.
6207
6208 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
6209 b4_cc_constructor_calls, b4_cc_constructor_call,
6210 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
6211 definitions.
6212 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
6213 parse-param arguments.
6214 (yy::b4_parser_class_name): Declare instance variables to
6215 hold parse-param arguments.
6216 * tests/calc.at: s/value/semantic_value/ because value clashes
6217 with a member of yy::b4_parser_class_name. Adjust C++ code
6218 to handle %parse-param. Enable %parse-param test in C++.
6219
3ab37077
PE
62202003-05-12 Paul Eggert <eggert@twinsun.com>
6221
6222 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
6223 English a bit. Fix fclose typo. Change "const char" to "char
6224 const", and use ANSI C rather than K&R for "main". Suggest
6225 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
6226 and suggest yy_switch_to_buffer.
6227
62282003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
6229
6230 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
6231 C89. This avoids a diagnostic on compilers that define __STDC__
6232 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
161a71f3 6233 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
163ab321 6234
e743727f
PE
62352003-05-03 Paul Eggert <eggert@twinsun.com>
6236
6237 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
6238 Do not overrun array bounds.
6239 This should fix a bug reported today by Olatunji Oluwabukunmi in
161a71f3 6240 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
e743727f 6241
916708d5
AD
62422003-04-29 Akim Demaille <akim@epita.fr>
6243
6244 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
6245 * src/getargs.c, src/getargs.h: here, as bool, not int.
6246 (nondeterministic_parser): New.
6247 * src/parse-gram.y, src/scan-gram.l: Support
6248 %nondeterministic-parser.
6249 * src/output.c (prepare): Use nondeterministic_parser instead
6250 of glr_parser where appropriate.
6251 * src/tables.c (conflict_row, action_row, save_row)
6252 (token_actions, token_actions, pack_vector): Ditto.
6253
a06ea4aa
AD
62542003-04-29 Akim Demaille <akim@epita.fr>
6255
6256 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
6257
211074ca
AD
62582003-04-29 Akim Demaille <akim@epita.fr>
6259
6260 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
6261 with %pure-parser and %locations to exercise the patch from Yakov
6262 Markovitch below.
6263
6175ffe3
PE
62642003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
6265
6266 * data/yacc.c: (b4_lex_param): Corrected for the case where
6267 %lex-param is provided and %pure-parser isn't.
6268
b1e95857
PE
62692003-04-27 Paul Eggert <eggert@twinsun.com>
6270
6271 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
161a71f3 6272 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
b1e95857
PE
6273 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
6274 if it is not defined.
6275 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
6276
acda9df6
PE
62772003-04-26 Paul Eggert <eggert@twinsun.com>
6278
3470c57b
PE
6279 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
6280 Declare to be of type suitable for the ninf value itself, not of
6281 type suitable for the corresponding table, since the latter might
6282 be unsigned but the ninf value might be negative. This fixes a
6283 bug reported by Alexandre Duret-Lutz in
161a71f3 6284 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3470c57b 6285
acda9df6
PE
6286 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
6287 invokes it. We shouldn't invoke it twice because it will attempt
6288 to put error.o in the archive twice. This fixes a glitch reported
6289 by Martin Mokrejs in
161a71f3 6290 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
acda9df6 6291
b5250f26
PE
62922003-04-21 Paul Eggert <eggert@twinsun.com>
6293
6294 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
6295 to gnulib.
6296
089ac0f1
PE
62972003-04-21 Yakov Markovitch <Markovitch@iso.ru>
6298
6299 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
6300 Fix obvious typo that results in uncompilable GLR parsers
6301 when both %pure-parser and %locations are used. (trivial change)
6302
5ededac6
PE
63032003-04-17 Paul Eggert <eggert@twinsun.com>
6304
1b8f2fff
PE
6305 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
6306 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
6307 Do not insert the expected token via unput, as this runs afoul
6308 of a POSIX-compatibility bug in flex 2.5.31.
6309 All uses changed to BEGIN the parent state,
6310 since we no longer insert the expected token via unput.
6311 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
6312 that is no longer emitted after the above change.
6313
5ededac6
PE
6314 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
6315 the first one. This change is from Paul Hilfinger, and it fixes
6316 regression reported by Werner Lemberg in
161a71f3 6317 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5ededac6
PE
6318
6319 (resolve_sr_conflict): Don't invoke state_errs_set
6320 unless one or more tokens have been explicitly made errors.
6321 Otherwise, the above change causes Bison to abort.
6322
6323 * tests/existing.at (GNU pic Grammar): New test case, taken from
6324 Lemberg's email.
6325
b8be9132
AD
63262003-03-31 Akim Demaille <akim@epita.fr>
6327
6328 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
6329
d423d460
AD
63302003-03-31 Akim Demaille <akim@epita.fr>
6331
6332 * src/output.c (prepare_symbols): Avoid trailing spaces in the
6333 output.
6334
c7e441b4
AD
63352003-03-31 Akim Demaille <akim@epita.fr>
6336
6337 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
6338 From Paul Hilfinger.
6339
231897ad
AD
63402003-03-29 Akim Demaille <akim@epita.fr>
6341
6342 * m4/error.m4: Do not put under dynamic conditions some code which
6343 expansion is under static control.
6344
5b066063
AD
63452003-03-29 Akim Demaille <akim@epita.fr>
6346
6347 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
6348
22a74fec
AD
63492003-03-29 Akim Demaille <akim@epita.fr>
6350
6351 * doc/bison.texinfo (Strings are Destroyed): New.
6352
0eee27e7
PE
63532003-03-13 Paul Eggert <eggert@twinsun.com>
6354
6355 * .cvsignore: Add configure.lineno.
6356 * src/.cvsignore: Add yacc.
6357 * tests/.cvsignore: Add testsuite.log.
6358 * doc/fdl.texi: Sync with latest FSF version.
6359
f61aad93
PE
63602003-03-12 Paul Eggert <eggert@twinsun.com>
6361
537636c7
PE
6362 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
6363 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
6364 cursor, instead of leaving it undefined. This fixes a bug
6365 reported by Tim Van Holder in
161a71f3 6366 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
537636c7
PE
6367 * tests/input.at (Torturing the Scanner): Test the scanner on
6368 an empty input file, which was Tim Van Holder's test case.
6369
6370 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
6371 <sys/resource.h> can be included, include sys/time.h and
6372 sys/times.h first, if available. This works around the SunOS
6373 4.1.4 porting bug reported by Bruce Becker in
161a71f3 6374 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
537636c7
PE
6375
6376 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
6377 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
6378 AC_HEADER_SYS_WAIT.
6379
f61aad93
PE
6380 Merge changes from gnulib. This was prompted because the CVS
6381 snapshot didn't build on Solaris 7 due to strnlen problems.
6382
6383 These changes need to be merged back into gnulib:
6384 * lib/hash.c: Include <stdbool.h> unconditionally.
6385 * m4/onceonly.m4 (m4_quote): New macro.
6386 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
6387 Quote AC_FOREACH variable-expansions properly.
6388 The 2003-01-03 obstack.h change also needs merging.
6389 {end of changes requiring merging}
5b066063 6390
f61aad93
PE
6391 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
6392 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
6393 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
6394 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
6395 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
6396 New files, imported from gnulib.
6397 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
6398 above.
6399
6400 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
6401 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
6402 gnulib sources.
6403
6404 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
6405 Add.
6406 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
6407 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
6408 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
6409 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
6410 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
6411 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
6412 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
6413 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
6414 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
6415 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
6416 (jm_PREREQ_ARGMATCH): Remove.
6417 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
6418 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
6419
6420 * src/system.h: Include <stdbool.h> unconditionally.
6421
6422 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
6423 assuming at least C89 in the bitset code for some time now.
6424
d2ffe116
AD
64252003-03-03 Akim Demaille <akim@epita.fr>
6426
6427 * ro.po: New.
6428
052826fd
AD
64292003-03-02 Akim Demaille <akim@epita.fr>
6430
6431 * doc/bison.texinfo (Table of Symbols): Reactivate the
6432 documentation for %lex-param, and %parse-param.
6433
c4749565
AD
64342003-03-02 Akim Demaille <akim@epita.fr>
6435
6436 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
6437 generate verbose error messages.
6438 Use the number of tokens as an upper bound in yytname, as it
6439 cannot be a non terminal.
6440
d5286af1
AD
64412003-03-02 Akim Demaille <akim@epita.fr>
6442
6443 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
6444 message.
6445
22e304a6
AD
64462003-03-02 Akim Demaille <akim@epita.fr>
6447
22e304a6
AD
6448 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
6449 Use them to exercise yycheck overrun.
6450 Based on Andrew Suffield's grammar.
6451
67a25fed
AD
64522003-03-02 Akim Demaille <akim@epita.fr>
6453
6454 Create tests/local.at for Bison generic testing macros.
6455
6456 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
6457 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
6458 This new file.
6459 * tests/calc.at (AT_CHECK_CALC): Adjust.
6460 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
6461 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
6462 * tests/local.at: here.
6463 (AT_COMPILE_CXX): Tags the tests using it as c++.
6464 Ignore the test if CXX is not functional.
6465
9c2b381f
PE
64662003-03-01 Paul Eggert <eggert@twinsun.com>
6467
6468 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
6469 not loc->end, since loc->end might contain garbage and this leads
6470 to undefined behavior on some platforms.
6471 (id_loc, token_start): Use (IF_LINTed) initial values that do not
6472 depend on *loc, so that the reader doesn't give the the false
6473 impression that *loc is initialized.
6474 (<INITIAL>"%%"): Do not bother setting code_start, since its value
6475 does not survive the return.
6476
0433ba88
AD
64772003-03-01 Akim Demaille <akim@epita.fr>
6478
6479 * src/scan-gram.l (code_start): Always initialize it when entering
6480 into yylex, as SC_EPILOGUE is activated *before* the corresponding
6481 yylex invocation. An alternative would be making it static, but
6482 then it starts with the second %%'s beginning, instead of its end.
6483
b305ea69
PE
64842003-02-28 Paul Eggert <eggert@twinsun.com>
6485
6486 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
6487 around a UnixWare 7.1.1 porting bug reported by John Hughes in
161a71f3 6488 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
b305ea69 6489
c3d25e01
PE
64902003-02-26 Paul Eggert <eggert@twinsun.com>
6491
6492 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
6493 Remove Sequent/Pyramid discussion (nobody uses them any more).
6494 Merge VMS and MS-DOS discussion; these ports may well be dead
6495 but let's keep mentioning them for now. Put <> around email
6496 addresses. Add copyright notice.
6497
c267ffbc
PE
64982003-02-24 Paul Eggert <eggert@twinsun.com>
6499
6500 * data/glr.c (yy_reduce_print): yylineno -> yylno,
6501 to avoid collision with flex use of yylineno.
6502 Problem reported by Bruce Lilly in
161a71f3 6503 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
c267ffbc
PE
6504 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
6505 * data/yacc.c (yy_reduce_print): Likewise.
6506
6507 * config/depcomp: Sync with Automake 1.7.3.
6508
f939fc12
AD
65092003-02-21 Akim Demaille <akim@epita.fr>
6510
6511 * data/lalr1.cc: Use temporary variables instead of casts to
6512 change integer types.
6513 Suggested by Paul Eggert.
6514
95923bd6
AD
65152003-02-21 Akim Demaille <akim@epita.fr>
6516
6517 * doc/bison.texinfo: Use "location" consistently to refer to @n,
6518 to avoid confusions with lalr1.cc's notion of Position.
6519 Suggested by Paul Eggert.
6520
2cdc240e
AD
65212003-02-20 Akim Demaille <akim@epita.fr>
6522
6523 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
6524 before initial_columns.
6525 (location.hh): Use consistent variable names when defining the
6526 operator<<.
6527 Use "last" so that we subtract from Positions, not from unsigned.
6528
5d003116
AD
65292003-02-20 Akim Demaille <akim@epita.fr>
6530
6531 * data/lalr1.cc (position.hh): New subfile, including the extended
6532 and Doxygen'ed documentation of class Position.
6533 (location.hh): Use it.
6534 Document a` la Doxygen.
ba1ecc07 6535 With the help of Benoit Perrot.
5d003116 6536
d02b25f9
AD
65372003-02-20 Akim Demaille <akim@epita.fr>
6538
6539 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
6540 AT_YACC_IF.
6541 Redefine AT_YYERROR_SEES_LOC_IF using it.
6542 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
6543 not defined.
6544 Don't use the location in yy::Parser::error_ and
6545 yy::Parser::print_ when not %locations.
6546 Activate more lalr1.cc tests.
6547
0d1c3a04
AD
65482003-02-19 Akim Demaille <akim@epita.fr>
6549
6550 * data/lalr1.cc: When displaying a line number, be sure to make it
6551 an int.
6552
60a777aa
AD
65532003-02-19 Akim Demaille <akim@epita.fr>
6554
6555 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
6556 Remove, useless.
6557 (YYABORT, YYACCEPT, YYERROR): New.
6558 * tests/calc.at: Renable the lalr1.cc test.
6559
0b86fc41
AD
65602003-02-19 Akim Demaille <akim@epita.fr>
6561
6562 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
6563 error recovery, mixing with/without pops and discarding of the
6564 lookahead.
6565 Exercise YYERROR.
6566 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
6567
da99a5dc
PE
65682003-02-17 Paul Eggert <eggert@twinsun.com>
6569
6570 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
6571 * tests/testsuite.at (AT_COMPILE): Use them.
6572 This fixes the testsuite problem reported by Robert Lentz in
161a71f3 6573 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
da99a5dc 6574
93b8c255
PE
65752003-02-12 Paul Eggert <eggert@twinsun.com>
6576
6577 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
6578 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
161a71f3 6579 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
93b8c255
PE
6580 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
6581 Check for malloc failure, for consistency with yacc.c.
6582 (yytname_size): Remove, for consistency with yacc.c.
6583
6584 The bug still remains in data/lalr1.cc, as I didn't have time
6585 to fix it there.
6586
7548fed2
AD
65872003-02-06 Akim Demaille <akim@epita.fr>
6588
6589 * configure.ac (GXX): Rename as...
6590 (CXX): this, to keep the original Autoconf semantics.
6591 Require 2.57.
6592 * data/lalr1.cc: Fix b4_copyright invocations.
6593 If YYDEBUG is not defined, don't depend upon name_ being defined.
6594 (location.hh): Include string and iostream.
6595 (Position::filename): New member.
6596 (Position::Position ()): New.
6597 (operator<< (Position)): New.
6598 (operator- (Position, int)): New.
6599 (Location::first, Location::last): Rename as...
6600 (Location::begin, Location::end): these, to mock the conventional
6601 iterator names.
6602 (operator<< (Location)): New.
6603 * tests/atlocal.in (CXX): New.
6604 * tests/testsuite.at (AT_COMPILE_CXX): New.
6605 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
6606 locations in a more synthetic way.
6607 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
6608 lalr1.cc is used.
6609 Adjust the C locations to match those from Emacs: first column is
6610 column 0.
6611 Change all the expected results.
6612 Conform to the GCS: simplify the locations when applicable.
6613 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
6614 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
6615 these CPP macros with the m4 macros new defined by...
6616 (AT_CHECK_PUSHDEFS): this, i.e.:
6617 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 6618 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
6619 New macros.
6620 (AT_CHECK_POPDEFS): Undefine them.
6621 (AT_CHECK_CALC_LALR1_CC): New.
6622 Use it for the first lalr1.cc test.
6623
43a176ef
AD
66242003-02-04 Akim Demaille <akim@epita.fr>
6625
6626 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
6627 Location as is defined.
6628
fc049e9c
AD
66292003-02-04 Akim Demaille <akim@epita.fr>
6630
6631 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
6632 name_ being defined.
6633
a737b216
PE
66342003-02-03 Paul Eggert <eggert@twinsun.com>
6635
6636 * src/gram.h (start_symbol): Remove unused decl.
6637
6638 Use more-consistent naming conventions for local vars.
6639
6640 * src/derives.c (derives_compute): Change type of local var from
6641 int to rule_number.
6642 * src/gram.c (grammar_rules_partial_print): Likewise.
6643 * src/print.c (print_core): Likewise.
6644 * src/reduce.c (reduce_grammar_tables): Likewise.
6645
6646 * src/gram.c (grammar_dump): Change name of item_number *
6647 local var from r to rp.
6648 * src/nullable.c (nullable_compute): Likewise.
6649
6650 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
6651
6652 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
6653 for symbol or symbol_number var.
6654 * src/reader.c (grammar_start_symbol_set): Likewise.
6655 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
6656 Likewise.
6657 * src/state.c (transitions_to): Likewise.
6658 * src/state.h: Likewise.
6659 * src/tables.c (symbol_number_to_vector_number): Likewise.
6660
6661 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
6662 char * var.
6663
6664 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
6665 var.
6666
6667 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
6668 var.
6669
6670 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
6671 Use str, not s, for char * var. Use ch, not c, for character var.
6672 Use size for size var.
6673
6674 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
6675 char * var.
6676 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
6677 uniqstr var.
6678 * src/uniqstr.h: Likewise.
6679
6680 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
6681 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
6682 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
6683 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
6684 param to have same name as that of enum, so that we don't use
6685 "s" to stand for a non-state.
6686
68e93ad5
AD
66872003-02-02 Akim Demaille <akim@epita.fr>
6688
6689 * src/scan-skel.l: Scan more than one inert character per yylex
6690 invocation.
6691
92898986
PE
66922003-02-01 Paul Eggert <eggert@twinsun.com>
6693
6694 Version 1.875a.
6695
1d9d5d71
PE
6696 * po/LINGUAS: Add ms.
6697
0435d061
AD
66982003-01-30 Akim Demaille <akim@epita.fr>
6699
6700 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
6701
6029a57f
PH
67022003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
6703
6704 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
6705 of $1.
0435d061
AD
6706
6707 Changes in response to error report by S. Eken: GLR mode does not
6029a57f 6708 handle negative $ indices or $ indices in embedded rules correctly.
161a71f3 6709 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 6710
6029a57f
PH
6711 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
6712 (b4_rhs_location): Ditto.
0435d061 6713 (yyfill): New function to copy from stack tree into array
6029a57f 6714 incrementally.
0435d061
AD
6715 (yyuserAction): Modify to allow incremental move of semantic values
6716 to rhs array when in GLR mode.
6717 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
6718 as needed.
6719 Remove dummy use of yystack, as there is now a guaranteed use.
6720 (yydoAction): Modify to allow incremental move of semantic values
6721 to rhs array when in GLR mode.
6722 (yyresolveAction): Ditto.
6723 (yyglrShiftDefer): Update comment.
0435d061 6724 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
6725 (yyglrReduce): Ditto.
6726 (yydoAction): Ditto
0435d061 6727
6029a57f
PH
6728 * tests/glr-regr1.at: Rename to ...
6729 * tests/glr-regression.at: Add new regression test for the problems
6730 described above (adapted from S. Eken).
6731 Update copyright notice.
6732 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
6733 * tests/Makefile.am: Ditto.
6734
6cee6297
PE
67352003-01-28 Paul Eggert <eggert@twinsun.com>
6736
6737 * data/lalr1.cc: Do not use @output_header_name@ unless
6738 b4_defines_flag is set. This fixes two bugs reported by
6739 Tim Van Holder in
161a71f3
PE
6740 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
6741 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6cee6297 6742
b2a836b5
PE
67432003-01-21 Paul Eggert <eggert@twinsun.com>
6744
6745 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
6746 we don't need to worry about yyerrlab1 being reported as an
6747 "unused label" by non-GCC C compilers. The downside is that if
6748 locations are used then a couple of statements are duplicated each
6749 time YYERROR is invoked, but the upside is that the warnings
6750 should vanish.
6751 (yyerrlab1): Move code to YERROR.
6752 (yyerrlab2): Remove. Change uses back to yyerrlab1.
6753 This reverts some of the 2002-12-27 change.
6754
4196b931
PE
67552003-01-17 Paul Eggert <eggert@twinsun.com>
6756
6757 * src/output.c (symbol_printers_output): Fix typo that led
6758 to core dump. Problem reported by Antonio Rus in
161a71f3 6759 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
4196b931 6760
3ae831b4
AD
67612003-01-13 Akim Demaille <akim@epita.fr>,
6762 Quoc Peyrot <chojin@lrde.epita.fr>,
6763 Robert Anisko <anisko_r@lrde.epita.fr>
6764
6765 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
6766 when the stacks contain one element, as the loop would otherwise
6767 free the last state, and then use the top state (the one we just
6768 popped). This means that the initial elements will not be freed
6769 explicitly, as is the case in yacc.c; it is not a problem, as
6770 these elements have fake values.
6771
e3aa65c5
PE
67722003-01-11 Paul Eggert <eggert@twinsun.com>
6773
6774 * NEWS: %expect-violations are now just warnings, reverting
6775 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
6776 bootstrapping problem reported by Matthias Klose; see
161a71f3 6777 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
e3aa65c5
PE
6778 * src/conflicts.c (conflicts_print): Likewise.
6779 * tests/conflicts.at (%expect not enough, %expect too much,
6780 %expect with reduce conflicts): Likewise.
6781 * doc/bison.texinfo (Expect Decl): Document this. Also mention
6782 that the warning is enabled if the number of conflicts changes
6783 (not necessarily increases).
6784
6785 * src/getargs.c (version): Update copyright year.
6786
f0057011
AD
67872003-01-09 Akim Demaille <akim@epita.fr>
6788
6789 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
6790
1ee6d2a0
PE
67912003-01-08 Paul Eggert <eggert@twinsun.com>
6792
6793 * Makefile.maint (WGETFLAGS):
6794 New macro, containing "-C off" to disable proxy caches.
6795 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
6796 (rel-check): Use $(WGET) instead of wget.
6797
d4fd77c4
PE
67982003-01-06 Paul Eggert <eggert@twinsun.com>
6799
6800 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
6801 the GLR paper of Scott, Johnstone and Hussain.
6802
464c6927
PE
68032003-01-04 Paul Eggert <eggert@twinsun.com>
6804
d600ee67
PE
6805 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
6806 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
6807 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
6808 (EXTRA_LIBRARIES): New var, for liby.a.
6809 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
6810 (EXTRA_SCRIPTS): New var, for yacc.
6811
464c6927
PE
6812 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
6813 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
6814 Problem reported by Nelson H. F. Beebe.
6815
68162003-01-03 Paul Eggert <eggert@twinsun.com>
6817
6818 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
6819 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
6820 when compiling Bison 1.875's `bitset bset = obstack_alloc
6821 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
6822
6823 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
6824 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
6825 grow to a huge size with typical invocation.
d600ee67 6826
464c6927
PE
6827 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
6828 Use the pattern recommended by Autoconf 2.57, except also protect
6829 against double-definition.
6830 * src/system.h: Likewise.
6831 Portability issues reported by Nelson H. F. Beebe.
d600ee67 6832
464c6927
PE
6833 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
6834 All uses changed. Provide a definition in both C and C++.
6835 (yytrue, yyfalse): Define even if defined (__cplusplus).
6836
6837 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
6838 Reported by Nelson H. F. Beebe.
d600ee67 6839
464c6927
PE
6840 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
6841
0f42c7d5
PE
68422003-01-02 Paul Eggert <eggert@twinsun.com>
6843
6844 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
6845 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
6846 Bug reported by Nelson H. F. Beebe.
6847
dc546b0f
PE
68482003-01-01 Paul Eggert <eggert@twinsun.com>
6849
6850 * Version 1.875.
6851
2c09b6a7
PE
68522002-12-30 Paul Eggert <eggert@twinsun.com>
6853
6854 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
6855 Moved here from...
6856 (<INITIAL>","): Here. This causes stray "," to be treated
6857 more uniformly.
6858
dc546b0f 6859 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
6860 last brace in braced code when not in Yacc mode, for compatibility
6861 with Bison 1.35. This resurrects the 2001-12-15 patch to
6862 src/reader.c.
6863
6864 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
6865 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
6866
535c0f63
PE
68672002-12-28 Paul Eggert <eggert@twinsun.com>
6868
6869 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
6870 that of SYM's type. This fixes Debian bug 168069, reported by
6871 Thomas Olsson.
d600ee67 6872
963fcc17
PE
68732002-12-28 Paul Eggert <eggert@twinsun.com>
6874
6875 Version 1.75f.
6876
6877 Switch back to the Yacc style of conflict reports, undoing some
6878 of the 2002-07-30 change.
6879 * doc/bison.texinfo (Understanding): Use Yacc style for
6880 conflict reports. Also, use new way of locating rules.
6881 * src/conflicts.c (conflict_report):
6882 Renamed from conflict_report_yacc, removing the old
6883 'conflict_report'. Translate the entire conflict report at once,
6884 so that we don't assume that "," has the same interpretation in
6885 all languages.
6886 (conflicts_output): Use Yacc-style conflict report for each state,
6887 instead of our more-complicated style.
6888 (conflicts_print): Use Yacc-style conflict report, except print
6889 the input file name when not emulating Yacc.
6890 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
6891 Conflicted Reduction, %expect not enough, %expect too much,
6892 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
6893 * tests/existing.at (GNU Cim Grammar): Likewise.
6894 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
6895
6896 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
6897 fatal): Don't invoke fflush; it's not needed and it might even be
6898 harmful for stdout, as stdout might not be open.
6899 * src/reduce.c (reduce_print): Likewise.
6900
b1efe548
PE
69012002-12-27 Paul Eggert <eggert@twinsun.com>
6902
6903 Fix a bug where error locations were not being recorded correctly.
6904 This problem was originally reported by Paul Hilfinger in
161a71f3 6905 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
6906
6907 * data/yacc.c (yyparse): New local var yylerrsp, to record the
6908 top of the location stack's error locations.
6909 (yyerrlab): Set it. When discarding a token, push its location
6910 onto yylerrsp so that we don't lose track of the error's end.
6911 (yyerrlab1): Now is only the target of YYERROR, so that we can
6912 properly record the location of the action that failed. For GCC
6913 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
6914 GCC warning about yyerrlab1 being unused if YYERROR is unused.
6915 (yyerrlab2): New label, which yyerrlab now falls through to.
6916 Compute the error's location by applying YYLLOC_DEFAULT to
6917 the locations of all the symbols that went into the error.
6918 * doc/bison.texinfo (Location Default Action): Mention that
6919 YYLLOC_DEFAULT is also invoked for syntax errors.
6920 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
6921 Error locations include the locations of all the tokens that were
6922 discarded, not just the last token.
d600ee67 6923
983c5c2c
PE
69242002-12-26 Paul Eggert <eggert@twinsun.com>
6925
b1efe548
PE
6926 * src/files.c: Include quote.h.
6927 (compute_output_file_names): Warn if we detect conflicting
6928 outputs to the same file. This should catch the misunderstanding
6929 exemplified by Debian Bug 165349, reported by Bruce Stephens..
6930
6931 * src/conflicts.c (conflicts_print): If the user specifies
6932 "%expect N", report an error if there are any reduce/reduce
6933 conflicts. This is what the manual says should happen.
6934 This fixes Debian bug 130890, reported by Anthony DeRobertis.
6935 * tests/conflicts.at (%expect with reduce conflicts): New test.
6936
983c5c2c
PE
6937 Don't use m4_include on relative file names, as it doesn't work as
6938 desired if there happens to be a file with that name under ".".
d600ee67 6939
983c5c2c
PE
6940 * m4sugar/version.m4: Remove; it was included but it wasn't used.
6941 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
6942 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
6943 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
6944 * src/output.c (output_skeleton): Use full path names when
6945 specifying a file to include; don't rely on include path, as
6946 it's unreliable when the working file contains a file with
6947 that name.
d600ee67 6948
983c5c2c
PE
69492002-12-25 Paul Eggert <eggert@twinsun.com>
6950
6951 Remove obsolete references to bison.simple and bison.hairy.
6952 Problem mentioned by Aubin Mahe in
161a71f3 6953 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
6954 * data/glr.c: Comment fix.
6955 * doc/bison.1: Remove references. Also, mention "yacc".
6956
6957 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
6958 with -g option.
6959
6960 * src/parse-gram.y (declaration): Use enum "report_states" rather
6961 than its numeric value 1.
6962
6963 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
6964 opening a new one. This fixes Debian bug 165349, reported by
6965 Bruce Stephens.
6966
23f2d9dc
PE
69672002-12-24 Paul Eggert <eggert@twinsun.com>
6968
6969 Version 1.75e.
6970
6971 * Makefile.maint (cvs-update): Don't assume that the shell
6972 supports $(...), as Solaris sh doesn't.
6973
6974 * src/parse-gram.y (lloc_default): Remove test for empty
6975 nonterminals at the end, since it didn't change the result.
6976
69772002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
6978
6979 If the user does not define YYSTYPE as a macro, Bison now declares it
6980 using typedef instead of defining it as a macro. POSIX requires this.
6981 For consistency, YYLTYPE is also declared instead of defined.
6982
6983 %union directives can now have a tag before the `{', e.g., the
6984 directive `%union foo {...}' now generates the C code
6985 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
6986 The default union tag is `YYSTYPE', for compatibility with Solaris 9
6987 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
6988 instead of `yyltype'.
6989
6990 `yystype' and `yyltype' are now obsolescent macros instead of being
6991 typedefs or tags; they are no longer documented and will be
6992 withdrawn in a future release.
6993
6994 * data/glr.c (b4_location_type): Remove.
6995 (YYSTYPE): Renamed from yystype.
6996 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
6997 (struct YYLTYPE): Renamed from struct yyltype.
6998 (YYLTYPE): Renamed from yyltype.
6999 (yyltype, yystype): New (and obsolescent) macros,
7000 for backward compatibility.
7001 * data/yacc.c: Likewise.
7002
7003 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
7004 does not specify a union tag. This is for compatibility with
7005 Solaris 9 yacc.
7006
7007 * src/parse-gram.y (add_param): 2nd arg is now char * not char
7008 const *, since it is now modified by stripping surrounding { }.
7009 (current_braced_code): Remove.
7010 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
7011 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
7012 trailing " {...}". Now of type <chars>.
7013 (grammar_declaration): Adjust to bundled tokens.
7014 (code_content): Remove; stripping is now done by add_param.
7015 (print_token_value): Print contents of bundled tokens.
7016 (token_name): New function.
7017
7018 * src/reader.h (braced_code, current_braced_code): Remove.
7019 (token_name): New decl.
7020
7021 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
7022 token_type, not braced_code code_kind. All uses changed.
7023 (SC_PRE_CODE): New state, for scanning after a keyword that
7024 has (or usually has) an immediately-following braced code.
7025 (token_type): New local var, to keep track of which token type
7026 to return when scanning braced code.
7027 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 7028 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
7029 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
7030 instead of returning a token type immediately.
7031 (<INITIAL>"{"): Set token type.
7032 (<SC_BRACED_CODE>"}"): Use it.
7033 (handle_action_dollar, handle_action_at): Now returns bool
7034 indicating success. Fail if ! current_rule; this prevents a core dump.
7035 (handle_symbol_code_dollar, handle_symbol_code_at):
7036 Remove; merge body into caller.
7037 (handle_dollar, handle_at): Complain in invalid contexts.
7038
7039 * NEWS, doc/bison.texinfo: Document the above.
7040 * NEWS: Fix years and program names in copyright notice.
7041
879ca4f8
PE
70422002-12-17 Paul Eggert <eggert@twinsun.com>
7043
7044 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
7045 Reporting, Table of Symbols): Omit mentions of %lex-param and
7046 %parse-param from the documentation for now.
7047
1c5fe69d
PE
70482002-12-15 Paul Eggert <eggert@twinsun.com>
7049
7050 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
7051 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
7052 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
7053 disagreed with the Bison documentation. Bug
7054 reported by Andrew Walrond.
d600ee67 7055
1c5fe69d
PE
7056 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
7057 as the caller now does that.
7058 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
7059 (YYEMPTY): Parenthesize right hand side, since others use it.
7060 (yyparse): Don't assume that our generated code is the only code
7061 that sets yychar.
7062
d1de5372
PE
70632002-12-13 Paul Eggert <eggert@twinsun.com>
7064
7065 Version 1.75d.
7066
7067 POSIX requires a "yacc" command.
7068 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
7069 (MOSTLYCLEANFILES): Add yacc.
7070 (yacc): New rule.
1c5fe69d 7071 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
7072 as an alias for bison y.
7073
7074 * po/LINGUAS: Add da.
d600ee67 7075
d1de5372
PE
7076 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
7077 problem with latest <getopt.h>.
7078 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
7079
7080 * doc/fdl.texi: Upgrade to 1.2.
7081 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
7082 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
7083 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
7084 gnulib.
7085 * config/install-sh: Sync with autotools.
7086
7087 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
161a71f3 7088 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
7089 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
7090 locations are requested.
7091 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
7092 locations are requested.
7093
d0f3fe23
PE
70942002-12-12 Paul Eggert <eggert@twinsun.com>
7095
7096 Remove unportable casts and storage allocation tricks.
7097 While we're at it, remove almost all casts, since they
7098 usually aren't needed and are a sign of trouble.
7099
7100 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
7101
7102 * src/derives.c (derives_compute): Do not subtract NTOKENS from
7103 the pointer DSET returned by malloc; this isn't portable.
7104 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
7105 Similarly for DERIVES.
7106 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
7107 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
7108 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
7109
7110 * src/derives.c (derives_compute): Do not bother invoking
7111 int_of_rule_number, since rule numbers are integers.
7112
7113 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
7114 rather than XMALLOC (char, N).
7115
7116 * src/files.c (filename_split): Rewrite to avoid cast.
7117
7118 * src/gram.h (symbol_number_as_item_number,
7119 item_number_as_symbol_number, rule_number_as_item_number,
7120 item_number_as_rule_number):
7121 Now inline functions rather than macros, to avoid casts.
7122 * src/state.h (state_number_as_int): Likewise.
7123 * src/tables.c (state_number_to_vector_number,
7124 symbol_number_to_vector_number): Likewise.
7125
7126 * src/gram.h (int_of_rule_number): Remove; no longer used.
7127
7128 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
7129 since the resulting storage is always stored into.
7130
7131 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
7132 where it's needed.
7133
7134 * src/muscle_tab.c (muscle_m4_output):
7135 Now inline. Return bool, not int.
7136 * src/state.c (state_compare): Likewise.
7137 * src/symtab.c (symbol_check_defined,
7138 symbol_check_alias_consistency, symbol_pack, symbol_translation,
7139 hash_compare_symbol, hash_symbol):
7140 Likewise.
7141 * src/uniqstr.c (uniqstr_print): Likewise.
7142 * src/muscle_tab.c (muscle_m4_output_processor):
7143 New function, to avoid casts.
7144 * src/state.c (state_comparator, stage_hasher): Likewise.
7145 * src/symtab.c (symbol_check_defined_processor,
7146 symbol_check_alias_consistency_processor, symbol_pack_processor,
7147 symbol_translation_processor, hash_symbol_comparator,
7148 hash_symbol_hasher): Likewise.
7149 * src/uniqstr.c (uniqstr_print_processor): Likewise.
7150 * src/muscle_tab.c (muscles_m4_output):
7151 Use new functions instead of casting old functions unportably.
7152 * src/state.c (state_hash_new): Likewise.
7153 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
7154 symbols_token_translations_init):
7155 Likewise.
7156 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
7157
7158 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
7159 var instead of casting to long, to avoid casts.
7160 (prepare_states): Use MALLOC rather than alloca, so that we don't
7161 have to worry about alloca.
7162 * src/state.c (state_hash_lookup): Likewise.
7163
7164 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
7165 local var instead of casting to unsigned char, to avoid casts.
7166
7167 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
7168 STATE_ALLOC): Remove.
7169 (transitions_new, errs_new, reductions_new, state_new): Use malloc
7170 rather than calloc, and use offsetof to avoid allocating slightly
7171 too much storage.
7172 (state_new): Initialize all members.
7173
7174 * src/state.c (state_hash): Use unsigned accumulator, not signed.
7175
7176 * src/symtab.c (symbol_free): Remove; unused.
7177 (symbol_get): Remove cast in lhs of assignment.
7178 (symbols_do): Now static. Accept generic arguments, not
7179 hashing-related ones.
7180
7181 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
7182 (symbol_processor): Remove.
7183 (symbols_do): Remove decl; now static.
7184
7185 * src/system.h (alloca): Remove; decl no longer needed.
7186 (<stddef.h>): Include, for offsetof.
7187 (<inttypes.>, <stdint.h>): Include if available.
7188 (uintptr_t): New type, if system lacks it.
7189 (CALLOC, MALLOC, REALLOC): New macros.
7190 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
7191 new macros.
7192
7193 * src/tables.c (table_size): Now int, to pacify GCC.
7194 (table_grow, table_ninf_remap): Use signed table size.
7195 (save_row): Don't bother initializing locals when not needed.
7196 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
7197 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
7198
7199 * src/vcg.h: Correct misspellings.
7200
7201 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
7202
7203
7204 * src/getargs.c (getargs): Don't assume EOF == -1.
7205
26b4a969
PE
72062002-12-09 Paul Eggert <eggert@twinsun.com>
7207
7208 Change identifier spellings to avoid collisions with names
7209 that are reserved by POSIX.
7210
7211 Don't use names ending in _t, since POSIX reserves them.
7212 For consistency, remove _e and _s endings -- they're weren't
7213 needed to remove ambiguity. All uses changed.
7214 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
7215 turn was just renamed from struniq_t.
7216 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
7217 which in turn was just renamed from struniq_processor_t.
7218 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
7219 in turn was renamed from hash_compare_struniq_t.
7220 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
7221 (state_list): Renamed from state_list_t.
7222 * src/assoc.h (assoc): Renamed from assoc_t.
7223 * src/conflicts.c (enum conflict_resolution): Renamed from
7224 enum conflict_resolution_e.
7225 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
7226 (rule_list): Renamed from rule_list_t.
7227 * src/getargs.h (enum trace): Renamed from enum trace_e.
7228 (enum report): Renamed from enum report_e.
7229 * src/gram.h (item_number): Renamed from item_number_t.
7230 (rule_number): Renamed from rule_number_t.
7231 (struct rule_s): Remove the "rule_s" part; not used.
7232 (rule): Renamed from rule_t.
7233 (rule_filter): Renamed from rule_filter_t.
7234 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
7235 (goto_list): Renamed from goto_list_t.
7236 * src/lalr.h (goto_number): Renamed from goto_number_t.
7237 * src/location.h (location): Renamed from location_t.
7238 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
7239 and moved here from:
7240 * src/muscle_tab.h (muscle_entry_t): here.
7241 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
7242 (rule_list): Renamed from rule_list_t.
7243 * src/print_graph.c (static_graph): Renamed from graph.
7244 * src/reader.h (braced_code): Renamed from braced_code_t.
7245 Remove brace_code_e tag.
7246 * src/relation.h (relation_node): Renamed from relation_node_t.
7247 (relation_nodes): Renamed from relation_nodes_t.
7248 (relation): Renamed from relation_t.
7249 * src/state.h (state_number): Renamed from state_number_t.
7250 (struct state): Renamed from struct state_s.
7251 (state): Renamed from state_t.
7252 (transitions): Renamed from transitions_t. Unused (and
7253 misspelled) transtion_s tag removed.
7254 (errs): Renamed from errs_t. Unused errs_s tag removed.
7255 (reductions): Renamed from reductions_t. Unused tag
7256 reductions_s removed.
7257 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
7258 (struct symbol_list): Renamed from struct symbol_list_s.
7259 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
7260 (struct symbol): Renamed from struct symbol_s.
7261 (symbol): Renamed from symbol_t.
7262 * src/tables.c (vector_number): Renamed from vector_number_t.
7263 (action_number): Renamed from action_t.
7264 * src/tables.h (base_number): Renamed from base_t.
7265 * src/vcg.h (enum color): Renamed from enum color_e.
7266 (enum textmode): Renamed from enum textmode_e.
7267 (enum shape): Renamed from enum shape_e.
7268 (struct colorentry): Renamed from struct colorentry_s.
7269 (struct classname): Renamed from struct classname_s.
7270 (struct infoname): Renamed from struct infoname_s.
7271 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
7272 (enum decision): Renamed from enum decision_e.
7273 (enum orientation): Renamed from enum orientation_e.
7274 (enum alignment): Renamed from enum alignment_e.
7275 (enum arrow_mode): Renamed from enum arrow_mode_e.
7276 (enum crossing_type): Renamed from enum crossing_type_e.
7277 (enum view): Renamed from enum view_e.
7278 (struct node): Renamed from struct node_s.
7279 (node): Renamed from node_t.
7280 (enum linestyle): Renamed from enum linestyle_e.
7281 (enum arrowstyle): Renamed from enum arrowstyle_e.
7282 (struct edge): Renamed from struct edge.
7283 (edge): Renamed from edge_t.
7284 (struct graph): Renamed from struct graph_s.
7285 (graph): Renamed from graph_t.
7286 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
7287 Rename value_t -> value.
7288 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
7289 value_t_as_yystype -> value_as_yystype.
7290
7291 Don't include <errno.h> in the mainstream code, since it
7292 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
7293 * lib/get-errno.c, lib/get-errno.h: New files.
7294 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
7295 get-errno.c.
7296 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
7297 * src/output.c (output_skeleton): Likewise.
7298 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
7299 instead of errno.
7300 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
7301 Likewise.
7302 (handle_action_dollar, handle_action_at): Likewise.
7303 * src/system.h: Do not include <errno.h>.
7304 (TAB_EXT): Renamed from EXT_TAB.
7305 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
7306
7307 Avoid str[a-z]*, since <string.h> reserves that name space.
7308 Change all instances of "struniq" in names to "uniqstr", and
7309 likewise for "STRUNIQ" and "UNIQSTR".
7310 * src/uniqstr.c: Renamed from src/struniq.c.
7311 * src/uniqstr.h: Renamed from src/struniq.h.
7312 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
7313 * src/files.c (strsuffix): Remove; unused.
7314 (concat2): Renamed from stringappend. Now static.
7315 * src/files.h (strsuffix, stringappend): Remove; unused.
7316 * src/parse-gram.y (<chars>): Renamed from <string>.
7317 (<uniqstr>): Renamed from <struniq>.
7318 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
7319 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
7320 (struct graph_s.expand): Renamed from struct graph_s.stretch.
7321 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
7322 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
7323 (N_EXPAND): Renamed from N_STRETCH.
7324
7325 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
7326 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
7327 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
7328 Remove; unused.
7329 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
7330 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
7331 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
7332 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
7333 (BASE_MAXIMUM): Renamed from BASE_MAX.
7334 (BASE_MINIMUM): Renamed from BASE_MIN.
7335 (ACTION_MAX): Remove; unused.
7336 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
7337 Unnecessary casts removed from above defines.
7338
7339
7340 Fix misspelling in names.
7341 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
7342 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
7343 G_NODE_ALIGNEMENT.
7344
7345
7346 * lib/timevar.c (timevar_report): Renamed from time_report,
7347 for consistency with other names.
7348 * lib/timevar.h (timevar_report): New decl.
7349 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
7350
7351
7352 Sort include-file uses.
7353
7354 Reorder all include files under src to be in the order "system.h".
7355 then the ../lib include files in angle brackets (alphabetized),
7356 then the . include files in double-quotes (alphabetized). Fix
7357 dependency breakages encountered in this process, as follows:
7358 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
7359 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
7360 * src/state.h: Include "symtab.h".
7361
996b1c7e
PE
73622002-12-08 Paul Eggert <eggert@twinsun.com>
7363
7364 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
7365 since this causes problems when __file__ contains character
7366 sequences like "@" that are treated specially by src/scan-skel.l.
7367 Instead, just use the file's basename. This fixes the bug
7368 reported by Martin Mokrejs in
161a71f3 7369 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 7370
e19c4e5d
PE
73712002-12-06 Paul Eggert <eggert@twinsun.com>
7372
7373 Add support for rules that do not have trailing semicolons, as
7374 POSIX requires. Improve the quality of locations in Bison
7375 diagnostics.
26b4a969 7376
e19c4e5d
PE
7377 * src/location.c: Include <quotearg.h>.
7378 (empty_location): Now const.
7379 (location_print): New function. Follow the recommendation of the
7380 GNU Coding Standards for locations that span file boundaries.
7381 * src/location.h: Do not include <quotearg.h>; no longer needed.
7382 (boundary): New type.
7383 (location_t): Use it. This allows locations to span file boundaries.
7384 All member uses changed: file -> start.file or end.file (as needed),
7385 first_line -> start.line, first_column -> start.column,
7386 last_line -> end.line, last_column -> end.column.
7387 (equal_boundaries): New function.
7388 (LOCATION_RESET, LOCATION_STEP): Remove.
7389 (LOCATION_PRINT): Remove. All callers changed to use location_print.
7390 (empty_location): Now const.
7391 (location_print): New decl.
7392 * src/parse-gram.y (lloc_default): New function, which handles
7393 empty locations more accurately.
7394 (YYLLOC_DEFAULT): Use it.
7395 (%token COLON): Remove.
7396 (%token ID_COLON): New token.
26b4a969 7397 (rules): Use it.
e19c4e5d
PE
7398 (declarations, rules): Remove trailing semicolon.
7399 (declaration, rules_or_grammar_declaration):
7400 Allow empty (";") declaration.
7401 (symbol_def): Remove empty actions; no longer needed.
7402 (rules_or_grammar_declaration): Remove trailing semicolon.
7403 (semi_colon.opt): Remove.
7404 * src/reader.h: Include location.h.
7405 (scanner_cursor): New decl.
7406 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
7407 rolling our own.
7408 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
7409 of *loc.
7410 (STEP): Remove. No longer needed, now that adjust_location does
7411 the work. All uses removed.
7412 (scanner_cursor): New var.
7413 (adjust_location): Renamed from extend_location. It now sets
7414 *loc and adjusts the scanner cursor. All uses changed.
7415 Don't bother testing for CR.
7416 (handle_syncline): Remove location arg; now updates scanner cursor.
7417 All callers changed.
7418 (unexpected_end_of_file): Now accepts start boundary of token or
7419 comment, not location. All callers changed. Update scanner cursor,
7420 not the location.
7421 (SC_AFTER_IDENTIFIER): New state.
7422 (context_state): Renamed from c_context. All uses changed.
7423 (id_loc, code_start, token_start): New local vars.
7424 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
7425 processing of Yacc white space and equivalents here.
7426 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
7427 instead of returning ID immediately, since we need to search for
7428 a subsequent colon.
7429 (<INITIAL>"'", "\""): Save token_start.
7430 (<INITIAL>"%{", "{", "%%"): Save code_start.
7431 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
7432 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
7433 BEGIN context_state at end, not INITIAL.
7434 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
7435 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
7436 Return correct token start.
7437 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
7438 the start of a character, string or multiline comment is found.
7439 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
7440 Reduction): Adjust reported locations to match the more-precise
7441 results now expected.
7442 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
7443 * tests/reduce.at (Useless Rules, Reduced Automaton,
7444 Underivable Rules): Likewise.
7445 * tests/regression.at (Invalid inputs): No longer `expecting ";"
7446 or "|"' now that so many other tokens are allowed by the new grammar.
7447
7448 * src/complain.h (current_file): Remove duplicate decl;
7449 current_file is now owned by files.h.
7450 * src/complain.c, src/scan-gram.l: Include files.h.
7451
74522002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 7453
e19c4e5d
PE
7454 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
7455 promotes to int; it might be unsigned int.
7456 * data/yacc.c (yy_reduce_print): Likewise.
7457
7458 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
7459 be #defined in the prologue, not in the Bison declarations.
7460 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 7461
b64755e3
PE
74622002-12-02 Paul Eggert <eggert@twinsun.com>
7463
7464 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
7465 * lib/strtoul.c: New file, from gnulib.
7466 This fixes a porting bug reported by Peter Klein in
161a71f3 7467 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 7468
6e746484
PE
74692002-11-30 Paul Eggert <eggert@twinsun.com>
7470
b64755e3
PE
7471 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
7472 and put only a forward declaration in the prologue. This is for
7473 consistency with the other scanner helper functions.
7474
6ba55592
PE
7475 Type clashes now generate warnings, not errors, since it
7476 appears that POSIX may allow some grammars with type clashes.
7477 * src/reader.c (grammar_current_rule_check): Warn about
7478 type clashes instead of complaining.
7479 * tests/input.at (Type Clashes): Expect warnings, not complaints.
7480
6e746484
PE
7481 Add Yacc library, since POSIX requires it.
7482 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
7483 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
7484 * lib/main.c, lib/yyerror.c: New files.
7485
7486 gram_error can be static; it need not be extern.
7487 * src/reader.h (gram_error): Remove decl.
7488 * src/parse-gram.y (gram_error): Now static. Add static decl.
7489 (print_token_value): Omit parameter names from forward decl,
7490 for consistency.
7491
88510f9c
PE
74922002-11-29 Paul Eggert <eggert@twinsun.com>
7493
6e746484
PE
7494 * doc/bison.texinfo: Emphasize that yylex and yyerror must
7495 be declared before being used. E.g., one should typically
7496 declare them in the prologue. Use GNU coding style in examples.
7497 Put "const" consistently after the type it modifies. Mention
7498 that C99 supports "inline". Mention that yyerror traditionally
7499 returns "int".
7500
88510f9c
PE
7501 %parse-param and %lex-param now take just one argument, the
7502 declaration; the argument name is deduced from the declaration.
7503
7504 * doc/bison.texinfo (Parser Function, Pure Calling, Error
7505 Reporting, Table of Symbols): Document this.
7506 * src/parse-gram.y (add_param): New function.
7507 (COMMA): Remove.
7508 (declaration): Implement new rule for %parse-param and %lex-param.
7509 * src/scan-gram.l: "," now elicits a warning, rather than being
7510 a token; this is more compatible with byacc.
7511 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
7512
bb92250c
PE
75132002-11-27 Paul Eggert <eggert@twinsun.com>
7514
7515 Rename identifiers to avoid real and potential collisions.
7516
7517 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
7518 to avoid collision with lex macro described by Bruce Lilly in
161a71f3 7519 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
7520 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
7521 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
7522 * src/parse-gram.y (print_token_value): Renamed from yyprint.
7523 All uses changed.
7524 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
7525 The name "yycontrol" violates the name space rules, and this stuff
7526 wasn't being used anyway.
7527 (input): Remove action; this stuff wasn't being used.
7528 (gram_error): Rename local variable yylloc -> loc.
7529 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
7530 (YY_DECL): Don't use "yy" at start of local variables.
7531 All uses changed, e.g., yylloc -> loc.
7532 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
7533 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
7534 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
7535 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
7536
7537 * src/parse-gram.y (gram_error): loc is now const *.
7538 * src/reader.h (gram_error): Likewise.
7539
3af4feb2
PE
75402002-11-24 Paul Eggert <eggert@twinsun.com>
7541
7542 Version 1.75c.
7543
7544 * tests/actions.at (Actions after errors): Use an output format
7545 more similar to that of the Printers and Destructors test.
7546 Test the position of the ';' token too.
7547 (Printers and Destructors): Likewise.
7548 (Printers and Destructors: %glr-parser): Remove for now, to avoid
7549 unnecessarily alarming people when the test fails.
7550
7551 * data/yacc.c (yyerrlab1): Move this label down, so that the
7552 parser does not discard the lookahead token if the user code
7553 invokes YYERROR. This change is required for POSIX conformance.
7554
7555 * lib/error.c: Sync with gnulib.
7556
75572002-11-22 Paul Eggert <eggert@twinsun.com>
7558
7559 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
7560 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
7561 * lib/xmalloc.c: Likewise.
26b4a969 7562
58004308
PE
75632002-11-20 Paul Eggert <eggert@twinsun.com>
7564
7565 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
7566
75672002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 7568
58004308
PE
7569 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
7570 should use `if (! x) abort ();' rather than `assert (x);', and
7571 anyway it's one less thing to worry about configuring.
7572
7573 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
7574 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
7575 and replace all instances of assert with abort.
7576 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
7577 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
7578
7579 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
7580 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
7581 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
7582 hash_find_entry, hash_rehash, hash_insert): Likewise.
7583 * src/conflicts.c (resolve_sr_conflict): Likewise.
7584 * src/lalr.c (set_goto_map, map_goto): Likewise.
7585 * src/nullable.c (nullable_compute): Likewise.
7586 * src/output.c (prepare_rules, token_definitions_output): Likewise.
7587 * src/reader.c (packgram, reader): Likewise.
7588 * src/state.c (state_new, state_free, state_transitions_set,
7589 state_reduction_find): Likewise.
7590 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
7591 symbol_pack): Likewise.
7592 * src/tables.c (conflict_row, pack_vector): Likewise.
7593 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
7594 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
7595 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
7596 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
7597
7598 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
7599 (ARGMATCH_CONSTRAINT): New macro.
7600 (ARGMATCH_ASSERT): Use it.
7601
7602 * src/system.h (verify): New macro.
7603 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
7604 rather than assert.
7605 * src/tables.c (tables_generate): Likewise.
7606
7607 * src/struniq.c (struniq_assert): Now returns void, and aborts
7608 if the assertion is false.
7609 (struniq_assert_p): Remove.
7610 * src/struniq.h: Likewise.
7611
76ae8198
PE
76122002-11-18 Paul Eggert <eggert@twinsun.com>
7613
7614 * data/glr.c (yygetLRActions): Replace `yyindex' with
7615 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
7616 This fixes the regression with Sun ONE Studio 7 cc that I reported in
161a71f3 7617 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 7618
d3c4e709
AD
76192002-11-18 Akim Demaille <akim@epita.fr>
7620
7621 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
7622 space.
7623 From Tim Van Holder.
7624
8d8a7238
PE
76252002-11-17 Paul Eggert <eggert@twinsun.com>
7626
7627 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
7628 to "SyntaxError" for consistency with my 2002-11-15 change.
7629
7630 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
7631 not define to {}, since this breaks the common use of `YYDPRINTF
7632 ((...));' if a single statement is desired (e.g. before `else').
7633 Work around GCC warnings by surrounding corresponding calls with
7634 {} if needed.
7635 (yyhasResolvedValue): Remove unused function.
7636 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
7637 loop body.
7638 (yyreportSyntaxError): Renamed from yyreportParseError.
7639 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
7640 All uses changed.
7641 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
7642 extern when possible. Remove unused initializations.
7643
b0937b22
AD
76442002-11-16 Akim Demaille <akim@epita.fr>
7645
7646 Augment the similarity between GLR and LALR traces.
7647
7648 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
7649 (YY_REDUCE_PRINT): New.
7650 (yyparse): Use them.
7651 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
7652 YYDPRINT here.
7653 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
7654 state reached after the reduction/recovery, since...
7655 (yyparse, yyprocessOneStack): Report the state we are entering in.
7656
c5e3e510
AD
76572002-11-16 Akim Demaille <akim@epita.fr>
7658
7659 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
7660 Add support for --trace=skeleton.
7661 * src/scan-skel.l: %option debug.
7662 Scan strings of non-@ or \n instead of character by character.
7663 (scan_skel): Handle trace_skeleton.
7664 (QPUTS): New.
7665 (@output_parser_name@, @output_header_name@): ``Restore'' their
7666 support (used to be M4 macros).
7667 * data/yacc.c: Quote larger chunks, a la glr.c.
7668 * data/lalr1.cc: Likewise.
7669 The header guards are no longer available, so use some other
7670 string than `YYLSP_NEEDED'.
7671
4c6cc1db
AD
76722002-11-16 Akim Demaille <akim@epita.fr>
7673
7674 Make the ``Printers and Destructors'' test more verbose, taking
7675 `yacc.c''s behavior as (possibly wrong) reference.
7676
7677 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
7678 instead of fprint on stdout.
7679 Set and report the last_line of the symbols.
7680 Consistently display values and locations.
7681
6d9e8019
PE
76822002-11-16 Paul Eggert <eggert@twinsun.com>
7683
7684 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
7685
6e649e65
PE
76862002-11-15 Paul Eggert <eggert@twinsun.com>
7687
b25d88f6
PE
7688 * tests/actions.at (Actions after errors): New test case.
7689
6e649e65
PE
7690 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
7691 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
7692 tests/action.at, tests/calc.at, tests/conflicts.at,
7693 tests/cxx-type.at, tests/regression.at:
7694 "parse error" -> "syntax error" for POSIX compatibility.
7695 "parsing stack overflow..." -> "parser stack overflow" so
7696 that code matches Bison documentation.
7697
0f39aab9
AD
76982002-11-15 Akim Demaille <akim@epita.fr>
7699
7700 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
7701 take two BRACED_CODE, not two string_content.
7702 Free the scanner's obstack when we are done.
7703 (code_content): New.
7704 * tests/calc.at: Adjust.
7705 * doc/bison.texinfo: Adjust.
7706 Also, make sure to include the `,' for these declarations.
7707
761c1926
AD
77082002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
7709
7710 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
7711 definition; avoids potential autoreconf problems.
7712
b0f98b10
AD
77132002-11-15 Akim Demaille <akim@epita.fr>
7714
7715 Always check the value returned by yyparse.
7716
7717 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
7718 returned by yyparse.
7719 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
7720 Adjust calls.
7721 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
7722 returned by yyparse.
7723
970785f1
PH
77242002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
7725
7726 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
7727 on input.at test.
7728
8fcc7db1
PE
77292002-11-14 Paul Eggert <eggert@twinsun.com>
7730
7ec1b48e
PE
7731 * src/output.c (output_skeleton): Call xfopen instead of
7732 duplicating xfopen's body.
7733
cfff7583 7734 Fix bugs reported by Nelson H. F. Beebe in
161a71f3 7735 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 7736
8fcc7db1
PE
7737 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
7738 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
7739 Group compiler. Instead, use "$CC -E bar.c". Include the .h
7740 file twice in the grammar, as an extra check.
7741
7742 * tests/input.at (Torturing the Scanner): Surround the
7743 backslash-newline tests with "#if 0", to make it less likely that
7744 we'll run into compiler bugs. Bring back solitary \ inside
7745 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 7746 test backslash-newline in C character constant.
8fcc7db1 7747
4e8d992c
AD
77482002-11-14 Akim Demaille <akim@epita.fr>
7749
7750 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
7751 status of the compiler.
f32b346d 7752 Calling `exit 1' is no longer needed.
4e8d992c
AD
7753 Reported by Nelson H. F. Beebe.
7754
9501dc6e
AD
77552002-11-14 Akim Demaille <akim@epita.fr>
7756
7757 * tests/atlocal.in (CPPFLAGS): We have config.h.
7758 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
7759 New.
7760 * tests/actions.at, tests/calc.at, tests/conflicts.at,
7761 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
7762 * tests/regression.at, tests/torture.at: Use them for all the
7763 grammars that are to be compiled.
7764 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
7765 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
7766 * doc/bison.texinfo (GLR Parsers): Document `inline'.
7767
18b519c0
AD
77682002-11-14 Akim Demaille <akim@epita.fr>
7769
7770 * doc/bison.texinfo: Various formatting changes (alignments in
7771 samples, additional @group/@end group, GCS in samples.
7772 Use @deffn instead of simple @table to define the directives,
7773 macros, variables etc.
7774
9a86cdb9
PE
77752002-11-13 Paul Eggert <eggert@twinsun.com>
7776
daa33def 7777 Fix some bugs reported by Albert Chin-A-Young in
161a71f3 7778 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 7779
daa33def 7780 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 7781 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
7782 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
7783 * tests/headers.at (export YYLTYPE): Likewise.
7784
7785 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 7786 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 7787
9a86cdb9
PE
7788 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
7789 comments, since they're not portable. Use GNU coding style.
7790
9c1e26bd
AD
77912002-11-13 Akim Demaille <akim@epita.fr>
7792
7793 * data/yacc.c: Leave bigger chunks of quoted text.
7794 (YYDSYMPRINTF): New.
7795 Use it to report symbol activities.
7796 * data/glr.c (YYDSYMPRINTF): New.
7797 Use it.
7798
87f721cc
PE
77992002-11-12 Paul Eggert <eggert@twinsun.com>
7800
7801 Version 1.75b.
7802
7803 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
7804 (yyglrReduce): Return yyok, not 0.
7805 This should avoid the enumerated-type warnings reported
464c6927 7806 by Nelson H. F. Beebe in
161a71f3 7807 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
7808
7809 * lib/bbitset.h (BITSET_INLINE): Remove.
7810 * lib/bitset.h [! BITSET_INLINE]: Remove.
7811 (bitset_set, bitset_reset, bitset_test): Rename local vars
7812 to avoid shadowing warnings by GCC.
7813
7814 * data/glr.c (inline): Remove #define. It's the user's
7815 responsibility to #define it away, just like 'const'.
464c6927 7816 This fixes one of the bugs reported by Nelson H. F. Beebe in
161a71f3 7817 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 7818
87f721cc
PE
7819 * Makefile.maint (po-check): Scan .l and .y files instead of the
7820 .c and the .h files that they generate. This fixes the bug
7821 reported by Tim Van Holder in:
161a71f3 7822 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
7823 Look for N_ as well as for _. Try to avoid matching #define for
7824 N_ and _.
7825 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
7826 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
7827 * src/scan-gram.l: Revamp regular expressions so that " and '
7828 do not confuse xgettext.
7829
7830 * src/struniq.h (struniq_new): Do not declare the return type
7831 to be 'const'; this violates the C standard.
7832 * src/struniq.c (struniq_new): Likewise.
7833
be14ade5
AD
78342002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
7835
7836 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
7837 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
7838 linker.
7839
05291fbc
AD
78402002-11-12 Akim Demaille <akim@epita.fr>
7841
7842 * Makefile.maint: Sync with Autoconf:
7843 (local_updates): New.
7844
1f5fd52e
AD
78452002-11-12 Akim Demaille <akim@epita.fr>
7846
7847 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
7848
283f1e64
AD
78492002-11-12 Akim Demaille <akim@epita.fr>
7850
7851 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
7852 locations.
7853
886b69d1
AD
78542002-11-12 Akim Demaille <akim@epita.fr>
7855
7856 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
7857 not yyvalue.
7858
3df37415
AD
78592002-11-12 Akim Demaille <akim@epita.fr>
7860
7861 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
7862 Use it to test the GLR parser.
7863
7bd6c77e
AD
78642002-11-12 Akim Demaille <akim@epita.fr>
7865
7866 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
7867 defines it.
7868 * data/glr.c (yystos): New.
7869 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
7870 (YYDSYMPRINT): New.
7871 (yyval): Don't define it, it is handled via M4.
7872 (yyrecoverParseError): Free verbosely the discarded symbols.
7873 * data/yacc.c (yysymprint): Remove, rather...
7874 (b4_yysymprint_generate): invoke.
7875 * data/c.m4 (b4_yysymprint_generate): New.
7876 Accept pointers as arguments, as opposed to the version from
7877 yacc.c.
7878 (b4_yydestruct_generate): Likewise.
7879 * tests/cations.at (Printers and Destructors): Use Bison directives
7880 instead of CPP macros.
7881 Don't rely on internal details.
7882
b0400cc6
AD
78832002-11-12 Akim Demaille <akim@epita.fr>
7884
7885 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
7886 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
7887 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
7888 it against YYEMPTY and so forth), work on yytoken (i.e., set
7889 it to YYEMPTY etc.).
7890 (yydestruct): Replace with a b4_yydestruct_generate invocation.
7891 (b4_symbol_actions): Remove.
7892 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
7893 for 0, end-of-input.
7894
72f889cc
AD
78952002-11-12 Akim Demaille <akim@epita.fr>
7896
7897 * doc/bison.texinfo (Destructor Decl): New.
7898
b1ae9233
AD
78992002-11-12 Akim Demaille <akim@epita.fr>
7900
7901 * src/tables.c (tables_generate): Use free for pointers that
7902 cannot be NULL, not XFREE.
7903 (pack_vector): Use assert, not fatal, for bound violations.
7904 * src/state.c (state_new): Likewise.
7905 * src/reader.c (reader): Likewise.
7906 * src/lalr.c (set_goto_map): Likewise.
72f889cc 7907 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
7908 the file name.
7909
7ec2d4cd
AD
79102002-11-12 Akim Demaille <akim@epita.fr>
7911
7912 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
7913 Restore.
7914 * src/scan-gram.l (last_string): Is global to the file, not to
7915 yylex.
7916 * src/parse-gram.y (input): Don't append the epilogue here,
7917 (epilogue.opt): do it here, and free the scanner's obstack.
7918 * src/reader.c (epilogue_set): Rename as...
7919 (epilogue_augment): this.
7920 * data/c.m4 (b4_epilogue): Defaults to empty.
7921
573a6cd3
AD
79222002-11-12 Akim Demaille <akim@epita.fr>
7923
7924 * src/getargs.c (long_options): Remove duplicates.
7925 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
7926 Remove.
7927 * doc/bison.rnh: Remove.
7928 * doc/bison.texinfo (VMS Invocation): Remove.
7929
95612cfa
AD
79302002-11-12 Akim Demaille <akim@epita.fr>
7931
7932 * src/struniq.h, src/struniq.c (struniq_t): Is const.
7933 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
7934
7935 Use struniq for symbols.
7936
7937 * src/symtab.h (symbol_t): The tag member is a struniq.
7938 (symbol_type_set): Adjust.
7939 * src/symtab.c (symbol_new): Takes a struniq.
7940 (symbol_free): Don't free the tag member.
7941 (hash_compare_symbol_t, hash_symbol_t): Rename as...
7942 (hash_compare_symbol, hash_symbol): these.
7943 Use the fact that tags as struniqs.
7944 (symbol_get): Use struniq_new.
7945 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
7946 Returns a strniq.
7947 * src/reader.h (merger_list, grammar_currentmerge_set): The name
7948 and type members are struniqs.
7949 * src/reader.c (get_merge_function)
7950 (grammar_current_rule_merge_set): Adjust.
7951 (TYPE, current_type): Are struniq.
7952
7953 Use struniq for file names.
7954
7955 * src/files.h, src/files.c (infile): Split into...
7956 (grammar_file, current_file): these.
7957 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
7958 * src/reduce.c (reduce_print): Likewise.
7959 * src/getargs.c (getargs): Likewise.
7960 * src/complain.h, src/complain.c: Likewise.
7961 * src/main.c (main): Call struniqs_new early enough to use it for
7962 file names.
7963 Don't free the input file name.
7964
3e6656f9
AD
79652002-11-12 Akim Demaille <akim@epita.fr>
7966
7967 * src/symtab.c (symbol_free): Remove dead deactivated code:
7968 type_name are properly removed.
7969 Don't use XFREE to free items that cannot be NULL.
7970 * src/struniq.h, src/struniq.c: New.
7971 * src/main.c (main): Initialize/free struniqs.
7972 * src/parse-gram.y (%union): Add astruniq member.
7973 (yyprint): Adjust.
7974 * src/scan-gram.l (<{tag}>): Return a struniq.
7975 Free the obstack bit that used to store it.
7976 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
7977
7672019c
PE
79782002-11-11 Paul Eggert <eggert@twinsun.com>
7979
7980 Revamp to fix many (but not all) of the C- and M4-related quoting
7981 problems. Among other things, this fixes the Bison bug reported
7982 by Jan Hubicka when processing the Bash grammar; see:
161a71f3 7983 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
7984
7985 Use new @ escapes consistently. Represent brackets with @{ and @}
7986 rather than @<:@ and @:>@, since this works a bit better with dumb
7987 editors like vi. Represent @ with @@, since @ is now consistently
7988 an escape. Use @oline@ and @ofile@ rather than __oline__ and
7989 __ofile__, to avoid unexpected expansions. Similarly, use @output
7990 rather than #output.
7991
7992 * data/c.m4 (b4_copyright): Omit file name from comment, since
7993 the file name could contain "*/".
7994 (b4_synclines_flag): Don't quote the 2nd argument; it should already
7995 be quoted. All uses changed.
7996
7997 * data/glr.c: Use new @ escapes consistently.
7998 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
7999 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
8000 Remove, since they couldn't handle arbitrary characters in file
8001 names.
8002 * data/lalr1.cc: Likewise.
8003 * data/yacc.c: Likewise.
8004
8005 * src/files.c (output_infix): Remove; all uses removed.
8006 * src/files.h: Likewise.
8007
8008 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
8009 mishandled funny characters in file names, and anyway it isn't
8010 needed any more.
8011 * data/yacc.c: Likewise.
8012 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
8013
8014 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
8015 * data/yacc.c: Likewise.
8016
8017 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
8018 strings now.
8019 (muscle_init): Quote filename as a C string.
8020 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
8021 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
8022 * src/output.c (escaped_file_name_output): New function.
8023 (prepare_symbols): Quote tokens for M4.
8024 (prepare): Don't insert output_infix, output_prefix,
8025 output_parser_name, output_header_name; this is now down by scan-skel.
8026 Insert skeleton as a C string.
8027
8028 * src/output.c (user_actions_output, symbol_destructors_output,
8029 symbol_printers_output): Quote filenames for C and M4.
8030 * src/reader.c (prologue_augment, epilogue_set): Likewise.
8031
8032 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
8033 escapes other than \\ and \'; this simplifies the code.
8034 (<SC_STRING>): Likewise, for \\ and \".
8035 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
8036 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
8037 Use new escapes @{ and @} for [ and ].
8038
8039 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
8040 them with auto vars.
8041 Switch to new escape scheme, where @ is the escape character uniformly.
8042 Abort if a stray escape character is found. Avoid unbounded input
8043 buffer when parsing non-escaped text.
8044
8045 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
8046 __oline__, #output, $@, and @{ do not have unintended meanings.
8047
acea4f3b
PE
80482002-11-09 Paul Eggert <eggert@twinsun.com>
8049
8050 Fix the test failure due to GCC warnings described in
161a71f3 8051 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
8052 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
8053 evaluate to 0 if it's impossible for NINF to be in the respective
8054 table.
8055 (yygetLRActions, yyrecoverParseError): Use them.
8056
8057 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
8058 counted in the token inserted at end of file. Now takes
8059 location_t *, not location_t, so that the location can be
8060 adjusted. All uses changed.
8061
8062 * tests/regression.at (Invalid inputs): Adjust wording in
8063 diagnostic to match the new behavior.
8064
8065 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
8066 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
8067 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
8068 abort ();'. This reduces the runtime of the "Many lookaheads"
8069 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
8070 GCC 3.2.
8071
20ef1ad5
PE
80722002-11-07 Paul Eggert <eggert@twinsun.com>
8073
8074 * src/parse-gram.y (CHARACTER): Remove unused token.
8075 All uses removed.
8076
8077 * src/scan-gram.l: Remove stack option. We no longer use the
8078 stack, since the stack was never deeper than 1; instead, use the
8079 new auto var c_context to record the stacked value.
8080
8081 Remove nounput option. At an unexpected end of file, we now unput
8082 the minimal input necessary to end cleanly; this simplifies the
8083 code.
8084
8085 Avoid unbounded token sizes where this is easy.
8086
8087 (unexpected_end_of_file): New function.
8088 Use it to systematize the error message on unexpected EOF.
8089 (last-string): Now auto, not static.
8090 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
8091 (scanner_last_string_free): Remove; not used.
8092 (percent_percent_count): Move decl to just before use.
8093 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
8094 not the (never otherwised-used) CHARACTER.
8095
93724f13
AD
80962002-11-07 Akim Demaille <akim@epita.fr>
8097
8098 Let yyerror always receive the msg as last argument, so that
8099 yyerror can be variadic.
8100
8101 * data/yacc.c (b4_yyerror_args): New.
8102 Use it when calling yyerror.
8103 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
8104 Use it when calling yyerror.
8105 * doc/bison.texinfo (Error Reporting): Adjust.
8106 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
8107 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
8108
6e40b4eb
AD
81092002-11-06 Akim Demaille <akim@epita.fr>
8110
8111 #line should have quoted strings.
8112 Ideally, this should be done by m4_quotearg.
8113
8114 * src/scan-skel.l: Include quotearg.h.
8115 Quote __ofile__.
8116 * src/output.c (symbol_printers_output)
8117 (symbol_destructors_output): Quote the file name.
8118
2dfbfc12
AD
81192002-11-06 Akim Demaille <akim@epita.fr>
8120
8121 * tests/regression.at (Invalid inputs): Adjust to the recent
8122 messages.
8123
437c2d80
AD
81242002-11-06 Akim Demaille <akim@epita.fr>
8125
8126 Restore --no-lines.
8127 Reported by Jim Kent.
8128
8129 * data/c.m4 (b4_syncline): New.
8130 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
8131 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
8132 * src/output.c (user_actions_output): Likewise.
8133 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 8134 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 8135
900c5db5
AD
81362002-11-06 Akim Demaille <akim@epita.fr>
8137
8138 * src/main.c (main): Free `infile'.
8139 * src/scan-gram.l (handle_syncline): New.
8140 Recognize `#line'.
8141 * src/output.c (user_actions_output, symbol_destructors_output)
8142 (symbol_printers_output): Use the location's file name, not
8143 infile.
8144 * src/reader.c (prologue_augment, epilogue_set): Likewise.
8145
e183b123 81462002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 8147
e183b123 8148 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 8149 either has GLR conflict entries.
e183b123 8150
193eb6b7
PE
81512002-11-05 Paul Eggert <eggert@twinsun.com>
8152
e183b123
PE
8153 * src/scan-gram.l: Use more accurate diagnostics, e.g.
8154 "integer out of range" rather than "invalid value".
8155 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
8156 accordingly.
8157
193eb6b7
PE
8158 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
8159 Also, remove one static variable in the scanner.
8160
8161 * src/scan-gram.l (braces_level): Now auto, not static.
8162 Initialize to zero if the compiler is being picky.
8163 (INITIAL): Clear braces_level instead of incrementing it.
8164 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
8165 as POSIX 1003.1-2001 requires.
8166 * src/system.h (IF_LINT): New macro, taken from coreutils.
8167 * configure.ac: Define "lint" if --enable-gcc-warnings.
8168
29c01725
AD
81692002-11-05 Akim Demaille <akim@epita.fr>
8170
8171 * src/scan-gram.l: When it starts with `%', complain about the
8172 whole directive, not just that `invalid character: %'.
8173
8aeac3ca
AD
81742002-11-04 Akim Demaille <akim@epita.fr>
8175
8176 * Makefile.maint: Update from Autoconf.
8177 (update, cvs-update, po-update, do-po-update): New.
8178
793a58bb
AD
81792002-11-04 Akim Demaille <akim@epita.fr>
8180
8181 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
8182 and yyerror.
8183 Have yyerror `use' its arguments.
8184 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
8185 returns true when location & yacc & pure & parse-param.
8186 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
8187
c4d720cd
AD
81882002-11-04 Akim Demaille <akim@epita.fr>
8189
8190 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
8191 clashes.
8192 * src/scan-gram.l: Use [\'] instead of ['] to pacify
8193 font-lock-mode.
8194 Use complain_at.
8195 Use quote, not quote_n since LOCATION_PRINT no longer uses the
8196 slot 0.
8197
613a0dc5
PE
81982002-11-03 Paul Eggert <eggert@twinsun.com>
8199
8200 * src/reader.c (get_merge_function, grammar_current_rule_check):
8201 Use consistent diagnostics for reporting type name clashes.
8202 Quote the types with <>, for consistency with Yacc.
8203 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
8204
2a8d363a
AD
82052002-11-03 Akim Demaille <akim@epita.fr>
8206
8207 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
8208 New.
8209 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
8210 (b4_parse_param): Remove.
8211 Use b4_identification.
8212 Propagate b4_pure_args where needed to pass them to yyerror.
8213 * data/glr.m4 (b4_parse_param): Remove.
8214 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
8215 (b4_lpure_formals): New.
8216 Use b4_identification.
8217 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
8218 b4_user_formals and b4_user_args.
8219 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
8220 (yyreportAmbiguity): When using a pure parser, also need
8221 the location, and the parse-params.
8222 Adjust callers.
8223 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
8224 When using a pure parser, also need the parse-params.
8225 Adjust callers.
8226 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
8227 (%pure-parser + %parse-param) LALR and GLR parsers.
8228 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
8229 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
8230 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
8231 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
8232 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
8233 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
8234 * doc/bison.texinfo: Untabify the whole file.
8235 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
8236 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
8237 (Error Reporting): Adjust to these new directives.
8238 Document %error-verbose, deprecate YYERROR_VERBOSE.
8239
9e32add8
AD
82402002-11-03 Akim Demaille <akim@epita.fr>
8241
8242 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
8243 AT_CHECK_CALC_GLR invocations to use % directives, instead of
8244 command line options.
8245 * tests/cxx-type.at: Formatting changes.
8246
b02d90a5
PE
82472002-11-03 Paul Eggert <eggert@twinsun.com>
8248
8249 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
8250 to count columns correctly, and to check for invalid inputs.
9e32add8 8251
b02d90a5
PE
8252 Use mbsnwidth to count columns correctly. Account for tabs, too.
8253 Include mbswidth.h.
8254 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
8255 (extend_location): New function.
8256 (YY_LINES): Remove.
8257
8258 Handle CRLF in C code rather than in Lex code.
8259 (YY_INPUT): New macro.
8260 (no_cr_read): New function.
8261
8262 Scan UCNs, even though we don't fully handle them yet.
8263 (convert_ucn_to_byte): New function.
8264
8265 Handle backslash-newline correctly in C code.
8266 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
8267 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
8268 all uses changed.
8269 (tag, splice): New EREs. Do not allow NUL or newline in tags.
8270 Use {splice} wherever C allows backslash-newline.
8271 YY_STEP after space, newline, vertical-tab.
8272 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 8273
b02d90a5
PE
8274 (letter, id): Don't assume ASCII; e.g., spell out a-z.
8275
8276 ({int}, handle_action_dollar, handle_action_at): Check for integer
8277 overflow.
9e32add8 8278
b02d90a5
PE
8279 (YY_STEP): Omit trailing semicolon, so that it's more like C.
8280
8281 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
8282 as well as \000. Check for UCHAR_MAX, not 255.
8283 Allow \x with an arbitrary positive number of digits, as in C.
8284 Check for overflow here.
8285 Allow \? and UCNs, for compatibility with C.
8286
8287 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
8288 with quote slot used by complain_at.
8289
8290 * tests/input.at: Add tests for backslash-newline, m4 quotes
8291 in symbols, long literals, and funny escapes in strings.
8292
8293 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
8294 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
8295 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
8296 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
8297 * m4/mbswidth.m4: New file, from GNU coreutils.
8298
8299 * doc/bison.texinfo (Grammar Outline): Document // comments.
8300 (Symbols): Document that trigraphs have no special meaning in Bison,
8301 nor is backslash-newline allowed.
8302 (Actions): Document that trigraphs have no special meaning.
8303
8304 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
8305 no longer used.
8306
83072002-11-02 Paul Eggert <eggert@twinsun.com>
8308
8309 * src/reader.c: Don't include quote.h; not needed.
8310 (get_merge_function): Reword warning to be consistent with
8311 type clash diagnostic in grammar_current_rule_check.
8312
8313 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
8314 bug in trigraph handling.
8315
8316 * src/output.c (prepare_symbols): When printing token names,
8317 escape "[" as "@<:@" and likewise for "]".
8318
8319 * src/system.h (errno): Remove declaration, as we are now
8320 assuming C89 or better, and C89 guarantees errno.
8321
762b212b
PE
83222002-10-30 Paul Eggert <eggert@twinsun.com>
8323
8324 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
8325 Check for close failures.
8326 * src/files.h (xfclose): Return void, not int, since it always
8327 returned zero.
8328 * src/files.c (xfclose): Likewise. Report I/O error if ferror
8329 indicates one.
8330 * src/output.c (output_skeleton): Use xfclose rather than fclose
8331 and ferror. xfclose now checks ferror.
8332
8333 * data/glr.c (YYLEFTMOST_STATE): Remove.
8334 (yyreportTree): Use a stack-based leftmost state. This avoids
8335 our continuing battles with bogus warnings about initializers.
8336
56100c60
AD
83372002-10-30 Akim Demaille <akim@epita.fr>
8338
8339 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
8340 #if.
8341
51b4a04c
PH
83422002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
8343
8344 * tests/glr-regr1.at: New test for reported regressions.
8345 * tests/testsuite.at: Add glr-regr1.at test.
8346 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 8347
bf1ebda2
PE
83482002-10-24 Paul Eggert <eggert@twinsun.com>
8349
5c16c6b1
PE
8350 Version 1.75a.
8351
bf1ebda2
PE
8352 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
8353 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
8354 we use malloc. Don't assume 'A' through 'Z' are contiguous.
8355 Don't assume strdup exists; POSIX says its an XSI extension.
8356 Check for buffer overflow on input.
8357
b526ee61
AD
83582002-10-24 Akim Demaille <akim@epita.fr>
8359
8360 * src/output.c (output_skeleton): Don't disable M4sugar comments
8361 too soon: it results in comments being expanded.
8362 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
8363 first output.
8364
f1886bb2
AD
83652002-10-24 Akim Demaille <akim@epita.fr>
8366
8367 * data/yacc.c (m4_int_type): New.
8368 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
8369 char' as only yacc.c wants K&R portability.
8370 * data/glr.c (yysigned_char): Remove.
8371 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
8372 Reported by Quoc Peyrot.
8373
c5576256
PE
83742002-10-23 Paul Eggert <eggert@twinsun.com>
8375
8376 * src/main.c (main): With --trace=time, report times even if a
8377 non-fatal error occurs. Formerly, the times were reported in some
8378 such cases but not in others.
8379 * src/reader.c (reader): Just return if a complaint has been issued,
8380 instead of exiting, so that 'main' can report times.
8381
27b0ffea
AD
83822002-10-22 Akim Demaille <akim@epita.fr>
8383
8384 * src/system.h: Include sys/types.
8385 Reported by Bert Deknuydt.
8386
223a7883
PE
83872002-10-23 Paul Eggert <eggert@twinsun.com>
8388
8389 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
8390 Suggested by Art Haas.
8391
83922002-10-22 Paul Eggert <eggert@twinsun.com>
8393
8394 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
8395 decl; not needed any more.
8396 * src/main.c (main): Use return to exit, undoing yesterday's change.
8397 The last OS that we could find where this wouldn't work is
8398 SunOS 3.5, and that's too old to worry about now.
8399
8400 * data/glr.c (struct yyltype): Define members even when not
8401 doing locations. This is more consistent with yacc.c, and it
8402 works around the following bug reports:
161a71f3
PE
8403 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
8404 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 8405
223a7883
PE
8406 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
8407 @acronym consistently. Standardize on "Yacc" instead of "YACC",
8408 "Algol" instead of "ALGOL". Give a bit more history about BNF.
8409
8b76775a
AD
84102002-10-22 Akim Demaille <akim@epita.fr>
8411
8412 * data/README: New.
8413
6db10d14
PE
84142002-10-21 Paul Eggert <eggert@twinsun.com>
8415
8416 Be consistent about 'bool'; the old code used an enum in one
8417 module and an int in another, and this violates the C standard.
8418 * m4/stdbool.m4: New file, from coreutils 4.5.3.
8419 * configure.ac (AC_HEADER_STDBOOL): Add.
8420 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
8421 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
8422 * src/symtab.c (hash_compare_symbol_t): Likewise.
8423 * src/system.h (bool, false, true): Use a definition consistent
8424 with ../lib/hash.c. All uses changed.
8425
8426 * src/complain.c (warning_issued): Renamed from warn_message_count,
8427 so that we needn't worry about integer overflow (!).
8428 Now of type bool. All uses changed.
8429 (complaint_issued): Renamed from complain_message_count; likewise.
8430
8431 * src/main.c (main): Use exit to exit with failure.
27b0ffea 8432
6db10d14
PE
8433 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
8434 rather than 1 and 0.
8435 * src/main.c (main): Likewise.
8436 * src/getargs.c (getargs): Likewise.
8437 * src/reader.c (reader): Likewise.
8438
8439 * src/getarg.c (getargs): Remove duplicate code for
8440 "Try `bison --help'".
8441
8442 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
8443 What was that "2" for?
8444
8445 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
8446 * src/getargs.c (usage): Likewise.
8447
8448 * src/getargs.c (getargs): When there are too few operands, report
8449 the last one. When there are too many, report the first extra
8450 one. This is how diffutils does it.
8451
92a060fd
PE
84522002-10-20 Paul Eggert <eggert@twinsun.com>
8453
8454 Remove K&R vestiges.
8455 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
8456 * src/complain.c (VA_START): Remove. Assume prototypes.
8457 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
8458 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
8459 fatal): Assume prototypes.
8460 * src/complain.h: Assume prototypes.
8461 * src/system.h (PARAMS): Remove.
8462 Include <limits.h> unconditionally, since it's guaranteeed even
8463 for a freestanding C89 compiler.
8464 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
8465 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 8466
e7cb57c0
AD
84672002-10-20 Akim Demaille <akim@epita.fr>
8468
8469 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
8470 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
8471 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
8472 (yyresolveStates, yyresolveAction, yyresolveStack)
8473 (yyprocessOneStack): Use them.
8474 (yy_reduce_print): New.
8475 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
8476
0245f82d
AD
84772002-10-20 Akim Demaille <akim@epita.fr>
8478
8479 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
8480 arguments and output `void'.
8481 (b4_c_function): Rename as...
8482 (b4_c_function_def): this.
8483 (b4_c_function_decl, b4_c_ansi_function_def)
8484 (b4_c_ansi_function_decl): New.
8485 Change the interpretation of the arguments: before `int, foo', now
8486 `int foo, foo'.
8487 * data/yacc.c (yyparse): Prototype and define thanks to these.
8488 Adjust b4_c_function_def uses.
8489 * data/glr.c (yyparse): Likewise, but ANSI only.
8490
39912f52
AD
84912002-10-20 Akim Demaille <akim@epita.fr>
8492
8493 * src/output.c (prepare): Move the definition of `tokens_number',
8494 `nterms_number', `undef_token_number', `user_token_number_max'
8495 to...
8496 (prepare_tokens): Here.
8497 (prepare_tokens): Rename as...
8498 (prepare_symbols): this.
8499 (prepare): Move the definition of `rules_number' to...
8500 (prepare_rules): here.
8501 (prepare): Move the definition of `last', `final_state_number',
8502 `states_number' to...
8503 (prepare_states): here.
8504 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
8505
20c1e2ad
AD
85062002-10-20 Akim Demaille <akim@epita.fr>
8507
8508 * src/tables.h, src/tables.c, src/output.c: Comment changes.
8509
21964f43
AD
85102002-10-20 Akim Demaille <akim@epita.fr>
8511
8512 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
8513 * data/c.m4: here.
8514
66d30cd4
AD
85152002-10-20 Akim Demaille <akim@epita.fr>
8516
8517 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
8518 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
8519 `pair'.
8520 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
8521 `name' to...
8522 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
8523 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
8524 These.
8525
95f2c9fe
PE
85262002-10-19 Paul Eggert <eggert@twinsun.com>
8527
8528 Do not create a temporary file, as that involves security and
8529 cleanup headaches. Instead, use a pair of pipes.
8530 Derived from a suggestion by Florian Krohm.
8531 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
8532 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
8533 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
8534 (BISON_PREREQ_SUBPIPE): Add.
8535 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
8536 Add subpipe.h, subpipe.c.
8537 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
8538 * po/POTFILES.in: Add lib/subpipe.c.
8539 * src/output.c: Include "subpipe.h".
8540 (m4_invoke): Remove decl.
8541 (scan_skel): New decl.
8542 (output_skeleton): Use pipe rather than temporary file for m4 input.
8543 Check that m4sugar.m4 is readable, to avoid deadlock.
8544 Check for pipe I/O error.
8545 * src/scan-skel.l (readpipe): Remove decl.
8546 (scan_skel): New function, to be used in place of m4_invoke.
8547 Read from stream rather than file.
66d30cd4 8548
95f2c9fe
PE
8549 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
8550 float, as this generates a warning on Solaris 8 + GCC 3.2 with
8551 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
8552 this generates a more-accurate value anyway.
8553
8554 * lib/timevar.c (timervar_accumulate): Rename locals to
8555 avoid confusion with similarly-named more-global.
8556 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
8557
8558 * src/output.c (prepare): Use xstrdup to convert char const *
8559 to char *, to avoid GCC warning.
8560
c19988b7
AD
85612002-10-19 Akim Demaille <akim@epita.fr>
8562
8563 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
8564 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
8565 Use them to have `calc.y' ready for %pure-parser.
8566 * data/yacc.c (YYLEX): Pass a yylex return type to
8567 b4_c_function_call.
8568
ae7453f2
AD
85692002-10-19 Akim Demaille <akim@epita.fr>
8570
8571 Prototype support of %lex-param and %parse-param.
8572
8573 * src/parse-gram.y: Add the definition of the %lex-param and
8574 %parse-param tokens, plus their rules.
8575 Drop the `_' version of %glr-parser.
8576 Add the "," token.
8577 * src/scan-gram.l (INITIAL): Scan them.
8578 * src/muscle_tab.c: Comment changes.
8579 (muscle_insert, muscle_find): Rename `pair' as `probe'.
8580 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
8581 (muscle_entry_s): The `value' member is no longer const.
8582 Adjust all dependencies.
8583 * src/muscle_tab.c (muscle_init): Adjust: use
8584 MUSCLE_INSERT_STRING.
8585 Initialize the obstack earlier.
8586 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
8587 (muscle_pair_list_grow): New.
8588 * data/c.m4 (b4_c_function_call, b4_c_args): New.
8589 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
8590 * tests/calc.at: Use %locations, not --locations.
8591 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
8592
0e575721
AD
85932002-10-19 Akim Demaille <akim@epita.fr>
8594
8595 * src/getargs.c (usage): Take status as argument and exit
8596 accordingly.
8597 Report the traditional `Try ... --help' message when status != 0.
8598 (usage, version): Don't take a FILE * as arg, it is pointless.
8599 (getargs): When there is an incorrect number of arguments, make it
8600 an error, and report it GNUlically thanks to `usage ()'.
8601
724ce7f5
PE
86022002-10-18 Paul Eggert <eggert@twinsun.com>
8603
3a781eb2
PE
8604 * data/glr.c (yyreportParseError): Don't assume that sprintf
8605 yields the length of the printed string, as this is not true
8606 on SunOS 4.1.4. Reported by Peter Klein.
8607
724ce7f5
PE
8608 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
8609 * tests/conflicts.at (%nonassoc and eof): Likewise.
8610 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
8611
473d0a75
AD
86122002-10-17 Akim Demaille <akim@epita.fr>
8613
8614 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
8615 * src/getargs.c (trace_types, trace_args): Adjust.
8616 * src/reader.c (grammar_current_rule_prec_set)
8617 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
8618 Standardize error messages.
8619 And s/@prec/%prec/!
8620 (reader): Use trace_flag to enable scanner/parser debugging,
8621 instead of an adhoc scheme.
8622 * src/scan-gram.l: Remove trailing debugging code.
8623
e76d2469
PE
86242002-10-16 Paul Eggert <eggert@twinsun.com>
8625
93e2236a
PE
8626 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
8627 MUSCLE_TAB_H.
8628
e76d2469
PE
8629 * NEWS: Officially drop support for building Bison with K&R C,
8630 since it didn't work anyway and it's not worth worrying about.
8631 * Makefile.maint (wget_files): Remove ansi2knr.c.
8632 (ansi2knr.c-url_prefix): Remove.
8633 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
8634 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
8635 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
8636
5bd1c419
PE
86372002-10-15 Paul Eggert <eggert@twinsun.com>
8638
8639 Stop using the "enum_" trick for K&R-style function definitions;
8640 it confused me, and I was the author! Instead, assume that people
8641 who want to use K&R C compilers (when using these modules in GCC,
8642 perhaps?) will run ansi2knr.
8643
8644 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
8645 All uses of "enum_" changed to "enum ".
8646 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
8647 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 8648
5bd1c419
PE
8649 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
8650 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
8651 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
8652 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
8653 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
8654 abitset_not, abitset_ones, abitset_or, abitset_or_and,
8655 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
8656 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
8657 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
8658 Use function prototypes; this removes the need for declaring
8659 static functions simply to provide their prototypes.
8660 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
8661 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
8662 bitset_count_, bitset_create, bitset_dump, bitset_first,
8663 bitset_free, bitset_init, bitset_last, bitset_next,
8664 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
8665 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
8666 bitset_print, bitset_release_memory, bitset_toggle_,
8667 bitset_type_choose, bitset_type_get, bitset_type_name_get,
8668 debug_bitset): Likewise.
8669 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
8670 * lib/bitset_stats.c (bitset_log_histogram_print,
8671 bitset_percent_histogram_print, bitset_stats_and,
8672 bitset_stats_and_cmp, bitset_stats_and_or,
8673 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
8674 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
8675 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
8676 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
8677 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
8678 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
8679 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
8680 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
8681 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
8682 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
8683 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
8684 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
8685 bitset_stats_zero): Likewise.
8686 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
8687 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
8688 bitsetv_dump, debug_bitsetv): Likewise.
8689 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
8690 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
8691 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
8692 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
8693 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
8694 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
8695 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
8696 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
8697 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
8698 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
8699 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
8700 Likewise.
8701 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
8702 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
8703 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
8704 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
8705 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
8706 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
8707 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
8708 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
8709 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
8710 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
8711 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 8712
ae26e1f0
AD
87132002-10-14 Akim Demaille <akim@epita.fr>
8714
8715 Version 1.75.
8716
d43baf71
AD
87172002-10-14 Akim Demaille <akim@epita.fr>
8718
8719 * tests/Makefile.am (maintainer-check-posix): New.
8720
7ebc83e3
AD
87212002-10-14 Akim Demaille <akim@epita.fr>
8722
8723 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
8724 member.
8725
05846dae
AD
87262002-10-14 Akim Demaille <akim@epita.fr>
8727
8728 * src/tables.c (table_ninf_remap): base -> tab.
8729 Reported by Matt Rosing.
8730
1318e37d
PE
87312002-10-14 Paul Eggert <eggert@twinsun.com>
8732
447fbb17
PE
8733 * tests/action.at, tests/calc.at, tests/conflicts.at,
8734 tests/cxx-type.at, tests/headers.at, tests/input.at,
8735 tests/regression.at, tests/synclines.at, tests/torture.at:
8736 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
8737 so that the tests still work even if POSIXLY_CORRECT is set.
8738 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 8739
1318e37d
PE
8740 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
8741 for portability to K&R hosts. Fix typo: signed char is guaranteed
8742 only to 127, not to 128.
8743 * data/glr.c (yysigned_char): New type.
8744 * data/yacc.c (yysigned_char): Likewise.
8745 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
8746
cc0f0794
PE
87472002-10-13 Paul Eggert <eggert@twinsun.com>
8748
5038f418
PE
8749 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
8750 true due to limited range of data type" warning from GCC.
8751
cc0f0794
PE
8752 * data/c.m4 (b4_token_defines): Protect against double-inclusion
8753 by wrapping enum yytokentype's definition inside #ifndef
8754 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
8755
6fed0802
AD
87562002-10-13 Akim Demaille <akim@epita.fr>
8757
8758 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
8759 Un yy- yyrhs to avoid the name clash with the global YYRHS.
8760
32f0598d
AD
87612002-10-13 Akim Demaille <akim@epita.fr>
8762
8763 * Makefile.maint: Update from Autoconf 2.54.
8764 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
8765
7ea9a33f
AD
87662002-10-13 Akim Demaille <akim@epita.fr>
8767
8768 * src/print.c (print_state): Separate the list of solved conflicts
8769 from the other items.
8770 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
8771
ea99527d
AD
87722002-10-13 Akim Demaille <akim@epita.fr>
8773
8774 Let nondeterministic skeletons be usable with deterministic
8775 tables.
8776
8777 With the patch, GAWK compiled by GCC without -O2 passes its test
8778 suite using a GLR parser driven by LALR tables. It fails with -O2
8779 because `struct stat' gives two different answers on my machine:
8780 88 (definition of an auto var) and later 96 (memset on this var).
8781 Hence the stack is badly corrumpted. The headers inclusion is to
8782 blame: if I move the awk.h inclusion before GLR's system header
8783 inclusion, the two struct stat have the same size.
8784
8785 * src/tables.c (pack_table): Always create conflict_table.
8786 (token_actions): Always create conflict_list.
8787 * data/glr.c (YYFLAG): Remove, unused.
8788
f377f69f
AD
87892002-10-13 Akim Demaille <akim@epita.fr>
8790
8791 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
8792 (O0FLAGS): New.
8793 (VALGRIND, GXX): New.
8794 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
8795 * tests/bison.in: Run $PREBISON a pre-command.
8796 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
8797 (maintainer-check-g++): New.
8798 * Makefile.am (maintainer-check): New.
8799
2a1fe6ed
AD
88002002-10-13 Akim Demaille <akim@epita.fr>
8801
8802 * data/glr.c: Formatting changes.
8803 Tweak some trace messages to match yacc.c's.
8804
f50adbbd
AD
88052002-10-13 Akim Demaille <akim@epita.fr>
8806
8807 GLR parsers sometimes raise parse errors instead of performing the
8808 default reduction.
8809 Reported by Charles-Henry de Boysson.
8810
8811 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
ba0fe3c7 8812 check the length of the traces when %glr.
f50adbbd
AD
8813 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
8814 GLR's traces.
8815 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
8816 Test GLR parsers.
8817 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
8818 (yyltype): Remove the yy prefix from the member names.
8819 (yytable): Complete its comment.
8820 (yygetLRActions): Map error action number from YYTABLE from
8821 YYTABLE_NINF to 0.
8822 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
8823 (which was a bug: it should have been YYTABEL_NINF, and yet it was
8824 not satisfying as we could compare an YYACTION computed from
8825 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
8826 only value for error actions.
8827 (yyreportParseError): In verbose parse error messages, don't issue
8828 `error' in the list of expected tokens.
8829 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
8830 next action to perform to match glr.c's decoding.
8831 (yytable): Complete its comment.
8832
bcbad5b9
PE
88332002-10-13 Paul Eggert <eggert@twinsun.com>
8834
8835 Fix problem reported by Henrik Grubbstroem in
161a71f3 8836 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
8837 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
8838 because the Bison parser reads the second action before reducing
8839 the first one.
8840 * src/scan-gram.l (rule_length): New static var.
8841 Use it to keep track of the rule length in the scanner, since
8842 we can't expect the parser to be in lock-step sync with the scanner.
8843 (handle_action_dollar, handle_action_at): Use this var.
8844 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 8845
14904b89
PE
88462002-10-12 Paul Eggert <eggert@twinsun.com>
8847
1fe611e5
PE
8848 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
8849 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
8850 Include <sys/time.h> when checking for clock_t and struct tms.
8851 Use same include order as source.
8852 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
161a71f3 8853 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 8854
1fe611e5
PE
8855 * lib/timevar.c: Update copyright date and clarify comments.
8856 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 8857
1fe611e5
PE
8858 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
8859 GCC version as of today, then merge Bison's changes.
8860 Change "GCC" to "Bison" in copyright notice. timevar.def's
8861 author is Akim, so change that too.
8862
98194095
PE
8863 * src/reader.c (grammar_current_rule_check):
8864 Don't worry about the default action if $$ is untyped.
8865 Prevents bogus warnings reported by Jim Gifford in
161a71f3 8866 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 8867
14904b89
PE
8868 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
8869 * data/glr.c, data/lalr1.cc, data/yacc.c:
8870 Output token definitions before the first part of user declarations.
8871 Fixes compatibility problem reported by Jim Gifford for kbd in
161a71f3 8872 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 8873
ff6dca18
PE
88742002-10-11 Paul Eggert <eggert@twinsun.com>
8875
8876 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
8877 (yyparse): here. This undoes some of the 2002-07-25 change.
8878 Compatibility problem reported by Ralf S. Engelschall with
8879 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
8880
eb714592
AD
88812002-10-11 Akim Demaille <akim@epita.fr>
8882
8883 * tests/regression.at Characters Escapes): New.
8884 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
8885 characters.
8886 Reported by Jan Nieuwenhuizen.
8887
b7195100
AD
88882002-10-11 Akim Demaille <akim@epita.fr>
8889
8890 * po/id.po: New.
8891
f28a0f2d
PE
88922002-10-10 Paul Eggert <eggert@twinsun.com>
8893
8894 Portability fixes for bitsets; this also avoids several GCC
8895 warnings.
8896
8897 * lib/abitset.c: Include <stddef.h>, for offsetof.
8898 * lib/lbitset.c: Likewise.
8899
8900 * lib/abitset.c (abitset_bytes): Return a size that is aligned
8901 properly for vectors of objects. Do not assume that adding a
8902 header size to a multiple of a word size yields a value that is
8903 properly aligned for the whole union.
8904 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8905
8906 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
8907 unique names for structures.
8908 * lib/ebitset.c (ebitset_bytes): Likewise.
8909 * lib/lbitset.c (lbitset_bytes): Likewise.
8910
8911 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
8912 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
8913 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
8914 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
8915 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
8916 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
8917 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
8918 to improve the type-checking that GCC can do.
8919 * lib/bitset.c (bitset_op4_cmp): Likewise.
8920 * lib/bitset_stats.c (bitset_stats_count,
8921 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
8922 bitset_stats_copy, bitset_stats_disjoint_p,
8923 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
8924 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
8925 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
8926 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
8927 bitset_stats_and_or_cmp, bitset_stats_andn_or,
8928 bitset_stats_andn_or_cmp, bitset_stats_or_and,
8929 bitset_stats_or_and_cmp): Likewise.
8930 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
8931 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
8932 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
8933 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
8934
8935 * lib/abitset.h: Include bitset.h, not bbitset.h.
8936 * lib/ebitset.h: Likewise.
8937 * lib/lbitset.h: Likewise.
8938
8939 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
8940 All instances of parameters of type enum bitset_opts are now of
8941 type enum_bitset_opts, to conform to the C Standard, and similarly
8942 for enum_bitset_type.
8943 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
8944 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
8945
8946 Do not use "struct bitset_struct" to mean different things in
8947 different modules. Not only is this confusing, it violates
8948 the C Standard, which requires that structure types in different
8949 modules must be compatible if one is to be passed to the other.
8950 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
8951 All instances of "struct bitset_struct *" replaced with "bitset".
8952 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
8953 (union bitset_union, struct abitset_struct, struct ebitset_struct,
8954 struct lbitset_struct, struct bitset_stats_struct): New types.
8955 All uses of struct bitset_struct changed to union bitset_union,
8956 etc.
ba0fe3c7 8957 * lib/abitset.c (struct abitset_struct, abitset,
f28a0f2d
PE
8958 struct bitset_struct): Remove.
8959 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
8960 struct bitset_struct): Remove.
8961 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
8962 bitset_struct): Remove.
8963 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
8964 Likewise.
8965
8966 Do not call a function of type T using a call that assumes the
8967 function is of a different type U. Standard C requires that a
8968 function must be called with a type that is compatible with its
8969 definition.
8970 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
8971 New decls.
8972 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
8973 New functions.
8974 * lib/ebitset.c (PFV): Remove.
8975 * lib/lbitset.c (PFV): Likewise.
8976 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
8977 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
8978 decls.
8979 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
8980 (ebitset_vtable): Use them.
8981 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
8982 lbitset_xor): New functions.
8983 (lbitset_vtable): Use them.
8984
8985 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
8986 Declare.
8987
8988 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
8989 GCC warning.
8990 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
8991 Use offsetof, for simplicity.
8992
6fbe4984
PE
89932002-10-06 Paul Eggert <eggert@twinsun.com>
8994
8995 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
8996 the same width as int. This reapplies a hunk of the 2002-08-12 patch
161a71f3 8997 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
8998 which was inadvertently undone by the 2002-09-30 patch.
8999 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
9000 the same width as int.
9001
420f93c8
PE
90022002-10-04 Paul Eggert <eggert@twinsun.com>
9003
9004 Version 1.50.
9005
9006 * configure.ac (AC_INIT), NEWS: Increment version number.
9007
9008 * doc/bison.texinfo: Minor spelling, grammar, and white space
9009 fixes.
9010 (Symbols): Mention that any negative value returned from yylex
9011 signifies end-of-input. Warn about negative chars. Mention
9012 the portable Standard C character set.
9013
9014 The GNU coding standard says CFLAGS and YFLAGS are reserved
9015 for the installer to set.
9016 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
9017 * src/Makefile.am (AM_CFLAGS): Likewise.
9018 (AM_YFLAGS): Renamed from YFLAGS.
9019
9020 Fix some MAX and MIN problems.
9021 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
9022 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
9023 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
9024 * src/reader.c (reader): Use it.
9025
9026 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
9027 POSIX 1003.1-2001 has removed fgrep.
9028
90292002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
9030
9031 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
9032 interpreted as signed.
9033 * lib/ebitset.c (ebitset_list): Fix bug.
9034
ff68026d
PE
90352002-10-01 Paul Eggert <eggert@twinsun.com>
9036
9037 More fixes for 64-bit hosts and large bitsets.
9038
9039 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
9040 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
9041 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
9042 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
9043 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
9044 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
9045 bitset_count_): Likewise.
9046 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
9047 bitset_first, bitset_last): Likewise.
9048 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
9049 bitset_stats_list_reverse, bitset_stats_size,
9050 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
9051 Likewise.
9052 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
9053 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
9054 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
9055 bitsetv_reflexive_transitive_closure): Likewise.
9056 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
9057 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
9058 Likewise.
9059 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
9060 Likewise.
420f93c8 9061
ff68026d
PE
9062 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
9063 Use size_t, not unsigned int, to count bytes.
9064 * lib/abitset.h (abitset_bytes): Likewise.
9065 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
9066 Likewise.
9067 * lib/bitset.h (bitset_bytes): Likewise.
9068 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
9069 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
9070 * lib/bitsetv.c (bitsetv_alloc): Likewise.
9071 * lib/ebitset.c (ebitset_bytes): Likewise.
9072 * lib/ebitset.h (ebitset_bytes): Likewise.
9073 * lib/lbitset.c (lbitset_bytes): Likewise.
9074 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 9075
ff68026d
PE
9076 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
9077 abitset_subset_p, abitset_disjoint_p, abitset_and,
9078 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
9079 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
9080 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
9081 abitset_or_and, abitset_or_and_cmp):
9082 Use bitset_windex instead of unsigned int.
9083 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
9084 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
9085 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
9086 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
9087 Likewise.
9088 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 9089
ff68026d
PE
9090 * lib/bitset.c (bitset_print):
9091 Use proper printf formats for widths of integer types.
9092 * lib/bitset_stats.c (bitset_percent_histogram_print,
9093 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
9094 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
9095 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
9096 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 9097
ff68026d
PE
9098 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
9099 BITSET_SIZE_MAX): New macros.
9100 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
9101 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
9102 to BITSET_WINDEX_MAX.
9103
9104 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
9105 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
9106 since we now return the bitset_bindex type (not int).
9107
9108 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
9109 when computing sizes.
9110 * lib/ebitset.c (ebitset_elts_grow): Likewise.
9111
9112 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
9113 and avoid cast to unsigned.
9114
6aa452a6
AD
91152002-09-30 Akim Demaille <akim@epita.fr>
9116
9117 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
9118 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
9119 Updates from Michael Hayes.
9120
927f7817
AD
91212002-09-30 Art Haas <ahaas@neosoft.com>
9122
9123 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
9124 invocations.
9125 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
9126 defined.
9127
9738f41e
AD
91282002-09-27 Akim Demaille <akim@epita.fr>
9129
9130 Version 1.49c.
9131
a5c75d7f
AD
91322002-09-27 Akim Demaille <akim@epita.fr>
9133
9134 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
9135 (Because of AC_LIBSOURCE).
9136
8280e179
AD
91372002-09-27 Akim Demaille <akim@epita.fr>
9138
9139 Playing with Autoscan.
9140
9141 * configure.ac: Remove the old LIBOBJ tweaks.
9142 (AC_REPLACE_FUNCS): Add strrchr and strtol.
9143 * lib/strrchr.c: New.
9144 * lib/strtol.c: New, from the Coreutils 4.5.1.
9145
ae64af35
AD
91462002-09-27 Akim Demaille <akim@epita.fr>
9147
9148 Playing with Autoscan.
9149
9150 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
9151 * lib/Makefile.am (libbison_a_SOURCES): No longer include
9152 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
9153 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
9154 Coreutils 4.5.1.
9155
d1a1114f
AD
91562002-09-24 Akim Demaille <akim@epita.fr>
9157
9158 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
9159 (Frequently Asked Questions, Parser Stack Overflow): New.
9160
b906441c
AD
91612002-09-13 Akim Demaille <akim@epita.fr>
9162
9163 Playing with autoscan.
9164
9165 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
9166 * src/files.c (skeleton_find): Remove, unused.
9167 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
9168 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
9169
bd701811
AD
91702002-09-13 Akim Demaille <akim@epita.fr>
9171
9172 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
9173 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
9174
e0a13e7b
AD
91752002-09-13 Akim Demaille <akim@epita.fr>
9176
9177 * configure.ac: Require 2.54.
9178 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
9179 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
9180 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
9181 Remove, provided by Autoconf macros.
9182
c97011bf
AD
91832002-09-12 Akim Demaille <akim@epita.fr>
9184
9185 * m4/prereq.m4: Update, from Coreutils 4.5.1.
9186
d862b1be
AD
91872002-09-12 Akim Demaille <akim@epita.fr>
9188
9189 * m4/prereq.m4: Update, from Fileutils 4.1.5.
9190 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
9191 Reported by Martin Mokrejs.
9192
3d38c03a
AD
91932002-09-10 Akim Demaille <akim@epita.fr>
9194
9195 * src/parse-gram.y: Associate a human readable string to each
9196 token type.
9197 * tests/regression.at (Invalid inputs): Adjust.
9198
b6347355
AD
91992002-09-10 Gary V. Vaughan <gary@gnu.org>
9200
9201 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
9202 with an Autoconf-2.5x style configure.ac.
9203
09ba4ab2
PE
92042002-09-06 Paul Eggert <eggert@twinsun.com>
9205
9206 * doc/bison.texinfo (Conditions): Make explicit that the GPL
9207 exception applies only to yacc.c. This is a modification of a
9208 patch originally suggested by Akim Demaille.
9209
21846f69
AD
92102002-09-06 Akim Demaille <akim@epita.fr>
9211
09ba4ab2
PE
9212 * data/c.m4 (b4_copyright): Move the GPL exception comment from
9213 here to...
9214 * data/yacc.c: here.
9215
21846f69
AD
9216 * data/lalr1.cc (struct yyltype): Don't define it, since we use
9217 LocationType.
9218 (b4_ltype): Default to yy::Location from location.hh.
9219
c0ad8bf3
AD
92202002-09-04 Jim Meyering <jim@meyering.net>
9221
9222 * data/yacc.c: Guard the declaration of yytoknum also with
9223 `#ifdef YYPRINT', so it is declared only when used.
9224
3a93251e
AD
92252002-09-04 Akim Demaille <akim@epita.fr>
9226
9227 * configure.in: Rename as...
9228 * configure.ac: this.
9229 Bump to 1.49c.
9230
427c0dda
AD
92312002-09-04 Akim Demaille <akim@epita.fr>
9232
9233 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
9234 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
9235 translate maintainer only messages.
9236
6a254321
PE
92372002-08-12 Paul Eggert <eggert@twinsun.com>
9238
645e30d1
PE
9239 Version 1.49b.
9240
6a254321
PE
9241 * Makefile.am (SUBDIRS): Remove intl.
9242 (DISTCLEANFILES): Remove.
9243 * NEWS: Mention that GNU M4 is now required. Clarify what is
9244 meant by "larger grammars". Mention the pt_BR translation.
9245 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
9246 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
9247 Bump version from 0.11.2 to 0.11.5.
9248 (BISON_PREREQ_STAGE): Remove.
9249 (AM_GNU_GETTEXT): Use external gettext.
9250 (AC_OUTPUT): Remove intl/Makefile.
9251
9252 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
9253
9254 * data/glr.c: Include string.h, for strlen.
9255 (yyreportParseError): Use size_t for yysize.
9256 (yy_yypstack): No longer nested inside yypstates, as nested
9257 functions are not portable. Do not assume size_t is the
9258 same width as int.
9259 (yypstates): Do not assume that ptrdiff_t is the same width
9260 as int, and similarly for yyposn and YYINDEX.
9261
9262 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
9263
9264 * lib/Makefile.am (INCLUDES): Do not include from the intl
9265 directory, which has been removed.
9266 * src/Makefile.am (INCLUDES): Likewise.
9267
9268 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
9269 (bitsets_sources, additional_bitsets_sources, timevars_sources):
9270 New vars.
9271
9272 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
9273 * tests/Makefile.am (EXTRA_DIST): Likewise.
9274
9275 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
9276 Do not assume that bitset_windex is the same width as unsigned.
9277
9278 * lib/abitset.c (abitset_unused_clear): Do not assume that
9279 bitset_word is the same width as int.
9280 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
9281 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
9282 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
9283 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
9284 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
9285
9286 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
9287 portability to one's complement hosts!).
9288 * lib/ebitset.c (ebitset_op1): Likewise.
9289 * lib/lbitset.c (lbitset_op1): Likewise.
9290
9291 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
9292 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
9293 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
9294 Sync with fileutils.
9295 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
9296 lib/gettext.h: Sync with diffutils.
9297
9298 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
9299 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
9300
9301 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
9302 PROTOTYPES to check for prototypes, and "defined __STDC__" to
9303 check for void *.
9304
9305 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
9306 size_t; the old version tried to do this but casted improperly.
9307 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
9308 (bitset_test): Now returns int, not unsigned long.
9309
9310 * lib/bitset_stats.c: Include "gettext.h".
9311 (_): New macro.
9312 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
9313 name locals "index", as it generates unnecessary warnings on some
9314 hosts that have an "index" function.
9315
9316 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
9317 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
9318 they need translation.
9319 * src/LR0.c (state_list_append, new_itemsets, get_state,
9320 append_states, generate_states): Likewise.
9321 * src/assoc.c (assoc_to_string): Likewise.
9322 * src/closure.c (print_closure, set_firsts, closure): Likewise.
9323 * src/gram.c (grammar_dump): Likewise.
9324 * src/injections.c (injections_compute): Likewise.
9325 * src/lalr.c (lookaheads_print): Likewise.
9326 * src/relation.c (relation_transpose): Likewise.
9327 * src/scan-gram.l: Likewise.
9328 * src/tables.c (table_grow, pack_vector): Likewise.
9329
9330 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
9331 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
9332 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
9333 * m4/mbstate_t.m4: Sync with fileutils.
9334 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
9335
9336 * po/LINGUAS: Add pt_BR.
9337 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
9338 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
9339 lib/timevar.c.
9340 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
9341 manual recommends.
9342 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
9343
9344 * src/complain.c (strerror_r): Remove decl; not needed.
9345 (strerror): Use same pattern as ../lib/error.c.
9346
9347 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
9348
9349 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
9350
9351 * src/main.c (main): Cast result of bindtextdomain and textdomain
9352 to void, to avoid a GCC warning when --disable-nls is in effect.
9353
9354 * src/scan-gram.l: Use strings rather than escapes when possible,
9355 to minimize the number of warnings from xgettext.
9356 (handle_action_dollar, handle_action_at): Don't use isdigit,
9357 as it mishandles negative chars and it may not work as expected
9358 outside the C locale.
9359
9360 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
9361 this is a GCC extension and is not portable to other compilers.
9362
9363 * src/system.h (alloca): Use same pattern as ../lib/error.c.
9364 Do not include <ctype.h>; no longer needed.
9365 Do not include <malloc.h>; no longer needed (and generates
9366 warnings on OpenBSD 3.0).
9367
9368 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
9369 it's not portable.
9370
9371 * tests/regression.at: Do not use 'cc -c input.c -o input';
9372 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
9373
9374 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
9375 exit status as failure, not just exit status 1. Sun C exits
9376 with status 2 sometimes.
9377
9378 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
9379 Use it for the two large tests.
9380
c8f002c7
AD
93812002-08-02 Akim Demaille <akim@epita.fr>
9382
9383 * src/conflicts.c (conflicts_output): Don't output rules never
9384 reduced here, since anyway that computation doesn't work.
9385 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
9386 (rule_useless_p, rule_never_reduced_p): New.
9387 (grammar_rules_partial_print): Use a filter instead of a range.
9388 Display the title only if needed.
9389 (grammar_rules_print): Adjust.
9390 (grammar_rules_never_reduced_report): New.
9391 * src/tables.c (action_row): Move the computation of rules never
9392 reduced to...
9393 (token_actions): here.
9394 * src/main.c (main): Make the parser before making the report, so
9395 that rules never reduced are computed.
9396 Call grammar_rules_never_reduced_report.
9397 * src/print.c (print_results): Report rules never reduced.
9398 * tests/conflicts.at, tests/reduce.at: Adjust.
9399
cd08e51e
AD
94002002-08-01 Akim Demaille <akim@epita.fr>
9401
9402 Instead of attaching lookaheads and duplicating the rules being
9403 reduced by a state, attach the lookaheads to the reductions.
9404
9405 * src/state.h (state_t): Remove the `lookaheads',
9406 `lookaheads_rule' member.
9407 (reductions_t): Add a `lookaheads' member.
9408 Use a regular array for the `rules'.
9409 * src/state.c (reductions_new): Initialize the lookaheads member
9410 to 0.
9411 (state_rule_lookaheads_print): Adjust.
9412 * src/state.h, src/state.c (state_reductions_find): New.
9413 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
9414 (count_rr_conflicts): Adjust.
9415 * src/lalr.c (LArule): Remove.
9416 (add_lookback_edge): Adjust.
9417 (state_lookaheads_count): New.
9418 (states_lookaheads_initialize): Merge into...
9419 (initialize_LA): this.
9420 (lalr_free): Adjust.
9421 * src/main.c (main): Don't free nullable and derives too early: it
9422 is used by --verbose.
9423 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
9424
bb0027a9
AD
94252002-08-01 Akim Demaille <akim@epita.fr>
9426
9427 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
9428 `rule_number_t**'.
9429 (set_derives, free_derives): Rename as...
9430 (derives_compute, derives_free): this.
9431 Adjust all dependencies.
9432 * src/nullable.c (set_nullable, free_nullable): Rename as...
9433 (nullable_compute, nullable_free): these.
9434 (rule_list_t): Store rule_t *, not rule_number_t.
9435 * src/state.c (state_rule_lookaheads_print): Directly compare rule
9436 pointers, instead of their numbers.
9437 * src/main.c (main): Call nullable_free, and derives_free earlier,
9438 as they were lo longer used.
9439
3325ddc4
AD
94402002-08-01 Akim Demaille <akim@epita.fr>
9441
9442 * lib/timevar.c (get_time): Include children time.
9443 * src/lalr.h (LA, LArule): Don't export them: used with the
9444 state_t.
9445 * src/lalr.c (LA, LArule): Static.
9446 * src/lalr.h, src/lalr.c (lalr_free): New.
9447 * src/main.c (main): Call it.
9448 * src/tables.c (pack_vector): Check whether loc is >= to the
9449 table_size, not >.
9450 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
9451 (tables_generate): do it, since that's also it which allocates
9452 them.
9453 Don't free LA and LArule, main does.
9454
c6f1a33c
AD
94552002-07-31 Akim Demaille <akim@epita.fr>
9456
9457 Separate parser tables computation and output.
9458
9459 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
9460 (conflict_list, conflict_list_cnt, table, check, table_ninf)
9461 (yydefgoto, yydefact, high): Move to...
9462 * src/tables.h, src/tables.c: here.
9463 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
9464 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
9465 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
9466 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
9467 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
9468 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
9469 (action_row, save_row, token_actions, save_column, default_goto)
9470 (goto_actions, sort_actions, matching_state, pack_vector)
9471 (table_ninf_remap, pack_table, prepare_actions): Move to...
9472 * src/tables.c: here.
9473 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
9474 * src/output.c (token_actions, output_base, output_conflicts)
9475 (output_check): Merge into...
9476 (prepare_actions): this.
9477 (actions_output): Rename as...
9478 (user_actions_output): this.
9479 * src/main.c (main): Call tables_generate and tables_free.
9480
1509d42f
AD
94812002-07-31 Akim Demaille <akim@epita.fr>
9482
9483 Steal GCC's --time-report support.
9484
9485 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
9486 stolen/adjusted from GCC.
9487 * m4/stage.m4: Remove time related checks.
9488 * m4/timevar.m4: New.
9489 * configure.in: Adjust.
9490 * src/system.h: Adjust to using timevar.h.
9491 * src/getargs.h, src/getargs.c: Support trace_time for
9492 --trace=time.
9493 * src/main.c (stage): Remove.
9494 (main): Replace `stage' invocations with timevar calls.
9495 * src/output.c: Insert pertinent timevar calls.
9496
273a74fa
AD
94972002-07-31 Akim Demaille <akim@epita.fr>
9498
9499 Let --trace have arguments.
9500
9501 * src/getargs.h (enum trace_e): New.
9502 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
9503 (long_options, short_options): --trace/-T takes an optional
9504 argument.
9505 Change all the uses of trace_flag to reflect the new flags.
9506 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
9507
9508 Strengthen `stage' portability.
9509
9510 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
9511 * configure.in: Use it.
9512 Don't check for malloc.h and sys/times.h.
9513 * src/system.h: Include them when appropriate.
9514 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
9515 times and struct tms are available.
9516
217598da
AD
95172002-07-30 Akim Demaille <akim@epita.fr>
9518
9519 In verbose parse error message, don't report `error' as an
9520 expected token.
9521 * tests/actions.at (Printers and Destructors): Adjust.
9522 * tests/calc.at (Calculator $1): Adjust.
9523 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
9524 error message, do not report the parser accepts the error token in
9525 that state.
9526
52489d44
AD
95272002-07-30 Akim Demaille <akim@epita.fr>
9528
9529 Normalize conflict related messages.
9530
9531 * src/complain.h, src/complain.c (warn, complain): New.
9532 * src/conflicts.c (conflicts_print): Use them.
9533 (conflict_report_yacc): New, extracted from...
9534 (conflicts_print): here.
9535 * tests/conflicts.at, tests/existing.at: Adjust.
9536
e8832397
AD
95372002-07-30 Akim Demaille <akim@epita.fr>
9538
9539 Report rules which are never reduced by the parser: those hidden
9540 by conflicts.
9541
9542 * src/LR0.c (save_reductions): Don't make the final state too
9543 different: save its reduction (accept) instead of having a state
9544 without any action (no shift or goto, no reduce).
9545 Note: the final state is now a ``regular'' state, i.e., the
9546 parsers now contain `reduce 0' as default reduction.
9547 Nevertheless, since they decide to `accept' when yystate =
9548 final_state, they still will not reduce rule 0.
9549 * src/print.c (print_actions, print_reduction): Adjust.
9550 * src/output.c (action_row): Track reduced rules.
9551 (token_actions): Report rules never reduced.
9552 * tests/conflicts.at, tests/regression.at: Adjust.
9553
caf23d24
AD
95542002-07-30 Akim Demaille <akim@epita.fr>
9555
9556 `stage' was accidently included in a previous patch.
9557 Initiate its autoconfiscation.
9558
9559 * configure.in: Look for malloc.h and sys/times.h.
9560 * src/main.c (stage): Adjust.
9561 Report only when trace_flag.
9562
640748ee
AD
95632002-07-29 Akim Demaille <akim@epita.fr>
9564
9565 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
9566 state_number_t.
9567 (errs_t): symbol_t*, not symbol_number_t.
9568 (reductions_t): rule_t*, not rule_number_t.
9569 (FOR_EACH_SHIFT): New.
9570 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
9571 * src/print.c, src/print_graph.c: Adjust.
9572
88bce5a2
AD
95732002-07-29 Akim Demaille <akim@epita.fr>
9574
9575 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
9576
9577 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
9578 (endtoken, accept): these.
9579 * src/reader.c (reader): Set endtoken's default tag to "$end".
9580 Set undeftoken's tag to "$undefined" instead of "$undefined.".
9581 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
9582 Adjust.
9583
1bfb97db
AD
95842002-07-29 Akim Demaille <akim@epita.fr>
9585
9586 * src/reduce.c (reduce_grammar): When the language is empty,
9587 complain about the start symbol, not the axiom.
9588 Use its location.
9589 * tests/reduce.at (Empty Language): New.
9590
fc5734fe
AD
95912002-07-26 Akim Demaille <akim@epita.fr>
9592
9593 * src/reader.h, src/reader.c (gram_error): ... can't get
9594 yycontrol without making too strong assumptions on the parser
9595 itself.
9596 * src/output.c (prepare_tokens): Use the real 0th value of
9597 token_translations instead of `0'.
9598 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
9599 visible here.
9600 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
9601 for the time being: %locations ought to provide it to yyerror.
9602
3650b4b8
AD
96032002-07-25 Akim Demaille <akim@epita.fr>
9604
9605 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
9606 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
9607 * tests/regression.at (Web2c Actions): Adjust.
9608
4b3d3a8e
AD
96092002-07-25 Akim Demaille <akim@epita.fr>
9610
9611 Stop storing rules from 1 to nrules + 1.
9612
9613 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
9614 * src/nullable.c, src/output.c, src/print.c, src/reader.c
9615 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
9616 Iterate from 0 to nrules.
9617 Use rule_number_as_item_number and item_number_as_rule_number.
9618 Adjust to `derive' now containing possibly 0.
9619 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
9620 Handle the `- 1' part in rule numbers from/to item numbers.
9621 * src/conflicts.c (log_resolution): Fix the message which reversed
9622 shift and reduce.
9623 * src/output.c (action_row): Initialize default_rule to -1.
9624 (token_actions): Adjust.
9625 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
9626 expected output.
9627 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
9628
4a2a22f4
AD
96292002-07-25 Akim Demaille <akim@epita.fr>
9630
9631 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
9632 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
9633 (b4_c_knr_arg_decl): New.
9634 * data/yacc.c: Use it to define yysymprint, yydestruct, and
9635 yyreport_parse_error.
9636
b8df3223
AD
96372002-07-25 Akim Demaille <akim@epita.fr>
9638
9639 * data/yacc.c (yyreport_parse_error): New, extracted from...
9640 (yyparse): here.
9641 (yydestruct, yysymprint): Move above yyparse.
9642 Be K&R compliant.
9643
a762e609
AD
96442002-07-25 Akim Demaille <akim@epita.fr>
9645
9646 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
9647 replace...
9648 (b4_sint_type, b4_uint_type): these.
9649 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
9650 * tests/regression.at (Web2c Actions): Adjust.
9651
12b0043a
AD
96522002-07-25 Akim Demaille <akim@epita.fr>
9653
9654 * src/gram.h (TIEM_NUMBER_MAX): New.
9655 (item_number_of_rule_number, rule_number_of_item_number): Rename
9656 as...
9657 (rule_number_as_item_number, item_number_as_rule_number): these.
9658 Adjust dependencies.
9659 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
9660 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
9661 (symbol_number_to_vector_number): New.
9662 (order): Of vector_number_t* type.
9663 (base_t, BASE_MAX, BASE_MIN): New.
9664 (froms, tos, width, pos, check): Of base_t type.
9665 (action_number_t, ACTION_MIN, ACTION_MAX): New.
9666 (actrow): Of action_number_t type.
9667 (conflrow): Of unsigned int type.
9668 (table_ninf, base_ninf): New.
9669 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
9670 (muscle_insert_int_table, muscle_insert_base_table)
9671 (muscle_insert_rule_number_table): New.
9672 (prepare_tokens): Output `toknum' as int_table.
9673 (action_row): Returns a rule_number_t.
9674 Use ACTION_MIN, not SHRT_MIN.
9675 (token_actions): yydefact is rule_number_t*.
9676 (table_ninf_remap): New.
9677 (pack_table): Use it for `base' and `table'.
9678 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
9679 replaced with...
9680 (YYPACT_NINF, YYTABLE_NINF): these.
9681 (yypact, yytable): Compute their types instead of hard-coded
9682 `short'.
9683 * tests/regression.at (Web2c Actions): Adjust.
9684
5dde258a
AD
96852002-07-19 Akim Demaille <akim@epita.fr>
9686
9687 * src/scan-gram.l (id): Can start with an underscore.
9688
a945ec39
AD
96892002-07-16 Akim Demaille <akim@epita.fr>
9690
9691 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
9692 Adjust all former `associativity' dependencies.
9693 * src/symtab.c (symbol_new): Default associativity is `undef', not
9694 `right'.
9695 (symbol_check_alias_consistence): Adjust.
9696
fae437e8
AD
96972002-07-09 Akim Demaille <akim@epita.fr>
9698
9699 * doc/bison.texinfo: Properly set the ``header'' part.
9700 Use @dircategory ``GNU programming tools'' as per Texinfo's
9701 documentation.
9702 Use @copying.
9703
1a715ef2
AD
97042002-07-09 Akim Demaille <akim@epita.fr>
9705
9706 * lib/quotearg.h: Protect against multiple inclusions.
9707 * src/location.h (location_t): Add a `file' member.
9708 (LOCATION_RESET, LOCATION_PRINT): Adjust.
9709 * src/complain.c (warn_at, complain_at, fatal_at): Drop
9710 `error_one_per_line' support.
9711
a5d50994
AD
97122002-07-09 Akim Demaille <akim@epita.fr>
9713
9714 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
9715 * src/reader.c (lineno): Remove.
9716 Adjust all dependencies.
9717 (get_merge_function): Take a location and use complain_at.
9718 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
9719 * tests/regression.at (Invalid inputs, Mixing %token styles):
9720 Adjust.
9721
b275314e
AD
97222002-07-09 Akim Demaille <akim@epita.fr>
9723
9724 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
9725 recovery rule, and forbid extensions when --yacc.
9726 (gram_error): Use complain_at.
9727 * src/reader.c (reader): Exit if there were parse errors.
9728
865b9df1
AD
97292002-07-09 Akim Demaille <akim@epita.fr>
9730
9731 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
9732 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
9733 Reported by R Blake <blakers@mac.com>.
9734
c76e14da
AD
97352002-07-09 Akim Demaille <akim@epita.fr>
9736
9737 * data/yacc.c: Output the copyright notive in the header.
9738
7db2ed2d
AD
97392002-07-03 Akim Demaille <akim@epita.fr>
9740
9741 * src/output.c (froms, tos): Are state_number_t.
9742 (save_column): sp, sp1, and sp2 are state_number_t.
9743 (prepare): Rename `final' as `final_state_number', `nnts' as
9744 `nterms_number', `nrules' as `rules_number', `nstates' as
9745 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
9746 unused.
9747 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
9748 * data/lalr1.cc (nsym_): Remove, unused.
9749
e68e0410
AD
97502002-07-03 Akim Demaille <akim@epita.fr>
9751
9752 * src/lalr.h, src/lalr.c (goto_number_t): New.
9753 * src/lalr.c (goto_list_t): New.
9754 Propagate them.
9755 * src/nullable.c (rule_list_t): New.
9756 Propagate.
9757 * src/types.h: Remove.
9758
e1a4f3a4
AD
97592002-07-03 Akim Demaille <akim@epita.fr>
9760
9761 * src/closure.c (print_fderives): Use rule_rhs_print.
9762 * src/derives.c (print_derives): Use rule_rhs_print.
9763 (rule_list_t): New, replaces `shorts'.
9764 (set_derives): Add comments.
9765 * tests/sets.at (Nullable, Firsts): Adjust.
9766
536545f3
AD
97672002-07-03 Akim Demaille <akim@epita.fr>
9768
9769 * src/output.c (prepare_actions): Free `tally' and `width'.
9770 (prepare_actions): Allocate and free `order'.
9771 * src/symtab.c (symbols_free): Free `symbols'.
9772 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
9773 * src/output.c (m4_invoke): Move to...
9774 * src/scan-skel.l: here.
9775 (<<EOF>>): Close yyout, and free its name.
9776
8b752b00
AD
97772002-07-03 Akim Demaille <akim@epita.fr>
9778
9779 Fix some memory leaks, and fix a bug: state 0 was examined twice.
9780
9781 * src/LR0.c (new_state): Merge into...
9782 (state_list_append): this.
9783 (new_states): Merge into...
9784 (generate_states): here.
9785 (set_states): Don't ensure a proper `errs' state member here, do it...
9786 * src/conflicts.c (conflicts_solve): here.
9787 * src/state.h, src/state.c: Comment changes.
9788 (state_t): Rename member `shifts' as `transitions'.
9789 Adjust all dependencies.
9790 (errs_new): For consistency, also take the values as argument.
9791 (errs_dup): Remove.
9792 (state_errs_set): New.
9793 (state_reductions_set, state_transitions_set): Assert that no
9794 previous value was assigned.
9795 (state_free): New.
9796 (states_free): Use it.
9797 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
9798 temporary storage: use `errs' and `nerrs' as elsewhere.
9799 (set_conflicts): Allocate and free this `errs'.
9800
613f5e1a
AD
98012002-07-02 Akim Demaille <akim@epita.fr>
9802
9803 * lib/libiberty.h: New.
9804 * lib: Update the bitset implementation from upstream.
9805 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
9806 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
9807 * src/main.c: Adjust bitset stats calls.
9808
26e0cadc
PE
98092002-07-01 Paul Eggert <eggert@twinsun.com>
9810
9811 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
9812 char, so that negative chars don't collide with $.
9813
1154cced
AD
98142002-06-30 Akim Demaille <akim@epita.fr>
9815
9816 Have the GLR tests be `warning' checked, and fix the warnings.
9817
9818 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
9819 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
9820 (yyremoveDeletes): `yyi' and `yyj' are size_t.
9821 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
9822 (yyaddDeferredAction): static.
9823 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
9824 (yyreportParseError): yyprefix is const.
9825 yytokenp is used only when verbose.
9826 (yy__GNUC__): Replace with __GNUC__.
9827 (yypdumpstack): yyi is size_t.
9828 (yypreference): Un-yy local variables and arguments, to avoid
9829 clashes with `yyr1'. Anyway, we are not in the user name space.
9830 (yytname_size): be an int, as is compared with ints.
9831 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
9832 Use them.
9833 * tests/cxx-gram.at: Use quotation to protect $1.
9834 Use AT_COMPILE to enable warnings hunts.
9835 Prototype yylex and yyerror.
9836 `Use' argc.
9837 Include `string.h', not `strings.h'.
9838 Produce and prototype stmtMerge only when used.
9839 yylex takes a location.
9840
97650f4e
AD
98412002-06-30 Akim Demaille <akim@epita.fr>
9842
9843 We spend a lot of time in quotearg, in particular when --verbose.
9844
9845 * src/symtab.c (symbol_get): Store a quoted version of the key.
9846 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
9847 Adjust all callers.
9848
d2576365
AD
98492002-06-30 Akim Demaille <akim@epita.fr>
9850
9851 * src/state.h (reductions_t): Rename member `nreds' as num.
9852 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
9853 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
9854
ccaf65bc
AD
98552002-06-30 Akim Demaille <akim@epita.fr>
9856
9857 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
9858 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
9859 (shifts_to): Rename as...
9860 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
9861 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
9862 (TRANSITION_IS_DISABLED, transitions_to): these.
9863
87675353
AD
98642002-06-30 Akim Demaille <akim@epita.fr>
9865
9866 * src/print.c (print_shifts, print_gotos): Merge into...
9867 (print_transitions): this.
9868 (print_transitions, print_errs, print_reductions): Align the
9869 lookaheads columns.
9870 (print_core, print_transitions, print_errs, print_state,
9871 print_grammar): Output empty lines separator before, not after.
9872 (state_default_rule_compute): Rename as...
9873 (state_default_rule): this.
9874 * tests/conflicts.at (Defaulted Conflicted Reduction),
9875 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
9876 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
9877
ce4ccb4b
AD
98782002-06-30 Akim Demaille <akim@epita.fr>
9879
9880 Display items as we display rules.
9881
9882 * src/gram.h, src/gram.c (rule_lhs_print): New.
9883 * src/gram.c (grammar_rules_partial_print): Use it.
9884 * src/print.c (print_core): Likewise.
9885 * tests/conflicts.at (Defaulted Conflicted Reduction),
9886 (Unresolved SR Conflicts): Adjust.
9887 (Unresolved SR Conflicts): Adjust and rename as...
9888 (Resolved SR Conflicts): this, as was meant.
9889 * tests/regression.at (Web2c Report): Adjust.
9890
bc933ef1
AD
98912002-06-30 Akim Demaille <akim@epita.fr>
9892
9893 * src/print.c (state_default_rule_compute): New, extracted from...
9894 (print_reductions): here.
9895 Pessimize, but clarify the code.
9896 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
9897
53d4308d
AD
98982002-06-30 Akim Demaille <akim@epita.fr>
9899
9900 * src/output.c (action_row): Let default_rule be always a rule
9901 number.
9902
574fb2d5
AD
99032002-06-30 Akim Demaille <akim@epita.fr>
9904
9905 * src/closure.c (print_firsts, print_fderives, closure):
9906 Use BITSET_EXECUTE.
9907 * src/lalr.c (lookaheads_print): Likewise.
9908 * src/state.c (state_rule_lookaheads_print): Likewise.
9909 * src/print_graph.c (print_core): Likewise.
9910 * src/print.c (print_reductions): Likewise.
9911 * src/output.c (action_row): Likewise.
9912 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
9913
05811fd7
AD
99142002-06-30 Akim Demaille <akim@epita.fr>
9915
9916 * src/print_graph.c: Use report_flag.
9917
0e4d5753
AD
99182002-06-30 Akim Demaille <akim@epita.fr>
9919
9920 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
9921 to...
9922 * src/relation.h, src/relation.c (traverse, relation_digraph)
9923 (relation_print, relation_transpose): New.
9924
24c7d800
AD
99252002-06-30 Akim Demaille <akim@epita.fr>
9926
9927 * src/state.h, src/state.c (shifts_to): New.
9928 * src/lalr.c (build_relations): Use it.
9929
9222837b
AD
99302002-06-30 Akim Demaille <akim@epita.fr>
9931
9932 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
9933 (item_number_of_rule_number, rule_number_of_item_number): New.
9934 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
9935 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
9936 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
9937 Propagate their use.
9938 Much remains to be done, in particular wrt `shorts' from types.h.
9939
260008e5
AD
99402002-06-30 Akim Demaille <akim@epita.fr>
9941
9942 * src/symtab.c (symbol_new): Initialize the `printer' member.
9943
8a731ca8
AD
99442002-06-30 Akim Demaille <akim@epita.fr>
9945
9946 * src/LR0.c (save_reductions): Remove, replaced by...
9947 * src/state.h, src/state.c (state_reductions_set): New.
9948 (reductions, errs): Rename as...
9949 (reductions_t, errs_t): these.
9950 Adjust all dependencies.
9951
32e1e0a4
AD
99522002-06-30 Akim Demaille <akim@epita.fr>
9953
9954 * src/LR0.c (state_list_t, state_list_append): New.
9955 (first_state, last_state): Now symbol_list_t.
9956 (this_state): Remove.
9957 (new_itemsets, append_states, save_reductions): Take a state_t as
9958 argument.
9959 (set_states, generate_states): Adjust.
9960 (save_shifts): Remove, replaced by...
9961 * src/state.h, src/state.c (state_shifts_set): New.
9962 (shifts): Rename as...
9963 (shifts_t): this.
9964 Adjust all dependencies.
9965 * src/state.h (state_t): Remove the `next' member.
9966
e5fb6710
AD
99672002-06-30 Akim Demaille <akim@epita.fr>
9968
9969 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
9970 escaped in slot 0.
9971
c7ca99d4
AD
99722002-06-30 Akim Demaille <akim@epita.fr>
9973
9974 Use hash.h for the state hash table.
9975
9976 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
9977 (allocate_storage): Use state_hash_new.
9978 (free_storage): Use state_hash_free.
9979 (new_state, get_state): Adjust.
9980 * src/lalr.h, src/lalr.c (states): Move to...
9981 * src/states.h (state_t): Remove the `link' member, no longer
9982 used.
9983 * src/states.h, src/states.c: here.
9984 (state_hash_new, state_hash_free, state_hash_lookup)
9985 (state_hash_insert, states_free): New.
9986 * src/states.c (state_table, state_compare, state_hash): New.
9987 * src/output.c (output_actions): Do not free states now, since we
9988 still need to know the final_state number in `prepare', called
9989 afterwards. Do it...
9990 * src/main.c (main): here: call states_free after `output'.
9991
df0e7316
AD
99922002-06-30 Akim Demaille <akim@epita.fr>
9993
9994 * src/state.h, src/state.c (state_new): New, extracted from...
9995 * src/LR0.c (new_state): here.
9996 * src/state.h (STATE_ALLOC): Move to...
9997 * src/state.c: here.
9998 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
9999 * src/state.h, src/state.c: here.
10000
39f41916
AD
100012002-06-30 Akim Demaille <akim@epita.fr>
10002
10003 * src/reader.c (gensym): Rename as...
10004 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
10005 (getsym): Rename as...
10006 (symbol_get): this.
10007
d57650a5
AD
100082002-06-30 Akim Demaille <akim@epita.fr>
10009
10010 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
10011 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
10012 * src/output.c, src/print.c, src/print_graph.c: Propagate.
10013 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
10014
5a08f1ce
AD
100152002-06-30 Akim Demaille <akim@epita.fr>
10016
10017 Make the test suite pass with warnings checked.
10018
10019 * tests/actions.at (Printers and Destructors): Improve.
10020 Avoid unsigned vs. signed issues.
10021 * tests/calc.at: Don't exercise the scanner here, do it...
10022 * tests/input.at (Torturing the Scanner): here.
10023
720623af
PH
100242002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10025
88e7e941 10026 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
10027 reorganize first lines parallel to yacc.c.
10028
fb8135fa
AD
100292002-06-28 Akim Demaille <akim@epita.fr>
10030
10031 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
10032 (b4_token_enum, b4_token_defines): New, factored from...
10033 * data/lalr1.cc, data/yacc.c, glr.c: here.
10034
41442480
AD
100352002-06-28 Akim Demaille <akim@epita.fr>
10036
10037 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
10038 unused variables.
10039 * src/output.c (merger_output): static.
10040
e0e5bf84
AD
100412002-06-28 Akim Demaille <akim@epita.fr>
10042
ba0fe3c7 10043 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
e0e5bf84
AD
10044 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
10045 pacify GCC.
10046 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 10047
676385e2
PH
100482002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10049
10050 Accumulated changelog for new GLR parsing features.
10051
6a254321 10052 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
10053 conflicts_total_count.
10054 * src/conflicts.h: Ditto.
10055 * src/output.c (token_actions): Use the new name.
10056 (output_conflicts): Change conflp => conflict_list_heads, and
10057 confl => conflict_list for better readability.
10058 * data/glr.c: Use the new names.
10059 * NEWS: Add self to GLR announcement.
e0e5bf84 10060
676385e2
PH
10061 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
10062
10063 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
10064 Akim Demaille.
10065
10066 * data/bison.glr: Change name to glr.c
10067 * data/glr.c: Renamed from bison.glr.
10068 * data/Makefile.am: Add glr.c
e0e5bf84
AD
10069
10070 * src/getargs.c:
10071
676385e2 10072 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
ba0fe3c7 10073 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 10074
676385e2
PH
10075 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10076
10077 * data/bison.glr: Be sure to restore the
10078 current #line when returning to the skeleton contents after having
10079 exposed the input file's #line.
10080
10081 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10082
10083 * data/bison.glr: Bring up to date with changes to bison.simple.
10084
10085 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10086
10087 * data/bison.glr: Correct definitions that use b4_prefix.
10088 Various reformatting.
10089 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
10090 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
10091 yytokenp argument; now part of stack.
10092 (yychar): Define to behave as documented.
10093 (yyclearin): Ditto.
e0e5bf84 10094
676385e2
PH
10095 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10096
10097 * src/reader.h: Add declaration for free_merger_functions.
10098
10099 * src/reader.c (merge_functions): New variable.
10100 (get_merge_function): New function.
10101 (free_merger_functions): New function.
10102 (readgram): Check for %prec that is not followed by a symbol.
10103 Handle %dprec and %merge declarations.
10104 (packgram): Initialize dprec and merger fields in rules array.
10105
10106 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
10107 conflict_list_cnt, conflict_list_free): New variables.
10108 (table_grow): Also grow conflict_table.
e0e5bf84 10109 (prepare_rules): Output dprec and merger tables.
676385e2 10110 (conflict_row): New function.
e0e5bf84 10111 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
10112 default reduction in conflicted states for GLR parser so that there
10113 are spaces for the conflict lists.
10114 (save_row): Also save conflict information.
10115 (token_actions): Allocate conflict list.
10116 (merger_output): New function.
10117 (pack_vector): Pack conflict table, too.
10118 (output_conflicts): New function to output yyconflp and yyconfl.
10119 (output_check): Allocate conflict_tos.
10120 (output_actions): Output conflict tables, also.
10121 (output_skeleton): Output b4_mergers definition.
10122 (prepare): Output b4_max_rhs_length definition.
10123 Use 'bison.glr' as default skeleton for GLR parsers.
10124
10125 * src/gram.c (glr_parser): New flag.
10126 (grammar_free): Call free_merger_functions.
10127
10128 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
10129 all pairs of conflicting reductions, rather than just all tokens
10130 causing conflicts. Needed to size conflict tables.
e0e5bf84 10131 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
10132 interface.
10133 (conflicts_print): Ditto.
10134 (count_total_conflicts): New function.
10135
10136 * src/reader.h (merger_list): New type.
10137 (merge_functions): New variable.
10138
10139 * src/lex.h (tok_dprec, tok_merge): New token types.
10140
10141 * src/gram.h (rule_s): Add dprec and merger fields.
10142 (glr_parser): New flag.
10143
10144 * src/conflicts.h (count_total_conflicts): New function.
10145
10146 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
10147
10148 * doc/bison.texinfo (Generalized LR Parsing): New section.
10149 (GLR Parsers): New section.
10150 (Language and Grammar): Mention GLR parsing.
10151 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
10152 Correct typo ("tge" -> "the").
10153
10154 * data/bison.glr: New skeleton for GLR parsing.
10155
10156 * tests/cxx-gram.at: New tests for GLR parsing.
10157
10158 * tests/testsuite.at: Include cxx-gram.at.
10159
10160 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 10161
676385e2
PH
10162 * src/parse-gram.y:
10163
10164 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
10165
10166 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 10167
b5480d74 101682002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
10169
10170 * src/options.h, src/options.c: Remove.
10171 * src/getargs.c (short_options, long_options): New.
10172
60491a94
AD
101732002-06-27 Akim Demaille <akim@epita.fr>
10174
10175 * data/bison.simple, data/bison.c++: Rename as...
10176 * data/yacc.c, data/lalr1.cc: these.
10177 * doc/bison.texinfo (Environment Variables): Remove.
10178
9be0c25b
AD
101792002-06-25 Raja R Harinath <harinath@cs.umn.edu>
10180
10181 * src/getargs.c (report_argmatch): Initialize strtok().
10182
1ae72863
AD
101832002-06-20 Akim Demaille <akim@epita.fr>
10184
10185 * data/bison.simple (b4_symbol_actions): New, replaces...
10186 (b4_symbol_destructor, b4_symbol_printer): these.
10187 (yysymprint): Be sure to call YYPRINT only for tokens, and using
10188 user token numbers.
10189
87542d29
AD
101902002-06-20 Akim Demaille <akim@epita.fr>
10191
10192 * data/bison.simple (yydestructor): Rename as...
10193 (yydestruct): this.
10194
1a31ed21
AD
101952002-06-20 Akim Demaille <akim@epita.fr>
10196
10197 * src/symtab.h, src/symtab.c (symbol_type_set)
10198 (symbol_destructor_set, symbol_precedence_set): The location is
10199 the last argument.
10200 Adjust all callers.
10201
e776192e
AD
102022002-06-20 Akim Demaille <akim@epita.fr>
10203
10204 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
10205 internals.
10206 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
10207 Takes a location.
10208 * src/symtab.h, src/symtab.c (symbol_class_set)
10209 (symbol_user_token_number_set): Likewise.
10210 Adjust all callers.
10211 Promote complain_at.
10212 * tests/input.at (Type Clashes): Adjust.
10213
5c1180b3
AD
102142002-06-20 Akim Demaille <akim@epita.fr>
10215
10216 * data/bison.simple (YYLEX): Fix the declaration when
10217 %pure-parser.
10218
e3170060
AD
102192002-06-20 Akim Demaille <akim@epita.fr>
10220
10221 * data/bison.simple (yysymprint): Don't print the token number,
10222 just its name.
10223 * tests/actions.at (Destructors): Rename as...
10224 (Printers and Destructors): this.
10225 Also exercise %printer.
10226
253862fd
AD
102272002-06-20 Akim Demaille <akim@epita.fr>
10228
10229 * data/bison.simple (YYDSYMPRINT): New.
10230 Use it to remove many of the #if YYDEBUG/if (yydebug).
10231
366eea36
AD
102322002-06-20 Akim Demaille <akim@epita.fr>
10233
10234 * src/symtab.h, src/symtab.c (symbol_t): printer and
10235 printer_location are new members.
10236 (symbol_printer_set): New.
10237 * src/parse-gram.y (PERCENT_PRINTER): New token.
10238 Handle its associated rule.
10239 * src/scan-gram.l: Adjust.
10240 (handle_destructor_at, handle_destructor_dollar): Rename as...
10241 (handle_symbol_code_at, handle_symbol_code_dollar): these.
10242 * src/output.c (symbol_printers_output): New.
10243 (output_skeleton): Call it.
10244 * data/bison.simple (yysymprint): New. Cannot be named yyprint
10245 since there are already many grammar files with a user `yyprint'.
10246 Replace the calls to YYPRINT to calls to yysymprint.
10247 * tests/calc.at: Adjust.
10248 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
10249 taking advantage of parser very internal details (stack size!).
10250
4f25ebb0
AD
102512002-06-20 Akim Demaille <akim@epita.fr>
10252
10253 * src/scan-gram.l: Complete the scanner with the missing patterns
10254 to pacify Flex.
10255 Use `quote' and `symbol_tag_get' where appropriate.
10256
93b68a0e
AD
102572002-06-19 Akim Demaille <akim@epita.fr>
10258
10259 * tests/actions.at (Destructors): Augment to test locations.
10260 * data/bison.simple (yydestructor): Pass it the current location
10261 if locations are enabled.
10262 Prototype only when __STDC__ or C++.
10263 Change the argument names to move into the yy name space: there is
10264 user code here.
10265
58612f1d
AD
102662002-06-19 Akim Demaille <akim@epita.fr>
10267
74310291
AD
10268 * data/bison.simple (b4_pure_if): New.
10269 Use it instead of #ifdef YYPURE.
10270
102712002-06-19 Akim Demaille <akim@epita.fr>
10272
10273 * data/bison.simple (b4_location_if): New.
58612f1d
AD
10274 Use it instead of #ifdef YYLSP_NEEDED.
10275
f25bfb75
AD
102762002-06-19 Akim Demaille <akim@epita.fr>
10277
10278 Prepare @$ in %destructor, but currently don't bind it in the
10279 skeleton, as %location use is not cleaned up yet.
10280
10281 * src/scan-gram.l (handle_dollar, handle_destructor_at)
10282 (handle_action_at): New.
10283 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
10284 a braced_code_t and a location as additional arguments.
10285 (handle_destructor_dollar): Instead of requiring `b4_eval', just
10286 unquote one when outputting `b4_dollar_dollar'.
10287 Adjust callers.
10288 * data/bison.simple (b4_eval): Remove.
10289 (b4_symbol_destructor): Adjust.
10290 * tests/input.at (Invalid @n): Adjust.
10291
c732d2c6
AD
102922002-06-19 Zack Weinberg <zack@codesourcery.com>
10293
10294 * doc/bison.texinfo: Document ability to have multiple
10295 prologue sections.
10296
8c165d89
AD
102972002-06-18 Akim Demaille <akim@epita.fr>
10298
10299 * src/files.c (compute_base_names): When computing the output file
10300 names from the input file name, strip the directory part.
10301
ca98bf57
AD
103022002-06-18 Akim Demaille <akim@epita.fr>
10303
10304 * data/bison.simple.new: Comment changes.
10305 Reported by Andreas Schwab.
10306
0bfb02ff
AD
103072002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
10308
10309 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
10310 there are no `label `yyoverflowlab' defined but not used' warnings
10311 when yyoverflow is defined.
10312
24c0aad7
AD
103132002-06-18 Akim Demaille <akim@epita.fr>
10314
10315 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
10316 new member.
10317 (symbol_destructor_set): Adjust.
10318 * src/output.c (symbol_destructors_output): Output the destructor
10319 locations.
10320 Output the symbol name.
10321 * data/bison.simple (b4_symbol_destructor): Adjust.
10322
5719c109
AD
103232002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
10324 and Akim Demaille <akim@epita.fr>
10325
10326 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
10327 what's left on the stack when the error recovery hits EOF.
10328 * tests/actions.at (Destructors): Complete to exercise this case.
10329
9280d3ef
AD
103302002-06-17 Akim Demaille <akim@epita.fr>
10331
10332 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
10333 arguments is really empty, not only equal to `[]'.
10334 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
10335 member.
10336 (symbol_destructor_set): New.
10337 * src/output.c (symbol_destructors_output): New.
10338 * src/reader.h (brace_code_t, current_braced_code): New.
10339 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
10340 (handle_dollar): Rename as...
10341 (handle_action_dollar): this.
10342 (handle_destructor_dollar): New.
10343 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
10344 (grammar_declaration): Use it.
10345 * data/bison.simple (yystos): Is always defined.
10346 (yydestructor): New.
10347 * tests/actions.at (Destructors): New.
10348 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
10349
dafdc66f
AD
103502002-06-17 Akim Demaille <akim@epita.fr>
10351
10352 * src/symlist.h, src/symlist.c (symbol_list_length): New.
10353 * src/scan-gram.l (handle_dollar, handle_at): Compute the
10354 rule_length only when needed.
10355 * src/output.c (actions_output, token_definitions_output): Output
10356 the full M4 block.
10357 * src/symtab.c: Don't access directly to the symbol tag, use
10358 symbol_tag_get.
10359 * src/parse-gram.y: Use symbol_list_free.
10360
56c47203
AD
103612002-06-17 Akim Demaille <akim@epita.fr>
10362
10363 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
10364 (symbol_list_prepend, get_type_name): Move to...
10365 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
10366 (symbol_list_prepend, symbol_list_n_type_name_get): here.
10367 Adjust all callers.
10368 (symbol_list_free): New.
10369 * src/scan-gram.l (handle_dollar): Takes a location.
10370 * tests/input.at (Invalid $n): Adjust.
10371
1e0bab92
AD
103722002-06-17 Akim Demaille <akim@epita.fr>
10373
10374 * src/reader.h, src/reader.c (symbol_list_new): Export it.
10375 (symbol_list_prepend): New.
10376 * src/parse-gram.y (%union): `list' is a new member.
10377 (symbols.1): New, replaces...
10378 (terms_to_prec.1, nterms_to_type.1): these.
10379 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
10380 Take a location as additional argument.
10381 Adjust all callers.
10382
04e60654
AD
103832002-06-15 Akim Demaille <akim@epita.fr>
10384
10385 * src/parse-gram.y: Move %token in the declaration section so that
10386 we don't depend upon CVS Bison.
10387
10e5b8bd
AD
103882002-06-15 Akim Demaille <akim@epita.fr>
10389
10390 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
10391 * src/print.c (print_core): Use it.
10392
9801d40c
AD
103932002-06-15 Akim Demaille <akim@epita.fr>
10394
10395 * src/conflicts.c (log_resolution): Accept the rule involved in
10396 the sr conflicts instead of the lookahead number that points to
10397 that rule.
10398 (flush_reduce): Accept the current lookahead vector as argument,
10399 instead of the index in LA.
10400 (resolve_sr_conflict): Accept the current number of lookahead
10401 bitset to consider for the STATE, instead of the index in LA.
10402 (set_conflicts): Adjust.
10403 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
10404
c0263492
AD
104052002-06-15 Akim Demaille <akim@epita.fr>
10406
10407 * src/state.h (state_t): Replace the `lookaheadsp' member, a
10408 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
10409 Adjust all dependencies.
10410 * src/lalr.c (initialize_lookaheads): Split into...
10411 (states_lookaheads_count, states_lookaheads_initialize): these.
10412 (lalr): Adjust.
10413
9757c359
AD
104142002-06-15 Akim Demaille <akim@epita.fr>
10415
10416 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
10417 out of...
10418 (grammar_rules_print): here.
10419 * src/reduce.c (reduce_output): Use it.
10420 * tests/reduce.at (Useless Rules, Reduced Automaton)
10421 (Underivable Rules): Adjust.
10422
6b98e4b5
AD
104232002-06-15 Akim Demaille <akim@epita.fr>
10424
10425 Copy BYacc's nice way to report the grammar.
10426
10427 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
10428 New.
10429 Don't print the rules' location, it is confusing and useless.
10430 (rule_print): Use grammar_rhs_print.
10431 * src/print.c (print_grammar): Use grammar_rules_print.
10432
6b98e4b5
AD
104332002-06-15 Akim Demaille <akim@epita.fr>
10434
10435 Complete and rationalize `useless thing' warnings.
10436
10437 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
10438 (symbol_tag_print): New.
10439 Use them everywhere in place of accessing directly the tag member.
10440 * src/gram.h, src/gram.c (rule_print): New.
10441 Use it where a rule used to be printed `by hand'.
10442 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
10443 (reduce_grammar_tables): Report the useless rules.
10444 (reduce_print): Useless things are a warning, not an error.
10445 Report it as such.
10446 * tests/reduce.at (Useless Nonterminals, Useless Rules):
10447 (Reduced Automaton, Underivable Rules): Adjust.
10448 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
10449 * tests/conflicts.at (Unresolved SR Conflicts)
10450 (Solved SR Conflicts): Adjust.
10451
ee000ba4
AD
104522002-06-15 Akim Demaille <akim@epita.fr>
10453
10454 Let symbols have a location.
10455
10456 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
10457 (getsym): Adjust.
10458 Adjust all callers.
10459 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
10460 Use location_t, not int.
10461 * src/symtab.c (symbol_check_defined): Take advantage of the
10462 location.
10463 * tests/regression.at (Invalid inputs): Adjust.
10464
8efe435c
AD
104652002-06-15 Akim Demaille <akim@epita.fr>
10466
10467 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
10468 (input): Don't try to initialize yylloc here, do it in the
10469 scanner.
10470 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
10471 * src/gram.h (rule_t): Change line and action_line into location
10472 and action_location, of location_t type.
10473 Adjust all dependencies.
10474 * src/location.h, src/location.c (empty_location): New.
10475 * src/reader.h, src/reader.c (grammar_start_symbol_set)
10476 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
10477 (grammar_current_rule_symbol_append)
10478 (grammar_current_rule_action_append): Expect a location as argument.
10479 * src/reader.c (grammar_midrule_action): Adjust to attach an
10480 action's location as dummy symbol location.
10481 * src/symtab.h, src/symtab.c (startsymbol_location): New.
10482 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
10483 the line numbers.
10484
1921f1d7
AD
104852002-06-14 Akim Demaille <akim@epita.fr>
10486
10487 Grammar declarations may be found in the grammar section.
10488
10489 * src/parse-gram.y (rules_or_grammar_declaration): New.
10490 (declarations): Each declaration may end with a semicolon, not
10491 just...
10492 (grammar_declaration): `"%union"'.
10493 (grammar): Branch to rules_or_grammar_declaration.
10494
4515534c
AD
104952002-06-14 Akim Demaille <akim@epita.fr>
10496
10497 * src/main.c (main): Invoke scanner_free.
10498
f958596b
AD
104992002-06-14 Akim Demaille <akim@epita.fr>
10500
10501 * src/output.c (m4_invoke): Extracted from...
10502 (output_skeleton): here.
10503 Free tempfile.
10504
2c569025
AD
105052002-06-14 Akim Demaille <akim@epita.fr>
10506
10507 * src/parse-gram.y (directives, directive, gram)
10508 (grammar_directives, precedence_directives, precedence_directive):
10509 Rename as...
10510 (declarations, declaration, grammar, grammar_declaration)
10511 (precedence_declaration, precedence_declarator): these.
10512 (symbol_declaration): New.
10513
592e8d4d
AD
105142002-06-14 Akim Demaille <akim@epita.fr>
10515
10516 * src/files.c (action_obstack): Remove, unused.
10517 (output_obstack): Remove it, and all its dependencies, as it is no
10518 longer needed.
10519 * src/reader.c (epilogue_set): Build the epilogue in the
10520 muscle_obstack.
10521 * src/output.h, src/output.c (muscle_obstack): Move to...
10522 * src/muscle_tab.h, src/muscle_tab.h: here.
10523 (muscle_init): Initialize muscle_obstack.
10524 (muscle_free): New.
10525 * src/main.c (main): Call it.
10526
0c15323d
AD
105272002-06-14 Akim Demaille <akim@epita.fr>
10528
10529 * src/location.h: New, extracted from...
10530 * src/reader.h: here.
10531 * src/Makefile.am (noinst_HEADERS): Merge into
10532 (bison_SOURCES): this.
10533 Add location.h.
10534 * src/parse-gram.y: Use location_t instead of Bison's.
10535 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
10536 Use location_t instead of ints.
10537
e96c9728
AD
105382002-06-14 Akim Demaille <akim@epita.fr>
10539
10540 * data/bison.simple, data/bison.c++: Be sure to restore the
10541 current #line when returning to the skeleton contents after having
10542 exposed the input file's #line.
10543
75d1fe16
AD
105442002-06-12 Akim Demaille <akim@epita.fr>
10545
10546 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
10547 eager.
10548 * tests/actions.at (Exotic Dollars): New.
10549
6c35d22c
AD
105502002-06-12 Akim Demaille <akim@epita.fr>
10551
10552 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
10553 ['"/] too eagerly.
10554 * tests/input.at (Torturing the Scanner): New.
10555
1d6412ad
AD
105562002-06-11 Akim Demaille <akim@epita.fr>
10557
10558 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
10559 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
10560 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
10561 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
10562 * src/reader.c (reader): Use it.
10563
4cdb01db
AD
105642002-06-11 Akim Demaille <akim@epita.fr>
10565
10566 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
10567 Adjust all callers.
10568 (scanner_last_string_free): New.
10569
44995b2e
AD
105702002-06-11 Akim Demaille <akim@epita.fr>
10571
10572 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
10573 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
10574 (last_string, YY_OBS_FREE): New.
10575 Use them when returning an ID.
10576
e9955c83
AD
105772002-06-11 Akim Demaille <akim@epita.fr>
10578
10579 Have Bison grammars parsed by a Bison grammar.
10580
10581 * src/reader.c, src/reader.h (prologue_augment): New.
10582 * src/reader.c (copy_definition): Remove.
10583
10584 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
10585 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
10586 (grammar_current_rule_prec_set, grammar_current_rule_check)
10587 (grammar_current_rule_symbol_append)
10588 (grammar_current_rule_action_append): Export.
10589 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
10590 (symbol_list_action_append): Remove.
10591 Hook the routines from reader.
10592 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
10593 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
10594
10595 * src/reader.c (read_declarations): Remove, unused.
10596
10597 * src/parse-gram.y: Handle the epilogue.
10598 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
10599 (grammar_start_symbol_set): this.
10600 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
10601 * src/reader.c (readgram): Remove, unused.
10602 (reader): Adjust to insert eoftoken and axiom where appropriate.
10603
10604 * src/reader.c (copy_dollar): Replace with...
10605 * src/scan-gram.h (handle_dollar): this.
10606 * src/parse-gram.y: Remove `%thong'.
10607
10608 * src/reader.c (copy_at): Replace with...
10609 * src/scan-gram.h (handle_at): this.
10610
10611 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
10612 New.
10613
10614 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
10615 time being.
10616
10617 * src/reader.h, src/reader.c (grammar_rule_end): New.
10618
10619 * src/parse.y (current_type, current_class): New.
10620 Implement `%nterm', `%token' support.
10621 Merge `%term' into `%token'.
10622 (string_as_id): New.
10623 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
10624 type name.
10625
10626 * src/parse-gram.y: Be sure to handle properly the beginning of
10627 rules.
10628
10629 * src/parse-gram.y: Handle %type.
10630 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
10631
10632 * src/parse-gram.y: More directives support.
10633 * src/options.c: No longer handle source directives.
10634
10635 * src/parse-gram.y: Fix %output.
10636
10637 * src/parse-gram.y: Handle %union.
10638 Use the prologue locations.
10639 * src/reader.c (parse_union_decl): Remove.
10640
10641 * src/reader.h, src/reader.c (epilogue_set): New.
10642 * src/parse-gram.y: Use it.
10643
10644 * data/bison.simple, data/bison.c++: b4_stype is now either not
10645 defined, then default to int, or to the contents of %union,
10646 without `union' itself.
10647 Adjust.
10648 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
10649
10650 * src/output.c (actions_output): Don't output braces, as they are
10651 already handled by the scanner.
10652
10653 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
10654 characters to themselves.
10655
10656 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
10657 that the epilogue has a proper #line.
10658
10659 * src/parse-gram.y: Handle precedence/associativity.
10660
10661 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
10662 a terminal.
10663 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
10664 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
10665 at all to define terminals that cannot be emitted.
10666
10667 * src/scan-gram.l: Escape M4 characters.
10668
10669 * src/scan-gram.l: Working properly with escapes in user
10670 strings/characters.
10671
10672 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
10673 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
10674 grammar.
10675 Use more modest sizes, as for the time being the parser does not
10676 release memory, and therefore the process swallows a huge amount
10677 of memory.
10678
10679 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
10680 stricter %token grammar.
10681
10682 * src/symtab.h (associativity): Add `undef_assoc'.
10683 (symbol_precedence_set): Do nothing when passed an undef_assoc.
10684 * src/symtab.c (symbol_check_alias_consistence): Adjust.
10685
10686 * tests/regression.at (Invalid %directive): Remove, as it is now
10687 meaningless.
10688 (Invalid inputs): Adjust to the new error messages.
10689 (Token definitions): The new grammar doesn't allow too many
10690 eccentricities.
10691
10692 * src/lex.h, src/lex.c: Remove.
10693 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
10694 (copy_character, copy_string2, copy_string, copy_identifier)
10695 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
10696 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
10697 (parse_action): Remove.
10698 * po/POTFILES.in: Adjust.
10699
2e047461
AD
107002002-06-11 Akim Demaille <akim@epita.fr>
10701
cd05d13c 10702 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
10703 rule's action member: return the action as a string.
10704 Don't require `rule_length' as an argument: compute it.
10705 (grammar_current_rule_symbol_append)
10706 (grammar_current_rule_action_append): New, eved out from
10707 (readgram): here.
10708 Remove `action_flag', `rulelength', unused now.
10709
9af3fbce
AD
107102002-06-11 Akim Demaille <akim@epita.fr>
10711
10712 * src/reader.c (grammar_current_rule_prec_set).
10713 (grammar_current_rule_check): New, eved out from...
10714 (readgram): here.
10715 Remove `xaction', `first_rhs': useless.
10716 * tests/input.at (Type clashes): New.
10717 * tests/existing.at (GNU Cim Grammar): Adjust.
10718
1485e106
AD
107192002-06-11 Akim Demaille <akim@epita.fr>
10720
10721 * src/reader.c (grammar_midrule_action): New, Eved out from
10722 (readgram): here.
10723
da4160c3
AD
107242002-06-11 Akim Demaille <akim@epita.fr>
10725
10726 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
10727 New.
10728 (readgram): Use them as replacement of inlined code, crule and
10729 crule1.
10730
f6d0f937
AD
107312002-06-11 Akim Demaille <akim@epita.fr>
10732
10733 * src/reader.c (grammar_end, grammar_symbol_append): New.
10734 (readgram): Use them.
10735 Make the use of `p' as local as possible.
10736
69078d4b
AD
107372002-06-10 Akim Demaille <akim@epita.fr>
10738
10739 GCJ's parser requires the tokens to be defined before the prologue.
10740
10741 * data/bison.simple: Output the token definition before the user's
10742 prologue.
10743 * tests/regression.at (Braces parsing, Duplicate string)
10744 (Mixing %token styles): Check the output from bison.
10745 (Early token definitions): New.
10746
5e424082
AD
107472002-06-10 Akim Demaille <akim@epita.fr>
10748
10749 * src/symtab.c (symbol_user_token_number_set): Don't complain when
10750 assigning twice the same user number to a token, so that we can
10751 use it in...
10752 * src/lex.c (lex): here.
10753 Also use `symbol_class_set' instead of hand written code.
10754 * src/reader.c (parse_assoc_decl): Likewise.
10755
44536b35
AD
107562002-06-10 Akim Demaille <akim@epita.fr>
10757
10758 * src/symtab.c, src/symtab.c (symbol_class_set)
10759 (symbol_user_token_number_set): New.
10760 * src/reader.c (parse_token_decl): Use them.
10761 Use a switch instead of ifs.
10762 Use a single argument.
10763
8b9f2372
AD
107642002-06-10 Akim Demaille <akim@epita.fr>
10765
10766 Remove `%thong' support as it is undocumented, unused, duplicates
10767 `%token's job, and creates useless e-mail traffic with people who
10768 want to know what it is, why it is undocumented, unused, and
10769 duplicates `%token's job.
10770
10771 * src/reader.c (parse_thong_decl): Remove.
10772 * src/options.c (option_table): Remove "thong".
10773 * src/lex.h (tok_thong): Remove.
10774
3ae2b51f
AD
107752002-06-10 Akim Demaille <akim@epita.fr>
10776
10777 * src/symtab.c, src/symtab.c (symbol_type_set)
10778 (symbol_precedence_set): New.
10779 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
10780 (value_components_used): Remove, unused.
10781
2f1afb73
AD
107822002-06-09 Akim Demaille <akim@epita.fr>
10783
10784 Move symbols handling code out of the reader.
10785
10786 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
10787 (axiom): Move to...
10788 * src/symtab.h, src/symtab.c: here.
10789
10790 * src/gram.c (start_symbol): Remove: use startsymbol->number.
10791 * src/reader.c (startval): Rename as...
10792 * src/symtab.h, src/symtab.c (startsymbol): this.
10793 * src/reader.c: Adjust.
10794
10795 * src/reader.c (symbol_check_defined, symbol_make_alias)
10796 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
10797 (token_translations_init)
10798 Move to...
10799 * src/symtab.c: here.
10800 * src/reader.c (packsymbols): Move to...
10801 * src/symtab.h, src/symtab.c (symbols_pack): here.
10802 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
10803 argument.
10804
e9bca3ad
AD
108052002-06-03 Akim Demaille <akim@epita.fr>
10806
10807 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
10808 then statements.
10809
86eff183
AD
108102002-06-03 Akim Demaille <akim@epita.fr>
10811
10812 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
10813 structs with non literals.
10814 * src/scan-skel.l: never-interactive.
10815 * src/conflicts.c (enum conflict_resolution_e): No trailing
10816 comma.
10817 * src/getargs.c (usage): Split long literal strings.
10818 Reported by Hans Aberg.
10819
717be197
AD
108202002-05-28 Akim Demaille <akim@epita.fr>
10821
10822 * data/bison.c++: Use C++ ostreams.
10823 (cdebug_): New member.
10824
670ddffd
AD
108252002-05-28 Akim Demaille <akim@epita.fr>
10826
10827 * src/output.c (output_skeleton): Be sure to allocate enough room
10828 for `/' _and_ for `\0' in full_skeleton.
10829
769b430f
AD
108302002-05-28 Akim Demaille <akim@epita.fr>
10831
10832 * data/bison.c++: Catch up with bison.simple:
10833 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10834 and Paul Eggert <eggert@twinsun.com>: `error' handing.
10835 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
10836 and popping traces.
10837
7067cb36
PH
108382002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10839
10840 * src/output.c (output_skeleton): Put an explicit path in front of
10841 the skeleton file name, rather than relying on the -I directory,
10842 to partially alleviate effects of having a skeleton file lying around
10843 in the current directory.
769b430f 10844
4a713ec2
PH
108452002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10846
769b430f 10847 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
10848 obstack_printf should be obstack_fgrow1.
10849
b408954b
AD
108502002-05-26 Akim Demaille <akim@epita.fr>
10851
10852 * src/state.h (state_t): `solved_conflicts' is a new member.
10853 * src/LR0.c (new_state): Set it to 0.
10854 * src/conflicts.h, src/conflicts.c (print_conflicts)
10855 (free_conflicts, solve_conflicts): Rename as...
10856 (conflicts_print, conflicts_free, conflicts_solve): these.
10857 Adjust callers.
10858 * src/conflicts.c (enum conflict_resolution_e)
10859 (solved_conflicts_obstack): New, used by...
10860 (log_resolution): this.
10861 Adjust to attach the conflict resolution to each state.
10862 Complete the description with the precedence/associativity
10863 information.
10864 (resolve_sr_conflict): Adjust.
10865 * src/print.c (print_state): Output its solved_conflicts.
10866 * tests/conflicts.at (Unresolved SR Conflicts)
10867 (Solved SR Conflicts): Exercise --report=all.
10868
a49aecd5
AD
108692002-05-26 Akim Demaille <akim@epita.fr>
10870
10871 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
10872 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
10873 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
10874 (token_number_t, item_number_as_token_number)
10875 (token_number_as_item_number, muscle_insert_token_number_table):
10876 Rename as...
10877 (symbol_number_t, item_number_as_symbol_number)
10878 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
10879 these, since it is more appropriate.
10880
5504898e
AD
108812002-05-26 Akim Demaille <akim@epita.fr>
10882
10883 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
10884 `Error:' lines.
10885 * data/bison.simple (yystos) [YYDEBUG]: New.
10886 (yyparse) [YYDEBUG]: Display the symbols which are popped during
10887 error recovery.
10888 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
10889
ec3bc396
AD
108902002-05-25 Akim Demaille <akim@epita.fr>
10891
10892 * doc/bison.texinfo (Debugging): Split into...
10893 (Tracing): this new section, its former contents, and...
10894 (Understanding): this new section.
10895 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
10896 by...
10897 (report_flag): this.
10898 Adjust all dependencies.
10899 (report_args, report_types, report_argmatch): New.
10900 (usage, getargs): Report/support -r, --report.
10901 * src/options.h
10902 (struct option_table_struct): Rename as..,
10903 (struct option_table_s): this.
10904 Rename the `set_flag' member to `flag' to match with getopt_long's
10905 struct.
10906 * src/options.c (option_table): Split verbose into an entry for
10907 %verbose, and another for --verbose.
10908 Support --report/-r, so remove -r from the obsolete --raw.
10909 * src/print.c: Attach full item sets and lookaheads reports to
10910 report_flag instead of trace_flag.
10911 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
10912
78df8250
PE
109132002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10914 and Paul Eggert <eggert@twinsun.com>
769b430f 10915
78df8250
PE
10916 * data/bison.simple (yyparse): Correct error handling to conform to
10917 POSIX and yacc. Specifically, after syntax error is discovered,
10918 do not reduce further before shifting the error token.
10919 Clean up the code a bit by removing the labels yyerrdefault,
10920 yyerrhandle, yyerrpop.
10921 * NEWS: Document the above.
10922
c0c9ea05
PH
109232002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10924
10925 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
10926 type; it isn't always big enough, since it doesn't necessarily
10927 include non-terminals.
769b430f 10928 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
10929 the latter can be removed.
10930 (yy_token_number_type): Remove, only one use.
10931 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
10932 don't use TokenNumberType as element type.
769b430f 10933
c0c9ea05
PH
10934 * tests/regression.at: Modify expected output to agree with change
10935 to yyr1 and yytranslate.
769b430f 10936
6390a83f
FK
109372002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
10938
10939 * src/reader.c (parse_action): Use copy_character instead of
10940 obstack_1grow.
10941
db7c8e9a
AD
109422002-05-13 Akim Demaille <akim@epita.fr>
10943
10944 * tests/regression.at (Token definitions): Prototype yylex and
10945 yyerror.
10946
fcc61800
PH
109472002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10948
158c687b 10949 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
10950 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
10951 32-bit arithmetic.
10952 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
10953
5683e9b2
AD
109542002-05-07 Akim Demaille <akim@epita.fr>
10955
10956 * tests/synclines.at: Be sure to prototype yylex and yyerror to
10957 avoid GCC warnings.
10958
0c2d3f4c
AD
109592002-05-07 Akim Demaille <akim@epita.fr>
10960
10961 Kill GCC warnings.
10962
10963 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
10964 over the RHS of each rule.
10965 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
10966 * src/state.h (state_t): Member `nitems' is unsigned short.
10967 * src/LR0.c (get_state): Adjust.
10968 * src/reader.c (packgram): Likewise.
10969 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
10970 `Type'.
10971 (muscle_insert_int_table): Remove, unused.
10972 (prepare_rules): Remove `max'.
10973
1565b720
AD
109742002-05-06 Akim Demaille <akim@epita.fr>
10975
10976 * src/closure.c (print_firsts): Display of the symbol tags.
10977 (bitmatrix_print): Move to...
10978 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
10979 here.
10980 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
10981
cfaee611
AD
109822002-05-06 Akim Demaille <akim@epita.fr>
10983
10984 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
10985 hash_do_for_each.
10986
458be8e0
AD
109872002-05-06 Akim Demaille <akim@epita.fr>
10988
10989 * src/LR0.c (new_state, get_state): Instead of using the global
10990 `kernel_size' and `kernel_base', have two new arguments:
10991 `core_size' and `core'.
10992 Adjust callers.
10993
a900a624
AD
109942002-05-06 Akim Demaille <akim@epita.fr>
10995
10996 * src/reader.c (packgram): No longer end `ritem' with a 0
10997 sentinel: it is not used.
10998
d4e7d3a1
AD
109992002-05-05 Akim Demaille <akim@epita.fr>
11000
11001 New experimental feature: display the lookaheads in the report and
11002 graph.
11003
11004 * src/print (print_core): When --trace-flag, display the rules
11005 lookaheads.
11006 * src/print_graph.c (print_core): Likewise.
11007 Swap the arguments.
11008 Adjust caller.
11009
39ceb25b
AD
110102002-05-05 Akim Demaille <akim@epita.fr>
11011
11012 * tests/torture.at (Many lookaheads): New test.
11013
5372019f
AD
110142002-05-05 Akim Demaille <akim@epita.fr>
11015
11016 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
11017 (GENERATE_MUSCLE_INSERT_TABLE): this.
11018 (output_int_table, output_unsigned_int_table, output_short_table)
11019 (output_token_number_table, output_item_number_table): Replace with...
11020 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
11021 (muscle_insert_short_table, muscle_insert_token_number_table)
11022 (muscle_insert_item_number_table): these.
11023 Adjust all callers.
11024 (prepare_tokens): Don't free `translations', since...
11025 * src/reader.h, src/reader.c (grammar_free): do it.
11026 Move to...
11027 * src/gram.h, src/gram.c (grammar_free): here.
11028 * data/bison.simple, data/bison.c++: b4_token_number_max is now
11029 b4_translate_max.
11030
5df5f6d5
AD
110312002-05-05 Akim Demaille <akim@epita.fr>
11032
11033 * src/output.c (output_unsigned_int_table): New.
11034 (prepare_rules): `i' is unsigned.
11035 `prhs', `rline', `r2' are unsigned int.
11036 Rename muscle `rhs_number_max' as `rhs_max'.
11037 Output muscles `prhs_max', `rline_max', and `r2_max'.
11038 Free rline and r1.
11039 * data/bison.simple, data/bison.c++: Adjust to use these muscles
11040 to compute types instead of constant types.
11041 * tests/regression.at (Web2c Actions): Adjust.
11042
b87f8b21
AD
110432002-05-04 Akim Demaille <akim@epita.fr>
11044
11045 * src/symtab.h (SALIAS, SUNDEF): Rename as...
11046 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
11047 Adjust dependencies.
11048 * src/output.c (token_definitions_output): Be sure not to output a
11049 `#define 'a'' when fed with `%token 'a' "a"'.
11050 * tests/regression.at (Token definitions): New.
11051
8bb936e4
PE
110522002-05-03 Paul Eggert <eggert@twinsun.com>
11053
11054 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
11055 for K&R C.
11056
110572002-05-03 gettextize <bug-gnu-gettext@gnu.org>
11058
11059 * Makefile.am (SUBDIRS): Remove intl.
11060 (EXTRA_DIST): Add config/config.rpath.
11061
53c71a12
AD
110622002-05-03 Akim Demaille <akim@epita.fr>
11063
11064 * data/bison.simple (m4_if): Don't output empty enums.
11065 And actually, output valid enum definitions :(.
11066
289dd0cf
AD
110672002-05-03 Akim Demaille <akim@epita.fr>
11068
11069 * configure.bat: Remove, completely obsolete.
11070 * Makefile.am (EXTRA_DIST): Adjust.
11071 Don't distribute config.rpath...
11072 * config/Makefile.am (EXTRA_DIST): Do it.
11073
db85e524
AD
110742002-05-03 Akim Demaille <akim@epita.fr>
11075
11076 * configure.in (GETTEXT_VERSION): New.
11077 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
11078
83ccf991
AD
110792002-05-03 Akim Demaille <akim@epita.fr>
11080
11081 * data/bison.simple (b4_token_enum): New.
11082 (b4_token_defines): Use it to output tokens both as #define and
11083 enums.
11084 Suggested by Paul Eggert.
11085 * src/output.c (token_definitions_output): Don't output spurious
11086 white spaces.
11087
1f418995
AD
110882002-05-03 Akim Demaille <akim@epita.fr>
11089
11090 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
11091
45119f04
RA
110922002-05-02 Robert Anisko <robert@lrde.epita.fr>
11093
11094 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
11095 Update the stack class, give a try to deque as the default container.
11096
b2d52318
AD
110972002-05-02 Akim Demaille <akim@epita.fr>
11098
11099 * data/bison.simple (yyparse): Do not implement @$ = @1.
11100 (YYLLOC_DEFAULT): Adjust to do it.
11101 * doc/bison.texinfo (Location Default Action): Fix.
11102
3a8b4109
AD
111032002-05-02 Akim Demaille <akim@epita.fr>
11104
11105 * src/reader.c (parse_braces): Merge into...
11106 (parse_action): this.
11107
84614e13
AD
111082002-05-02 Akim Demaille <akim@epita.fr>
11109
11110 * configure.in (ALL_LINGUAS): Remove.
11111 * po/LINGUAS, hr.po: New.
11112
fdbcd8e2
AD
111132002-05-02 Akim Demaille <akim@epita.fr>
11114
11115 Remove the so called hairy (semantic) parsers.
11116
11117 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
11118 * src/gram.h, src/gram.c (semantic_parser): Remove.
11119 (rule_t): Remove the guard and guard_line members.
11120 * src/lex.h (token_t): remove tok_guard.
11121 * src/options.c (option_table): Remove %guard and %semantic_parser
11122 support.
11123 * src/output.c, src/output.h (guards_output): Remove.
11124 (prepare): Adjust.
11125 (token_definitions_output): Don't output the `T'
11126 tokens (???).
11127 (output_skeleton): Don't output the guards.
11128 * src/files.c, src/files.c (attrsfile): Remove.
11129 * src/reader.c (symbol_list): Remove the guard and guard_line
11130 members.
11131 Adjust dependencies.
11132 (parse_guard): Remove.
11133 * data/bison.hairy: Remove.
11134 * doc/bison.texinfo (Environment Variables): Remove occurrences of
11135 BISON_HAIRY.
11136
82b6cb3f
AD
111372002-05-02 Akim Demaille <akim@epita.fr>
11138
11139 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
11140 (parse_guard): Rename the formal argument `stack_offset' as
11141 `rule_length', which is more readable.
11142 Adjust callers.
11143 (copy_at, copy_dollar): Instead of outputting the hard coded
11144 values of $$, $n and so forth, output invocation to b4_lhs_value,
11145 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
11146 Note: this patch partially drops `semantic-parser' support: it
11147 always does `rule_length - n', where semantic parsers ought to
11148 always use `-n'.
82b6cb3f
AD
11149 * data/bison.simple, data/bison.c++ (b4_lhs_value)
11150 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
11151
6cbfbcc5
AD
111522002-05-02 Akim Demaille <akim@epita.fr>
11153
11154 * configure.in (AC_INIT): Bump to 1.49b.
11155 (AM_INIT_AUTOMAKE): Short invocation.
11156
b8548114
AD
111572002-05-02 Akim Demaille <akim@epita.fr>
11158
11159 Version 1.49a.
11160
c20cd1fa
AD
111612002-05-01 Akim Demaille <akim@epita.fr>
11162
11163 * src/skeleton.h: Remove.
11164
8a9566d4
AD
111652002-05-01 Akim Demaille <akim@epita.fr>
11166
11167 * src/skeleton.h: Fix the #endif.
11168 Reported by Magnus Fromreide.
11169
8c6d399a
PE
111702002-04-26 Paul Eggert <eggert@twinsun.com>
11171
11172 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
11173 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 11174 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 11175
2b7ed18a
RA
111762002-04-25 Robert Anisko <robert@lrde.epita.fr>
11177
11178 * src/scan-skel.l: Postprocess quadrigraphs.
11179
11180 * src/reader.c (copy_character): New function, used to output
11181 single characters while replacing `[' and `]' with quadrigraphs, to
11182 avoid troubles with M4 quotes.
11183 (copy_comment): Output characters with copy_character.
11184 (read_additionnal_code): Likewise.
11185 (copy_string2): Likewise.
11186 (copy_definition): Likewise.
11187
11188 * tests/calc.at: Exercise M4 quoting.
11189
34a89c50
AD
111902002-04-25 Akim Demaille <akim@epita.fr>
11191
11192 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
11193 between `!' and the command.
11194 Reported by Paul Eggert.
11195
0dd1580a
RA
111962002-04-24 Robert Anisko <robert@lrde.epita.fr>
11197
11198 * tests/calc.at: Exercise prologue splitting.
11199
11200 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
11201 `b4_post_prologue' instead of `b4_prologue'.
11202
11203 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
11204 muscles.
11205 (output): Free pre_prologue_obstack and post_prologue_obstack.
11206 * src/files.h, src/files.c (attrs_obstack): Remove.
11207 (pre_prologue_obstack, post_prologue_obstack): New.
11208 * src/reader.c (copy_definition): Add a parameter to specify the
11209 obstack to fill, instead of using attrs_obstack unconditionally.
11210 (read_declarations): Pass pre_prologue_obstack to copy_definition if
11211 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
11212
83c1796f
PE
112132002-04-23 Paul Eggert <eggert@twinsun.com>
11214
11215 * data/bison.simple: Remove unnecessary commentary and white
11216 space differences from 1_29-branch.
11217 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
11218
11219 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
11220 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
11221 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
11222 constructors or destructors.
11223
11224 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
11225
1207eeac
AD
112262002-04-23 Akim Demaille <akim@epita.fr>
11227
11228 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
11229 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
11230 location with columns.
11231 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
11232 All reported by Paul Eggert.
11233
78ab8f67
AD
112342002-04-22 Akim Demaille <akim@epita.fr>
11235
11236 * src/reduce.c (dump_grammar): Move to...
11237 * src/gram.h, src/gram.c (grammar_dump): here.
11238 Be sure to separate long item numbers.
11239 Don't read the members of a rule's prec if its nil.
11240
133c20e2
AD
112412002-04-22 Akim Demaille <akim@epita.fr>
11242
11243 * src/output.c (table_size, table_grow): New.
11244 (MAXTABLE): Remove, replace uses with table_size.
11245 (pack_vector): Instead of dying when the table is too big, grow it.
11246
9515e8a7
AD
112472002-04-22 Akim Demaille <akim@epita.fr>
11248
11249 * data/bison.simple (yyr1): Its type is that of a token number.
11250 * data/bison.c++ (r1_): Likewise.
11251 * tests/regression.at (Web2c Actions): Adjust.
11252
23c5a174
AD
112532002-04-22 Akim Demaille <akim@epita.fr>
11254
11255 * src/reader.c (token_translations_init): 256 is now the default
11256 value for the error token, i.e., it will be assigned another
11257 number if the user assigned 256 to one of her tokens.
11258 (reader): Don't force 256 to error.
11259 * doc/bison.texinfo (Symbols): Adjust.
11260 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
11261 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
11262 etc. instead of 10, 20, 30 (which was used to `jump' over error
11263 (256) and undefined (2)).
11264
5fbb0954
AD
112652002-04-22 Akim Demaille <akim@epita.fr>
11266
11267 Propagate more token_number_t.
11268
11269 * src/gram.h (token_number_as_item_number)
11270 (item_number_as_token_number): New.
11271 * src/output.c (GENERATE_OUTPUT_TABLE): New.
11272 Use it to create output_item_number_table and
11273 output_token_number_table.
11274 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
11275 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
11276 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
11277 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
11278
4f940944
AD
112792002-04-22 Akim Demaille <akim@epita.fr>
11280
11281 * src/output.h, src/output.c (get_lines_number): Remove.
11282
3ded9a63
AD
112832002-04-19 Akim Demaille <akim@epita.fr>
11284
11285 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
11286 as Lex/Flex'.
11287 (Debugging): More details about enabling the debugging features.
11288 (Table of Symbols): Describe $$, $n, @$, and @n.
11289 Suggested by Tim Josling.
11290
e0c471a9
AD
112912002-04-19 Akim Demaille <akim@epita.fr>
11292
11293 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
11294
fecc10cd
AD
112952002-04-10 Akim Demaille <akim@epita.fr>
11296
11297 * src/system.h: Rely on HAVE_LIMITS_H.
11298 Suggested by Paul Eggert.
11299
51dec47b
AD
113002002-04-09 Akim Demaille <akim@epita.fr>
11301
11302 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
11303 full stderr, and strip it according to the bison options, instead
11304 of composing the error message from different bits.
11305 This makes it easier to check for several error messages.
11306 Adjust all the invocations.
11307 Add an invocation exercising the error token.
11308 Add an invocation demonstrating a stupid error message.
11309 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
11310 Adjust the tests.
11311 Error message are for stderr, not stdout.
11312
007a50a4
AD
113132002-04-09 Akim Demaille <akim@epita.fr>
11314
11315 * src/gram.h, src/gram.c (error_token_number): Remove, use
11316 errtoken->number.
11317 * src/reader.c (reader): Don't specify the user token number (2)
11318 for $undefined, as it uselessly prevents using it.
11319 * src/gram.h (token_number_t): Move to...
11320 * src/symtab.h: here.
11321 (state_t.number): Is a token_number_t.
11322 * src/print.c, src/reader.c: Use undeftoken->number instead of
11323 hard coded 2.
11324 (Even though this 2 is not the same as above: the number of the
11325 undeftoken remains being 2, it is its user token number which
11326 might not be 2).
11327 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
11328 `user_token_number_max'.
11329 Output `undef_token_number'.
11330 * data/bison.simple, data/bison.c++: Use them.
11331 Be sure to map invalid yylex return values to
11332 `undef_token_number'. This saves us from gratuitous SEGV.
11333
11334 * tests/conflicts.at (Solved SR Conflicts)
11335 (Unresolved SR Conflicts): Adjust.
11336 * tests/regression.at (Web2c Actions): Adjust.
11337
06446ccf
AD
113382002-04-08 Akim Demaille <akim@epita.fr>
11339
11340 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
11341 Adding #line.
11342 Remove the duplicate `typedefs'.
11343 (RhsNumberType): Fix the declaration and various other typos.
11344 Use __ofile__.
11345 * data/bison.simple: Use __ofile__.
11346 * src/scan-skel.l: Handle __ofile__.
11347
62a3e4f0
AD
113482002-04-08 Akim Demaille <akim@epita.fr>
11349
11350 * src/gram.h (item_number_t): New, the type of item numbers in
11351 RITEM. Note that it must be able to code symbol numbers as
11352 positive number, and the negation of rule numbers as negative
11353 numbers.
11354 Adjust all dependencies (pretty many).
11355 * src/reduce.c (rule): Remove this `short *' pointer: use
11356 item_number_t.
11357 * src/system.h (MINSHORT, MAXSHORT): Remove.
11358 Include `limits.h'.
11359 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
11360 (shortcpy): Remove.
11361 (MAXTABLE): Move to...
11362 * src/output.c (MAXTABLE): here.
11363 (prepare_rules): Use output_int_table to output rhs.
11364 * data/bison.simple, data/bison.c++: Adjust.
11365 * tests/torture.at (Big triangle): Move the limit from 254 to
11366 500.
11367 * tests/regression.at (Web2c Actions): Ajust.
11368
11369 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
11370 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
11371 passes, but produces negative #line number, once fixed, GCC is
11372 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
11373 C), it passes.
11374 * src/state.h (state_h): Code input lines on ints, not shorts.
11375
bb88b0fc
AD
113762002-04-08 Akim Demaille <akim@epita.fr>
11377
11378 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
11379 and then the grammar.
11380
9a636f47
AD
113812002-04-08 Akim Demaille <akim@epita.fr>
11382
11383 * src/system.h: No longer using strndup.
11384
680e8701
AD
113852002-04-07 Akim Demaille <akim@epita.fr>
11386
11387 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
11388 * src/output.c (output_table_data): Return the longest number.
11389 (prepare_tokens): Output `token_number_max').
11390 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
11391 New.
11392 Use them to define yy_token_number_type/TokenNumberType.
11393 Use this type for yytranslate.
11394 * tests/torture.at (Big triangle): Push the limit from 124 to
11395 253.
11396 * tests/regression.at (Web2c Actions): Adjust.
11397
817e9f41
AD
113982002-04-07 Akim Demaille <akim@epita.fr>
11399
11400 * tests/torture.at (Big triangle): New.
11401 (GNU AWK Grammar, GNU Cim Grammar): Move to...
11402 * tests/existing.at: here.
11403
5123689b
AD
114042002-04-07 Akim Demaille <akim@epita.fr>
11405
11406 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
11407 nritems.
11408 Adjust dependencies.
11409
f3849179
AD
114102002-04-07 Akim Demaille <akim@epita.fr>
11411
11412 * src/reader.c: Normalize increments to prefix form.
11413
bd02036a
AD
114142002-04-07 Akim Demaille <akim@epita.fr>
11415
11416 * src/reader.c, symtab.c: Remove debugging code.
11417
db8837cb
AD
114182002-04-07 Akim Demaille <akim@epita.fr>
11419
11420 Rename all the `bucket's as `symbol_t'.
11421
11422 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
11423 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
11424 * src/symtab.c, src/symtab.h (bucket): Rename as...
11425 (symbol_t): this.
11426 (symbol_list_new, bucket_check_defined, bucket_make_alias)
11427 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
11428 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
11429 (buckets_new, buckets_free, buckets_do): Rename as...
11430 (symbol_list_new, symbol_check_defined, symbol_make_alias)
11431 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
11432 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
11433 (symbols_new, symbols_free, symbols_do): these.
11434
72a23c97
AD
114352002-04-07 Akim Demaille <akim@epita.fr>
11436
11437 Use lib/hash for the symbol table.
11438
11439 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
11440 EOF.
11441 * src/lex.c (lex): Set the `number' member of new terminals.
11442 * src/reader.c (bucket_check_defined, bucket_make_alias)
11443 (bucket_check_alias_consistence, bucket_translation): New.
11444 (reader, grammar_free, readgram, token_translations_init)
11445 (packsymbols): Adjust.
11446 (reader): Number the predefined tokens.
11447 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
11448 for predefined tokens.
11449 * src/symtab.h (bucket): Remove all the hash table related
11450 members.
11451 * src/symtab.c (symtab): Replace by...
11452 (bucket_table): this.
11453 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
11454 (buckets_new, buckets_do): New.
11455
280a38c3
AD
114562002-04-07 Akim Demaille <akim@epita.fr>
11457
11458 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
11459 (start_symbol, max_user_token_number, semantic_parser)
11460 (error_token_number): Initialize.
11461 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
11462 Initialize.
11463 (reader): Don't.
11464 (errtoken, eoftoken, undeftoken, axiom): Extern.
11465
03b31c0c
AD
114662002-04-07 Akim Demaille <akim@epita.fr>
11467
11468 * src/gram.h (rule_s): prec and precsym are now pointers
11469 to the bucket giving the priority/associativity.
11470 Member `associativity' removed: useless.
11471 * src/reduce.c, src/conflicts.c: Adjust.
11472
8b3df748
AD
114732002-04-07 Akim Demaille <akim@epita.fr>
11474
11475 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
11476 Properly escape the symbols' TAG when outputting them.
11477
e601aa1d
AD
114782002-04-07 Akim Demaille <akim@epita.fr>
11479
11480 * src/lalr.h (LA): Is a bitsetv, not bitset*.
11481
b0299a2e
AD
114822002-04-07 Akim Demaille <akim@epita.fr>
11483
11484 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
11485 (LArule): this, which is an array to rule_t*.
11486 * src/print.c, src/conflicts.c: Adjust.
11487
d7e1f00c
AD
114882002-04-07 Akim Demaille <akim@epita.fr>
11489
11490 * src/gram.h (rule_t): Rename `number' as `user_number'.
11491 `number' is a new member.
11492 Adjust dependencies.
11493 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
11494
cc9305dd
AD
114952002-04-07 Akim Demaille <akim@epita.fr>
11496
11497 As a result of the previous patch, it is no longer needed
11498 to reorder ritem itself.
11499
11500 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
11501
b0940840
AD
115022002-04-07 Akim Demaille <akim@epita.fr>
11503
11504 Be sure never to walk through RITEMS, but use only data related to
11505 the rules themselves. RITEMS should be banished.
11506
11507 * src/output.c (output_token_translations): Rename as...
11508 (prepare_tokens): this.
11509 In addition to `translate', prepare the muscles `tname' and
11510 `toknum', which were handled by...
11511 (output_rule_data): this.
11512 Remove, and move the remainder of its outputs into...
11513 (prepare_rules): this new routines, which also merges content from
11514 (output_gram): this.
11515 (prepare_rules): Be sure never to walk through RITEMS.
11516 (output_stos): Rename as...
11517 (prepare_stos): this.
11518 (output): Always invoke prepare_states, after all, just don't use it
11519 in the output if you don't need it.
11520
643a5994
AD
115212002-04-07 Akim Demaille <akim@epita.fr>
11522
11523 * src/LR0.c (new_state): Display `nstates' as the name of the
11524 newly created state.
11525 Adjust to initialize first_state and last_state if needed.
11526 Be sure to distinguish the initial from the final state.
11527 (new_states): Create the itemset of the initial state, and use
11528 new_state.
11529 * src/closure.c (closure): Now that the initial state has its
11530 items properly set, there is no need for a special case when
11531 creating `ruleset'.
11532
11533 As a result, now the rule 0, reducing to $axiom, is visible in the
11534 outputs. Adjust the test suite.
11535
11536 * tests/conflicts.at (Solved SR Conflicts)
11537 (Unresolved SR Conflicts): Adjust.
11538 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
11539 * tests/conflicts.at (S/R in initial): New.
11540
b4c4ccc2
AD
115412002-04-07 Akim Demaille <akim@epita.fr>
11542
11543 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
11544 the RHS of the rules.
11545 * src/output.c (output_gram): Likewise.
11546
bba97eb2
AD
115472002-04-07 Akim Demaille <akim@epita.fr>
11548
11549 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
11550 bucket.
11551 Adjust all dependencies.
11552 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
11553 `number' of the buckets too.
11554 * src/gram.h: Include `symtab.h'.
11555 (associativity): Move to...
11556 * src/symtab.h: here.
11557 No longer include `gram.h'.
11558
c3b407f4
AD
115592002-04-07 Akim Demaille <akim@epita.fr>
11560
11561 * src/gram.h, src/gram.c (rules_rhs_length): New.
11562 (ritem_longest_rhs): Use it.
11563 * src/gram.h (rule_t): `number' is a new member.
11564 * src/reader.c (packgram): Set it.
11565 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
11566 the end of `rules', and count them out of `nrules'.
11567 (reduce_output, dump_grammar): Adjust.
11568 * src/print.c (print_grammar): It is no longer needed to check for
11569 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
11570 * tests/reduce.at (Reduced Automaton): New test.
11571
11652ab3
AD
115722002-04-07 Akim Demaille <akim@epita.fr>
11573
11574 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
11575 lacking `+ 1' to nrules, Bison reported as useless a token if it
11576 was used solely to set the precedence of the last rule...
11577
26b23c1a
AD
115782002-04-07 Akim Demaille <akim@epita.fr>
11579
11580 * data/bison.c++, data/bison.simple: Don't output the current file
11581 name in #line, to avoid useless diffs between two identical
11582 outputs under different names.
11583
18bcecb0
AD
115842002-04-07 Akim Demaille <akim@epita.fr>
11585
11586 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
11587 Normalize loops to using `< nrules + 1', not `<= nrules'.
11588
fa770c86
AD
115892002-04-07 Akim Demaille <akim@epita.fr>
11590
11591 * TODO: Update.
11592
d9b739c3
AD
115932002-04-07 Akim Demaille <akim@epita.fr>
11594
11595 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
11596 bucket.value as bucket.number.
11597
99013900
AD
115982002-04-07 Akim Demaille <akim@epita.fr>
11599
11600 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
11601 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
11602 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
11603 RHS, instead of being an index in RITEMS.
11604
e966383b
PE
116052002-04-04 Paul Eggert <eggert@twinsun.com>
11606
11607 * doc/bison.texinfo: Update copyright date.
11608 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
11609 (Symbols): Warn about running Bison in one character set,
11610 but compiling and/or running in an incompatible one.
11611 Warn about character code 256, too.
11612
116132002-04-03 Paul Eggert <eggert@twinsun.com>
11614
11615 * src/bison.data (YYSTACK_ALLOC): Depend on whether
11616 YYERROR_VERBOSE is nonzero, not whether it is defined.
11617
11618 Merge changes from bison-1_29-branch.
c307773e 11619
8d6c48b9
PE
116202002-03-20 Paul Eggert <eggert@twinsun.com>
11621
11622 Merge fixes from Debian bison_1.34-1.diff.
11623
11624 * configure.in (AC_PREREQ): 2.53.
11625
e53c6322
AD
116262002-03-20 Akim Demaille <akim@epita.fr>
11627
11628 * src/conflicts.c (log_resolution): Argument `resolution' is const.
11629
9ffbeca7
PE
116302002-03-19 Paul Eggert <eggert@twinsun.com>
11631
21db0b2a
PE
11632 * src/bison.simple (YYCOPY): New macro.
11633 (YYSTACK_RELOCATE): Use it.
11634 Remove Type arg; no longer needed. All callers changed.
11635 (yymemcpy): Remove; no longer needed.
11636
9ffbeca7
PE
11637 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
11638 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
11639
642cb8f8
AD
116402002-03-19 Akim Demaille <akim@epita.fr>
11641
11642 Test and fix the #line outputs.
11643
11644 * tests/atlocal.at (GCC): New.
11645 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
0ffd4fd1 11646 (Prologue synch line, %union synch line, Postprologue synch line)
642cb8f8
AD
11647 (Action synch line, Epilogue synch line): New tests.
11648 * src/reader.c (parse_union_decl): Define the muscle stype_line.
11649 * data/bison.simple, data/bison.c++: Use it.
11650
3c31a486
AD
116512002-03-19 Akim Demaille <akim@epita.fr>
11652
11653 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
11654 (Solved SR Conflicts, %expect not enough, %expect right)
11655 (%expect too much): Move to...
11656 * tests/conflicts.at: this new file.
11657
0d8bed56
AD
116582002-03-19 Akim Demaille <akim@epita.fr>
11659
11660 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
11661 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
11662 that we can move to enums for instance.
11663 * src/output.c (token_definitions_output): Output a list of
11664 `token-name, token-number' instead of the #define.
11665 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
11666
9208d17f
AD
116672002-03-14 Akim Demaille <akim@epita.fr>
11668
11669 Use Gettext 0.11.1.
11670
af27eacb
RA
116712002-03-09 Robert Anisko <robert@lrde.epita.fr>
11672
11673 * data/bison.c++: Make the user able to add members to the generated
11674 parser by subclassing.
11675
9101a310
RA
116762002-03-05 Robert Anisko <robert@lrde.epita.fr>
11677
11678 * src/reader.c (read_additionnal_code): `c' should be an integer, not
11679 a character.
11680 Reported by Nicolas Tisserand and Nicolas Burrus.
11681
fff9bf0b
RA
116822002-03-04 Robert Anisko <robert@lrde.epita.fr>
11683
11684 * src/reader.c: Warn about lacking semi-colons, do not complain.
11685
64dba31e
RA
116862002-03-04 Robert Anisko <robert@lrde.epita.fr>
11687
11688 * data/bison.c++: Remove a debug line.
11689
374f5a14
RA
116902002-03-04 Robert Anisko <robert@lrde.epita.fr>
11691
11692 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
11693 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
11694 provide a default implementation.
11695
bfcf1f3a
AD
116962002-03-04 Akim Demaille <akim@epita.fr>
11697
11698 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
11699 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
11700 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
11701 * tests/semantic.at (Parsing Guards): Similarly.
11702 * src/reader.at (readgram): Complain if the last rule is not ended
11703 with a semi-colon.
11704
65ccf9fc
AD
117052002-03-04 Akim Demaille <akim@epita.fr>
11706
11707 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
11708 * src/closure.c: here.
11709 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
11710 RTC.
11711 * src/warshall.h, src/warshall.c: Remove.
11712 * tests/sets.at (Broken Closure): Adjust.
11713
d0039cbc
AD
117142002-03-04 Akim Demaille <akim@epita.fr>
11715
11716 * src/output.c (output_skeleton): tempdir is const.
11717 bytes_read is unused.
11718
345cea78
AD
117192002-03-04 Akim Demaille <akim@epita.fr>
11720
11721 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
11722 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
11723 Update.
11724 From Michael Hayes.
11725
564801f7
AD
117262002-03-04 Akim Demaille <akim@epita.fr>
11727
11728 * src/closure.c (closure): `r' is unused.
11729
e5352bc7
AD
117302002-03-04 Akim Demaille <akim@epita.fr>
11731
11732 * tests/sets.at (Broken Closure): Add the ending `;'.
11733 * src/reader.at (readgram): Complain if a rule is not ended with a
11734 semi-colon.
11735
914feea9
AD
117362002-03-04 Akim Demaille <akim@epita.fr>
11737
11738 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
11739 (count_sr_conflicts): Use bitset_count.
11740 * src/reduce.c (inaccessable_symbols): Ditto.
11741 (bits_size): Remove.
11742 * src/warshall.h, src/warshall.c: Convert to bitsetv.
11743
f0250de6
AD
117442002-03-04 Akim Demaille <akim@epita.fr>
11745
11746 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
11747 * src/reduce.c: Remove the `bitset_zero's following the
11748 `bitset_create's, as now it is performed by the latter.
11749
ef017502
AD
117502002-03-04 Akim Demaille <akim@epita.fr>
11751
11752 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
11753 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
11754 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
11755 latest sources from Michael.
11756
76514394
AD
117572002-03-04 Akim Demaille <akim@epita.fr>
11758
11759 * src/output.c (output): Don't free the grammar.
11760 * src/reader.c (grammar_free): New.
11761 * src/main.c (main): Call it and don't free symtab here.
11762
55024580
AD
117632002-03-04 Akim Demaille <akim@epita.fr>
11764
11765 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
11766 before returning.
11767 Reported by Benoit Perrot.
11768
f9abaa2c
AD
117692002-03-04 Akim Demaille <akim@epita.fr>
11770
11771 Use bitset operations when possible, not loops over bits.
11772
11773 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
11774 bitset_or.
11775 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
11776 * src/reduce.c (useless_nonterminals): Formatting changes.
11777 * src/warshall.c (TC): Use bitset_or.
11778
0e721e75
AD
117792002-03-04 Akim Demaille <akim@epita.fr>
11780
11781 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
11782 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
11783 Ditto.
11784
0fb1ffb1
AD
117852002-03-04 Akim Demaille <akim@epita.fr>
11786
11787 * src/lalr.c (F): Now a bitset*.
11788 Adjust all dependencies.
11789
b86796bf
AD
117902002-03-04 Akim Demaille <akim@epita.fr>
11791
11792 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
11793 Adjust all dependencies.
11794
602bbf31
AD
117952002-03-04 Akim Demaille <akim@epita.fr>
11796
11797 * src/L0.c, src/LR0.h (nstates): Be size_t.
11798 Adjust comparisons (signed vs unsigned).
11799 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
11800 bitset*.
11801 Adjust all dependencies.
11802
d8a0245c
AD
118032002-03-04 Akim Demaille <akim@epita.fr>
11804
11805 * src/closure.c (firsts): Now, also a bitset.
11806 Adjust all dependencies.
11807 (varsetsize): Remove, now unused.
11808 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
11809
34ba9743
AD
118102002-03-04 Akim Demaille <akim@epita.fr>
11811
11812 * src/print.c: Convert to use bitset.h, not hand coded iterations
11813 over ints.
11814
ed86e78c
AD
118152002-03-04 Akim Demaille <akim@epita.fr>
11816
11817 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
11818
dfdb1797
AD
118192002-03-04 Akim Demaille <akim@epita.fr>
11820
11821 * src/closure.c (ruleset): Be a bitset.
11822 (rulesetsize): Remove.
11823
7086e707
AD
118242002-03-04 Akim Demaille <akim@epita.fr>
11825
11826 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
11827 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
11828 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
11829 * src/closure.c (fderives): Be an array of bitsets.
11830
98254360
RA
118312002-02-28 Robert Anisko <robert@lrde.epita.fr>
11832
11833 * data/bison.c++: Merge the two generated headers. Insert a copyright
11834 notice in each output file.
11835
a75c057f
AD
118362002-02-28 Akim Demaille <akim@epita.fr>
11837
11838 * data/bison.c++: Copy the prologue of bison.simple to fetch
11839 useful M4 definitions, such as b4_header_guard.
11840
06b00abc
AD
118412002-02-25 Akim Demaille <akim@epita.fr>
11842
11843 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
11844 translator friendly scheme for the bgr
11845 copyright notice.
06b00abc 11846
70e7d534
AD
118472002-02-25 Akim Demaille <akim@epita.fr>
11848
11849 * src/output.c (header_output): Remove, now handled completely via
11850 M4.
11851
abe017f6
AD
118522002-02-25 Akim Demaille <akim@epita.fr>
11853
11854 * m4/m4.m4: New, from CVS Autoconf.
11855 * configure.in: Invoke it.
11856 * src/output.c (output_skeleton): Use its result instead of the
11857 hard coded name.
11858
381fb12e
AD
118592002-02-25 Akim Demaille <akim@epita.fr>
11860
11861 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
11862 Fileutils 4.1.5.
11863 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
11864 * src/output.c (output_skeleton): Use mkstemp to create a real
11865 temporary file.
11866 Move the filling of `skeleton' and its muscle to...
11867 (prepare): here.
11868 (output): Move the definition of the prologue muscle to...
11869 (prepare): here.
11870 * src/system.h (DEFAULT_TMPDIR): New.
11871
6f38107f
PE
118722002-02-14 Paul Eggert <eggert@twinsun.com>
11873
11874 Remove the support for C++ namespace cleanliness; it was
11875 causing more problems than it was curing, since it didn't work
11876 properly on some nonstandard C++ compilers. This can wait
11877 for a proper C++ parser.
11878
11879 * NEWS: Document this.
11880 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
11881 of C++, as it's treated like C now.
11882 * src/bison.simple (YYSTD): Remove.
11883 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
11884 Treat C++ just like Standard C instead of trying to support
11885 namespace cleanliness.
11886
80cce3da
AD
118872002-02-14 Akim Demaille <akim@epita.fr>
11888
11889 * tests/regression.at (else): Adjust to Andreas' change.
11890
842e8679
AD
118912002-02-14 Akim Demaille <akim@epita.fr>
11892
11893 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
11894
4bda3f10
AD
118952002-02-13 Andreas Schwab <schwab@suse.de>
11896
11897 * src/output.c (output_rule_data): Don't output NULL, it might
11898 not be defined yet.
11899
4162fa07 119002002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 11901
4162fa07
RA
11902 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
11903 (Copyright notice): Update.
b418ecd8 11904
bd16a5dc
AD
119052002-02-11 Akim Demaille <akim@epita.fr>
11906
11907 * tests/regression.at (%nonassoc and eof): Don't include
11908 nonportable headers.
11909
8d69a1a3
RA
119102002-02-08 Robert Anisko <robert@lrde.epita.fr>
11911
11912 * data/bison.c++: Correct error recovery. Make the user able to
11913 initialize the starting location.
11914
9b2d0677
AD
119152002-02-07 Akim Demaille <akim@epita.fr>
11916
11917 * tests/input.at: New.
11918
69e2658b
RA
119192002-02-07 Robert Anisko <robert@lrde.epita.fr>
11920
11921 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 11922 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
11923 directives around tables only needed for debugging.
11924
4aacc3a7
RA
119252002-02-07 Robert Anisko <robert@lrde.epita.fr>
11926
11927 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
11928 C++ parsers.
11929 (yy::b4_name::parse): Use print_.
11930
762a801e
RA
119312002-02-07 Robert Anisko <robert@lrde.epita.fr>
11932
11933 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
11934
4bb2bc3f
RA
119352002-02-07 Robert Anisko <robert@lrde.epita.fr>
11936
11937 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
11938 C++ parsers.
11939 (yy::b4_name::parse): Build verbose error messages, and use error_.
11940
6b45a3ca
RA
119412002-02-06 Robert Anisko <robert@lrde.epita.fr>
11942
11943 * data/bison.c++: Fix m4 quoting in comments.
11944
50997c6e
RA
119452002-02-06 Robert Anisko <robert@lrde.epita.fr>
11946
11947 * data/bison.c++: Adjust the parser code. Fix some muscles that were
11948 not expanded by m4.
11949
3f3eed27
AD
119502002-02-05 Akim Demaille <akim@epita.fr>
11951
11952 * data/bison.c++: Adjust to the M4 back end.
11953 More is certainly needed.
11954
be2a1a68
AD
119552002-02-05 Akim Demaille <akim@epita.fr>
11956
11957 Give a try to M4 as a back end.
11958
11959 * lib/readpipe.c: New, from wdiff.
11960 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
11961 BISON_HAIRY.
11962 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
11963 specific values. Now it is m4 that performs the lookup.
11964 * src/parse-skel.y: Remove.
11965 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
11966 * src/output.c (actions_output, guards_output)
11967 (token_definitions_output): No longer keeps track of the output
11968 line number, hence remove the second argument.
11969 (guards_output): Check against the guard member of a rule, not the
11970 action member.
11971 Adjust callers.
11972 (output_skeleton): Don't look for the skeleton location, let m4 do
11973 that.
11974 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
11975 file will be used.
11976 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
11977 (prepare): Given that for the time being changesyntax is not
11978 usable in M4, rename the muscles using `-' to `_'.
11979 Define `defines_flag', `output_parser_name' and `output_header_name'.
11980 * src/output.h (actions_output, guards_output)
11981 (token_definitions_output): Adjust prototypes.
11982 * src/scan-skel.l: Instead of scanning the skeletons, it now
11983 processes the output of m4: `__oline__' and `#output'.
11984 * data/bison.simple: Adjust to be used by M4(sugar).
11985 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
11986 to date.
11987 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
11988 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
11989 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
11990 shamelessly stolen from CVS Autoconf.
11991
beda758b
AD
119922002-02-05 Akim Demaille <akim@epita.fr>
11993
11994 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
11995 * configure.in: Check for the declarations of free and malloc.
11996 * src/muscle_tab.c: Adjust.
11997
5ece6d43
AD
119982002-02-05 Akim Demaille <akim@epita.fr>
11999
12000 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
12001 which have no values.
12002
5bb18f9a
AD
120032002-02-05 Akim Demaille <akim@epita.fr>
12004
12005 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
12006 * data/: here.
12007
894dd62e
PE
120082002-01-29 Paul Eggert <eggert@twinsun.com>
12009
12010 * src/bison.simple (YYSIZE_T): Do not define merely because
12011 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
12012 On some platforms, <alloca.h> does not declare YYSTD (size_t).
12013
82841af7
AD
120142002-01-27 Akim Demaille <akim@epita.fr>
12015
12016 Fix `%nonassoc and eof'.
12017
12018 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
12019 which were not properly copied! Replace
12020 memcpy (res->errs, src->errs, src->nerrs);
12021 with
12022 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
12023 !!!
12024 * tests/regression.at (%nonassoc and eof): Adjust to newest
12025 Autotest: `.' is not in the PATH.
12026
318b76e9
AD
120272002-01-27 Akim Demaille <akim@epita.fr>
12028
12029 * tests/sets.at (AT_EXTRACT_SETS): New.
12030 (Nullable): Use it.
12031 (Firsts): New.
12032
30d2f3d5
AD
120332002-01-26 Akim Demaille <akim@epita.fr>
12034
12035 * tests/actions.at, tests/calc.at, tests/headers.at,
12036 * tests/torture.at: Adjust to the newest Autotest which no longer
12037 forces `.' in the PATH.
12038
30f8c395
AD
120392002-01-25 Akim Demaille <akim@epita.fr>
12040
12041 * tests/regression.at (%nonassoc and eof): New.
12042 Suggested by Robert Anisko.
12043
29ae55f1
AD
120442002-01-24 Akim Demaille <akim@epita.fr>
12045
12046 Bison dumps core when trying to complain about broken input files.
12047 Reported by Cris van Pelt.
12048
12049 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
12050 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
12051 into...
12052 (Invalid inputs): Strengthen: exercise parse_percent_token.
12053
2b548aa6
RA
120542002-01-24 Robert Anisko <robert.anisko@epita.fr>
12055
12056 * src/Makefile.am: Add bison.c++.
12057 * src/bison.c++: New skeleton.
12058
bb0146c2
AD
120592002-01-21 Paolo Bonzini <bonzini@gnu.org>
12060
12061 * po/it.po: New.
12062
bec30531
AD
120632002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
12064
12065 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
12066
fc6edc45
MA
120672002-01-20 Marc Autret <marc@gnu.org>
12068
12069 * src/files.c (compute_output_file_names): Fix
12070
5e5d5415
MA
120712002-01-20 Marc Autret <marc@gnu.org>
12072
12073 * tests/output.at: New test.
12074 * src/files.c (compute_base_names): Don't map extensions when
12075 the YACC flag is set, use defaults.
12076 Reported by Evgeny Stambulchik.
12077
44ea3fbd
MA
120782002-01-20 Marc Autret <marc@gnu.org>
12079
ba0fe3c7
PE
12080 * src/system.h: Need to define __attribute__ away for non-GCC
12081 compilers as well (i.e., the vendor C compiler).
44ea3fbd
MA
12082 Suggested by Albert Chin-A-Young.
12083
338963d1
TVH
120842002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
12085
12086 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
12087 canonical definition.
12088 * src/system.h: Use the canonical definition for PARAMS (avoids
12089 a conflict with the macro from lib/hash.h).
12090
c57b2479
AD
120912002-01-11 Akim Demaille <akim@epita.fr>
12092
12093 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 12094 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 12095
b85810ae
AD
120962002-01-09 Akim Demaille <akim@epita.fr>
12097
12098 * src/files.c, src/files.h (output_infix): New.
12099 (tab_extension): Remove.
12100 (compute_base_names): Compute the former, drop the latter.
12101 * src/output.c (prepare): Insert the muscles `output-infix', and
12102 `output-suffix'.
12103 * src/parse-skel.y (string, string.1): New.
12104 (section.header): Use it.
12105 (section.yacc): Remove.
12106 (prefix): Remove too.
12107 * src/scan-skel.l: Adjust.
12108 * src/bison.simple, src/bison.hairy: Adjust.
12109
cae60122
AD
121102002-01-09 Akim Demaille <akim@epita.fr>
12111
12112 * configure.in (WERROR_CFLAGS): Compute it.
12113 * src/Makefile.am (CFLAGS): Pass it.
12114 * tests/atlocal.in (CFLAGS): Idem.
12115 * src/files.c: Fix a few warnings.
12116 (get_extension_index): Remove, unused.
12117
ae404801
AD
121182002-01-08 Akim Demaille <akim@epita.fr>
12119
12120 * src/getargs.c (AS_FILE_NAME): New.
12121 (getargs): Use it to convert DOSish file names.
12122 * src/files.c (base_name): Rename as full_base_name to avoid
12123 clashes with `base_name ()'.
12124 (filename_split): New.
12125 (compute_base_names): N-th rewrite, using filename_split.
12126
22312b71
AD
121272002-01-08 Akim Demaille <akim@epita.fr>
12128
12129 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
12130 New, stolen from the Fileutils 4.1.
12131 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
12132 * configure.in: Check for the presence of memrchr, and of its
12133 prototype.
12134
a67cef01
TVH
121352002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
12136
12137 * lib/hash.h (__P): Added definition for this macro.
12138 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
12139 BUILT_SOURCES, to ensure they are generated first.
12140 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
12141 %error-verbose to allow bootstrapping with bison 1.30x.
12142
2b25d624
AD
121432002-01-06 Akim Demaille <akim@epita.fr>
12144
12145 * src/reader.c (parse_braces): Don't fetch the next char, the
12146 convention is to fetch on entry.
12147 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
12148 'switch' without a following semicolon.
12149 * tests/regression.at (braces parsing): New.
12150
3460813b
AD
121512002-01-06 Akim Demaille <akim@epita.fr>
12152
12153 Bison is dead wrong in its RR conflict reports.
12154
12155 * tests/torture.at (GNU Cim Grammar): New.
12156 * src/conflicts.c (count_rr_conflicts): Fix.
12157
73784c64
AD
121582002-01-06 Akim Demaille <akim@epita.fr>
12159
12160 Creating package.m4 from configure.ac causes too many problems.
12161
12162 * tests/Makefile.am (package.m4): Create it by hand,
12163 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
12164
25d81090
AD
121652002-01-06 Akim Demaille <akim@epita.fr>
12166
12167 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
12168 skeleton.h.
12169
a9b8959e
PE
121702002-01-04 Paul Eggert <eggert@twinsun.com>
12171
12172 * doc/bison.texinfo (Debugging):
12173 Remove YYSTDERR; it's no longer defined or used.
12174 Also, s/cstdio.h/cstdio/.
12175
25d81090
AD
121762002-01-03 Akim Demaille <akim@epita.fr>
12177
12178 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
12179
1109455c
AD
121802002-01-03 Akim Demaille <akim@epita.fr>
12181
12182 * src/parse-skel.y (process_skeleton): Don't bind the parser's
12183 tracing code to --trace, wait for a better --trace option, with
12184 args.
12185
7ea5e977
AD
121862002-01-03 Akim Demaille <akim@epita.fr>
12187
12188 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
12189 The ISO C++ standard is extremely clear about it: stderr is
12190 considered a macro, not a regular symbol (see table 94 `Header
12191 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
12192 Therefore std:: does not apply to it. It still does with fprintf.
12193 Also, s/cstdio.h/cstdio/.
12194
fab5b110
AD
121952002-01-03 Akim Demaille <akim@epita.fr>
12196
12197 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
12198 for non system headers.
12199
aed7fd9b
AD
122002002-01-02 Akim Demaille <akim@epita.fr>
12201
12202 Equip the skeleton chain with location tracking, runtime trace,
12203 pure parser and scanner.
12204
12205 * src/parse-skel.y: Request a pure parser, locations, and prefix
12206 renaming.
12207 (%union): Having several members with the same type does not help
12208 type mismatches, simplify.
12209 (YYPRINT, yyprint): New.
12210 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
12211 (skel_error): this.
12212 Handle locations.
12213 * src/scan-skel.l: Adjust to these changes.
12214 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
12215 (LOCATION_PRINT, skel_control_t): New.
12216
24fad99e
AD
122172001-12-30 Akim Demaille <akim@epita.fr>
12218
12219 * src/parse-skel.y: Get rid of the shift/reduce conflict:
12220 replace `gb' with BLANKS.
12221 * src/scan-skel.l: Adjust.
12222
a4b36db4
AD
122232001-12-30 Akim Demaille <akim@epita.fr>
12224
12225 * src/system.h: We don't need nor want bcopy.
12226 Throw away MS-DOS crap: we don't need getpid.
12227 * configure.in: We don't need strndup. It was even causing
12228 problems: because Flex includes the headers *before* us,
12229 _GNU_SOURCE is not defined by config.h, and therefore strndup was
12230 not visible.
12231 * lib/xstrndup.c: New.
12232 * src/scan-skel.l: Use it.
12233 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
12234 * src/parse-skel.y: Use %directives instead of #defines.
12235
1239777d
AD
122362001-12-30 Akim Demaille <akim@epita.fr>
12237
12238 * src/skeleton.h: New.
12239 * src/output.c (output_parser, output_master_parser): Remove, dead
12240 code.
12241 * src/output.h (get_lines_number, actions_output, guards_output)
12242 (token_definitions_output): Prototype them.
12243 * src/parse-skel.y: Add the license notice.
12244 Include output.h and skeleton.h.
12245 (process_skeleton): Returns void, and takes a single parameter.
12246 * src/scan-skel.l: Add the license notice.
12247 Include skeleton.h.
12248 Don't use %option yylineno: it seems that then Flex imagines
12249 REJECT has been used, and therefore it won't reallocate its
12250 buffers (which makes no other sense to me than a bug). It results
12251 in warnings for `unused: yy_flex_realloc'.
12252
9b3add5b
RA
122532001-12-30 Robert Anisko <robert.anisko@epita.fr>
12254
12255 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
12256 (MUSCLE_INSERT_PREFIX): ...to there.
12257 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
12258 (MUSCLE_INSERT_PREFIX): Move from here...
12259
12260 * src/bison.hairy: Add a section directive. Put braces around muscle
12261 names. This parser skeleton is still broken, but Bison should not
12262 choke on a bad muscle 'syntax'.
12263 * src/bison.simple: Add a section directive. Put braces around muscle
12264 names.
12265
12266 * src/files.h (strsuffix, stringappend): Add declarations.
12267 (tab_extension): Add declaration.
12268 (short_base_name): Add declaration.
12269
12270 * src/files.c (strsuffix, stringappend): No longer static. These
12271 functions are used in the skeleton parser.
12272 (tab_extension): New.
12273 (compute_base_names): Use the computations done in this function
fab5b110 12274 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
12275 names.
12276 (short_base_name): No longer static.
12277
12278 * src/output.c (output_skeleton): New.
12279 (output): Disable call to output_master_parser, and give a try to
12280 a new skeleton handling system.
12281 (guards_output, actions_output): No longer static.
12282 (token_definitions_output, get_lines_number): No longer static.
12283
12284 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
12285
fab5b110 12286 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
12287 parse-skel.y.
12288
12289 * src/parse-skel.y: New file.
12290 * src/scan-skel.l: New file.
12291
b5b61c61
AD
122922001-12-29 Akim Demaille <akim@epita.fr>
12293
12294 %name-prefix is broken.
12295
12296 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
12297 Adjust all dependencies.
12298 * tests/headers.at (export YYLTYPE): Strengthen this test: use
12299 %name-prefix.
12300
12301 Renaming yylval but not yylloc is not consistent. Now we do.
12302
12303 * src/bison.simple: Prefix yylloc if used.
12304 * doc/bison.texinfo (Decl Summary): Document that.
12305
8c9a50be
AD
123062001-12-29 Akim Demaille <akim@epita.fr>
12307
12308 * doc/bison.texinfo: Promote `%long-directive' over
12309 `%long_directive'.
12310 Remove all references to fixed-output-files, yacc is enough.
12311
d99361e6
AD
123122001-12-29 Akim Demaille <akim@epita.fr>
12313
12314 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
12315 user prologue. These are defaults.
12316 * tests/actions.at (Mid-rule actions): Make sure the user can
12317 define YYDEBUG and YYERROR_VERBOSE.
12318
b9cecb91
AD
123192001-12-29 Akim Demaille <akim@epita.fr>
12320
12321 * src/output.c (header_output): Don't forget to export YYLTYPE and
12322 yylloc.
12323 * tests/headers.at (export YYLTYPE): New, make sure it does.
12324 * tests/regression.at (%union and --defines, Invalid CPP headers):
12325 Move to...
12326 * tests/headers.at: here.
12327
aea13e97
AD
123282001-12-29 Akim Demaille <akim@epita.fr>
12329
12330 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
12331
931394cb
AD
123322001-12-29 Akim Demaille <akim@epita.fr>
12333
12334 * tests/actions.at (Mid-rule actions): Output on a single line
12335 instead of several.
12336
704a47c4
AD
123372001-12-29 Akim Demaille <akim@epita.fr>
12338
12339 * doc/bison.texinfo: Formatting changes.
12340
091e20bb
AD
123412001-12-29 Akim Demaille <akim@epita.fr>
12342
12343 Don't store the token defs in a muscle, just be ready to output it
12344 on command. Now possible via `symbols'. Fixes a memory leak.
12345
12346 * src/output.c (token_definitions_output): New.
12347 (output_parser, header_output): Use it.
12348 * src/reader.c (symbols_save): Remove.
12349
cce71710
AD
123502001-12-29 Akim Demaille <akim@epita.fr>
12351
12352 * src/bison.simple: Do not provide a default for YYSTYPE and
12353 YYLTYPE before the user's prologue. Otherwise it's hardly... a
12354 default.
12355
82c035a8
AD
123562001-12-29 Akim Demaille <akim@epita.fr>
12357
12358 Mid-rule actions are simply... ignored!
12359
12360 * src/reader.c (readgram): Be sure to attach mid-rule actions to
12361 the empty-rule associated to the dummy symbol, not to the host
12362 rule.
12363 * tests/actions.at (Mid-rule actions): New.
12364
8419d367
AD
123652001-12-29 Akim Demaille <akim@epita.fr>
12366
12367 Memory leak.
12368
12369 * src/reader.c (reader): Free grammar.
12370
375d5806
AD
123712001-12-29 Akim Demaille <akim@epita.fr>
12372
12373 Memory leak.
12374
12375 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
12376 since it allocates it for each state, although only one is needed.
12377 (allocate_storage): Do it here.
12378
f51cb8ff
AD
123792001-12-29 Akim Demaille <akim@epita.fr>
12380
12381 * src/options.h, src/options.c (create_long_option_table): Rename
12382 as...
12383 (long_option_table_new): this, with a clearer prototype.
12384 (percent_table): Remove, unused,
12385 * src/getargs.c (getargs): Adjust.
12386
29e88316
AD
123872001-12-29 Akim Demaille <akim@epita.fr>
12388
12389 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
12390 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
12391 as states.
12392
b9f71f19
AD
123932001-12-29 Akim Demaille <akim@epita.fr>
12394
12395 * src/lalr.c (build_relations): Rename `states' as `states1'.
12396 Sorry, I don't understand exactly what it is, no better name...
12397
1a2b5d37
AD
123982001-12-29 Akim Demaille <akim@epita.fr>
12399
12400 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
12401 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
12402 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
12403 as rules.
12404
1cca533e
AD
124052001-12-29 Akim Demaille <akim@epita.fr>
12406
12407 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
12408 ago.
12409
c03ae966
AD
124102001-12-29 Akim Demaille <akim@epita.fr>
12411
12412 * src/reader.c, src/reader.h (user_toknums): Remove.
12413 Adjust all users to use symbols[i]->user_token_number.
12414
5a670b1e
AD
124152001-12-29 Akim Demaille <akim@epita.fr>
12416
12417 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
12418 Adjust all users to use symbols[i]->prec or ->assoc.
12419
ad949da9
AD
124202001-12-29 Akim Demaille <akim@epita.fr>
12421
12422 * src/reader.c, src/reader.h (tags): Remove.
12423 Adjust all users to use symbols[i]->tag.
12424
0e78e603
AD
124252001-12-29 Akim Demaille <akim@epita.fr>
12426
12427 * src/gram.h, src/gram.c (symbols): New, similar to state_table
12428 and rule_table.
12429 * src/reader.c (packsymbols): Fill this table.
12430 Drop sprec.
12431 * src/conflicts.c (resolve_sr_conflict): Adjust.
12432 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
12433 single table.
12434 Use symbols[i]->tag instead of tags[i].
12435
213e640e
AD
124362001-12-29 Akim Demaille <akim@epita.fr>
12437
12438 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
12439 In addition, put a comment in there, to replace...
12440 * tests/regression.at (%union and C comments): Remove.
12441
e7b8bef1
AD
124422001-12-29 Akim Demaille <akim@epita.fr>
12443
12444 * tests/regression.at (Web2c Actions): Blindly move the actual
12445 output as expected output. The contents *seem* right to me, but I
12446 can't pretend reading perfectly parser tables... Nonetheless, all
12447 the other tests pass correctly, the table look OK, even though the
12448 presence of `$axiom' is to be noted: AFAICS it is useless (but
12449 harmless).
12450
b68e7744
AD
124512001-12-29 Akim Demaille <akim@epita.fr>
12452
12453 * src/reader.c (readgram): Don't add the rule 0 if there were no
12454 rules read. In other words, add it _after_ having performed
12455 grammar sanity checks.
12456 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
12457
78d5bae9
AD
124582001-12-29 Akim Demaille <akim@epita.fr>
12459
12460 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
12461 visible, and some states have now a different number.
12462
ff442794
AD
124632001-12-29 Akim Demaille <akim@epita.fr>
12464
12465 * src/reader.c (readgram): Bind the initial rule's lineno to that
12466 of the first rule.
12467 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
12468 (Solved SR Conflicts): Adjust rule 0's line number.
12469
610ab194
AD
124702001-12-29 Akim Demaille <akim@epita.fr>
12471
12472 Fix the `GAWK Grammar' failure.
12473
12474 * src/LR0.c (final_state): Initialize to -1 so that we do compute
12475 the reductions of the first state which was mistakenly confused
12476 with the final state because precisely final_state was initialized
12477 to 0.
12478 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
12479 now noticed by Bison.
12480 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
12481 have a reduction on $default.
12482
29d29c8f
AD
124832001-12-29 Akim Demaille <akim@epita.fr>
12484
12485 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
12486 rule line numbers.
12487 * src/closure.c (print_closure): Likewise.
12488 * src/derives.c (print_derives): Likewise.
12489 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
12490 now.
12491
7c6b64d0
AD
124922001-12-29 Akim Demaille <akim@epita.fr>
12493
12494 * src/lalr.c (lookaheads_print): New.
12495 (lalr): Call it when --trace-flag.
12496 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
12497 are dumped.
12498
3d4daee3
AD
124992001-12-29 Akim Demaille <akim@epita.fr>
12500
12501 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
12502 when walking through ritem, even via rule->rhs.
12503 * src/reduce.c (dump_grammar, useful_production, reduce_output)
12504 (useful_production, useless_nonterminals): Likewise.
12505 (reduce_grammar_tables): Likewise, plus update nritems.
12506 * src/nullable.c (set_nullable): Likewise.
12507 * src/lalr.c (build_relations): Likewise.
12508 * tests/sets.at (Nullable): Adjust.
12509 Fortunately, now, the $axiom is no longer nullable.
12510
9e7f6bbd
AD
125112001-12-29 Akim Demaille <akim@epita.fr>
12512
12513 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
12514 the 0-sentinel.
12515 * src/gram.c (ritem_longest_rhs): Likewise.
12516 * src/reduce.c (nonterminals_reduce): Likewise.
12517 * src/print_graph.c (print_graph): Likewise.
12518 * src/output.c (output_rule_data): Likewise.
12519 * src/nullable.c (set_nullable): Likewise.
12520
255ef638
AD
125212001-12-29 Akim Demaille <akim@epita.fr>
12522
12523 * src/output.c: Comment changes.
12524
0d8a7363
AD
125252001-12-27 Paul Eggert <eggert@twinsun.com>
12526
12527 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
12528 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
12529 Sparc, as they were causing more porting problems than the
12530 (minor) performance improvement was worth.
12531
12532 Also, catch up with 1.31's YYSTD.
12533
3db472b9
AD
125342001-12-27 Akim Demaille <akim@epita.fr>
12535
12536 * src/output.c (output_gram): Rely on nritems, not the
12537 0-sentinel. See below.
12538 Use -1 as separator, not 0.
12539 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
12540 Rely on -1 as separator in yyrhs, instead of 0.
12541 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
12542 twice `Now at end of input', therefore there are two lines less to
12543 expect.
12544
b365aa05
AD
125452001-12-27 Akim Demaille <akim@epita.fr>
12546
12547 * tests/regression.at (Unresolved SR Conflicts):
12548 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
12549 below.
12550
30171f79
AD
125512001-12-27 Akim Demaille <akim@epita.fr>
12552
12553 * src/LR0.c (new_state): Recognize the final state by the fact it
12554 is reached by eoftoken.
12555 (insert_start_shifting_state, insert_eof_shifting_state)
12556 (insert_accepting_state, augment_automaton): Remove, since now
12557 these states are automatically computed from the initial state.
12558 (generate_states): Adjust.
12559 * src/print.c: When reporting a rule number to the user, substract
12560 1, so that the axiom rule is rule 0, and the first user rule is 1.
12561 * src/reduce.c: Likewise.
12562 * src/print_graph.c (print_core): For the time being, just as for
12563 the report, depend upon --trace-flags to dump the full set of
12564 items.
12565 * src/reader.c (readgram): Once the grammar read, insert the rule
12566 0: `$axiom: START-SYMBOL $'.
12567 * tests/set.at: Adjust: rule 0 is now displayed, and since the
12568 number of the states has changed (the final state is no longer
12569 necessarily the last), catch up.
12570
75142d45
AD
125712001-12-27 Akim Demaille <akim@epita.fr>
12572
12573 Try to make the use of the eoftoken valid. Given that its value
12574 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
12575 is used instead of > 0 where appropriate, (ii), depend upon nritems
12576 instead of the 0-sentinel.
12577
12578 * src/gram.h, src/gram.c (nritems): New.
12579 Expected to be duplication of nitems, but for the time being...
12580 * src/reader.c (packgram): Assert nritems and nitems are equal.
12581 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
12582 * src/closure.c (print_closure, print_fderives): Likewise.
12583 * src/gram.c (ritem_print): Likewise.
12584 * src/print.c (print_core, print_grammar): Likewise.
12585 * src/print_graph.c: Likewise.
12586
b7c49edf
AD
125872001-12-27 Akim Demaille <akim@epita.fr>
12588
12589 * src/main.c (main): If there are complains after grammar
12590 reductions, then output the report anyway if requested, then die.
12591 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
12592 * src/reader.c (eoftoken): New.
12593 (parse_token_decl): If the token being defined has value `0', it
12594 is the eoftoken.
12595 (packsymbols): No longer hack `tags' to insert `$' by hand.
12596 Be sure to preserve the value of the eoftoken.
12597 (reader): Make sure eoftoken is defined.
12598 Initialize nsyms to 0: now eoftoken is created just like the others.
12599 * src/print.c (print_grammar): Don't special case the eof token.
12600 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
12601 lie anyway, albeit pleasant.
12602 * tests/calc.at: Exercise error messages with eoftoken.
12603 Change the grammar so that empty input is invalid.
12604 Adjust expectations.
12605 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
12606
ec2da99f
AD
126072001-12-27 Akim Demaille <akim@epita.fr>
12608
12609 * configure.in: Check the protos of strchr ans strspn.
12610 Replace strchr if needed.
12611 * src/system.h: Provide the protos of strchr, strspn and memchr if
12612 missing.
12613 * lib/strchr.c: New.
12614 * src/reader.c (symbols_save): Use strchr.
12615
8adfa272
AD
126162001-12-27 Akim Demaille <akim@epita.fr>
12617
12618 * src/print.c, src/print_graph.c (escape): New.
12619 Use it to quote the TAGS outputs.
12620 * src/print_graph.c (print_state): Now errors are in red, and
12621 reductions in green.
12622 Prefer high to wide: output the state number on a line of its own.
12623
80dac38c
AD
126242001-12-27 Akim Demaille <akim@epita.fr>
12625
12626 * src/state.h, src/state.c (reductions_new): New.
12627 * src/LR0.c (set_state_table): Let all the states have a
12628 `reductions', even if reduced to 0.
12629 (save_reductions): Adjust.
12630 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
12631 * src/print.c (print_reductions, print_actions): Adjust.
12632 * src/output.c (action_row): Adjust.
12633
2cec70b9
AD
126342001-12-27 Akim Demaille <akim@epita.fr>
12635
12636 * src/state.h, src/state.c (errs_new, errs_dup): New.
12637 * src/LR0.c (set_state_table): Let all the states have an errs,
12638 even if reduced to 0.
12639 * src/print.c (print_errs, print_reductions): Adjust.
12640 * src/output.c (output_actions, action_row): Adjust.
12641 * src/conflicts.c (resolve_sr_conflict): Adjust.
12642
13ca549a
AD
126432001-12-27 Akim Demaille <akim@epita.fr>
12644
12645 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
12646
5092aba5
AD
126472001-12-27 Akim Demaille <akim@epita.fr>
12648
12649 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
12650 * src/print.c: here.
12651 (lookaheadset, shiftset): New, used as additional storage by
12652 print_reductions.
12653 (print_results): Adjust.
12654 (print_shifts, print_gotos, print_errs): New, extracted from...
12655 (print_actions): here.
12656 * src/print_graph.c (print_actions): Remove dead code.
12657
11e2beca
AD
126582001-12-27 Akim Demaille <akim@epita.fr>
12659
12660 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
12661 `$n' and `@n'.
12662
dac3c910
AD
126632001-12-27 Akim Demaille <akim@epita.fr>
12664
12665 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
12666 (build_relations): Adjust.
12667
d0b0fefa
AD
126682001-12-27 Akim Demaille <akim@epita.fr>
12669
12670 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
12671 duplication.
12672
adc8c848
AD
126732001-12-27 Akim Demaille <akim@epita.fr>
12674
12675 * src/reader.c (packgram): Catch nitems overflows.
12676
14d293ac
AD
126772001-12-27 Akim Demaille <akim@epita.fr>
12678
12679 * src/files.c, src/files.h (guard_obstack): Remove.
12680 * src/output.c (output): Adjust.
12681 * src/reader.c (parse_braces): New, factoring...
12682 (copy_action, copy_guard): these two which are renamed as...
12683 (parse_action, parse_guard): these.
12684 As a voluntary consequence, using braces around guards is now
12685 mandatory.
12686
f499b062
AD
126872001-12-27 Akim Demaille <akim@epita.fr>
12688
12689 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
12690 * src/reader.c (symbol_list): `guard' and `guard_line' are new
12691 members.
12692 (symbol_list_new): Adjust.
12693 (copy_action): action_line is the first line, not the last.
12694 (copy_guard): Just as for actions, store the `action' only, not
12695 the switch/case/break flesh.
12696 Don't parse the user action that might follow the guard, let...
12697 (readgram): do it, i.e., now, there can be an action after a
12698 guard.
12699 In other words the guard is just explicitly optional.
12700 (packgram): Adjust.
12701 * src/output.c (guards_output): New.
12702 (output_parser): Call it when needed.
12703 (output): Also free the guard and attrs obstacks.
12704 * src/files.c, src/files.h (obstack_save): Remove.
12705 (output_files): Remove.
12706 As a result, if one needs the former `.act' file, using an
12707 appropriate skeleton which requires actions and guards is now
12708 required.
12709 * src/main.c (main): Adjust.
12710 * tests/semantic.at: New.
12711 * tests/regression.at: Use `input.y' as input file name.
12712 Avoid 8+3 problems by requiring input.c when the test needs the
12713 parser.
12714
d945f5cd
AD
127152001-12-27 Akim Demaille <akim@epita.fr>
12716
12717 * src/reader.c (symbol_list_new): Be sure to initialize all the
12718 fields.
12719
d200e455
AD
127202001-12-27 Akim Demaille <akim@epita.fr>
12721
12722 All the hacks using a final pseudo state are now useless.
12723
12724 * src/LR0.c (set_state_table): state_table holds exactly nstates.
12725 * src/lalr.c (nLA): New.
12726 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
12727 instead of lookaheadsp from the pseudo state (nstate + 1).
12728
f9507c28
AD
127292001-12-27 Akim Demaille <akim@epita.fr>
12730
12731 * src/output.c (action_row, token_actions): Use a state_t instead
12732 of a integer, and nlookaheads instead of the following state's
12733 lookaheadsp.
12734
065fbd27
AD
127352001-12-27 Akim Demaille <akim@epita.fr>
12736
12737 * src/conflicts.c (log_resolution, flush_shift)
12738 (resolve_sr_conflict, set_conflicts, solve_conflicts)
12739 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
12740 (conflicts_print, print_reductions): Use a state_t instead of an
12741 integer when referring to a state.
12742 As much as possible, depend upon nlookaheads, instead of the
12743 `lookaheadsp' member of the following state (since lookaheads of
12744 successive states are successive, the difference between state n + 1
12745 and n served as the number of lookaheads for state n).
12746 * src/lalr.c (add_lookback_edge): Likewise.
12747 * src/print.c (print_core, print_actions, print_state)
12748 (print_results): Likewise.
12749 * src/print_graph.c (print_core, print_actions, print_state)
12750 (print_graph): Likewise.
12751 * src/conflicts.h: Adjust.
12752
1b177bd7
AD
127532001-12-27 Akim Demaille <akim@epita.fr>
12754
12755 * src/bison.hairy: Formatting/comment changes.
12756 ANSIfy.
12757 Remove `register' indications.
12758 Add plenty of `static'.
12759
7742ddeb
AD
127602001-12-27 Akim Demaille <akim@epita.fr>
12761
12762 * src/output.c (prepare): Drop the muscle `ntbase' which
12763 duplicates ntokens.
12764 * src/bison.simple: Formatting/comment changes.
12765 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
12766 is an undocumented synonym.
12767
1fa14068
AD
127682001-12-22 Akim Demaille <akim@epita.fr>
12769
12770 * src/output.c (output_table_data): Change the prototype to use
12771 `int' for array ranges: some invocations do pass an int, not a
12772 short.
12773 Reported by Wayne Green.
12774
b9752825
AD
127752001-12-22 Akim Demaille <akim@epita.fr>
12776
12777 Some actions of web2c.y are improperly triggered.
12778 Reported by Mike Castle.
12779
12780 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
12781 * tests/regression.at (Web2c): Rename as...
12782 (Web2c Report): this.
12783 (Web2c Actions): New.
12784
776209d6
AD
127852001-12-22 Akim Demaille <akim@epita.fr>
12786
12787 Reductions in web2c.y are improperly reported.
12788 Reported by Mike Castle.
12789
12790 * src/conflicts.c (print_reductions): Fix.
12791 * tests/regression.at (Web2c): New.
12792
275fc3ad
AD
127932001-12-18 Akim Demaille <akim@epita.fr>
12794
12795 Some host fail on `assert (!"foo")', which expands to
12796 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
12797 Reported by Nelson Beebee.
12798
12799 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
12800 `#define it_succeeded 0' and `assert (it_succeeded)'.
12801
897668ee
MA
128022001-12-17 Marc Autret <autret_m@epita.fr>
12803
12804 * src/bison.simple: Don't hard code the skeleton line and filename.
12805 * src/output.c (output_parser): Rename 'line' as 'output_line'.
12806 New line counter 'skeleton_line' (skeleton-line muscle).
12807
ab3399e0
PE
128082001-12-17 Paul Eggert <eggert@twinsun.com>
12809
12810 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
12811 YYDEBUG must be defined to a nonzero value.
12812
12813 * src/bison.simple (yytname): Do not assume that the user defines
12814 YYDEBUG to a properly parenthesized expression.
12815
3877f72b
AD
128162001-12-17 Akim Demaille <akim@epita.fr>
12817
12818 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
12819 nlookaheads is a new member.
12820 Adjust all users.
12821 * src/lalr.h (nlookaheads): Remove this orphan declaration.
12822 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
12823 state.
776209d6 12824
331dbc1b
AD
128252001-12-17 Akim Demaille <akim@epita.fr>
12826
12827 * src/files.h, src/files.c (open_files, close_files): Remove.
12828 * src/main.c (main): Don't open/close files, nor invoke lex_free,
12829 let...
12830 * src/reader.c (reader): Do it.
776209d6 12831
be750e4c
AD
128322001-12-17 Akim Demaille <akim@epita.fr>
12833
12834 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 12835
709ae8c6
AD
128362001-12-17 Akim Demaille <akim@epita.fr>
12837
12838 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
12839 (flush_reduce): New.
12840 (resolve_sr_conflict): Adjust.
776209d6 12841
f87685c3
AD
128422001-12-17 Akim Demaille <akim@epita.fr>
12843
12844 * src/output.c (output_obstack): Be static and rename as...
12845 (format_obstack): this, to avoid any confusion with files.c's
12846 output_obstack.
12847 * src/reader.h (muscle_obstack): Move to...
12848 * src/output.h: here, since it's defined in output.c.
12849
837491d8
AD
128502001-12-17 Akim Demaille <akim@epita.fr>
12851
12852 * src/output.c (action_row, save_column, default_goto)
12853 (sort_actions, matching_state, pack_vector): Better variable
12854 locality.
12855
796d61fb
AD
128562001-12-17 Akim Demaille <akim@epita.fr>
12857
12858 * src/output.c: Various formatting changes.
776209d6 12859
64d15509
AD
128602001-12-17 Akim Demaille <akim@epita.fr>
12861
12862 * src/files.c (output_files): Free the output_obstack.
12863 * src/main.c (main): Call print and print_graph conditionally.
12864 * src/print.c (print): Work unconditionally.
12865 * src/print_graph.c (print_graph): Work unconditionally.
12866 * src/conflicts.c (log_resolution): Output only if verbose_flag.
12867
fbc8ecb7
MA
128682001-12-16 Marc Autret <autret_m@epita.fr>
12869
12870 * src/output.c (actions_output): Fix. When we use %no-lines,
12871 there is one less line per action.
12872
f0440388
MA
128732001-12-16 Marc Autret <autret_m@epita.fr>
12874
12875 * src/bison.simple: Remove a useless #line directive.
12876 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
12877 * src/output.c (get_lines_number): New.
776209d6 12878 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
12879 output muscles.
12880 Fix line numbering.
12881 (actions_output): Computes the number of lines taken by actions.
12882 (output_master_parser): Insert new skeleton which is the name of
12883 the output parser file name.
12884
a79986b8
MA
128852001-12-15 Marc Autret <autret_m@epita.fr>
12886
12887 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
12888
4ec8e00f
MA
128892001-12-15 Marc Autret <autret_m@epita.fr>
12890
12891 * src/output.c (output_gram): Keep track of the hairy one.
12892
1a4648ff
AD
128932001-12-15 Akim Demaille <akim@epita.fr>
12894
12895 Make `make distcheck' work.
12896
12897 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
12898 system.h which uses libgettext.h.
12899
9c2c67e6
AD
129002001-12-15 Akim Demaille <akim@epita.fr>
12901
12902 * src/nullable.c (set_nullable): Useless rules must be skipped,
12903 otherwise, since we range over their symbols, we might look at a
12904 nonterminal which no longer ``exists'', i.e., it is not counted in
12905 `nvars', hence we overflow our arrays.
12906
93ede233
AD
129072001-12-15 Akim Demaille <akim@epita.fr>
12908
12909 The header can also be produced directly, without any obstack!
12910 Yahoo!
12911
12912 * src/files.c, src/files.h (defines_obstack): Remove.
12913 (compute_header_macro): Global.
12914 (defines_obstack_save): Remove.
12915 * src/reader.c (parse_union_decl): No longer output to
12916 defines_obstack: its content can be found in the `stype' muscle
12917 anyway.
12918 (output_token_translations): Merge into...
12919 (symbols_output): this.
12920 Rename as...
12921 (symbols_save): this.
12922 (reader): Adjust.
12923 * src/output.c (header_output): New.
12924 (output): Call it.
12925
2666f928
AD
129262001-12-15 Akim Demaille <akim@epita.fr>
12927
12928 * src/reader.c (parse_union_decl): Instead of handling two obstack
12929 simultaneously, use one to define the `stype' muscle, and use the
12930 value of the latter to fill defines_obstack.
12931 (copy_comment): Remove.
12932 (copy_comment2): Work for a single obstack.
12933 Rename as...
12934 (copy_comment): this.
12935
428046f8
AD
129362001-12-15 Akim Demaille <akim@epita.fr>
12937
12938 * src/lex.c, src/lex.h (xgetc): No longer static.
12939 * src/reader.c (parse_union_decl): Revamp.
12940
ea52d706
AD
129412001-12-15 Akim Demaille <akim@epita.fr>
12942
12943 Still making progress in separating Bison into (i) input, (ii)
12944 process, (iii) output: now we can directly output the parser file
12945 without using table_obstack at all.
12946
12947 * src/files.c, src/files.h (table_obstack): Bye bye.
12948 (parser_file_name): New.
12949 * src/files.c (compute_output_file_names): Compute it.
12950 * src/output.c (actions_output, output_parser)
12951 (output_master_parser): To a file instead of an obstack.
12952
3f96f4dc
AD
129532001-12-15 Akim Demaille <akim@epita.fr>
12954
12955 Attach actions to rules, instead of pre-outputting them to
12956 actions_obstack.
12957
12958 * src/gram.h (rule_t): action and action_line are new members.
12959 * src/reader.c (symbol_list): Likewise.
12960 (copy_action): Save the actions within the rule.
12961 (packgram): Save them in rule_table.
12962 * src/output.c (actions_output): New.
12963 (output_parser): Use it on `%%actions'.
12964 (output_rule_data): Don't free rule_table.
12965 (output): Do it.
12966 (prepare): Don't save the `action' muscle.
12967 * src/bison.simple: s/%%action/%%actions/.
12968
51576fb3
AD
129692001-12-15 Akim Demaille <akim@epita.fr>
12970
12971 * src/reader.c (copy_action): When --yacc, don't append a `;'
12972 to the user action: let it fail if lacking.
dee049eb 12973 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 12974
2648a72d
AD
129752001-12-14 Akim Demaille <akim@epita.fr>
12976
12977 * src/lex.c (literalchar): Simply return the char you decoded, non
12978 longer mess around with obstacks and int pointers.
12979 Adjust all callers.
12980
92790e5b
AD
129812001-12-14 Akim Demaille <akim@epita.fr>
12982
12983 * src/lex.c (literalchar): Don't escape the special characters,
12984 just decode them, and keep them as char (before, eol was output as
12985 the 2 char string `\n' etc.).
12986 * src/output.c (output_rule_data): Use quotearg to output the
12987 token strings.
12988
927c1557
PE
129892001-12-13 Paul Eggert <eggert@twinsun.com>
12990
12991 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
12992 Do not infringe on the global user namespace when using C++.
12993 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
12994 All uses of `fprintf' and `stderr' changed.
12995
12996 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
12997
ed8e1f68
AD
129982001-12-13 Akim Demaille <akim@epita.fr>
12999
13000 The computation of nullable is broken: it doesn't handle empty
13001 RHS's properly.
13002
13003 * tests/torture.at (GNU AWK Grammar): New.
13004 * tests/sets.at (Nullable): New.
13005 * src/nullable.c (set_nullable): Instead of blindly looping over
13006 `ritems', loop over the rules, and then over their rhs's.
13007
13008 Work around Autotest bugs.
13009
13010 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
13011 frame, because Autotest understand lines starting with a `+' as
13012 traces from the shell. Then, they are not processed properly.
13013 Admittedly an Autotest bug, but we don't have time to wait for
13014 Autotest to catch up.
13015 * tests/regression.at (Broken Closure): Adjust to the new table
13016 frames.
13017 Move to...
13018 * tests/sets.at: here.
13019
cb581495
AD
130202001-12-13 Akim Demaille <akim@epita.fr>
13021
13022 * src/closure.c (closure): Use nrules instead of playing tricks
13023 with BITS_PER_WORD.
13024
2e729273
AD
130252001-12-13 Akim Demaille <akim@epita.fr>
13026
13027 * src/print.c (print_actions): Output the handling of `$' as the
13028 traces do: shifting the token EOF. Before EOF was treated as a
13029 nonterminal.
13030 * tests/regression.at: Adjust some tests.
13031 * src/print_graph.c (print_core): Complete the set of items via
13032 closure. The next-to-final and final states are still unsatisfying,
13033 but that's to be addressed elsewhere.
13034 No longer output the rule numbers, but do output the state number.
13035 A single loop for the shifts + gotos is enough, but picked a
13036 distinct color for each.
13037 (print_graph): Initialize and finalize closure.
13038
107f7dfb
AD
130392001-12-13 Akim Demaille <akim@epita.fr>
13040
13041 * src/reader.c (readgram): Remove dead code, an strip useless
13042 braces.
13043 (get_type): Remove, unused.
13044
9b53a24f
AD
130452001-12-12 Akim Demaille <akim@epita.fr>
13046
13047 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
13048 on that of lib/error.c.
13049
dbfb6dcd
AD
130502001-12-12 Akim Demaille <akim@epita.fr>
13051
13052 Some hosts don't like `/' in includes.
13053
13054 * src/system.h: Include libgettext.h without qualifying the path.
13055 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
13056 $(top_srcdir).
13057
c25fb648
MA
130582001-12-11 Marc Autret <autret_m@epita.fr>
13059
13060 * src/output.c (output_parser): Remove useless muscle.
13061
710ddc4f
MA
130622001-12-11 Marc Autret <autret_m@epita.fr>
13063
13064 * src/bison.simple: Remove #line just before %%epilogue. It
13065 is now handled in ...
13066 * src/reader.c (read_additionnal_code): Add the output of a
13067 #line for the epilogue.
13068
e83d80b8
MA
130692001-12-10 Marc Autret <autret_m@epita.fr>
13070
927c1557 13071 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
13072 replace precedent remove.
13073 * src/bison.simple: Remove #line before %%prologue because
13074 %%input-line is wrong at this time.
13075
971d5158
MA
130762001-12-10 Marc Autret <autret_m@epita.fr>
13077
13078 * src/reader.c (symbols_output): Clean up.
927c1557 13079 * src/output.c (output_gram, output): Clean up.
971d5158 13080
5edafffd
AD
130812001-12-10 Akim Demaille <akim@epita.fr>
13082
13083 * src/lalr.c (initialize_lookaheads): New. Extracted from...
13084 * src/LR0.c (set_state_table): here.
13085 * src/lalr.c (lalr): Call it.
13086
0279f8e9
AD
130872001-12-10 Akim Demaille <akim@epita.fr>
13088
13089 * src/state.h (shifts): Remove the `number' member: shifts are
13090 attached to state, hence no longer need to be labelled with a
13091 state number.
13092
190c4f5f
AD
130932001-12-10 Akim Demaille <akim@epita.fr>
13094
13095 Now that states have a complete set of members, the linked list of
13096 shifts is useless: just fill directly the state's shifts member.
13097
13098 * src/state.h (shifts): Remove the `next' member.
13099 * src/LR0.c (first_state, last_state): Remove.
13100 Adjust the callers.
13101 (augment_automaton): Don't look for the shifts that must be added
13102 a shift on EOF: it is those of the state we looked for! But now,
13103 since shifts are attached, it is no longer needed to looking
13104 merely by its id: its number.
13105
2a73b93d
AD
131062001-12-10 Akim Demaille <akim@epita.fr>
13107
13108 * src/LR0.c (augment_automaton): Better variable locality.
13109 Remove an impossible branch: if there is a state corresponding to
13110 the start symbol being shifted, then there is shift for the start
13111 symbol from the initial state.
13112
74392f6a
AD
131132001-12-10 Akim Demaille <akim@epita.fr>
13114
13115 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
13116 only when appropriate: when insert_start_shifting_state' is not
13117 invoked.
13118 * tests/regression.at (Rule Line Numbers): Adjust.
13119
37c82725
AD
131202001-12-10 Akim Demaille <akim@epita.fr>
13121
13122 * src/LR0.c (augment_automaton): Now that all states have shifts,
13123 merge the two cases addition shifts to the initial state.
13124
6a164e0c
AD
131252001-12-10 Akim Demaille <akim@epita.fr>
13126
13127 * src/lalr.c (set_state_table): Move to...
13128 * src/LR0.c: here.
13129 * src/lalr.c (lalr): Don't call it...
13130 * src/LR0.c (generate_states): do it.
13131 * src/LR0.h (first_state): Remove, only the table is used.
13132
7215de24
AD
131332001-12-10 Akim Demaille <akim@epita.fr>
13134
13135 * src/LR0.h (first_shift, first_reduction): Remove.
13136 * src/lalr.c: Don't use first_shift: find shifts through the
13137 states.
13138
80e25d4d
AD
131392001-12-10 Akim Demaille <akim@epita.fr>
13140
13141 * src/LR0.c: Attach shifts to states as soon as they are
13142 computed.
13143 * src/lalr.c (set_state_table): Instead of assigning shifts to
13144 state, just assert that the mapping was properly done.
13145
0ab3728b
AD
131462001-12-10 Akim Demaille <akim@epita.fr>
13147
13148 * src/LR0.c (insert_start_shift): Rename as...
13149 (insert_start_shifting_state): this.
13150 (insert_eof_shifting_state, insert_accepting_state): New.
13151 (augment_automaton): Adjust.
13152 Better locality of the variables.
13153 When looking if the start_symbol is shifted from the initial
13154 state, using `while (... symbol != start_symbol ...)' sounds
13155 better than `while (... symbol < start_symbol ...)': If fail
13156 to see how the order between symbols could be relevant!
13157
78af9bbc
AD
131582001-12-10 Akim Demaille <akim@epita.fr>
13159
13160 * src/getargs.h: Don't declare `spec_name_prefix' and
13161 `spec_file_prefix', declared by src/files.h.
13162 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
13163 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
13164 * src/output.c (prepare): Adjust.
13165 * src/reader.c (symbols_output): Likewise.
13166 * src/vmsgetargs.c: Vaguely adjust, but who cares?
13167
bdef2a41
AD
131682001-12-10 Akim Demaille <akim@epita.fr>
13169
13170 * src/muscle_tab.c (muscle_init): NULL is a better default than
13171 `"0"'.
13172
3735969c
AD
131732001-12-10 Akim Demaille <akim@epita.fr>
13174
13175 * src/reader.c (reader): Calling symbols_output once is enough.
13176
49701457
AD
131772001-12-10 Akim Demaille <akim@epita.fr>
13178
13179 Now that states have a complete set of members, the linked list of
13180 reductions is useless: just fill directly the state's reductions
13181 member.
13182
13183 * src/state.h (struct reductions): Remove member `number' and
13184 `next'.
13185 * src/LR0.c (first_reduction, last_reduction): Remove.
13186 (save_reductions): Don't link the new reductions, store them in
13187 this_state.
13188 * src/lalr.c (set_state_table): No need to attach reductions to
13189 states, it's already done.
13190 * src/output.c (output_actions): No longer free the shifts, then
13191 the reductions, then the states: free all the states and their
13192 members.
13193
0edad749
AD
131942001-12-10 Akim Demaille <akim@epita.fr>
13195
13196 * src/options.c (OPTN, DRTV, BOTH): New.
13197 (option_table): Use them.
13198
0edad749
AD
13199 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
13200 the job of system.h.
13201 * src/options.c: Don't include stdio.h and xalloc.h for the same
13202 reasons.
13203
5449dd0f
AD
132042001-12-10 Akim Demaille <akim@epita.fr>
13205
13206 * src/output.c (output, prepare): Make sure the values of the
13207 muscles `action' and `prologue' are 0-terminated.
13208
a870c567
AD
132092001-12-10 Akim Demaille <akim@epita.fr>
13210
13211 Clean up GCC warnings.
13212
13213 * src/reader.c (copy_action): `buf' is not used.
13214 (parse_skel_decl): Be static.
13215 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
13216 * src/options.h (create_long_option_table): Have a real prototype.
13217 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
13218 (hash_delete_at): Return const void *.
13219 Adjust casts to preserve the const.
13220
80df8768
AD
132212001-12-10 Akim Demaille <akim@epita.fr>
13222
13223 * configure.in: Require 2.52g.
13224 M4 is not needed, but AUTOM4TE is.
13225 * m4/m4.m4: Remove.
13226 * tests/Makefile.am: Adjust.
13227
f693ad14
AD
132282001-12-10 Akim Demaille <akim@epita.fr>
13229
13230 One structure for states is enough, even though theoretically
13231 there are LR(0) states and LALR(1) states.
13232
13233 * src/lalr.h (state_t): Remove.
13234 (state_table): Be state_t **, not state_t *.
13235 * src/state.h (core, CORE_ALLOC): Rename as...
13236 (state_t, STATE_ALLOC): this.
13237 Add the LALR(1) members: shifts, reductions, errs.
13238 * src/LR0.c (state_table): Rename as...
13239 (state_hash): this, to avoid name clashes with the global
13240 `state_table'.
13241 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
13242 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
13243
74ffbcb6
AD
132442001-12-10 Akim Demaille <akim@epita.fr>
13245
13246 Bison dumps core on bash.y.
13247 Reported by Pascal Bart.
13248
13249 * src/warshall.c (bitmatrix_print): New.
13250 (TC): Use it.
ba0fe3c7 13251 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
74ffbcb6
AD
13252 j must be the outer loop.
13253 * tests/regression.at (Broken Closure): New.
13254
07708e19
AD
132552001-12-05 Akim Demaille <akim@epita.fr>
13256
13257 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
13258 its argument.
ba1ecc07 13259 Reported by Peter Hamorsky.
07708e19 13260
92b16366
AD
132612001-12-05 Akim Demaille <akim@epita.fr>
13262
13263 * src/conflicts.c (err_table): Remove.
13264 (resolve_sr_conflict): Adjust.
13265 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
13266 Rename as...
13267 (state_t.reductions, state_t.shifts): this.
13268
076ab033
AD
132692001-12-05 Akim Demaille <akim@epita.fr>
13270
13271 * src/reduce.c (reduce_grammar_tables): No longer disable the
13272 removal of useless rules via CPP but via `if (0)', so that the
13273 compiler still check the code is valid.
13274 For instance, it should have noticed `rline' no longer exists: use
13275 the `line' member of rule_t.
13276 * src/gram.c (dummy, rline): Remove, unused.
13277
3843c413
AD
132782001-12-05 Akim Demaille <akim@epita.fr>
13279
13280 * src/output.c (pack_vector): Use assert, not berror.
13281 * src/main.c (berror): Remove, unused.
13282
43168960
AD
132832001-12-05 Akim Demaille <akim@epita.fr>
13284
13285 New experimental feature: if --verbose --trace output all the
13286 items of a state, not only its kernel.
13287
13288 * src/print.c (print_core): If `trace_flag', then invoke closure
13289 before outputting the items of the state (print_core is no longer
13290 a correct name them).
13291 (print_results): Invoke new_closure/free_closure if needed.
13292
b2872512
AD
132932001-12-05 Akim Demaille <akim@epita.fr>
13294
13295 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
13296 * src/closure.c, src/closure.h (itemsetsize): Rename as...
13297 (nitemset): for consistency with the rest of the project.
13298
23cbcc6c
AD
132992001-12-05 Akim Demaille <akim@epita.fr>
13300
13301 * src/closure.c (print_closure): Improve.
13302 (closure): Use it for printing input and output.
13303
03ec521c
AD
133042001-12-05 Akim Demaille <akim@epita.fr>
13305
13306 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
13307 indexed by nonterminals.
13308
3a7456dd
AD
133092001-12-05 Akim Demaille <akim@epita.fr>
13310
13311 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
13312 what it was!).
13313 * src/warshall.h: Remove accidental duplication of the content.
13314
1cbcf2e7
AD
133152001-12-05 Akim Demaille <akim@epita.fr>
13316
13317 * src/closure.c (set_fderives): De-obfuscate.
13318
84182270
AD
133192001-12-05 Akim Demaille <akim@epita.fr>
13320
13321 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
13322
3f6f053c
AD
133232001-12-05 Akim Demaille <akim@epita.fr>
13324
13325 * src/closure.c (set_firsts): De-obfuscate.
13326
7a5350ba
AD
133272001-12-05 Akim Demaille <akim@epita.fr>
13328
13329 * src/output.c (action_row): De-obfuscate
13330 using the good o' techniques: arrays not pointers, variable
13331 locality, BITISSET, RESETBIT etc.
13332
d954473d
AD
133332001-12-05 Akim Demaille <akim@epita.fr>
13334
13335 Pessimize the code to simplify it: from now on, all the states
13336 have a valid SHIFTS, which NSHIFTS is possibly 0.
13337
13338 * src/LR0.c (shifts_new): Be global and move to..
13339 * src/state.c, src/state.h: here.
13340 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
13341 * src/print_graph: Adjust.
13342
9839bbe5
AD
133432001-12-05 Akim Demaille <akim@epita.fr>
13344
13345 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
13346 * src/conflicts.c: Use it.
13347 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
13348 incorrectly ``simplified''.
13349
9f136c07
AD
133502001-12-05 Akim Demaille <akim@epita.fr>
13351
13352 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
13353 using the good o' techniques: arrays not pointers, variable
13354 locality, BITISSET, RESETBIT etc.
13355
b608206e
AD
133562001-12-05 Akim Demaille <akim@epita.fr>
13357
13358 * src/state.h (SHIFT_SYMBOL): New.
13359 * src/conflicts.c: Use it to deobfuscate.
13360
52afa962
AD
133612001-12-05 Akim Demaille <akim@epita.fr>
13362
13363 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
13364 (print_reductions): De-obfuscate using the good o' techniques:
13365 arrays not pointers, variable locality, BITISSET.
13366
e74dc321
AD
133672001-12-05 Akim Demaille <akim@epita.fr>
13368
13369 * src/conflicts.c (print_reductions): Arrays, not pointers.
13370 Use BITISSET.
13371
768fca83
AD
133722001-12-05 Akim Demaille <akim@epita.fr>
13373
13374 * src/conflicts.c (print_reductions): Pessimize, but clarify.
13375
a17e599f
AD
133762001-12-05 Akim Demaille <akim@epita.fr>
13377
13378 * src/conflicts.c (print_reductions): Improve variable locality.
13379
a04bc341
AD
133802001-12-05 Akim Demaille <akim@epita.fr>
13381
13382 * src/conflicts.c (print_reductions): Pessimize, but clarify.
13383
c8ea038e
AD
133842001-12-05 Akim Demaille <akim@epita.fr>
13385
13386 * src/conflicts.c (print_reductions): Improve variable locality.
13387
aa2aab3c
AD
133882001-12-05 Akim Demaille <akim@epita.fr>
13389
13390 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
13391 * src/lalr.c: Use them.
13392
b178c8cc
AD
133932001-12-05 Akim Demaille <akim@epita.fr>
13394
13395 * src/LR0.c (augment_automaton): Formatting changes.
13396 Better variable locality.
13397
f67d13aa
AD
133982001-12-05 Akim Demaille <akim@epita.fr>
13399
13400 * src/lalr.c (matrix_print): New.
13401 (transpose): Use it.
13402 Use arrays instead of pointers.
13403
c2713865
AD
134042001-12-05 Akim Demaille <akim@epita.fr>
13405
13406 * src/lalr.c (maxrhs): Move to...
13407 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
13408 * src/lalr.c (build_relations): Adjust.
13409
9887c18a
AD
134102001-12-05 Akim Demaille <akim@epita.fr>
13411
13412 * src/lalr.c (transpose): Free the memory allocated to the
13413 argument, as it is replaced by the results by the unique caller.
13414 (build_relations): Merely invoke transpose: it handles the memory
13415 deallocation.
13416 Improve variable locality.
13417 Avoid variables used as mere abbreviations.
13418 (compute_lookaheads): Use arrays instead of pointers.
13419
4d4f699c
AD
134202001-12-05 Akim Demaille <akim@epita.fr>
13421
13422 * src/lalr.c (initialize_F): Improve variable locality.
13423 Avoid variables used as mere abbreviations.
13424
80a69750
AD
134252001-12-05 Akim Demaille <akim@epita.fr>
13426
13427 * src/derives.c (print_derives): Display the ruleno.
13428 * src/lalr.c (initialize_F, transpose): Better variable locality
13429 to improve readability.
13430 Avoid variables used as mere abbreviations.
13431
fe961097
AD
134322001-12-05 Akim Demaille <akim@epita.fr>
13433
13434 * src/lalr.c (traverse): Use arrays instead of pointers.
13435
e3e4e814
AD
134362001-12-05 Akim Demaille <akim@epita.fr>
13437
13438 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
13439 the handling of squeue.
13440 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
13441
630e182b
AD
134422001-12-05 Akim Demaille <akim@epita.fr>
13443
13444 Because useless nonterminals are now kept alive (instead of being
13445 `destroyed'), we now sometimes examine them, and store information
13446 related to them. Hence we need to know their number, and adjust
13447 memory allocations.
13448
13449 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
13450 static.
13451 * src/LR0.c (allocate_itemsets): The memory allocated to
13452 `symbol_count' was used for two different purpose: once to count
13453 the number of occurrences of each symbol, and later reassigned to
13454 `shift_symbol', containing the symbol that can be shifted from a
13455 given state.
13456 Deobfuscate, i.e., allocate, use and free `symbol_count' here
13457 only, and...
13458 (new_itemsets): Allocate `shift_symbol' here.
13459 (allocate_itemsets): symbol_count includes useless nonterminals.
13460 Make room for them.
13461 (free_storage): Use `free', not `XFREE', for pointers that cannot
13462 be null.
13463
81b51460
AD
134642001-12-05 Akim Demaille <akim@epita.fr>
13465
13466 * src/nullable.c (set_nullable): Deobfuscate the handling of
13467 ritem.
13468 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
13469
3067fbef
AD
134702001-12-05 Akim Demaille <akim@epita.fr>
13471
13472 * src/gram.c, src/gram.h (ritem_print): New.
13473 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
13474 (This useless function was defined only to work around VMS linkers
13475 that can't handle compilation units with variables only).
13476 * src/reduce.c (dump_grammar): Use it to trace the construction of
13477 ritem.
13478
c2bea5f9
PE
134792001-12-04 Paul Eggert <eggert@twinsun.com>
13480
7d27c823
PE
13481 * src/bison.simple (union yyalloc): Change member names
13482 to be the same as the stack names.
13483 (yyparse): yyptr is now union yyalloc *, not char *.
13484 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
13485 and may generate better code on some machines.
c2bea5f9
PE
13486 (yystpcpy): Use prototype if __STDC__ is defined, not just
13487 if __cplusplus is defined.
35687a9d 13488
2c8a9dfa
AD
134892001-11-30 Akim Demaille <akim@epita.fr>
13490
13491 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
13492 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
13493 Gettext doesn't compile cleanly, and dies with -Werror.
13494 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
13495 Include WARNING_CFLAGS here.
13496 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
13497 before being defined.
13498
f4e421e6
AD
134992001-11-27 Paul Eggert <eggert@twinsun.com>
13500
13501 * lib/quotearg.h (quotearg_n, quotearg_n_style):
13502 First arg is int, not unsigned.
13503 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
13504 (SIZE_MAX, UINT_MAX): New macros.
13505 (quotearg_n_options): Abort if N is negative.
13506 Avoid overflow check on hosts where size_t is 64 bits and int
13507 is 32 bits, as overflow is impossible there.
13508 Fix off-by-one typo that caused unnecessary reallocation.
13509
7093d0f5
AD
135102001-11-29 Paul Eggert <eggert@twinsun.com>
13511
13512 Name space cleanup in generated parser.
13513
13514 * doc/bison.texinfo (Bison Parser): Discuss system headers
13515 and their effect on the user name space.
13516
13517 * src/bison.simple:
13518 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
13519 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
13520 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
13521
13522 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
13523 on user names when possible.
13524
13525 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
13526 Simplify test for whather <alloca.h> exists.
13527
13528 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
13529
13530 (<stdio.h>): Include if YYDEBUG.
13531
13532 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
13533 ! defined (yyoverflow) && ! defined (yymemcpy).
13534
13535 (yymemcpy, yyparse): Rename local variables as needed so that
13536 they all begin with 'yy'.
13537
13538 (yystrlen, yystpcpy): New functions.
13539
13540 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
13541 All uses changed.
13542
13543 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
13544 instead of relying on string.h functions. Use YYSTACK_ALLOC
13545 and YYSTACK_FREE instead of malloc and free.
13546
fd51e5ff
AD
135472001-11-30 Akim Demaille <akim@epita.fr>
13548
13549 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
13550 before their first uses.
13551 (YYBISON, YYPURE): Move to the top of the output.
13552
7d13ff5f
AD
135532001-11-30 Akim Demaille <akim@epita.fr>
13554
13555 * tests/reduce.at (Useless Nonterminals): Fix.
13556
892a3995
AD
135572001-11-30 Akim Demaille <akim@epita.fr>
13558
13559 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
13560 if body instead of `;' to pacify GCC's warnings.
13561
68f1e3ed
AD
135622001-11-30 Akim Demaille <akim@epita.fr>
13563
13564 Instead of mapping the LHS of unused rules to -1, keep the LHS
13565 valid, but flag the rules as invalid.
13566
13567 * src/gram.h (rule_t): `useful' is a new member.
13568 * src/print.c (print_grammar): Adjust.
13569 * src/derives.c (set_derives): Likewise.
13570 * src/reader.c (packgram, reduce_output): Likewise.
13571 * src/reduce.c (reduce_grammar_tables): Likewise.
13572 * tests/reduce.at (Underivable Rules, Useless Rules): New.
13573
d2d1b42b
AD
135742001-11-30 Akim Demaille <akim@epita.fr>
13575
13576 * src/reduce.c (reduce_output): Formatting changes.
13577 * src/print.c (print_results, print_grammar): Likewise.
13578 * tests/regression.at (Rule Line Numbers)
13579 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
13580
760b53a8
AD
135812001-11-30 Akim Demaille <akim@epita.fr>
13582
13583 * src/reduce.c (nonterminals_reduce): Instead of throwing away
13584 useless nonterminals, move them at the end of the symbol arrays.
13585 (reduce_output): Adjust.
13586 * tests/reduce.at (Useless Nonterminals): Adjust.
13587
00238958
AD
135882001-11-30 Akim Demaille <akim@epita.fr>
13589
13590 * src/reduce.c: Various comment/formatting changes.
13591 (nonterminals_reduce): New, extracted from...
13592 (reduce_grammar_tables): here.
13593 (reduce_grammar): Call nonterminals_reduce.
13594
396452de
PE
135952001-11-29 Paul Eggert <eggert@twinsun.com>
13596
13597 * src/bison.simple (YYSTACK_REALLOC): Remove.
13598 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
13599 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
13600 New macros.
13601 (union yyalloc): New type.
13602 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
13603 an arbitrary restriction on hosts where size_t is wider than int.
13604
13605 (yyparse): Don't dump core if alloca or malloc fails; instead, report
13606 a parser stack overflow. Allocate just one block of memory for all
13607 three stacks, instead of allocating three blocks; this typically is
13608 faster and reduces fragmentation.
13609
13610 Do not limit the number of items in the stack to a value that fits
13611 in 'int', as this is an arbitrary limit on hosts with 64-bit
13612 size_t and 32-bit int.
13613
147e184c
MA
136142001-11-29 Marc Autret <autret_m@epita.fr>
13615
13616 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
13617 of defining YYERROR_VERBOSE.
13618 [AT_DATA]: $4 is now out of C declarations in the prologue.
13619
426cf563
MA
136202001-11-28 Marc Autret <autret_m@epita.fr>
13621
13622 * src/reader.c (parse_dquoted_param): New.
13623 (parse_skel_decl): Use it.
13624 * src/lex.h: Add its prototype.
13625 * src/lex.c (literalchar): Become not static.
13626
c7925b99
MA
136272001-11-28 Marc Autret <autret_m@epita.fr>
13628
13629 * src/output.h: And put its extern declaration here.
13630 * src/output.c (error_verbose): Define here.
13631 (prepare): Echo name modification.
13632 * src/getargs.h: Clean its extern declaration.
13633 * src/getargs.c (error_verbose_flag): Remove.
13634 (getargs): Remove case 'e'.
13635 * src/options.c (option_table): 'error-verbose' is now seen as simple
13636 percent option.
13637 Include output.h.
13638
13639 * src/reader.c (read_declarations): Remove case tok_include.
13640 (parse_include_decl): Remove.
13641 * src/lex.h (token_t): Remove tok_include.
13642 * src/options.c (option_table): 'include' is now a simple command line
13643 option.
13644
5b5d1929
MA
136452001-11-28 Marc Autret <autret_m@epita.fr>
13646
13647 * src/bison.simple: Adjust muscle names.
13648 * src/muscle_tab.c (muscle_init): Also rename the muscles.
13649 * src/output.c (prepare): s/_/-/ for the muscles names.
13650 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
13651
8850be4b
MA
136522001-11-28 Marc Autret <autret_m@epita.fr>
13653
13654 * src/bison.simple: Fix debug.
13655 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
13656
4a38e613
AD
136572001-11-28 Akim Demaille <akim@epita.fr>
13658
13659 * src/LR0.c (shifts_new): New.
13660 (save_shifts, insert_start_shift, augment_automaton): Use it.
13661
4b35e1c1
AD
136622001-11-28 Akim Demaille <akim@epita.fr>
13663
13664 * src/closure.c (closure): `b' and `ruleno' denote the same value:
13665 keep ruleno only.
13666
d2b04478
AD
136672001-11-28 Akim Demaille <akim@epita.fr>
13668
13669 * src/closure.c (closure): Instead of looping over word in array
13670 then bits in words, loop over bits in array.
13671
2c4c30aa
AD
136722001-11-28 Akim Demaille <akim@epita.fr>
13673
13674 * src/closure.c (closure): No longer optimize the special case
13675 where all the bits of `ruleset[r]' are set to 0, to make the code
13676 clearer.
13677
576890b7
AD
136782001-11-28 Akim Demaille <akim@epita.fr>
13679
13680 * src/closure.c (closure): `r' and `c' are new variables, used to
13681 de-obfuscate accesses to RULESET and CORE.
13682
cb487d7d
AD
136832001-11-28 Akim Demaille <akim@epita.fr>
13684
13685 * src/reduce.c (reduce_print): Use ngettext.
13686 (dump_grammar): Improve the trace accuracy.
13687
6013d43f
AD
136882001-11-28 Akim Demaille <akim@epita.fr>
13689
13690 * src/reduce.c (dump_grammar): Don't translate trace messages.
13691
cb4956ee
AD
136922001-11-28 Akim Demaille <akim@epita.fr>
13693
13694 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
13695 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
13696 as all tags are free'ed afterwards.
13697 From Enrico Scholz.
13698
648185ab
PE
136992001-11-27 Paul Eggert <eggert@twinsun.com>
13700
13701 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
13702 use alloca when we didn't want to, and vice versa.
13703
68254a03
MA
137042001-11-27 Marc Autret <autret_m@epita.fr>
13705
9113b58f
AD
13706 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
13707 initialization.
68254a03
MA
13708 * src/output.c (prepare): Remove its update.
13709
04d843a2
MA
137102001-11-27 Marc Autret <autret_m@epita.fr>
13711
13712 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
13713 Use %error-verbose.
13714
d2079671 137152001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
13716
13717 * src/bison.simple: Remove YYERROR_VERBOSE using.
13718 Use %%error_verbose.
13719 (yyparse): Likewise.
13720 * src/output.c (prepare): Give its final value.
13721 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
13722 * src/getargs.h: Add its extern declaration.
13723 * src/getargs.c (error_verbose_flag): New int.
13724 (getargs): Update to catch new case.
13725 * src/options.c (option_table): 'error-verbose' is a new option.
13726 (shortopts): Update.
13727
e0327bc8
AD
137282001-11-27 Akim Demaille <akim@epita.fr>
13729
13730 * src/system.h: Use intl/libgettext.h.
13731 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
13732
000f1a3c
AD
137332001-11-27 Akim Demaille <akim@epita.fr>
13734
13735 * tests/torture.at (Exploding the Stack Size with Malloc):
13736 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
13737
26cfe0be
AD
137382001-11-27 Akim Demaille <akim@epita.fr>
13739
13740 * src/files.c: Include error.h.
13741 Reported by Hans Aberg.
13742
f6bd5427
MA
137432001-11-26 Marc Autret <autret_m@epita.fr>
13744
d2079671 13745 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
13746 (read_declarations): Add case tok_include.
13747 * src/getargs.h (include): Add its extern definition.
13748 * src/getargs.c (include): New const char *.
13749 (getargs): Add case '-I'.
13750 * src/options.c (option_table): Add include as command line and
13751 percent option.
13752 * src/lex.h (token_t): Add tok_include.
13753
2ca209c1
AD
137542001-11-26 Akim Demaille <akim@epita.fr>
13755
13756 * src/reader.c (readgram): Make sure rules for mid-rule actions
13757 have a lineno equal to that of their host rule.
13758 Reported by Hans Aberg.
13759 * tests/regression.at (Rule Line Numbers): New.
13760
0e41b407
AD
137612001-11-26 Akim Demaille <akim@epita.fr>
13762
13763 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
13764 size_ts.
13765
137662001-11-26 Akim Demaille <akim@epita.fr>
13767
13768 * src/complain.c, src/complain.h (error): Remove, provided by
13769 lib/error.[ch].
13770
e0c40012
AD
137712001-11-26 Akim Demaille <akim@epita.fr>
13772
13773 * src/reader.c (read_declarations): Don't abort on tok_illegal,
13774 issue an error message.
13775 * tests/regression.at (Invalid %directive): New.
13776 Reported by Hans Aberg.
13777
5e147124
AD
137782001-11-26 Akim Demaille <akim@epita.fr>
13779
13780 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
13781 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
13782
a034c8b8
AD
137832001-11-26 Akim Demaille <akim@epita.fr>
13784
13785 * src/conflicts.c (conflicts_print): Don't complain at all when
13786 there are no reduce/reduce conflicts, and as many shift/reduce
13787 conflicts as expected.
13788 * tests/regression.at (%expect right): Adjust.
13789
c64a20f3
AD
137902001-11-23 Akim Demaille <akim@epita.fr>
13791
13792 * lib/alloca.c: Update, from fileutils.
13793
5b0d29bb
AD
137942001-11-23 Akim Demaille <akim@epita.fr>
13795
13796 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
13797
722c4bfe
AD
137982001-11-23 Akim Demaille <akim@epita.fr>
13799
13800 * src/system.h: Include alloca.h.
13801 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
13802
6255b435
AD
138032001-11-23 Akim Demaille <akim@epita.fr>
13804
13805 * src/print_graph.c (print_actions): Remove `rule', unused.
13806 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
13807 pacify GCC's signed < unsigned warnings.
13808 * src/closure.c (itemsetsize): Likewise.
13809 * src/reader.c (symbol_list_new): Static.
13810
b29b2ed5
AD
138112001-11-23 Akim Demaille <akim@epita.fr>
13812
13813 Attaching lineno to buckets is stupid, since only one copy of each
13814 symbol is kept, only the line of the first occurrence is kept too.
13815
13816 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
13817 * src/reader.c (rline_allocated): Remove, unused.
13818 (symbol_list): Have a `line' member.
13819 (symbol_list_new): New.
13820 (readgram): Use it.
13821 * src/print.c (print_grammar): Output the rule line numbers.
13822 * tests/regression.at (Solved SR Conflicts)
13823 (Unresolved SR Conflicts): Adjust.
13824 Reported by Hans Aberg.
13825
a81b1d4a
MA
138262001-11-22 Marc Autret <autret_m@epita.fr>
13827
13828 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
13829
c1ecb3c1
MA
138302001-11-22 Marc Autret <autret_m@epita.fr>
13831
13832 * src/muscle_tab.c (muscle_init): Remove initialization of
13833 skeleton muscle.
13834 * src/output.c (output_master_parser): Do it here.
13835
fbe01355
AD
138362001-11-20 Akim Demaille <akim@epita.fr>
13837
13838 * po/sv.po: New.
13839 * configure.in (ALL_LINGUAS): Adjust.
13840 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
13841 longer contains strings to translate.
13842
81e895c0
AD
138432001-11-19 Akim Demaille <akim@epita.fr>
13844
13845 * src/conflicts.c (conflicts_print): Add a missing \n.
13846
6bb1878b
AD
138472001-11-19 Akim Demaille <akim@epita.fr>
13848
13849 * src/nullable.c (nullable_print): New.
13850 (set_nullable): Call it when tracing.
13851 Better locality of variables.
13852
d9ec2d07
AD
138532001-11-19 Akim Demaille <akim@epita.fr>
13854
13855 * src/print.c (print_actions): Better locality of variables.
13856
720e5c1b
AD
138572001-11-19 Akim Demaille <akim@epita.fr>
13858
13859 * src/derives.c (print_derives): Fix and enrich.
13860 * src/closure.c (print_fderives): Likewise.
13861
fb908786
AD
138622001-11-19 Akim Demaille <akim@epita.fr>
13863
13864 * src/closure.c (itemsetend): Remove, replaced with...
13865 (itemsetsize): new.
13866
125ecb56
AD
138672001-11-19 Akim Demaille <akim@epita.fr>
13868
13869 * src/LR0.c (kernel_end): Remove, replaced with...
13870 (kernel_size): new.
13871
d8cf039f
AD
138722001-11-19 Akim Demaille <akim@epita.fr>
13873
13874 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
13875 to clarify.
13876
7bec0760
AD
138772001-11-19 Akim Demaille <akim@epita.fr>
13878
13879 * src/closure.c (closure): Use arrays instead of pointers to clarify.
13880
c87d4863
AD
138812001-11-19 Akim Demaille <akim@epita.fr>
13882
13883 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
13884 trace messages.
13885 * src/LR0.c: Likewise.
13886 (allocate_itemsets): Use arrays instead of pointers to clarify.
13887
9bfe901c
AD
138882001-11-19 Akim Demaille <akim@epita.fr>
13889
13890 * src/getargs.c (statistics_flag): Replace with...
13891 (trace_flag): New.
13892 (longopts): Accept --trace instead of --statistics.
13893 * src/getargs.h, src/options.c: Adjust.
13894 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
13895 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
13896
97db7bd4
AD
138972001-11-19 Akim Demaille <akim@epita.fr>
13898
cc72668c 13899 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
13900 pointers to clarify the code.
13901 (save_reductions, save_shifts): Factor common parts of alternatives.
13902
2c5f66ed
AD
139032001-11-19 Akim Demaille <akim@epita.fr>
13904
13905 * src/LR0.c (new_state, get_state): Complete TRACE code.
13906 * src/closure.c: Include `reader.h' to get `tags', needed by the
13907 trace code.
13908 Rename the conditional DEBUG as TRACE.
13909 Output consistently TRACEs to stderr, not stdout.
13910 * src/derives.c: Likewise.
13911 * src/reduce.c: (inaccessable_symbols): Using if is better style
13912 than goto.
13913 Use `#if TRACE' instead of `#if 0' for tracing code.
13914
300f275f
AD
139152001-11-19 Akim Demaille <akim@epita.fr>
13916
13917 * src/system.h (LIST_FREE, shortcpy): New.
13918 * src/LR0.c: Use them.
13919 * src/output.c (free_itemsets, free_reductions, free_shifts):
13920 Remove, replaced by LIST_FREE.
13921
f59c437a
AD
139222001-11-19 Akim Demaille <akim@epita.fr>
13923
13924 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
13925 (REDUCTIONS_ALLOC): New.
13926 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
13927 allocation.
13928
6986fd9e
AD
139292001-11-19 Akim Demaille <akim@epita.fr>
13930
13931 * src/LR0.c (new_state): Complete trace code.
13932 * src/nullable.c (set_nullable): Don't translate traces.
13933
4bc30f78
AD
139342001-11-19 Akim Demaille <akim@epita.fr>
13935
13936 * src/print_graph.c (print_core): Better locality of variables.
13937 * src/print.c (print_core): Likewise.
13938
08a946e0
AD
139392001-11-19 Akim Demaille <akim@epita.fr>
13940
13941 * src/vcg.c: You do the output, so you are responsible of the
13942 handling of VCG syntax, in particular: use quotearg.
13943 * src/print_graph.c: Don't.
13944 (print_actions): Don't output the actions as part of the nodes,
13945 since that's the job of the edges.
13946 (print_state): Don't output by hand: fill the node description,
9bfe901c 13947 and ask for its output.
08a946e0 13948
f0473484
AD
139492001-11-19 Akim Demaille <akim@epita.fr>
13950
cc72668c
AD
13951 * src/bison.simple (yyparse): When verbosely reporting an error,
13952 no longer put additional quotes around token names.
f0473484
AD
13953 * tests/calc.at: Adjust.
13954
e41dc700
AD
139552001-11-19 Akim Demaille <akim@epita.fr>
13956
13957 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
13958 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
13959 * src/output.c: Adjust.
13960
652a871c
AD
139612001-11-19 Akim Demaille <akim@epita.fr>
13962
13963 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
13964 (rule_t): this.
13965 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
13966
b2ed6e58
AD
139672001-11-19 Akim Demaille <akim@epita.fr>
13968
13969 * src/gram.h (rule_t): New.
13970 (rule_table): New.
13971 (rrhs, rlhs): Remove, part of state_t.
13972 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
13973 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
13974 * src/reader.c, src/reduce.c: Adjust.
13975
edad7067
AD
139762001-11-19 Akim Demaille <akim@epita.fr>
13977
13978 * src/reader.c (symbols_output): New, extracted from...
13979 (packsymbols): Here.
13980 (reader): Call it.
13981
3feec034
AD
139822001-11-19 Akim Demaille <akim@epita.fr>
13983
13984 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
13985 (maxrhs): this new function.
13986
ddcd5fdf
AD
139872001-11-19 Akim Demaille <akim@epita.fr>
13988
cc72668c 13989 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
13990 Adjust.
13991
bb527fc2
AD
139922001-11-19 Akim Demaille <akim@epita.fr>
13993
cc72668c 13994 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
13995 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
13996 * src/lalr.c: Adjust.
13997
a845a697
AD
139982001-11-19 Akim Demaille <akim@epita.fr>
13999
14000 * src/lalr.c (initialize_LA): Only initialize LA. Let...
14001 (set_state_table): handle the `lookaheads' members.
14002
f004bf6a
AD
140032001-11-19 Akim Demaille <akim@epita.fr>
14004
cc72668c
AD
14005 * src/lalr.h (lookaheads): Removed array, whose contents is now
14006 a member of...
f004bf6a
AD
14007 (state_t): this structure.
14008 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
14009 Adjust.
14010
de326cc0
AD
140112001-11-19 Akim Demaille <akim@epita.fr>
14012
cc72668c
AD
14013 * src/lalr.h (consistent): Removed array, whose contents is now
14014 a member of...
de326cc0
AD
14015 (state_t): this structure.
14016 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
14017 Adjust.
14018
90b4416b
AD
140192001-11-19 Akim Demaille <akim@epita.fr>
14020
cc72668c
AD
14021 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
14022 contents are now members of...
90b4416b
AD
14023 (state_t): this structure.
14024 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
14025 Adjust.
14026
9703cc49
AD
140272001-11-19 Akim Demaille <akim@epita.fr>
14028
14029 * src/lalr.h (state_t): New.
14030 (state_table): Be a state_t * instead of a core **.
14031 (accessing_symbol): Remove, part of state_t.
14032 * src/lalr.c: Adjust.
14033 (set_accessing_symbol): Merge into...
14034 (set_state_table): this.
14035 * src/print_graph.c, src/conflicts.c: Adjust.
14036
d803322e
AD
140372001-11-14 Akim Demaille <akim@epita.fr>
14038
14039 * tests/calc.at, tests/output.at, tests/regression.at,
14040 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
14041 now the tests are run in private dirs, therefore AC_CLEANUP and
14042 family can be simplified to 0-ary.
14043 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
14044 use abs. path to find config.h.
14045 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
14046 stderr, there can be way too much random noise.
14047 Instead pass -Werror to GCC and rely on the exit status.
14048 Reported by Wolfram Wagner.
14049
3d76b07d
AD
140502001-11-14 Akim Demaille <akim@epita.fr>
14051
14052 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
14053 defined only if yyoverflow is defined, to avoid `warning: unused
14054 variable `yyvs1''.
14055 Reported by The Test Suite.
14056
09b503c8
AD
140572001-11-14 Akim Demaille <akim@epita.fr>
14058
14059 * src/print.c: Include reduce.h.
14060 Reported by Hans Aberg.
14061
140622001-11-14 Akim Demaille <akim@epita.fr>
14063
14064 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
14065 Revert a previous patch: these are really const.
14066 * src/conflicts.c (conflict_report): Additional useless pair of
14067 braces to pacify GCC's warnings for `if () if () {} else {}'.
14068 * src/lex.c (parse_percent_token): Replace equal_offset with
14069 arg_offset.
14070 arg is const.
14071 Be sure to strdup `arg' when used, since there is no reason for
14072 token_buffer not to change.
14073
0f37a994
AD
140742001-11-14 Akim Demaille <akim@epita.fr>
14075
14076 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
14077 definition.
14078 * src/main.c (main): Use them.
14079 Suggested by Hans Aberg.
14080
d39d93b8
AD
140812001-11-12 Akim Demaille <akim@epita.fr>
14082
14083 * src/system.h (ngettext): Now that we use ngettext, be sure to
14084 provide a default definition when NLS are not used.
14085
9edcd895
AD
140862001-11-12 Akim Demaille <akim@epita.fr>
14087
14088 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
14089 Use @kbd to denote user input.
14090 (Language and Grammar): ANSIfy the example.
14091 Adjust its layout for info/notinfo.
14092 (Location Tracking Calc): Output error messages to stderr.
14093 Output locations in a more GNUtically correct way.
14094 Fix a couple of Englishos.
14095 Adjust @group/@end group pairs.
14096
7da99ede
AD
140972001-11-12 Akim Demaille <akim@epita.fr>
14098
e3aa65c5 14099 %expect was not functioning at all.
7da99ede
AD
14100
14101 * src/conflicts.c (expected_conflicts): Set to -1.
14102 (conflict_report): Use ngettext.
14103 (conflicts_print): Check %expect and make its violation an error.
14104 * doc/bison.texinfo (Expect Decl): Adjust.
14105 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
14106 * tests/regression.at (%expect not enough, %expect right)
14107 (%expect too much): New.
14108
ba9dda1a
AD
141092001-11-12 Akim Demaille <akim@epita.fr>
14110
14111 * tests/regression.at (Conflicts): Rename as...
14112 (Unresolved SR Conflicts): this.
14113 (Solved SR Conflicts): New.
14114
337c5bd1
AD
141152001-11-12 Akim Demaille <akim@epita.fr>
14116
14117 * src/reduce.c (print_results): Rename as...
14118 (reduce_output): This.
14119 Output to OUT, passed as argument, instead of output_obstack.
14120 (dump_grammar): Likewise.
14121 (reduce_free): New.
14122 Also free V1.
14123 (reduce_grammar): No longer call reduce_output, since...
14124 * src/print.c (print_results): do it.
14125 * src/main.c (main): Call reduce_free;
14126
c73a41af
AD
141272001-11-12 Akim Demaille <akim@epita.fr>
14128
14129 * src/conflicts.c (print_reductions): Accept OUT as argument.
14130 Output to it, not to output_obstack.
14131 * src/print.c (print_actions): Adjust.
14132
0df87bb6
AD
141332001-11-12 Akim Demaille <akim@epita.fr>
14134
14135 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
14136 the result instead of using...
14137 (src_total, rrc_total, src_count, rrc_count): Remove.
14138 (any_conflicts): Remove.
14139 (print_conflicts): Split into...
14140 (conflicts_print, conflicts_output): New.
14141 * src/conflicts.h: Adjust.
14142 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 14143 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
14144 * tests/regression.at (Conflicts): New.
14145 Reported by Tom Lane.
14146
e4d3d4de
AD
141472001-11-12 Akim Demaille <akim@epita.fr>
14148
14149 * tests/regression.at (Invalid input): Remove, duplicate with
14150 ``Invalid input: 1''.
14151
6d7d248e
AD
141522001-11-12 Akim Demaille <akim@epita.fr>
14153
14154 * tests/torture.at (AT_DATA_STACK_TORTURE)
14155 (Exploding the Stack Size with Alloca)
14156 (Exploding the Stack Size with Malloc): New.
14157
e9e4c321
AD
141582001-11-12 Akim Demaille <akim@epita.fr>
14159
14160 * src/bison.simple (YYSTACK_REALLOC): New.
14161 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 14162 Reported by Per Allansson.
e9e4c321 14163
5f7e0832
AD
141642001-11-12 Pascal Bart <pascal.bart@epita.fr>
14165
14166 * src/bison.simple: Define type yystype instead of YYSTYPE, and
14167 define CPP macro, which substitute YYSTYPE by yystype.
14168 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
14169 with yyltype/YYLTYPE. This allows inclusion of the generated
14170 header within the parser if the compiler, such as GGC, accepts
14171 multiple equivalent #defines.
14172 From Akim.
14173
e3f1699f
AD
141742001-11-05 Akim Demaille <akim@epita.fr>
14175
14176 * src/reader.c (symbols_output): New, extracted from...
14177 (packsymbols): here.
14178 (reader): Adjust.
14179
65be0866
AD
141802001-11-05 Akim Demaille <akim@epita.fr>
14181
14182 * src/lex.c (parse_percent_token): s/quotearg/quote/.
14183
e4d910bf
AD
141842001-11-05 Akim Demaille <akim@epita.fr>
14185
14186 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
14187 pattern.
14188
951366c1
AD
141892001-11-05 Akim Demaille <akim@epita.fr>
14190
14191 * src/options.h (struct option_table_struct): set_flags is void*.
14192 * src/options.c (longopts): Support `--output' and `%output'.
14193 (usage): Adjust.
14194 * src/lex.h (tok_setopt): Remove, replaced with...
14195 (tok_intopt, tok_stropt): these new guys.
14196 * src/lex.c (getopt.h): Not needed.
14197 (token_buffer, unlexed_token_buffer): Not const.
14198 (percent_table): Promote `-' over `_' in directive names.
14199 Active `%name-prefix', `file-prefix', and `output'.
14200 (parse_percent_token): Accept possible arguments to directives.
14201 Promote `-' over `_' in directive names.
14202
d8988b2f
AD
142032001-11-04 Akim Demaille <akim@epita.fr>
14204
14205 * doc/bison.texinfo (Decl Summary): Split the list into
14206 `directives for grammars' and `directives for bison'.
14207 Sort'em.
14208 Add description of `%name-prefix', `file-prefix', and `output'.
14209 Promote `-' over `_' in directive names.
14210 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
14211 Simplify the description of `--name-prefix'.
14212 Promote `-' over `_' in directive names.
14213 Promote `--output' over `--output-file'.
14214 Fix the description of `--defines'.
14215 * tests/output.at: Exercise %file-prefix and %output.
14216
6468d18e
AD
142172001-11-02 Akim Demaille <akim@epita.fr>
14218
14219 * doc/refcard.tex: Update.
14220
6b7e85b9
AD
142212001-11-02 Akim Demaille <akim@epita.fr>
14222
14223 * src/symtab.h (SUNDEF): New.
14224 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
14225 stand for `uninitialized', instead of 0.
14226 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
14227 * src/lex.c (lex): Adjust.
14228
14229 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
14230 Number it 0.
14231 Let yylex return it instead of a plain 0.
14232 Reported by Dick Streefland.
14233
cd5aafcf
AD
142342001-11-02 Akim Demaille <akim@epita.fr>
14235
14236 * tests/regression.at (Mixing %token styles): New test.
14237
037ca2f1
AD
142382001-11-02 Akim Demaille <akim@epita.fr>
14239
14240 * src/reader.c (parse_thong_decl): Formatting changes.
14241 (token_translations_init): New, extracted from...
14242 (packsymbols): Here.
14243 Adjust.
14244
270a173c
AD
142452001-11-01 Akim Demaille <akim@epita.fr>
14246
14247 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
14248 Check that `9foo.y' produces correct cpp guards.
14249 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
14250 guards.
14251 Reported by Wwp.
14252
561f9a30
AD
142532001-11-01 Akim Demaille <akim@epita.fr>
14254
14255 * tests/regression.at (Invalid input: 2): New.
14256 * src/lex.c (unlexed_token_buffer): New.
14257 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
14258 too.
14259 Reported by Wwp.
14260
f987e9d2
AD
142612001-11-01 Akim Demaille <akim@epita.fr>
14262
14263 * tests/calc.at: Catch up with 1.30.
14264 * configure.in: Bump to 1.49a.
14265 Adjust to newer Autotest.
14266
0846f581
PB
142672001-10-19 Pascal Bart <pascal.bart@epita.fr>
14268
14269 * src/conflicts.c: Move global variables rrc_total and src_total ...
14270 (print_conflicts): here.
14271 * src/output.c (output): Free global variable user_toknums.
14272 * src/lex.c (token_obstack): Become static.
14273
3c1a79b3
AD
142742001-10-18 Akim Demaille <akim@epita.fr>
14275
14276 * tests/atlocal.in (GCC): Add.
14277 * tests/calc.at: s/m4_match/m4_bmatch/.
14278 s/m4_patsubst/m4_bpatsubst/.
14279 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
14280 * configure.in: AC_SUBST(GCC).
14281
5d52e7d0
MA
142822001-10-14 Marc Autret <autret_m@epita.fr>
14283
14284 * src/options.c (create_long_option_table): Fix.
14285
631aa1d3
AD
142862001-10-10 Akim Demaille <akim@epita.fr>
14287
14288 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
14289
f6ec6d13
AD
142902001-10-04 Akim Demaille <akim@epita.fr>
14291
14292 * src/reader.c (parse_union_decl): Push the caracters in
14293 union_obstack, not attrs_obstack.
14294
342b8b6e
AD
142952001-10-04 Akim Demaille <akim@epita.fr>
14296
14297 Merge in the branch 1.29.
14298
14299 * src/reader.c (packsymbols): Use a temporary obstack for
14300 `%%tokendef', since output_stack is already used elsewhere.
14301
14302 2001-10-02 Akim Demaille <akim@epita.fr>
14303
14304 Bump 1.29d.
14305
14306 2001-10-02 Akim Demaille <akim@epita.fr>
14307
14308 Version 1.29c.
14309
14310 2001-10-02 Akim Demaille <akim@epita.fr>
14311
14312 * tests/regression.at (Invalid CPP headers): New.
14313 From Alexander Belopolsky.
14314 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
14315
14316 2001-10-02 Akim Demaille <akim@epita.fr>
14317
14318 * tests/regression.at (Invalid input): New.
14319 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
14320 Reported by Shura.
14321
14322 2001-10-02 Akim Demaille <akim@epita.fr>
14323
14324 * tests/calc.at: Now that --debug works, the tests must be adjusted.
14325
14326 2001-10-02 Akim Demaille <akim@epita.fr>
14327
14328 * src/output.c (output_parser): Assert `skeleton'.
14329 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
14330 systems.
14331 From Shura.
14332
14333 2001-10-01 Marc Autret <autret_m@epita.fr>
14334
14335 * src/lex.h: Echo modifications.
14336 * src/lex.c (unlex): Parameter is now token_t.
14337 From Hans Aberg.
14338
14339 2001-10-01 Marc Autret <autret_m@epita.fr>
14340
14341 * src/main.c: Include lex.h.
14342 From Hans Aberg.
14343
14344 2001-09-29 Akim Demaille <akim@epita.fr>
14345
14346 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
14347
14348 2001-09-28 Akim Demaille <akim@epita.fr>
14349
14350 * tests/testsuite.at: Update to newer Autotest.
14351 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
14352
14353 2001-09-27 Akim Demaille <akim@epita.fr>
14354
14355 Position independent wrapper.
14356
14357 * tests/bison: Remove.
14358 * tests/bison.in: New.
14359 * configure.in: Adjust.
14360
14361 2001-09-27 Paul Eggert <eggert@twinsun.com>
14362
14363 Port quotearg fixes from tar 1.13.24.
14364
14365 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
14366 tm to be declared.
14367 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
14368 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
14369
14370 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
14371 * m4/mbrtowc.m4: New file.
14372 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
14373 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
14374
14375 2001-09-27 Akim Demaille <akim@epita.fr>
14376
14377 Bump to 1.29c.
14378
14379 2001-09-27 Akim Demaille <akim@epita.fr>
14380
14381 Version 1.29b.
14382
14383 2001-09-25 Akim Demaille <akim@epita.fr>
14384
14385 * src/system.h: Include `xalloc.h'.
14386 Remove it from the C files.
14387 * src/files.c (output_files): Free the obstacks.
14388 * src/lex.c (init_lex): Rename as...
14389 (lex_init): this.
14390 (lex_free): New.
14391 * src/main.c (main): Use it.
14392
14393 2001-09-24 Marc Autret <autret_m@epita.fr>
14394
14395 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
14396 to output informations in fout (FILE*).
14397 (open_graph, close_graph): Likewise.
14398 (output_graph, output_edge, output_node): Likewise.
14399 * src/vcg.h: Update function prototypes.
14400 * src/print_graph.c (print_graph): Open output graph file.
14401 (print_actions): Adjust.
14402 * src/files.h: Remove extern declaration.
14403 * src/files.c: Remove graph_obstack declaration.
14404 (open_files): Remove graph_obstack initialization.
14405 (output_files): Remove graph_obstack saving.
14406
14407 2001-09-24 Marc Autret <autret_m@epita.fr>
14408
14409 * src/files.c (compute_output_file_names): Fix.
14410
14411 2001-09-24 Marc Autret <autret_m@epita.fr>,
14412 Akim Demaille <akim@epita.fr>
14413
14414 * src/reader.c (reader): Remove call to free_symtab ().
14415 * src/main.c (main): Call it here.
14416 Include symtab.h.
14417 * src/conflicts.c (initialize_conflicts): Rename as...
14418 (solve_conflicts): this.
14419 * src/print.c (print_core, print_actions, print_state)
14420 (print_grammar): Dump to a file instead a `output_obstack'.
14421 (print_results): Dump `output_obstack', and then proceed with the
14422 FILE *.
14423 * src/files.c (compute_output_file_names, close_files): New.
14424 (output_files): Adjust.
14425 * src/main.c (main): Adjust.
14426
14427 2001-09-23 Marc Autret <autret_m@epita.fr>
14428
14429 * src/files.c (compute_header_macro): Computes header macro name
14430 from spec_defines_file when given.
14431
14432 2001-09-23 Marc Autret <autret_m@epita.fr>
14433
14434 * src/files.c (output_files): Add default extensions.
14435
14436 2001-09-22 Akim Demaille <akim@epita.fr>
14437
14438 * src/conflicts.c (finalize_conflicts): Rename as...
14439 (free_conflicts): this.
14440
14441 2001-09-22 Akim Demaille <akim@epita.fr>
14442
14443 * src/gram.c (gram_free): Rename back as...
14444 (dummy): this.
14445 (output_token_translations): Free `token_translations'.
14446 * src/symtab.c (free_symtab): Free the tag field.
14447
14448 2001-09-22 Akim Demaille <akim@epita.fr>
14449
14450 Remove `translations' as it is always set to true.
14451
14452 * src/gram.h: Adjust.
14453 * src/reader.c (packsymbols, parse_token_decl): Adjust
14454 * src/print.c (print_grammar): Adjust.
14455 * src/output.c (output_token_translations): Adjust.
14456 * src/lex.c (lex): Adjust.
14457 * src/gram.c: Be sure the set pointers to NULL.
14458 (dummy): Rename as...
14459 (gram_free): this.
14460
14461 2001-09-22 Akim Demaille <akim@epita.fr>
14462
14463 * configure.in: Invoke AM_LIB_DMALLOC.
14464 * src/system.h: Use dmalloc.
14465 * src/LR0.c: Be sure to have pointers initialized to NULL.
14466 (allocate_itemsets): Allocate kernel_items only if needed.
14467
14468 2001-09-22 Akim Demaille <akim@epita.fr>
14469
14470 * configure.in: Bump to 1.29b.
14471 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
14472 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
14473 need xmalloc.c in calc.y.
14474 From Pascal Bart.
14475
14476 2001-09-21 Akim Demaille <akim@epita.fr>
14477
14478 Version 1.29a.
14479 * Makefile.maint, config/config.guess, config/config.sub,
14480 * config/missing: Update from masters.
14481 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
14482 upon package.m4.
14483 * configure.in (ALL_LINGUAS): Add `tr'.
14484
14485 2001-09-21 Akim Demaille <akim@epita.fr>
14486
14487 * tests/Makefile.am (package.m4): Move to...
14488 ($(srcdir)/$(TESTSUITE)): here.
14489
14490 2001-09-20 Akim Demaille <akim@epita.fr>
14491
14492 * src/complain.c: No longer try to be standalone: use system.h.
14493 Don't assume __STDC__ is defined to 1. Just test if it is defined.
14494 * src/complain.h: Likewise.
14495 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
14496 Remove the unused variable `n'.
14497 From Albert Chin-A-Young.
14498
14499 2001-09-18 Marc Autret <autret_m@epita.fr>
14500
14501 * doc/bison.1: Update.
14502 * doc/bison.texinfo (Bison Options): Update --defines and --graph
14503 descriptions.
14504 (Option Cross Key): Update.
14505 Add --graph.
14506
14507 2001-09-18 Marc Autret <autret_m@epita.fr>
14508
14509 * tests/regression.at: New test (comment in %union).
14510
14511 2001-09-18 Marc Autret <autret_m@epita.fr>
14512
14513 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
14514 do that.
14515 Reported by Keith Browne.
14516
14517 2001-09-18 Marc Autret <autret_m@epita.fr>
14518
14519 * tests/output.at: Add tests for --defines and --graph.
14520
14521 2001-09-18 Marc Autret <autret_m@epita.fr>
14522
14523 * tests/output.at: Removes tests of %{header,src}_extension features.
14524
14525 2001-09-18 Akim Demaille <akim@epita.fr>
14526
14527 * tests/Makefile.am (package.m4): New.
14528 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
14529 (_AT_CHECK_CALC_ERROR): Likewise.
14530 Factor the `, ' part of verbose error messages.
14531
14532 2001-09-18 Marc Autret <autret_m@epita.fr>
14533
14534 * src/getargs.c (longopts): Declare --defines and --graph as options
14535 with optional arguments.
14536 * src/files.h: Add extern declarations.
14537 * src/files.c (spec_graph_file, spec_defines_file): New.
14538 (output_files): Update.
14539 Remove CPP-outed code.
14540
14541 2001-09-18 Marc Autret <autret_m@epita.fr>
14542
14543 Turn off %{source,header}_extension feature.
14544
14545 * src/files.c (compute_exts_from_gf): Update.
14546 (compute_exts_from_src): Update.
14547 (output_files): CPP-out useless code.
14548 * src/files.h: Remove {header,source}_extension extern declarations.
14549 * src/reader.c (parse_dquoted_param): CPP-out.
14550 (parse_header_extension_decl): Remove.
14551 (parse_source_extension_decl): Remove.
14552 (read_declarations): Remove cases tok_{hdrext,srcext}.
14553 * src/lex.c (percent_table): Remove {header,source}_extension entries.
14554 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
14555
14556 2001-09-10 Akim Demaille <akim@epita.fr>
14557
14558 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
14559 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
14560 (AT_CHECK_OUTPUT): this.
14561 Merely check ls' exit status, its output is useless.
14562
14563 2001-09-10 Akim Demaille <akim@epita.fr>
14564
14565 * tests/calc.at: Use m4_match.
14566 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
14567
14568 2001-09-10 Marc Autret <autret_m@epita.fr>,
14569 Akim Demaille <akim@epita.fr>
14570
14571 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
14572 enum color_e.
14573 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
14574 to `normal'.
14575 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
14576 * src/lex.h: Adjust prototype.
14577 (token_t): Add `tok_undef'.
14578 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
14579 (parse_percent_token): Now returns token_t.
14580 Add default statement in switch.
14581 (lex): Separate `c' as an input variable, from the token_t result
14582 part.
14583 (unlexed): Is a token_t.
14584
14585 2001-09-10 Akim Demaille <akim@epita.fr>
14586
14587 * configure.in: Bump to 1.29a.
14588
14589 2001-09-07 Akim Demaille <akim@epita.fr>
14590
14591 Version 1.29.
14592
14593 2001-08-30 Akim Demaille <akim@epita.fr>
14594
14595 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
14596 * m4/atconfig.m4: Remove.
14597 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
14598 * tests/bison: New.
14599 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
14600 m4_if, m4_patsubst, and m4_regexp.
14601 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
14602 `input' file instead of echo.
14603
14604 2001-08-29 Akim Demaille <akim@epita.fr>
14605
14606 Bump to 1.28e.
14607
14608 2001-08-29 Akim Demaille <akim@epita.fr>
14609
14610 Version 1.28d.
14611
14612 2001-08-29 Paul Eggert <eggert@twinsun.com>
14613
14614 * src/bison.simple (yyparse): Don't take the address of an
14615 item before the start of an array, as that doesn't conform to
14616 the C Standard.
14617
14618 2001-08-29 Robert Anisko <anisko_r@epita.fr>
14619
14620 * doc/bison.texinfo (Location Tracking Calc): New node.
14621
14622 2001-08-29 Paul Eggert <eggert@twinsun.com>
14623
14624 * src/output.c (output): Do not define const, as this now
14625 causes more problems than it cures.
14626
14627 2001-08-29 Akim Demaille <akim@epita.fr>
14628
14629 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
14630 the nodes.
14631 Be sure to tag the `detailmenu'.
14632
14633 2001-08-29 Akim Demaille <akim@epita.fr>
14634
14635 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
14636 download in a tmp dir.
14637
14638 2001-08-28 Marc Autret <autret_m@epita.fr>
14639
14640 * config/depcomp: New file.
14641
14642 2001-08-28 Marc Autret <autret_m@epita.fr>
14643
14644 * doc/bison.1 (mandoc): Adjust.
14645 From Juan Manuel Guerrero.
14646
14647 2001-08-28 Marc Autret <autret_m@epita.fr>
14648
14649 * src/print_graph.c (print_state): Fix.
14650
14651 2001-08-27 Marc Autret <autret_m@epita.fr>
14652
14653 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
14654 char * members.
14655 Echo modifications to the functions prototypes.
14656 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
14657
14658 2001-08-27 Marc Autret <autret_m@epita.fr>
14659
14660 * src/vcg.c: Include `xalloc.h'.
14661 (add_colorentry): New.
14662 (add_classname): New.
14663 (add_infoname): New.
14664 * src/vcg.h: Add new prototypes.
14665
14666 2001-08-27 Akim Demaille <akim@epita.fr>
14667
14668 * Makefile.maint: Sync. again with CVS Autoconf.
14669
14670 2001-08-27 Akim Demaille <akim@epita.fr>
14671
14672 * Makefile.maint: Formatting changes.
14673 (po-update, cvs-update, update): New targets.
14674 (AMTAR): Remove.
14675
14676 2001-08-27 Akim Demaille <akim@epita.fr>
14677
14678 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
14679 * Makefile.maint: Sync. with CVS Autoconf.
14680
14681 2001-08-27 Marc Autret <autret_m@epita.fr>
14682
14683 * src/vcg.h (struct infoname_s): New.
14684 (struct colorentry_s): New.
14685 (graph_s): New fields {vertical,horizontal}_order in structure.
14686 Add `infoname' field.
14687 Add `colorentry' field;
14688 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
14689 (G_HORIZONTAL_ORDER): New.
14690 (G_INFONAME): New.
14691 (G_COLORENTRY): New.
14692 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
14693 Add output of `infoname'.
14694 Add output of `colorentry'.
14695
14696 2001-08-27 Marc Autret <autret_m@epita.fr>
14697
14698 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
14699 This one shadowed a global parameter.
14700
14701 2001-08-24 Marc Autret <autret_m@epita.fr>
14702
14703 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
14704 instead of `unsigned'.
14705 (print_state): Do not call obstack_object_size () in obstack_grow ()
14706 to avoid macro variables shadowing.
14707
14708 2001-08-23 Marc Autret <autret_m@epita.fr>
14709
14710 * src/lex.c (percent_table): Typo: s/naem/name/.
14711 Add graph option.
14712 Normalize new options declarations.
14713
14714 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
14715
14716 * tests/suite.at: Exercise %header_extension and %source_extension.
14717
14718 2001-08-16 Marc Autret <autret_m@epita.fr>
14719
14720 * src/reader.c (parse_dquoted_param): New.
14721 (parse_header_extension_decl): Use it.
14722 (parse_source_extension_decl): Likewise.
14723
14724 2001-08-16 Marc Autret <autret_m@epita.fr>
14725
14726 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
14727 (get_xxxx_str): Use assert () instead of complain ().
14728 Remove return invokations in default cases.
14729 (get_decision_str): Modify default behaviour. Remove second argument.
14730 Echo modifications on calls.
14731 (output_graph): Fix.
14732
14733 2001-08-16 Marc Autret <autret_m@epita.fr>
14734
14735 * src/getargs.c (usage): Update with ``-g, --graph''.
14736
14737 2001-08-16 Marc Autret <autret_m@epita.fr>
14738
14739 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
14740 (Option Cross Key): Likewise.
14741 * doc/bison.1: Update.
14742
1c8c2190
PB
147432001-09-25 Pascal Bart <pascal.bart@epita.fr>
14744
14745 * src/output.c (output_master_parser): Don't finish action_obstack.
14746 (output_parser): Don't care about the muscle action, here.
14747 (prepare): Copy the action_obstack in the action muscle.
14748 (output): Free action_obstack.
14749
180d45ba
PB
147502001-09-23 Pascal Bart <pascal.bart@epita.fr>
14751
14752 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
14753 will contain `%union' declaration.
14754 (parse_union_decl): Delete #line directive output.
14755 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
14756 informations about %union.
14757 (parse_union_decl): Copy the union_obstack in the muscle stype.
14758 * src/bison.simple: Add new #line directive.
14759 Add typdef %%stype YYSTYPE.
14760
c51d1a19
PB
147612001-09-23 Pascal Bart <pascal.bart@epita.fr>
14762
14763 * src/bison.simple: Add new `#line' directive.
14764
6f9344da
PB
147652001-09-22 Pascal Bart <pascal.bart@epita.fr>
14766
14767 * src/bison.simple: New `#line' directive.
14768 * src/output.c (output_parser): Support new dynamic muscle input_line.
14769
652def80
MA
147702001-09-22 Marc Autret <autret_m@epita.fr>
14771
14772 * src/output.c (output_master_parser): New.
14773 (output_parser): Be more re-entrant.
14774
25b222fa
MA
147752001-09-21 Marc Autret <autret_m@epita.fr>
14776
14777 * src/reader.c (copy_definition, parse_union_decl): Update and use
14778 `linef' muscle.
14779 (copy_action): Likewise.
14780 Use obstack_1grow ().
14781 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
14782
6bc35ae5
MA
147832001-09-21 Marc Autret <autret_m@epita.fr>
14784
14785 * src/options.c (option_table): Adjust.
14786 * src/lex.c (parse_percent_token): Fix.
14787
c0629aa1
PB
147882001-09-20 Pascal Bart <pascal.bart@epita.fr>
14789
14790 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 14791
82b6d266
PB
147922001-09-20 Pascal Bart <pascal.bart@epita.fr>
14793
14794 * src/lex.c (parse_percent_token): Change type of variable `tx', which
14795 is now an option_table_struct*.
14796 (option_strcmp): New function option_strcmp.
14797 (parse_percent_token): Call option_strcmp.
14798 * src/getargs.c (xalloc.h, options.h): Include it.
14799 (getargs): Call create_long_option_table.
14800 (getargs): Free longopts at the end of the function.
14801 (shortopts): Move in options.c.
14802 * src/options.c (create_long_option_table): New function. Convert
14803 information from option_table to option structure.
14804 * src/reader.c (options.h): Include it.
14805
14806 * src/Makefile.am: Adjust.
14807 * src/options.c (option_table): Create from longopts and percent_table.
14808 * src/getargs.c (longopts): Delete.
14809 * src/lex.c (struct percent_table_struct): Delete.
14810 (percent_table): Delete.
14811 (options.h): Include it.
14812 * src/options.c: Create.
14813 * src/options.h: Create.
14814 Declare enum opt_access_e.
14815 Define struct option_table_struct.
14816
75f5aaea
MA
148172001-09-20 Marc Autret <autret_m@epita.fr>
14818
14819 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
14820 sections of Bison.
14821
f508cb0a
PB
148222001-09-19 Pascal Bart <pascal.bart@epita.fr>
14823
14824 * src/bison.simple: s/%%filename/%%skeleton.
14825 * src/muscle_tab.c (getargs.h): Include it.
14826 (muscle_init): Insert new muscle skeleton.
14827
13105fc1
PB
148282001-09-18 Pascal Bart <pascal.bart@epita.fr>
14829
14830 * src/output.c (output_parser): Delete unused variable actions_dumped.
14831
b0c4483e
PB
148322001-09-07 Pascal Bart <pascal.bart@epita.fr>
14833
14834 * src/output.c (output): Delete call to reader_output_yylsp.
14835 * src/reader.c (reader): Likewise.
ba0fe3c7 14836 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 14837
11d82f03
MA
148382001-09-02 Marc Autret <autret_m@epita.fr>
14839
14840 * src/reader.c: Include muscle_tab.h.
14841 (parse_union_decl): Update.
14842 (parse_macro_decl): Rename parse_muscle_decl.
14843 Update to use renamed functions and variable.
14844 (read_declarations, copy_action, read_additionnal_code, : Updated
14845 with correct variables and functions names.
14846 (packsymbols, reader): Likewise.
342b8b6e 14847
11d82f03 14848 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 14849
11d82f03
MA
14850 * src/output.c: Include muscle_tab.h
14851 In all functions using macro_insert, change by using muscle_insert ().
14852 (macro_obstack): Rename muscle_obstack.
14853 Echo modifications in the whole file.
14854 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
14855 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
14856 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
14857
14858 * src/muscle_tab.h: Update double inclusion macros.
14859 (macro_entry_s): Rename muscle_entry_s.
14860 Update prototypes.
342b8b6e 14861
11d82f03
MA
14862 * src/muscle_tab.c: Include muscle_tab.h.
14863 Rename macro_tabble to muscle_table.
14864 (mhash1, mhash2, mcmp): Use muscle_entry.
14865 (macro_init): Rename muscle_init. Update.
14866 (macro_insert): Rename muscle_insert. Update.
14867 (macro_find): Rename muscle_find. Update.
14868
14869 * src/main.c: Include muscle_tab.h.
14870 (main): Call muscle_init ().
14871 * src/Makefile.am (bison_SOURCES): Echo modifications.
14872
93a37297
MA
148732001-09-02 Marc Autret <autret_m@epita.fr>
14874
f753cd62 14875 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 14876
f753cd62
MA
14877 * src/muscle_tab.c, src/muscle_tab.h: Add files.
14878
148792001-09-02 Marc Autret <autret_m@epita.fr>
14880
14881 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 14882
682d48cd
PB
148832001-09-01 Pascal Bart <pascal.bart@epita.fr>
14884
342b8b6e 14885 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
14886 filename.
14887
087c8fda
MA
148882001-09-01 Marc Autret <autret_m@epita.fr>
14889
14890 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
14891 to an explicit value to activate the feature. We do it here.
14892
dda680cb
PB
148932001-08-31 Pascal Bart <pascal.bart@epita.fr>
14894
14895 * src/output.c (prepare): Delete the `filename' muscule insertion.
14896 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
14897 (parse_union_decl): Likewise.
14898 * src/macrotab.c (macro_init): Initialize filename by infile.
14899
9e644e64
MA
149002001-08-31 Marc Autret <autret_m@epita.fr>
14901
14902 * src/bison.simple (YYLSP_NEEDED): New definition.
14903 * src/output.c (prepare): Add macro insertion of `locations_flag'
14904
17da6427
PB
149052001-08-31 Pascal Bart <pascal.bart@epita.fr>
14906
14907 * src/output.c (prepare): Delete insertion of previous muscles,
14908 and insert the `prefix' muscles.
14909 * src/macrotab.c (macro_init): Likewise.
14910 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 14911 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
14912 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
14913 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 14914 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
14915 name_prefix.
14916
e8cb70b9
PB
149172001-08-31 Pascal Bart <pascal.bart@epita.fr>
14918
14919 * src/main.c (main): Standardize.
14920 * src/output.c (output_table_data, output_parser): Likewise.
14921 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
14922
63c2d5de
MA
149232001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
14924
342b8b6e 14925 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
14926 %%epilogue.
14927 * src/output.c (output): Rename %%declarations to %%prologue.
14928 * src/bison.simple: Echo modifications.
342b8b6e 14929
d8cb5183
MA
149302001-08-31 Marc Autret <autret_m@epita.fr>
14931
14932 * src/reader.c (readgram): CleanUp.
14933 (output_token_defines): Likewise.
14934 (packsymbols): Likewise.
14935 (reader): Likewise.
14936 * src/output.c (output): CPP-out useless code.
14937
6c686258
PB
149382001-08-31 Pascal Bart <pascal.bart@epita.fr>
14939
342b8b6e 14940 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
14941 output_trailers and output_headers.
14942 * src/output.h: Remove obsolete functions prototypes of output_headers
14943 and output_trailers.
14944
8f451ef7
PB
149452001-08-30 Pascal Bart <pascal.bart@epita.fr>
14946
14947 * src/main.c: Include macrotab.h.
342b8b6e 14948 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
14949 Adjust functions prototypes.
14950 * src/macrotab.c (macro_insert): Constify key and value.
14951 (macro_find): Constify key.
14952 (macro_insert): Include 'xalloc.h'
14953 (macro_insert): Use XMALLOC.
14954 (macro_find): Constify return value.
14955 * src/output.c (output_table_data): Rename table to table_data.
14956 (output_parser): Constify macro_key, macro_value.
14957
997b6fd0 149582001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
14959
14960 * src/reader.c (parse_skel_decl): New.
342b8b6e 14961 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
14962 * src/lex.h (token_t): New token `tok_skel'.
14963 * src/lex.c (percent_table): Add skeleton option entry.
14964 Standardize.
14965
ff48177d
MA
149662001-08-29 Marc Autret <autret_m@epita.fr>
14967
14968 * src/bison.simple: Add %%user_code directive at the end.
14969 * src/reader.c (read_additionnal_code): New.
14970 (reader): Use it.
14971 * src/output.c (output_program): Remove.
14972 (output): Update.
14973
b33160bf
MA
149742001-08-28 Marc Autret <autret_m@epita.fr>
14975
14976 * src/output.c (output_actions): Clean up.
4e5caae2 14977 (output_gram): CPP-out useless code.
b33160bf
MA
14978 * src/reader.c (reader): Clean up, CPP-out useless code.
14979
d1a2daf7
PB
149802001-08-28 Pascal Bart <pascal.bart@epita.fr>
14981
342b8b6e 14982 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 14983 directive.
d1a2daf7
PB
14984 * src/bison.simple: Add `%%definitions'.
14985
2b763dfe
MA
149862001-08-28 Marc Autret <autret_m@epita.fr>
14987
14988 * config/depcomp: New file.
14989
f1a87ef6
PE
149902001-08-27 Paul Eggert <eggert@twinsun.com>
14991
14992 * src/bison.simple (yyparse): Don't take the address of an
14993 item before the start of an array, as that doesn't conform to
14994 the C Standard.
14995
82e236e2
RA
149962001-08-27 Robert Anisko <robert.anisko@epita.fr>
14997
f1a87ef6 14998 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
14999 obstack. It was done too late here.
15000
15001 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
15002 completely wrong.
15003 (reader): Initialize the macro obstack here, since we need it to grow
15004 '%define' directives.
15005
15006 * src/reader.h: Declare the macro obstack as extern.
15007
b0cfa28a
RA
150082001-08-27 Robert Anisko <robert.anisko@epita.fr>
15009
15010 * src/output.c (output_parser): Fix. Store single '%' characters in
15011 the output obstack instead of throwing them away.
15012
6fc74234
AD
150132001-08-27 Akim Demaille <akim@epita.fr>
15014
15015 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
15016
9c76d118
RA
150172001-08-25 Robert Anisko <robert.anisko@epita.fr>
15018
15019 * lib/Makefile.am: Adjust.
15020
a8289c62
RA
150212001-08-25 Robert Anisko <robert.anisko@epita.fr>
15022
15023 * src/bison.simple: Update and add '%%' directives.
15024
b6610515
RA
150252001-08-25 Robert Anisko <robert.anisko@epita.fr>
15026
15027 * src/reader.c (reader): Remove calls to 'output_headers' and
15028 'output_trailers'. Remove some C output.
15029 (readgram): Disable a piece of code that was writing a default
15030 definition for 'YYSTYPE'.
15031 (reader_output_yylsp): Remove.
15032 (packsymbols): Output token defintions to a macro.
15033 (copy_definition): Disable C output.
6fc74234 15034
b6610515
RA
15035 * src/reader.c (parse_macro_decl): New function used to parse macro
15036 declarations.
15037 (copy_string2): Put the body of copy_string into this new function.
15038 Add a parameter to let the caller choose whether he wants to copy the
15039 string delimiters or not.
15040 (copy_string): Be a simple call to copy_string2 with the last argument
15041 bound to true.
15042 (read_declarations): Add case for macro definition.
15043 (copy_identifier): New.
6fc74234 15044 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
15045 rather than lex.
15046
26f609ff
RA
150472001-08-25 Robert Anisko <robert.anisko@epita.fr>
15048
15049 * src/output.c (prepare): Add prefixed names.
15050 (output_parser): Output semantic actions.
15051 (output_parser): Fix bug on '%%line' directives.
6fc74234 15052
26f609ff
RA
15053 * src/output.c (output_headers): Remove. The C code printed by this
15054 function should now be in the skeletons.
15055 (output_trailers): Remove.
15056 (output): Disable call to 'reader_output_yylsp'.
15057 (output_rule_data): Do not output tables to the table obstack.
15058
15059 * src/output.c: Remove some C dedicated output.
15060 Improve the use of macro and output obstacks.
15061 (output_defines): Remove.
6fc74234 15062
26f609ff
RA
15063 * src/output.c (output_token_translations): Associate 'translate'
15064 table with a macro. No output to the table obstack.
15065 (output_gram): Same for 'rhs' and 'prhs'.
15066 (output_stos): Same for 'stos'.
15067 (output_rule_data): Same for 'r1' and 'r2'.
15068 (token_actions): Same for 'defact'.
15069 (goto_actions): Same for 'defgoto'.
15070 (output_base): Same for 'pact' and 'pgoto'.
15071 (output_table): Same for 'table'.
15072 (output_check): Same for 'check'.
6fc74234 15073
26f609ff
RA
15074 * src/output.c (output_table_data): New function.
15075 (output_short_table): Remove.
15076 (output_short_or_char_table): Remove.
6fc74234 15077
26f609ff
RA
15078 * src/output.c (output_parser): Replace most of the skeleton copy code
15079 with something new. Skeletons are now processed character by character
15080 rather than line by line, and Bison looks for '%%' macros. This is the
15081 first step in making Bison's output process (a lot) more flexible.
15082 (output_parser): Use the macro table.
15083
6f43b113
RA
150842001-08-25 Robert Anisko <robert.anisko@epita.fr>
15085
15086 * src/main.c (main): Initialize the macro table.
15087
dd3127cf
RA
150882001-08-25 Robert Anisko <robert.anisko@epita.fr>
15089
15090 * src/lex.c (percent_table): Add tok_define.
15091 * src/lex.h: Add tok_define.
15092
aa321494
RA
150932001-08-25 Robert Anisko <robert.anisko@epita.fr>
15094
15095 * src/macrotab.c: New file.
15096 * src/macrotab.h: New file.
15097 * src/Makefile.am: Update.
15098
68bd3b6b
RA
150992001-08-25 Robert Anisko <robert.anisko@epita.fr>
15100
15101 * lib/hash.c: New file.
15102 * lib/hash.h: New file.
15103 * lib/Makefile.am: Update.
15104
45f8dd1e
AD
151052001-08-15 Akim Demaille <akim@epita.fr>
15106
15107 Version 1.28c.
15108
40a64a7a 151092001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
15110
15111 * src/reader.c (readgram): Indent output macro YYSTYPE.
15112 (packsymbols): Likewise.
15113 (output_token_defines): Likewise.
15114 * src/files.c: Standardize.
15115 (compute_header_macro): New.
15116 (defines_obstack_save): New. Use compute_header_macro.
15117 (output_files): Update. Use defines_obstack_save.
15118
f9a8293a
AD
151192001-08-15 Akim Demaille <akim@epita.fr>
15120
15121 * doc/bison.texinfo (Table of Symbols): Document
15122 YYSTACK_USE_ALLOCA.
15123
150ca7a7
AD
151242001-08-15 Akim Demaille <akim@epita.fr>
15125
15126 * missing: Update from CVS Automake.
15127 * config/config.guess, config/config.sub, config/texinfo.tex:
15128 Update from gnu.org.
15129
69b5cec4
AD
151302001-08-15 Akim Demaille <akim@epita.fr>
15131
15132 * Makefile.maint: Sync with CVS Autoconf.
15133
f2b5126e
PB
151342001-08-14 Pascal Bart <pascal.bart@epita.fr>
15135
69b5cec4 15136 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
15137 `fdl.texi'.
15138 * doc/fdl.texi: Add to package.
15139
4ecbf796
MA
151402001-08-14 Marc Autret <autret_m@epita.fr>
15141
15142 Turn on %{source,header}_extension features.
15143
69b5cec4 15144 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
15145 source_extension.
15146 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 15147 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
15148 between options.
15149
95fb5662
MA
151502001-08-14 Marc Autret <autret_m@epita.fr>
15151
15152 * src/files.c (compute_base_names): Add extensions computing when
15153 `--file-prefix' used.
15154 Standardize function calls.
15155
78d09da9
MA
151562001-08-13 Marc Autret <autret_m@epita.fr>
15157
69b5cec4 15158 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
15159 defining it (defined but null disables alloca).
15160
5a009f2c
MA
151612001-08-13 Marc Autret <autret_m@epita.fr>
15162
15163 * src/bison.simple (_yy_memcpy): CPP reformat.
15164
1e41465a
PB
151652001-08-13 Pascal Bart <pascal.bart@epita.fr>
15166
15167 * tests/atconfig.in (CPPFLAGS): Fix.
15168
c67a198d
PB
151692001-08-10 Pascal Bart <pascal.bart@epita.fr>
15170
79282c6c 15171 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
15172 `gpl.texi'.
15173 * doc/gpl.texi: Add to package.
15174
09a6de7e
MA
151752001-08-10 Marc Autret <autret_m@epita.fr>
15176
15177 * src/print_graph.h: Fix.
15178 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
15179
b77b9ee0
AD
151802001-08-10 Akim Demaille <akim@epita.fr>
15181
15182 * src/system.h: Provide default declarations for stpcpy, strndup,
15183 and strnlen.
15184
3e259915
MA
151852001-08-10 Robert Anisko <anisko_r@epita.fr>
15186
15187 * doc/bison.texinfo (Locations): Update @$ stuff.
15188
ca96bc2d
MA
151892001-08-09 Robert Anisko <anisko_r@epita.fr>
15190
15191 * src/bison.simple (YYLLOC_DEFAULT): Update.
15192 (yyparse): Adjust.
15193
fdc6758b
MA
151942001-08-08 Marc Autret <autret_m@epita.fr>
15195
b77b9ee0 15196 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
15197 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
15198 Reported by Fabrice Bauzac.
957d4dbf 15199
600cad3b
MA
152002001-08-08 Marc Autret <autret_m@epita.fr>
15201
15202 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
15203 * src/vcg.c (output_node): Fix.
15204 * src/vcg.h: Cleanup.
15205 * src/print_graph.c: Add comments.
b77b9ee0 15206 (node_output_size): New global variable. Simplify the formatting of
600cad3b 15207 the VCG graph output.
b77b9ee0 15208 (print_actions): Unused code is now used. It notifies the final state
600cad3b 15209 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 15210 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
15211 blue.
15212 Get the current node name and node_obstack by argument.
15213 (node_obstack): New variable.
15214 (print_state): Manage node_obstack.
15215 (print_core): Use node_obstack given by argument.
15216 A node is not only computed here but in print_actions also.
15217 (print_graph): CPP out useless code instead of commenting it.
15218
976e528f
AD
152192001-08-07 Pascal Bart <pascal.bart@epita.fr>
15220
15221 * tests/atconfig.in (CPPFLAGS): Fix.
15222
20e8e5ca
AD
152232001-08-07 Akim Demaille <akim@epita.fr>
15224
15225 * src/print_graph.c (quote): New.
15226 (print_core): Use it.
15227
957d4dbf 152282001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 15229
3e3da797
AD
15230 * src/vcg.c (complain.h): Include it.
15231 Unepitaize `return' invocations.
c4b66126 15232 [NDEBUG] (main): Remove.
79282c6c 15233 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
15234 * src/files.c (open_files): Initialize graph_obstack.
15235 * src/print_graph.c (print_actions): CPP out useless code.
15236 (print_core): Don't output the last `\n' in labels.
15237 Use `quote'.
15238 * src/files.c (output_files): Output the VCG file.
15239 * src/main.c (main): Invoke print_graph ();
3e3da797 15240
957d4dbf 152412001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
15242
15243 Automaton VCG graph output.
15244 Using option ``-g'' or long option ``--graph'', you can generate
15245 a gram_filename.vcg file containing a VCG description of the LALR (1)
15246 automaton of your grammar.
15247
15248 * src/main.c: Call to print_graph() function.
15249 * src/getargs.h: Update.
15250 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
15251 (graph_flag): New flag.
15252 (longopts): Update.
15253 (getargs): Add case `g'.
15254 * src/files.c (graph_obstack): New obstack struct.
15255 (open_files): Initialize new obstack.
15256 (output_files): Saves graph_obstack if required.
15257 * src/files.h (graph_obstack): New extern declaration.
15258 * src/Makefile.am: Add new source files.
15259
927c1557 152602001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
15261
15262 * src/print_graph.c, src/print_graph.h (graph): New.
15263 * src/vcg.h: New file.
15264 * src/vcg.c: New file, VCG graph handling.
15265
7333d403
AD
152662001-08-06 Marc Autret <autret_m@epita.fr>
15267
15268 Add of %source_extension and %header_extension which specify
15269 the source or/and the header output file extension.
15270
15271 * src/files.c (compute_base_names): Remove initialisation of
15272 src_extension and header_extension.
15273 (compute_exts_from_gf): Update.
15274 (compute_exts_from_src): Update.
15275 (output_files): Update.
15276 * src/reader.c (parse_header_extension_decl): New.
15277 (parse_source_extension_decl): New.
15278 (read_declarations): New case statements for the new tokens.
15279 * src/lex.c (percent_table): Add entries for %source_extension
15280 and %header_extension.
15281 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
15282
84163231
AD
152832001-08-06 Marc Autret <autret_m@epita.fr>
15284
15285 * configure.in: Bump to 1.28c.
15286 * doc/bison.texinfo: Texinfo thingies.
15287
8303fc42
AD
152882001-08-04 Pascal Bart <pascal.bart@epita.fr>
15289
15290 * tests/atconfig.in (CPPFLAGS): Add.
15291 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
15292
70a84437
AD
152932001-08-03 Akim Demaille <akim@epita.fr>
15294
15295 Version 1.28b.
15296
2ce10144
AD
152972001-08-03 Akim Demaille <akim@epita.fr>
15298
15299 * tests/Makefile.am (check-local): Ship testsuite.
15300 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
15301 Include `string.h'.
15302
1e3e4bc1
AD
153032001-08-03 Akim Demaille <akim@epita.fr>
15304
15305 * configure.in: Try using -Wformat when compiling.
15306
42b45b7f
AD
153072001-08-03 Akim Demaille <akim@epita.fr>
15308
15309 * configure.in: Bump to 1.28b.
15310
8f13fe33
AD
153112001-08-03 Akim Demaille <akim@epita.fr>
15312
15313 * src/complain.c: Adjust strerror_r portability issues.
15314
b37ba92c
AD
153152001-08-03 Akim Demaille <akim@epita.fr>
15316
15317 Version 1.28a.
15318
b0ce6046
AD
153192001-08-03 Akim Demaille <akim@epita.fr>
15320
15321 * src/getargs.c, src/getarg.h (skeleton)): Constify.
15322 * src/lex.c (literalchar): Avoid name clashes on `buf'.
15323 * src/getargs.c: Include complain.h.
15324 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
15325 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
15326
d01c415b
AD
153272001-08-03 Akim Demaille <akim@epita.fr>
15328
15329 * src/reader.c (readgram): Display hidden chars in error messages.
15330
459dd1a6
AD
153312001-08-03 Akim Demaille <akim@epita.fr>
15332
15333 Update to gettext 0.10.39.
15334
53b74c0c
AD
153352001-08-03 Akim Demaille <akim@epita.fr>
15336
15337 * lib/strspn.c: New.
15338
234a3be3
AD
153392001-08-01 Marc Autret <autret_m@epita.fr>
15340
15341 * doc/bison.texinfo: Update.
15342 * doc/bison.1 (mandoc): Update.
15343 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
15344 * src/files.c: Support output files extensions computing.
15345 (src_extension): New static variable.
15346 (header_extension): New static variable.
15347 (tr): New function.
15348 (get_extension_index): New function, gets the index of an extension
15349 filename in a string.
15350 (compute_exts_from_gf): New function, computes extensions from the
15351 grammar file extension.
15352 (compute_exts_from_src): New functions, computes extensions from the
15353 C source file extension, file given by ``-o'' option.
15354 (compute_base_names): Update.
15355 (output_files): Update.
15356
847bf1f5
AD
153572001-08-01 Robert Anisko <anisko_r@epita.fr>
15358
d995fee7 15359 * doc/bison.texi: Document @$.
847bf1f5
AD
15360 (Locations): New section.
15361
d074a105
AD
153622001-07-18 Akim Demaille <akim@epita.fr>
15363
15364 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
15365 * config/prev-version.txt, config/move-if-change: New.
15366 * Makefile.am: Adjust.
15367
3419715d
AD
153682001-07-08 Pascal Bart <pascal.bart@epita.fr>
15369
15370 * src/bison.simple (yyparse): Suppress warning `comparaison
15371 between signed and unsigned'.
15372
62ab6972
AD
153732001-07-05 Pascal Bart <pascal.bart@epita.fr>
15374
15375 * src/getargs.h (raw_flag): Remove.
15376 * src/getargs.c: Die on `-r'/`--raw'.
15377 * src/lex.c (parse_percent_token): Die on `%raw'.
15378 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
15379 * tests/calc.at: Suppress test with option `--raw'.
15380
1e24cc5b
AD
153812001-07-14 Akim Demaille <akim@epita.fr>
15382
15383 * config/: New.
15384 * configure.in: Require Autoconf 2.50.
15385 Update to gettext 0.10.38.
15386
32dfccf8
AD
153872001-03-16 Akim Demaille <akim@epita.fr>
15388
15389 * doc/bison.texinfo: ANSIfy the examples.
15390
cd5bd6ac
AD
153912001-03-16 Akim Demaille <akim@epita.fr>
15392
15393 * getargs.c (skeleton): New variable.
15394 (longopts): --skeleton is a new option.
15395 (shortopts, getargs): -S is a new option.
15396 * getargs.h: Declare skeleton.
15397 * output.c (output_parser): Use it.
15398
5141b016
AD
153992001-03-16 Akim Demaille <akim@epita.fr>
15400
15401 * m4/strerror_r.m4: New.
15402 * m4/error.m4: Run AC_FUNC_STRERROR_R.
15403 * lib/error.h, lib/error.c: Update.
15404
447992b9
AD
154052001-03-16 Akim Demaille <akim@epita.fr>
15406
15407 * src/getargs.c (longopts): Clean up.
15408
274d42ce
AD
154092001-02-21 Akim Demaille <akim@epita.fr>
15410
15411 * src/reader.c (gensym): `gensym_count' is your own.
15412 Use a static buf to create the symbol name, as token_buffer is no
15413 longer a buffer.
15414
22c821f3
AD
154152001-02-08 Akim Demaille <akim@epita.fr>
15416
15417 * src/conflicts.c (conflict_report): Be sure not to append to res
15418 between two calls, which could happen if both first sprintf were
15419 skipped, but not the first cp += strlen.
15420
18569462
AD
154212001-02-08 Akim Demaille <akim@epita.fr>
15422
15423 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
15424 New, from fileutils 4.0.37.
15425 * configure.in: Require Autoconf 2.49c. I took some time before
15426 making this decision. This is the only way out for portability
15427 issues in Bison, it would mean way too much duplicate effort to
15428 import in Bison features implemented in 2.49c since 2.13.
15429 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
15430
0d8f3c8a
AD
154312001-02-02 Akim Demaille <akim@epita.fr>
15432
15433 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 15434 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 15435
f17bcd1f
AD
154362001-01-19 Akim Demaille <akim@epita.fr>
15437
15438 Get rid of the ad hoc handling of token_buffer in the scanner: use
15439 the obstacks.
15440
15441 * src/lex.c (token_obstack): New.
15442 (init_lex): Initialize it. No longer call...
15443 (grow_token_buffer): this. Remove it.
15444 Adjust all the places which used it to use the obstack.
15445
511e79b3
AD
154462001-01-19 Akim Demaille <akim@epita.fr>
15447
15448 * src/lex.h: Rename all the tokens:
15449 s/\bENDFILE\b/tok_eof/g;
15450 s/\bIDENTIFIER\b/tok_identifier/g;
15451 etc.
15452 Let them be enums, not #define, to ease debugging.
15453 Adjust all the code.
15454
0d6508ef
AD
154552001-01-18 Akim Demaille <akim@epita.fr>
15456
15457 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
15458 * src/lex.c (maxtoken, grow_token_buffer): Static.
15459
6deb4447
AD
154602001-01-18 Akim Demaille <akim@epita.fr>
15461
15462 Since we now use obstacks, more % directives can be enabled.
15463
15464 * src/lex.c (percent_table): Also accept `%yacc',
15465 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
15466 `%debug'.
15467 Handle the actions for `%semantic_parser' and `%pure_parser' here,
15468 instead of returning a token.
15469 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
15470 * src/reader.c (read_declarations): Adjust.
15471 * src/files.c (open_files): Don't call `compute_base_names', don't
15472 compute `attrsfile' since they depend upon data which might be
15473 *in* the input file now.
15474 (output_files): Do it here.
15475 * src/output.c (output_headers): Document the fact that this patch
15476 introduces a guaranteed SEGV for semantic parsers.
15477 * doc/bison.texinfo: Document them.
15478 * tests/suite.at: Exercise these %options.
15479
ff4423cc
AD
154802000-12-20 Akim Demaille <akim@epita.fr>
15481
15482 Also handle the output file (--verbose) with obstacks.
15483
15484 * files.c (foutput): Remove.
15485 (output_obstack): New.
15486 Adjust all dependencies.
15487 * src/conflicts.c: Return a string.
15488 * src/system.h (obstack_grow_string): Rename as...
15489 (obstack_sgrow): this. Be ready to work with non literals.
15490 (obstack_fgrow4): New.
15491
956dba3a
AD
154922000-12-20 Akim Demaille <akim@epita.fr>
15493
15494 * src/files.c (open_files): Fix the computation of short_base_name
15495 in the case of `-o foo.tab.c'.
15496
337bab46
AD
154972000-12-20 Akim Demaille <akim@epita.fr>
15498
15499 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
15500 (copy_dollar): Now that everything uses obstacks, get rid of the
15501 FILE * parameters.
15502
5d3214b8
AD
155032000-12-20 Akim Demaille <akim@epita.fr>
15504
15505 * src/files.c (open_files): Actually the `.output' file is based
15506 on the short_base_name, not base_name.
15507 * tests/suite.at (Checking output file names): Adjust.
15508
29092a57
AD
155092000-12-20 Akim Demaille <akim@epita.fr>
15510
15511 * src/bison.s1: Remove, we now use directly...
15512 * src/bison.simple: this.
15513 * src/Makefile.am: Use pkgdata instead of data.
15514
ea5607fd
AD
155152000-12-20 Akim Demaille <akim@epita.fr>
15516
15517 * src/files.c (guard_obstack): New.
15518 (open_files): Initialize it.
15519 (output_files): Dump it...
15520 * src/files.h: Export it.
15521 * src/reader.c (copy_guard): Use it.
15522
27110317
AD
155232000-12-19 Akim Demaille <akim@epita.fr>
15524
15525 * src/files.c (outfile, defsfile, actfile): Removed as global
15526 vars.
15527 (open_files): Don't compute them.
15528 (output_files): Adjust.
15529 (base_name, short_base_name): Be global.
15530 Adjust dependencies.
15531
19c50364
AD
155322000-12-19 Akim Demaille <akim@epita.fr>
15533
15534 * src/files.c (strsuffix): New.
15535 (stringappend): Be just like strcat but allocate.
15536 (base_names): Eve out from open_files.
15537 Try to simplify the rather hairy computation of base_name and
15538 short_base_name.
15539 (open_files): Use it.
15540 * tests/suite.at (Checking output file names): New test.
15541
573c1d9f
AD
155422000-12-19 Akim Demaille <akim@epita.fr>
15543
15544 * src/system.h (obstack_grow_literal_string): Rename as...
15545 (obstack_grow_string): this.
15546 * src/output.c (output_parser): Recognize `%% actions' instead of
15547 `$'.
15548 * src/bison.s1: s/$/%% actions/.
15549 * src/bison.hairy: Likewise.
15550
ef7ddedd
AD
155512000-12-19 Akim Demaille <akim@epita.fr>
15552
15553 * src/output.c (output_parser): Compute the `#line' lines when
15554 there are.
15555 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
15556 Suggested by Hans Aberg.
15557
ff61dabd
AD
155582000-12-19 Akim Demaille <akim@epita.fr>
15559
15560 Let the handling of the skeleton files be local to the procedures
15561 that use it.
15562
15563 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
15564 longer static.
15565 (fparser, open_extra_files): Remove.
15566 (open_files, output_files): Don't take care of fparser.
15567 * src/files.h: Adjust.
15568 * src/output.c (output_parser): Open and close the file to the
15569 skeleton.
15570 * src/reader.c (read_declarations): When %semantic_parser, open
15571 fguard.
15572
55b96341
AD
155732000-12-19 Akim Demaille <akim@epita.fr>
15574
15575 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
15576 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
15577
358c15b7
AD
155782000-12-19 Akim Demaille <akim@epita.fr>
15579
15580 * src/files.c (open_files): Yipee! We no longer need all the code
15581 looking for `/tmp' since we have no tmp file.
15582
7de3329e
AD
155832000-12-19 Akim Demaille <akim@epita.fr>
15584
15585 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
15586 New macros.
15587 * src/files.c (open_files): Less dependency on MSDOS etc.
15588
3abcd459
AD
155892000-12-14 Akim Demaille <akim@epita.fr>
15590
15591 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
15592 Provide a default definition.
15593 Use it when executing the default @ action.
15594 * src/reader.c (reader_output_yylsp): No longer include
15595 `timestamp' and `text' in the default YYLTYPE.
15596
2a91a95e
AD
155972000-12-12 Akim Demaille <akim@epita.fr>
15598
15599 * src/reader.c (copy_definition, parse_union_decl, copy_action)
15600 (copy_guard): Quote the file names.
15601 Reported by Laurent Mascherpa.
15602
14d3eb9b
AD
156032000-12-12 Akim Demaille <akim@epita.fr>
15604
15605 * src/output.c (output_headers, output_program, output): Be sure
15606 to escape special characters when outputting filenames.
15607 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
15608 (output_headers): Don't depend on them, Use ACTSTR.
15609
d7045ec6
AD
156102000-11-17 Akim Demaille <akim@epita.fr>
15611
15612 * lib/obstack.h: Formatting changes.
15613 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
15614 prevents type checking.
15615 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
15616 cast the value to (void *): assigning a `foo *' to a `void *'
15617 variable is valid.
15618 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
15619 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
15620 append characters.
15621
6fd54b73
AD
156222000-11-17 Akim Demaille <akim@epita.fr>
15623
15624 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
15625 as...
15626 (suite.m4, regression.m4, calc.m4): these.
15627 * tests/atgeneral.m4: Update from CVS Autoconf.
15628
4c50eae6
AD
156292000-11-17 Akim Demaille <akim@epita.fr>
15630
15631 * tests/regression.m4 (%union and --defines): New test,
15632 demonstrating a current bug in the obstack implementation.
15633
a35f64ea
AD
156342000-11-17 Akim Demaille <akim@epita.fr>
15635
15636 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
15637 macros.
15638 Use them to declare the variables which are global or local to
15639 `yyparse'.
15640
7de23534
AD
156412000-11-17 Akim Demaille <akim@epita.fr>
15642
15643 * acconfig.h: Remove, no longer used.
15644
aa7815f5
AD
156452000-11-07 Akim Demaille <akim@epita.fr>
15646
15647 * src: s/Copyright (C)/Copyright/g.
15648
5af1f549
AD
156492000-11-07 Akim Demaille <akim@epita.fr>
15650
15651 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
15652 defining.
15653 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
15654
553e2b22
AD
156552000-11-07 Akim Demaille <akim@epita.fr>
15656
15657 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
15658 Merge in a single CPP if/else.
15659
8a4f41d6
AD
156602000-11-07 Akim Demaille <akim@epita.fr>
15661
15662 * src/output.c (output): Remove useless variables.
15663 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
15664 argument `data' for consistency with the prototypes.
15665 Qualify it `const'.
15666 (obstack_copy, obstack_copy0): Rename the second argument as
15667 `address' for consistency. Qualify it `const'.
15668 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
15669 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
15670 `const' their input argument (`data' or `address').
15671 Adjust the corresponding macros to include `const' in casts.
15672
095a3fb5
AD
156732000-11-03 Akim Demaille <akim@epita.fr>
15674
15675 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
15676 s/PFILE1/BISON_HAIRY/.
15677 Adjust dependencies.
15678
d1cdce7c
AD
156792000-11-03 Akim Demaille <akim@epita.fr>
15680
090c5ebf 15681 For some reason, this was not applied.
d1cdce7c
AD
15682
15683 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
15684 `unlink': it's no longer used.
15685
9311529b
AD
156862000-11-03 Akim Demaille <akim@epita.fr>
15687
15688 * src/files.c (skeleton_find): New function, eved out of...
15689 (open_files, open_extra_files): here.
15690
d8880f69
AD
156912000-11-03 Akim Demaille <akim@epita.fr>
15692
15693 Don't use `atexit'.
15694
15695 * src/files.c (obstack_save): New function.
15696 (done): Rename as...
15697 (output_files): this.
15698 Use `obstack_save'.
15699 * src/main.c (main): Don't use `atexit' to register `done', since
15700 it no longer has to remove tmp files, just call `output_files'
15701 when there are no errors.
15702
0dbb648e
AD
157032000-11-02 Akim Demaille <akim@epita.fr>
15704
15705 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
15706 `unlink': it's no longer used.
15707 * src/files.h: Formatting changes.
15708
896fe5c1
AD
157092000-11-02 Akim Demaille <akim@epita.fr>
15710
15711 Remove the last uses of mktemp and unlink/delete.
15712
15713 * src/files.c (fdefines, ftable): Removed.
15714 (defines_ostack, table_obstack): New.
15715 Adjust dependencies of the former into uses of the latter.
15716 * src/output.c (output_short_or_char_table, output_short_table):
15717 Convert to using obstacks.
15718 * src/reader.c (copy_comment2): Accept one FILE * and two
15719 obstacks.
15720 (output_token_defines, reader_output_yylsp): Use obstacks.
15721 * src/system.h (obstack_fgrow3): New.
1f65350a 15722 * po/POTFILES.in: Adjust.
896fe5c1 15723
dd60faec
AD
157242000-11-01 Akim Demaille <akim@epita.fr>
15725
15726 Change each use of `fattrs' into a use of `attrs_obstack'.
15727
15728 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
15729 * src/files.c (fattrs): Remove.
15730 (attrs_obstack): New.
15731 Adjust all dependencies.
15732 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
15733
8c7ebe49
AD
157342000-11-01 Akim Demaille <akim@epita.fr>
15735
15736 Introduce obstacks.
15737 Change each use of `faction' into a use of `action_obstack'.
15738
15739 * lib/obstack.h, lib/obstack.c: New files.
15740 * src/files.c (faction): Remove.
15741 (action_obstack): New.
15742 Adjust all dependencies.
15743
77aee789
AD
157442000-10-20 Akim Demaille <akim@epita.fr>
15745
15746 * lib/quote.h (PARAMS): New macro. Use it.
15747
43591cec
AD
157482000-10-16 Akim Demaille <akim@epita.fr>
15749
15750 * src/output.c (output_short_or_char_table): New function.
15751 (output_short_table, output_token_translations): Use it.
15752 (goto_actions): Use output_short_table.
15753
1e9798d5
AD
157542000-10-16 Akim Demaille <akim@epita.fr>
15755
15756 * src/symtab.c (bucket_new): New function.
15757 (getsym): Use it.
15758
15759 * src/output.c (output_short_table): New argument to display the
15760 comment associated with the table.
15761 Adjust dependencies.
15762 (output_gram): Use it.
15763 (output_rule_data): Nicer output layout for YYTNAME.
15764
f282676b
AD
157652000-10-16 Akim Demaille <akim@epita.fr>
15766
15767 * src/lex.c (read_typename): New function.
15768 (lex): Use it.
15769 * src/reader.c (copy_dollar): Likewise.
15770
550a72a3
AD
157712000-10-16 Akim Demaille <akim@epita.fr>
15772
15773 * src/reader.c (copy_comment2): Expect the input stream to be on
15774 the `/' which is suspected to open a comment, instead of being
15775 called after `//' or `/*' was read.
15776 (copy_comment, copy_definition, parse_union_decl, copy_action)
15777 (copy_guard): Adjust.
15778
131e2fef
AD
157792000-10-16 Akim Demaille <akim@epita.fr>
15780
15781 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
15782 `read_signed_integer'.
15783
79282c5a
AD
157842000-10-16 Akim Demaille <akim@epita.fr>
15785
15786 * src/reader.c (copy_dollar): New function.
15787 (copy_guard, copy_action): Use it.
15788
ff4a34be
AD
157892000-10-16 Akim Demaille <akim@epita.fr>
15790
15791 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
15792 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
15793 New files, from Fileutils 4.0.27.
15794 * src/main.c (printable_version): Remove.
15795 * src/lex.c, src/reader.c: Use `quote'.
15796
157972000-10-04 Akim Demaille <akim@epita.fr>
15798
15799 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
15800
14ded682
AD
158012000-10-04 Akim Demaille <akim@epita.fr>
15802
15803 * doc/bison.texinfo: Various typos spotted by Neil Booth.
15804
8e03724b
AD
158052000-10-04 Akim Demaille <akim@epita.fr>
15806
15807 When a literal string is used to define two different tokens,
15808 `bison -v' segfaults.
15809 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
15810
15811 * tests/regression.m4: New file.
15812 Include the core of the sample provided by Piotr Gackiewicz.
15813 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
15814 properly.
15815
a9e64249
AD
158162000-10-04 Akim Demaille <akim@epita.fr>
15817
15818 * src/reader.c (parse_expect_decl): Keep `count' within the size
15819 of `buffer'.
15820 From Neil Booth.
15821
da9abf43
AD
158222000-10-02 Paul Eggert <eggert@twinsun.com>
15823
15824 * bison.s1 (yyparse): Assign the default value
15825 unconditionally, to avoid a GCC warning and make the parser a
15826 tad smaller.
15827
c33638bb
AD
158282000-10-02 Akim Demaille <akim@epita.fr>
15829
15830 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
15831 options.
15832
444c570a
AD
158332000-10-02 Akim Demaille <akim@epita.fr>
15834
15835 * src/derives.c, src/print.c, src/reduce.c: To ease the
15836 translation, move some `\n' out of the translated strings.
15837
89cab50d
AD
158382000-10-02 Akim Demaille <akim@epita.fr>
15839
15840 The location tracking mechanism is precious for parse error
15841 messages. Nevertheless, it is enabled only when `@n' is used in
15842 the grammar, which is a different issue (you can use it in error
15843 message, but not in the grammar per se). Therefore, there should
15844 be another means to enable it.
15845
15846 * src/getargs.c (getargs): Support `--locations'.
15847 (usage): Report it.
15848 * src/getargs.h (locationsflag): Export it.
15849 * src/lex.c (percent_table): Support `%locations'.
15850 * src/reader.c (yylsp_needed): Remove this variable, now replaced
15851 with `locationsflag'.
15852 * doc/bison.texinfo: Document `--locations' and `%locations'.
15853 Sort the options.
15854 * tests/calc.m4: Test it.
15855
15856 For regularity of the names, replace each
15857 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
15858 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
15859 In addition replace each `flag' with `_flag'.
15860
d6c2cba0
AD
158612000-10-02 Akim Demaille <akim@epita.fr>
15862
15863 Also test parse error messages, including with YYERROR_VERBOSE.
15864
15865 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
15866 associative).
15867 Use it to check the computations.
15868 Use it to check `nonassoc' is honored.
15869 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
15870 `--yyerror-verbose'.
15871 (_AT_CHECK_CALC): Adjust to this option.
15872 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
15873
5a35a6cb
AD
158742000-10-02 Akim Demaille <akim@epita.fr>
15875
15876 Test also `--verbose', `--defines' and `--name-prefix'. Testing
15877 the latter demonstrates a flaw in the handling of non debugging
15878 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
15879 was used in order to simplify:
15880
15881 #if YYDEBUG
15882 if (yydebug)
15883 {
15884 ...
15885 }
15886 #endif
15887
15888 into
15889
15890 if (yydebug)
15891 {
15892 ...
15893 }
15894
15895 unfortunately this leads to a CPP conflict when
15896 `--name-prefix=foo' is used since it produces `#define yydebug
15897 foodebug'.
15898
15899 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
15900 (YYDPRINTF): New macro.
15901 Spread its use.
15902 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
15903 the bison options.
15904 Also test `--verbose', `--defines' and `--name-prefix'.
15905
71da9eea
AD
159062000-10-02 Akim Demaille <akim@epita.fr>
15907
15908 Improve the readability of the produced parsers.
15909
15910 * src/bison.s1: Formatting changes.
15911 Improve the comment related to the `$' mark.
15912 (yydefault): Don't fall through to `yyresume': `goto' there.
15913 * src/output.c (output_parser): When the `$' is met, skip the end
15914 of its line.
15915 New variable, `number_of_dollar_signs', to check there's exactly
15916 one `$' in the parser skeleton.
15917
95e36146
AD
159182000-10-02 Akim Demaille <akim@epita.fr>
15919
15920 * lib/xstrdup.c: New file, from the fileutils.
15921 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
15922 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
15923 instead of strlen + xmalloc + strcpy.
15924 * src/symtab.c (copys): Remove, use xstrdup instead.
15925
d7020c20
AD
159262000-10-02 Akim Demaille <akim@epita.fr>
15927
15928 * src/gram.h (associativity): New enum type which replaces the
15929 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
15930 `right_assoc', `left_assoc' and `non_assoc'.
15931 Adjust all dependencies.
15932 * src/reader.c: Formatting changes.
15933 (LTYPESTR): Don't define it, use it as a literal in
15934 `reader_output_yylsp'.
15935 * src/symtab.h (symbol_class): New enum type which replaces the
15936 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
15937 `sunknown', `stoken and `snterm'.
15938
1916f98e
AD
159392000-10-02 Akim Demaille <akim@epita.fr>
15940
15941 * src/getargs.c (fixed_outfiles): Rename as...
15942 (yaccflag): for consistency and accuracy.
15943 Adjust dependencies.
15944
d7913476
AD
159452000-10-02 Akim Demaille <akim@epita.fr>
15946
15947 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
15948 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
15949 difficult and introduced a lot of core dump. It turns out that
15950 Bison used an implementation of `xmalloc' based on `calloc', and
15951 at various places it does depend upon the initialization to 0. I
15952 have not tried to isolate the pertinent places, and all the former
15953 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
15954 someone should address this issue.
15955
15956 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
15957 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
15958 files.
15959 Adjust dependencies.
15960 * src/warshall.h: New file.
15961 Propagate.
15962
340ef489
AD
159632000-10-02 Akim Demaille <akim@epita.fr>
15964
15965 Various anti-`extern in *.c' changes.
15966
15967 * src/system.h: Include `assert.h'.
15968
b2ca4022
AD
159692000-10-02 Akim Demaille <akim@epita.fr>
15970
15971 * src/state.h (nstates, final_state, first_state, first_shift)
15972 (first_reduction): Move their exportation from here...
15973 * src/LR0.h: to here.
15974 Adjust dependencies.
15975 * src/getargs.c (statisticsflag): New variable.
15976 Add support for `--statistics'.
15977 Adjust dependencies.
15978
15979 Remove a lot of now useless `extern' statements in most files.
15980
403b315b
AD
159812000-10-02 Akim Demaille <akim@epita.fr>
15982
15983 * src/LR0.h: New file.
15984 Propagate its use.
15985
07a58c13
AD
159862000-10-02 Akim Demaille <akim@epita.fr>
15987
15988 * src/print.h: New file.
15989 Propagate its use.
15990 * src/print.c: Formatting and ordering changes.
15991 (verbose, terse): Replace with...
15992 (print_results): this new function.
15993 Adjust dependencies.
15994
0619caf0
AD
159952000-10-02 Akim Demaille <akim@epita.fr>
15996
15997 * src/conflicts.c (conflict_report): New function.
15998 (conflict_log, verbose_conflict_log): Replace with...
15999 (print_conflicts): this function.
16000 Adjust dependencies.
16001 * src/conflicts.h: New file.
16002 Propagate its inclusion.
16003
3519ec76
AD
160042000-10-02 Akim Demaille <akim@epita.fr>
16005
16006 * src/nullable.h: New file.
16007 Propagate its inclusion.
16008 * src/nullable.c: Formatting changes.
16009
015acc48
AD
160102000-10-02 Akim Demaille <akim@epita.fr>
16011
16012 * src/reduce.h: New file.
16013 Propagate its inclusion.
16014 * src/reduce.c: Topological sort and other formatting changes.
16015 (bool, TRUE, FALSE): Move their definition to...
16016 * src/system.h: here.
16017
8963a27b
AD
160182000-10-02 Akim Demaille <akim@epita.fr>
16019
16020 * src/files.c: Formatting changes.
16021 (tryopen, tryclose, openfiles): Rename as...
16022 (xfopen, xfclose, open_files): this.
16023 (stringappend): static.
16024 * src/files.h: Complete the list of exported symbols.
16025 Propagate its use.
16026
a70083a3
AD
160272000-10-02 Akim Demaille <akim@epita.fr>
16028
16029 * src/reader.h: New file.
16030 Propagate its use instead of tedious list of `extern' and
16031 prototypes.
16032 * src/reader.c: Formatting changes, topological sort,
16033 s/register//.
16034
abadc117
AD
160352000-10-02 Akim Demaille <akim@epita.fr>
16036
16037 * src/lex.h: Prototype `lex.c' exported functions.
16038 * src/reader.c: Adjust.
16039 * src/lex.c: Formatting changes.
16040 (safegetc): Rename as...
16041 (xgetc): this.
16042
720d742f
AD
160432000-10-02 Akim Demaille <akim@epita.fr>
16044
16045 * src/lalr.h: New file.
16046 Propagate its inclusion instead of prototypes and `extern'.
16047 * src/lalr.c: Formatting changes, topological sorting etc.
16048
f2acea59
AD
160492000-10-02 Akim Demaille <akim@epita.fr>
16050
16051 * src/output.c (token_actions): Introduce a temporary array,
16052 YYDEFACT, that makes it possible for this function to use
16053 output_short_table.
16054
d019d655
AD
160552000-10-02 Akim Demaille <akim@epita.fr>
16056
16057 `user_toknums' is output as a `short[]' in `output.c', while it is
16058 defined as a `int[]' in `reader.c'. For consistency with the
16059 other output tables, `user_toknums' is now defined as a table of
16060 shorts.
16061
16062 * src/reader.c (user_toknums): Be a short table instead of an int
16063 table.
16064 Adjust dependencies.
16065
16066 Factor the short table outputs.
16067
16068 * src/output.c (output_short_table): New function.
16069 * src/output.c (output_gram, output_stos, output_rule_data)
16070 (output_base, output_table, output_check): Use it.
16071
6c89f1c1
AD
160722000-10-02 Akim Demaille <akim@epita.fr>
16073
16074 * src/output.c (output): Topological sort of the functions, in
16075 order to get rid of the `static' prototypes.
16076 No longer use `register'.
16077 * src/output.h: New file.
16078 Propagate its inclusion in files explicitly prototyping functions
16079 from output.c.
16080
d9efd181
AD
160812000-09-21 Akim Demaille <akim@epita.fr>
16082
16083 * src/atgeneral.m4: Update from Autoconf.
16084
c29240e7 160852000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
16086
16087 * src/closure.h: New file.
16088 * src/closure.c: Formatting changes, topological sort over the
16089 functions, use of closure.h.
16090 (initialize_closure, finalize_closure): Rename as...
16091 (new_closure, free_closure): these. Adjust dependencies.
16092 * src/LR0.c: Formatting changes, topological sort, use of
16093 cloture.h.
16094 (initialize_states): Rename as...
16095 (new_states): this.
16096 * src/Makefile.am (noinst_HEADERS): Adjust.
16097
499daa50
AD
160982000-09-20 Akim Demaille <akim@epita.fr>
16099
16100 * src/acconfig.h: Don't protect config.h against multiple
16101 inclusion.
16102 Don't define PARAMS.
16103 * src/system.h: Define PARAMS.
16104 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
16105 purpose of config.h. system.h must not try to fix wrong
16106 definitions in config.h.
16107
cc84fd5d
AD
161082000-09-20 Akim Demaille <akim@epita.fr>
16109
16110 * src/derives.h: New file.
16111 * src/main.c, src/derives.h: Use it.
16112 Formatting changes.
16113 * src/Makefile.am (noinst_HEADERS): Adjust.
16114
db5b3a89
AD
161152000-09-20 Akim Demaille <akim@epita.fr>
16116
16117 * tests/atgeneral.m4: Update from Autoconf.
16118 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
16119 (AT_CHECK_CALC): New macros.
16120 Use these macros to test bison with options `', `--raw',
16121 `--debug', `--yacc', `--yacc --debug'.
16122
ceed8467
AD
161232000-09-19 Akim Demaille <akim@epita.fr>
16124
16125 * src/output.c: Formatting changes.
16126 * src/machine.h: Remove, leaving its contents in...
16127 * src/system.h: here.
16128 Include stdio.h.
16129 Adjust all dependencies on stdio.h and machine.h.
16130 * src/getargs.h: New file.
16131 Let all `extern' declarations about getargs.c be replaced with
16132 inclusion of `getargs.h'.
16133 * src/Makefile.am (noinst_HEADERS): Adjust.
16134
16135 * tests/calc.m4 (yyin): Be initialized in main, not on the global
16136 scope.
16137 (yyerror): Returns void, not int.
16138 * doc/bison.texinfo: Formatting changes.
16139
05a1d24b
AD
161402000-09-19 Akim Demaille <akim@epita.fr>
16141
16142 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
16143 portable.
16144
cbd25751
AD
161452000-09-18 Akim Demaille <akim@epita.fr>
16146
16147 * configure.in: Append WARNING_CFLAGS to CFLAGS.
16148 * src/Makefile.am (INCLUDES): Don't.
16149 Be ready to fetch headers in lib/.
16150
13863333
AD
161512000-09-18 Akim Demaille <akim@epita.fr>
16152
16153 * doc/bison.texinfo: Update the copyright.
16154 ANSIfy and GNUify the examples.
16155 Remove the old menu.
16156
0d533154
AD
161572000-09-18 Akim Demaille <akim@epita.fr>
16158
16159 First set of tests: use the `calc' example from the documentation.
16160
16161 * src/bison.s1 (yyparse): Condition the code using `yytname' which
16162 is defined only when YYDEBUG is.
16163 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
16164 * src/files.c (tryopen, tryclose): Formatting changes.
16165 Move to the top and be static.
16166 * src/reader.c (read_signed_integer): Likewise.
16167 * tests/calc.m4: New file.
16168 * Makefile.am, suite.m4: Adjust.
16169 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
16170
e79137ac
AD
161712000-09-18 Akim Demaille <akim@epita.fr>
16172
16173 Add support for an Autotest test suite for Bison.
16174
16175 * m4/m4.m4, m4/atconfig.m4: New files.
16176 * m4/Makefile.am (EXTRA_DIST): Adjust.
16177 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
16178 files.
16179 * src/getargs.c: Display a more standard --version message.
16180 * src/reader.c (reader): Formatting changes.
16181 No longer depend upon VERSION_STRING.
16182 * configure.in: No longer use `dnl'.
16183 Set up the test suite and the new directory `tests/.
16184 (VERSION_STRING): Remove.
16185
27821bff
AD
161862000-04-14 Akim Demaille <akim@epita.fr>
16187
16188 * src/reader.c (copy_comment2): New function, same as former
16189 `copy_comment', but outputs into two FILE *.
16190 (copy_comment): Use it.
16191 (parse_union_decl): Use it.
16192 (get_type, parse_start_decl): Use the same `invalid' message.
16193 (parse_start_decl, parse_union_decl): Use the same `multiple'
16194 message.
16195 (parse_union_decl, copy_guard, copy_action): Use the same
16196 `unmatched' message.
16197 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
16198
cfe5fbc0
AD
161992000-03-31 Akim Demaille <akim@epita.fr>
16200
16201 * src/files.c (tryopen, tryclose): Move to the top.
16202 Be static.
16203
cb7db13e
AD
162042000-03-31 Akim Demaille <akim@epita.fr>
16205
16206 * src/main.c (main): Don't call `done', exit does it.
16207
a0f6b076
AD
162082000-03-31 Akim Demaille <akim@epita.fr>
16209
36281465
AD
16210 * allocate.c: s/return (foo)/return foo/.
16211 * lalr.c: Likewise.
16212 * LR0.c: Likewise.
16213 * output.c: Likewise.
16214 * reader.c: Likewise.
16215 * symtab.c: Likewise.
16216 * vmsgetargs.c: Likewise.
16217
162182000-03-31 Akim Demaille <akim@epita.fr>
16219
16220 Clean up the error reporting functions.
a0f6b076
AD
16221
16222 * src/report.c: New file.
16223 * src/report.h: Likewise.
16224 * src/Makefile.am: Adjust.
16225 * m4/error.m4: New file.
16226 * m4/Makefile.am: Adjust.
16227 * configure.in (jm_PREREQ_ERROR): Call it.
16228 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
16229 Remove.
16230 (fatal, fatals): Remove. All callers use complain.c::fatal.
16231 (warn, warni, warns, warnss, warnss): Remove. All callers use
16232 complain.c::complain.
16233 (toomany): Remove, use fatal instead.
16234 * src/files.c (done): No argument, use complain_message_count.
16235 * src/main.c (main): Register `done' to `atexit'.
16236
16237 * src/getargs.c (usage): More `fputs', less `fprintf'.
16238
18539825
AD
162392000-03-28 Akim Demaille <akim@epita.fr>
16240
16241 * lib/: New directory.
16242 * Makefile.am (SUBDIRS): Adjust.
16243 * configure.in: Adjust.
16244 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
16245 useless.
16246 * src/alloca.c: Moved to lib/.
16247 * src/getopt.c: Likewise.
16248 * src/getopt1.c: Likewise.
16249 * src/getopt.h: Likewise.
16250 * src/ansi2knr.c: Likewise.
16251 * src/ansi2knr.1: Likewise.
16252 * src/Makefile.am: Adjust.
16253 * lib/Makefile.am: New file.
16254
9f306f2a
AD
162552000-03-28 Akim Demaille <akim@epita.fr>
16256
16257 * src/getargs.c (usage): Refresh the help message.
16258
0ba347b6
AD
162592000-03-17 Akim Demaille <akim@epita.fr>
16260
16261 * src/getopt1.c: Updated from textutils 2.0e
16262 * src/getopt.c: Likewise.
16263 * src/getopt.h: Likewise.
16264
dbe7f271
AD
162652000-03-17 Akim Demaille <akim@epita.fr>
16266
16267 * src/Makefile.am (bison.simple): Fix the awk program: quote only
16268 the file name, not the whole `#line LINE FILE'.
16269
75bbe78d
AD
162702000-03-17 Akim Demaille <akim@epita.fr>
16271
16272 On syntax errors, report the token on which we choked.
16273
aa5fd0ee
AD
16274 * src/bison.s1 (yyparse): In the label yyerrlab, when
16275 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 16276
7b306f52
AD
162772000-03-17 Akim Demaille <akim@epita.fr>
16278
aa5fd0ee 16279 * src/reader.c (copy_at): New function.
7b306f52
AD
16280 (copy_guard): Use it.
16281 (copy_action): Use it.
16282
e87b5700
AD
162832000-03-17 Akim Demaille <akim@epita.fr>
16284
16285 Be kind to translators, save some useless translations.
16286
aa5fd0ee 16287 * src/main.c (banner): New function.
e87b5700
AD
16288 (fatal_banner): Use it.
16289 (warn_banner): Use it.
16290
ae3c3164
AD
162912000-03-17 Akim Demaille <akim@epita.fr>
16292
aa5fd0ee
AD
16293 * src/reader.c (copy_definition): Use copy_string and
16294 copy_comment. Removed now unused `match', `ended',
16295 `cplus_comment'.
ae3c3164
AD
16296 (copy_comment, copy_string): Moved, to be visible from
16297 copy_definition.
16298
4dc58e7c
AD
162992000-03-17 Akim Demaille <akim@epita.fr>
16300
aa5fd0ee
AD
16301 * src/reader.c (copy_string): Declare `static inline'. No
16302 problems with inline, since it is checked by configure.
4dc58e7c
AD
16303 (copy_comment): Likewise.
16304
0a6384c4
AD
163052000-03-17 Akim Demaille <akim@epita.fr>
16306
aa5fd0ee 16307 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 16308
3cef001a
AD
163092000-03-17 Akim Demaille <akim@epita.fr>
16310
aa5fd0ee 16311 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
16312 (copy_action): Use it. Removed now unused `match', `ended',
16313 `cplus_comment'.
16314 (copy_guard): Likewise.
16315
ca36d2ef
AD
163162000-03-17 Akim Demaille <akim@epita.fr>
16317
aa5fd0ee 16318 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
16319 (copy_action): Use it.
16320 (copy_guard): Likewise.
16321
6666f98f
AD
163222000-03-17 Akim Demaille <akim@epita.fr>
16323
16324 Change the handling of @s so that they behave exactly like $s.
16325 There is now a pseudo variable @$ (readble and writable), location
16326 of the lhs of the rule (by default ranging from the location of
16327 the first symbol of the rhs, to the location of the last symbol,
16328 or, if the rhs is empty, YYLLOC).
16329
16330 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
16331 yyval.
16332 (yyparse): When providing a default semantic action, provide a
16333 default location action.
16334 (after the $): No longer change `*YYLSP', just stack YYLOC the
16335 same way you stack YYVAL.
16336 * src/reader.c (read_declarations): Use warns.
16337 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
16338 (copy_action, case '@'): Likewise.
16339 Use a standard error message, to save useless work from
16340 translators.
16341
41aca2e0
AD
163422000-03-17 Akim Demaille <akim@epita.fr>
16343
aa5fd0ee
AD
16344 * src/bison.s1: Formatting and cosmetics changes.
16345 * src/reader.c: Likewise.
41aca2e0
AD
16346 Update the Copyright notice.
16347
dc08c1d5
AD
163482000-03-17 Akim Demaille <akim@epita.fr>
16349
aa5fd0ee
AD
16350 * src/bison.s1 (#line): All set to `#line' only, since the
16351 Makefile now handles them.
dc08c1d5 16352
9ee3c97b
AD
163532000-03-16 Akim Demaille <akim@epita.fr>
16354
16355 * src/output.c (output_rule_data): Output the documentation of
16356 some of the tables.
16357 (Copyright notice): Update.
16358 Formatting changes.
16359
0de741ca
AD
163602000-03-16 Akim Demaille <akim@epita.fr>
16361
16362 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
16363 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
16364 One `#if YYDEBUG' remains, since it uses variables which are
16365 defined only if `YYDEBUG != 0'.
16366
bb10be54
AD
163672000-03-16 Akim Demaille <akim@epita.fr>
16368
16369 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
16370 and related variables so that the similarities are highlighted.
16371
b07b484a
AD
163722000-03-16 Akim Demaille <akim@epita.fr>
16373
16374 * src/bison.s1: Properly indent CPP directives.
16375
361f60b3
AD
163762000-03-16 Akim Demaille <akim@epita.fr>
16377
16378 * src/bison.s1: Properly indent the `alloca' CPP section.
16379
8c44d3ec
AD
163802000-03-16 Akim Demaille <akim@epita.fr>
16381
16382 Do not hard code values of directories in `configure.in'.
16383 Update the `configure' tool chain.
16384
16385 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
16386 src/makefile.am.
16387 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
16388 (AC_OUTPUT): Add m4/Makefile.
16389 Bump to bison 1.28a, 1.29 has never been released.
16390 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
16391 handled via src/Makefile.am.
16392 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
16393 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
16394 autoheader.
16395 * Makefile.am (SUBDIRS): Add m4.
16396 (ACLOCAL_AM_FLAGS): New variable.
16397 (AUTOMAKE_OPTIONS): Add check-news.
16398 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
16399 the proper line number and file name.
16400 (DEFS): Propagate the location of bison library files and of the
16401 locale files.
16402 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
16403 builddir.
16404 * acinclude.m4: Remove, replaced by the directory m4.
16405 * m4/Makefile.am (EXTRA_DIST): New variable.
16406 * m4/gettext.m4: New file, from the fileutils.
16407 * m4/lcmessage.m4: Likewise
16408 * m4/progtest.m4: Likewise.
16409 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
16410
f95997e7
AD
164112000-03-10 Akim Demaille <akim@epita.fr>
16412
16413 * src/closure.c:
16414 Formatting changes of various comments.
16415 Respect the GNU coding standards at various places.
16416 Don't use `_()' when no translation is needed.
16417
164181999-12-13 Jesse Thilo <jthilo@gnu.org>
16419
16420 * src/files.c:
16421 OS/2 honors TMPDIR environment variable.
16422
164231999-12-13 Jesse Thilo <jthilo@gnu.org>
16424
16425 * doc/bison.texinfo: Tweaked spelling and grammar.
16426 Updated ISBN.
16427 Removed reference to price of printed copy.
16428 Mention BISON_SIMPLE and BISON_HAIRY.
16429
164301999-12-13 Jesse Thilo <jthilo@gnu.org>
16431
16432 * configure.in, NEWS:
16433 Bison 1.29 released.
16434
164351999-10-27 Jesse Thilo <jthilo@gnu.org>
16436
16437 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
16438 Added reference card.
16439
164401999-07-26 Jesse Thilo <jthilo@gnu.org>
16441
16442 * po/ru.po: Added Russian translation.
16443
164441999-07-26 Jesse Thilo <jthilo@gnu.org>
16445
16446 * configure.in: Added Russian translation.
16447
164481999-07-06 Jesse Thilo <jthilo@gnu.org>
16449
16450 * configure.in, NEWS, README:
16451 Released version 1.28.
16452
164531999-06-14 Jesse Thilo <jthilo@gnu.org>
16454
16455 * src/system.h:
16456 Squashed redefinition warning on some systems.
16457
16458 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
16459 Have configure build version string instead of relying on ANSI string
16460 concatentation.
16461
164621999-06-14 Jesse Thilo <jthilo@gnu.org>
16463
16464 * po/POTFILES.in: Got rid of version.c.
16465
164661999-06-14 Jesse Thilo <jthilo@gnu.org>
16467
16468 * acconfig.h, configure.in:
16469 Have configure build version string instead of relying on ANSI string
16470 concatentation.
16471
164721999-06-08 Jesse Thilo <jthilo@gnu.org>
16473
16474 * doc/bison.1:
16475 Dropped mention of `+' for long-named options.
16476
164771999-05-30 Jesse Thilo <jthilo@gnu.org>
16478
16479 * src/files.c: Added <unistd.h> for unlink().
16480
16481 * src/Makefile.am, src/system.h:
16482 I18n fixes.
16483
164841999-05-30 Jesse Thilo <jthilo@gnu.org>
16485
16486 * README: Added a FAQ list.
16487
16488 * configure.in, acconfig.h:
16489 I18n fixes.
16490
164911999-05-30 Jesse Thilo <jthilo@gnu.org>
16492
16493 * doc/FAQ, doc/Makefile.am:
16494 Added a FAQ list.
16495
164961999-05-19 Jesse Thilo <jthilo@gnu.org>
16497
16498 * src/alloc.h, src/symtab.h, src/version.c:
16499 Protected inclusion of "config.h" with HAVE_CONFIG_H.
16500
165011999-04-18 Jesse Thilo <jthilo@gnu.org>
16502
16503 * src/.cvsignore, src/Makefile.am:
16504 Reorganized: sources in `src', documentation in `doc'.
16505
16506 * src/lex.c (literalchar):
16507 fixed the code for escaping double quotes (thanks
16508 Jonathan Czisny.)
16509
165101999-04-18 Jesse Thilo <jthilo@gnu.org>
16511
16512 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
16513 Adjusted paths to reflect directory reorganization.
16514
165151999-04-18 Jesse Thilo <jthilo@gnu.org>
16516
16517 * doc/.cvsignore, doc/Makefile.am:
16518 Reorganized: sources in `src', documentation in `doc'.
16519
165201999-04-18 Jesse Thilo <jthilo@gnu.org>
16521
16522 * configure.in:
16523 Updated AC_INIT file to reflect directory reorganization.
16524
16525 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
16526 Reorganized: sources in `src', documentation in `doc'.
16527
165281999-04-13 Jesse Thilo <jthilo@gnu.org>
16529
16530 * src/allocate.c:
16531 Don't declare calloc() and realloc() if not necessary.
16532
165331999-04-13 Jesse Thilo <jthilo@gnu.org>
16534
16535 * configure.in, acconfig.h, acinclude.m4:
16536 Don't declare calloc() and realloc() if not necessary.
16537
165381999-03-23 Jesse Thilo <jthilo@gnu.org>
16539
16540 * po/.cvsignore: Added i18n support.
16541
165421999-03-23 Jesse Thilo <jthilo@gnu.org>
16543
16544 * acconfig.h, configure.in, Makefile.am:
16545 Added i18n support.
16546
165471999-03-22 Jesse Thilo <jthilo@gnu.org>
16548
16549 * src/bison.s1: Fixed #line numbers.
16550
165511999-03-15 Jesse Thilo <jthilo@gnu.org>
16552
16553 * po/es.po, po/fr.po, po/nl.po, po/de.po:
16554 Added PO files from Translation Project.
16555
165561999-03-03 Jesse Thilo <jthilo@gnu.org>
16557
16558 * Makefile.am:
16559 Added support for non-ANSI compilers (ansi2knr).
16560
165611999-02-16 Jesse Thilo <jthilo@gnu.org>
16562
16563 * configure.in: Bumped version number to 1.27.
16564
16565 * Makefile.am:
16566 Added `bison.simple' to list of files removed by `make distclean'.
16567
165681999-02-12 Jesse Thilo <jthilo@gnu.org>
16569
16570 * src/files.c, src/files.h:
16571 Defined locations of parser files in config.h instead of Makefile.
16572
165731999-02-12 Jesse Thilo <jthilo@gnu.org>
16574
16575 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
16576 Defined locations of parser files in config.h instead of Makefile.
16577
165781999-02-09 Jesse Thilo <jthilo@gnu.org>
16579
16580 * Makefile.am:
16581 Removed inappropriate use of $< macro.
16582
165831999-02-05 Jesse Thilo <jthilo@gnu.org>
16584
16585 * po/Makefile.in.in, po/POTFILES.in:
16586 Add `po' directory skeleton.
16587
165881999-01-27 Jesse Thilo <jthilo@gnu.org>
16589
16590 * README: Document help-bison list.
16591
16592 * configure.in: Add check for mkstemp().
16593
165941999-01-20 Jesse Thilo <jthilo@gnu.org>
16595
16596 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
16597 Hush a few compiler warnings.
16598
16599 * src/files.c:
16600 Add tryclose(), which verifies that fclose was successful.
16601 Hush a couple of compiler warnings.
16602
166031999-01-20 Jesse Thilo <jthilo@gnu.org>
16604
16605 * Makefile.am, OChangeLog:
16606 ChangeLog is now automatically generated. Include the old version as
16607 OChangeLog.
16608
166091999-01-14 Jesse Thilo <jthilo@gnu.org>
16610
16611 * 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:
16612 Update FSF address.
16613
166141999-01-14 Jesse Thilo <jthilo@gnu.org>
16615
16616 * doc/bison.texinfo: Fix formatting glitch.
16617
16618 * doc/bison.texinfo: Update FSF address.
16619
166201999-01-14 Jesse Thilo <jthilo@gnu.org>
16621
16622 * acconfig.h: Update FSF address.
16623
166241999-01-08 Jesse Thilo <jthilo@gnu.org>
16625
16626 * src/system.h:
16627 Don't define PACKAGE here, since config.h defines it.
16628
166291998-12-30 Jesse Thilo <jthilo@gnu.org>
16630
16631 * src/reader.c: Update copyright date.
16632
16633 * src/main.c:
16634 Ditch sprintf to statically-sized buffers in fatal/warn functions in
16635 favor of output directly to stderr (avoids buffer overruns).
16636
16637 * src/reader.c: Some checks for premature EOF.
16638
16639 * 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:
16640 Use prototypes if the compiler understands them.
16641
16642 * src/files.c: Honor TMPDIR on Unix hosts.
16643 Use prototypes if the compiler understands them.
16644
16645 * src/reader.c:
16646 Fix a couple of buffer overrun bugs.
16647 Use prototypes if the compiler understands them.
16648
16649 * src/system.h: Include unistd.h and ctype.h.
16650 Use #ifdef instead of #if for NLS symbols.
16651
166521998-12-30 Jesse Thilo <jthilo@gnu.org>
16653
16654 * doc/bison.texinfo:
16655 Delete comment "consider using @set for edition number, etc..." since
16656 we now are doing so.
16657
166581998-12-30 Jesse Thilo <jthilo@gnu.org>
16659
16660 * configure.in:
16661 Use prototypes if the compiler understands them.
16662
16663 * NEWS: Document 1.26 highlights.
16664
16665 * Makefile.am: Require Automake 1.3 or later.
16666
16667 * acconfig.h:
16668 Use prototypes if the compiler understands them.
16669
166701998-12-29 Jesse Thilo <jthilo@gnu.org>
16671
16672 * src/version.c:
16673 Use VERSION symbol from automake for version number.
16674
166751998-12-29 Jesse Thilo <jthilo@gnu.org>
16676
16677 * acconfig.h, configure.in, version.cin:
16678 Use VERSION symbol from automake for version number.
16679
166801998-11-28 Jesse Thilo <jthilo@gnu.org>
16681
16682 * Makefile.am:
16683 Distribute original version of simple parser (bison.s1), not built
16684 version (bison.simple).
16685
166861998-11-28 Jesse Thilo <jthilo@gnu.org>
16687
16688 * doc/bison.texinfo: Add info dir entry.
16689
16690 * doc/bison.texinfo:
16691 Let automake put version number into documentation.
16692
166931998-11-26 Jesse Thilo <jthilo@gnu.org>
16694
16695 * src/bison.cld, src/build.com, src/vmshlp.mar:
16696 Add non-RCS files from /gd/gnu/bison.
16697
166981998-11-26 Jesse Thilo <jthilo@gnu.org>
16699
16700 * doc/bison.1:
16701 Document the BISON_HAIRY and BISON_SIMPLE variables.
16702
167031998-11-25 Jesse Thilo <jthilo@gnu.org>
16704
16705 * src/version.c: Build version.c automatically.
16706
16707 * src/reader.c:
16708 Fix token numbering (used to start at 258, not 257).
16709
16710 * src/system.h: Include config.h.
16711
16712 * src/getargs.c: Update bug report address.
16713
16714 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
16715 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
16716
167171998-11-25 Jesse Thilo <jthilo@gnu.org>
16718
16719 * Makefile.am:
16720 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
16721
16722 * configure.in, version.cin:
16723 Build version.c automatically.
16724
16725 * AUTHORS: Add AUTHORS file.
16726
16727 * README: Update bug report address.
16728
16729 * bison.simple:
16730 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
16731
16732 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
16733 Add automake stuff.
16734
167351998-11-25 Jesse Thilo <jthilo@gnu.org>
16736
16737 * doc/bison.texinfo: Clean up some formatting.
16738
167391998-05-05 Richard Stallman <rms@gnu.org>
16740
16741 * doc/bison.texinfo:
16742 Explain better why to make a pure parser.
16743
167441998-01-05 Richard Stallman <rms@gnu.org>
16745
16746 * src/files.c (openfiles):
16747 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
16748 find a temporary directory, if possible. Do not unlink files while
16749 they are open.
16750
167511997-08-25 Richard Stallman <rms@gnu.org>
16752
16753 * src/reader.c (stack_offset;):
16754 Change some warni to warns.
16755
16756 * src/lex.c (literalchar): Use warns, not warni.
16757
167581997-06-28 Richard Stallman <rms@gnu.org>
16759
16760 * src/bison.s1: Add a Bison version comment.
16761
16762 * src/main.c (fatal, warn, berror):
16763 Use program_name.
16764
167651997-06-28 Richard Stallman <rms@gnu.org>
16766
16767 * Makefile.in (bison_version): New variable.
16768 (dist): Use that variable.
16769 (bison.s1): Substitute the Bison version into bison.simple.
16770
16771 * bison.simple: Add a Bison version comment.
16772
167731997-06-18 Richard Stallman <rms@gnu.org>
16774
16775 * src/main.c (fatal, warn, berror):
16776 Make error messages standard.
16777 (toomany): Improve error message text.
16778
16779 * 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:
16780 new.h renamed to alloc.h.
16781
167821997-06-18 Richard Stallman <rms@gnu.org>
16783
16784 * Makefile.in: new.h renamed to alloc.h.
16785
167861997-05-24 Richard Stallman <rms@gnu.org>
16787
16788 * src/lex.c (literalchar):
16789 Fix the code for escaping \, " and '.
16790
16791 (lex): Avoid trouble when there are many chars
16792 to discard in a char literal with just several chars in it.
16793
167941997-05-17 Richard Stallman <rms@gnu.org>
16795
16796 * src/bison.s1:
16797 Use malloc, if using alloca is troublesome.
16798 (YYSTACK_USE_ALLOCA): New flag macro.
16799 Define it for some systems and compilers.
16800 (YYSTACK_ALLOC): New macro.
16801 (yyparse): Use YYSTACK_ALLOC to allocate stack.
16802 If it was malloc'd, free it.
16803
168041997-05-17 Richard Stallman <rms@gnu.org>
16805
16806 * bison.simple:
16807 Use malloc, if using alloca is troublesome.
16808 (YYSTACK_USE_ALLOCA): New flag macro.
16809 Define it for some systems and compilers.
16810 (YYSTACK_ALLOC): New macro.
16811 (yyparse): Use YYSTACK_ALLOC to allocate stack.
16812 If it was malloc'd, free it.
16813
168141997-04-23 Richard Stallman <rms@gnu.org>
16815
16816 * src/bison.s1:
16817 (alloca) [__hpux]: Always define as __builtin_alloca.
16818
168191997-04-23 Richard Stallman <rms@gnu.org>
16820
16821 * bison.simple:
16822 (alloca) [__hpux]: Always define as __builtin_alloca.
16823
168241997-04-22 Richard Stallman <rms@gnu.org>
16825
16826 * src/bison.s1:
16827 [__hpux]: Include alloca.h (right for HPUX 10)
16828 instead of declaring alloca (right for HPUX 9).
16829
16830 * src/bison.s1 (__yy_memcpy):
16831 Declare arg `count' as unsigned int.
16832 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
16833
168341997-04-22 Richard Stallman <rms@gnu.org>
16835
16836 * bison.simple:
16837 [__hpux]: Include alloca.h (right for HPUX 10)
16838 instead of declaring alloca (right for HPUX 9).
16839
16840 * bison.simple (__yy_memcpy):
16841 Declare arg `count' as unsigned int.
16842 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
16843
168441997-01-03 Richard Stallman <rms@gnu.org>
16845
16846 * src/allocate.c: [__STDC__ or _MSC_VER]:
16847 Declare calloc and realloc to return void *.
16848
168491997-01-02 Richard Stallman <rms@gnu.org>
16850
16851 * src/system.h:
16852 [_MSC_VER]: Include stdlib.h and process.h.
16853 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
16854
16855 * src/main.c (main): Return FAILURE as a value.
16856 (printable_version): Declare arg as int, not char.
16857
168581997-01-02 Richard Stallman <rms@gnu.org>
16859
16860 * Makefile.in (dist):
16861 Explicitly check for symlinks, and copy them.
16862
168631996-12-19 Richard Stallman <rms@gnu.org>
16864
16865 * src/files.c:
16866 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
16867
168681996-12-18 Paul Eggert <eggert@gnu.org>
16869
16870 * src/bison.s1 (yyparse):
16871 If __GNUC__ and YYPARSE_PARAM are both defined,
16872 declare yyparse to have a void * argument.
16873
168741996-12-18 Paul Eggert <eggert@gnu.org>
16875
16876 * bison.simple (yyparse):
16877 If __GNUC__ and YYPARSE_PARAM are both defined,
16878 declare yyparse to have a void * argument.
16879
168801996-12-17 Richard Stallman <rms@gnu.org>
16881
16882 * src/reduce.c (nbits): Add some casts.
16883
168841996-08-12 Richard Stallman <rms@gnu.org>
16885
16886 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
16887
168881996-08-12 Richard Stallman <rms@gnu.org>
16889
16890 * bison.simple: Test _MSDOS as well as _MSDOS_.
16891
168921996-07-31 Richard Stallman <rms@gnu.org>
16893
16894 * src/bison.s1:
16895 [__sun && __i386]: Include alloca.h.
16896
168971996-07-31 Richard Stallman <rms@gnu.org>
16898
16899 * bison.simple:
16900 [__sun && __i386]: Include alloca.h.
16901
169021996-07-30 Richard Stallman <rms@gnu.org>
16903
16904 * src/bison.s1: Comment change.
16905
16906 * src/bison.s1: Test _MSDOS_, not MSDOS.
16907
169081996-07-30 Richard Stallman <rms@gnu.org>
16909
16910 * bison.simple: Comment change.
16911
16912 * bison.simple: Test _MSDOS_, not MSDOS.
16913
169141996-06-01 Richard Stallman <rms@gnu.org>
16915
16916 * 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:
16917 Insert `_' macro around many string constants.
16918
16919 * src/main.c:
16920 Insert `_' macro around many string constants.
16921
16922 (main): Call setlocale, bindtextdomain and textdomain.
16923
16924 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
16925 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
16926 [ENABLE_NLS]: Include libintl.h.
16927 [ENABLE_NLS] (gettext): Define.
16928 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
16929 (N_, PACKAGE, LOCALEDIR): New macros.
16930
169311996-06-01 Richard Stallman <rms@gnu.org>
16932
16933 * POTFILES.in: New file.
16934
16935 * Makefile.in (allocate.o):
16936 Define target explicitly.
16937
16938 * Makefile.in (CFLAGS): Set to @CFLAGS@.
16939 (LDFLAGS): Set to @LDFLAGS@.
16940 (configure): Run autoconf only if preceding `cd' succeeds.
16941 (bison.s1): Redirect output to temporary file then move the
16942 temporary to the target, rather than redirecting directly to bison.s1.
16943 (clean): Remove config.status and config.log.
16944 (distclean): Don't remove config.status here.
16945
169461996-05-12 Richard Stallman <rms@gnu.org>
16947
16948 * src/bison.s1:
16949 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
16950
169511996-05-12 Richard Stallman <rms@gnu.org>
16952
16953 * bison.simple:
16954 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
16955
169561996-05-11 Richard Stallman <rms@gnu.org>
16957
16958 * src/bison.s1 (__yy_memcpy):
16959 Really reorder the args, as was supposedly done on Feb 14 1995.
16960 (yyparse): Calls changed accordingly.
16961
169621996-05-11 Richard Stallman <rms@gnu.org>
16963
16964 * Makefile.in (dist): Don't use $(srcdir).
16965
16966 * bison.simple (__yy_memcpy):
16967 Really reorder the args, as was supposedly done on Feb 14 1995.
16968 (yyparse): Calls changed accordingly.
16969
169701996-01-27 Richard Stallman <rms@gnu.org>
16971
16972 * src/output.c (output_rule_data):
16973 Test YYERROR_VERBOSE in the conditional
16974 around the definition of ttyname.
16975
169761995-12-29 Richard Stallman <rms@gnu.org>
16977
16978 * src/bison.s1:
16979 Fix line numbers in #line commands.
16980
169811995-12-29 Richard Stallman <rms@gnu.org>
16982
16983 * bison.simple:
16984 Fix line numbers in #line commands.
16985
169861995-12-27 Richard Stallman <rms@gnu.org>
16987
16988 * src/bison.s1 (YYPARSE_PARAM_DECL):
16989 In C++, make it always null.
16990 (YYPARSE_PARAM_ARG): New macro.
16991 (yyparse): Use YYPARSE_PARAM_ARG.
16992
169931995-12-27 Richard Stallman <rms@gnu.org>
16994
16995 * bison.simple (YYPARSE_PARAM_DECL):
16996 In C++, make it always null.
16997 (YYPARSE_PARAM_ARG): New macro.
16998 (yyparse): Use YYPARSE_PARAM_ARG.
16999
170001995-11-29 Richard Stallman <rms@gnu.org>
17001
17002 * doc/bison.texinfo:
17003 Describe literal string tokens, %raw, %no_lines, %token_table.
17004
170051995-11-29 Daniel Hagerty <hag@gnu.org>
17006
17007 * doc/bison.texinfo: Fixed update date
17008
170091995-10-16 Richard Stallman <rms@gnu.org>
17010
17011 * src/version.c: Version 1.25.
17012
170131995-10-16 Richard Stallman <rms@gnu.org>
17014
17015 * NEWS: *** empty log message ***
17016
170171995-10-16 Richard Stallman <rms@gnu.org>
17018
17019 * doc/bison.1, doc/bison.rnh:
17020 Add new options.
17021
170221995-10-15 Richard Stallman <rms@gnu.org>
17023
17024 * src/vmsgetargs.c, src/getargs.c:
17025 Added -n, -k, and -raw switches.
17026 (noparserflag, toknumflag, rawtoknumflag): New variables.
17027
17028 * src/symtab.h (SALIAS):
17029 New #define for adding aliases to %token.
17030 (struct bucket): Added `alias' field.
17031
17032 * src/reduce.c (reduce_grammar):
17033 Revise error message.
17034 (print_notices): Remove final `.' from error message.
17035
17036 * src/reader.c (reader_output_yylsp):
17037 New function.
17038 (readgram): Use `#if 0' around code that accepted %command
17039 inside grammar rules: The documentation doesn't allow it,
17040 and it will fail since the %command processors scan for the next %.
17041 (parse_token_decl): Extended the %token
17042 declaration to allow a multi-character symbol as an alias.
17043 (parse_thong_decl): New function.
17044 (read_declarations): Added %thong declarations.
17045 (read_declarations): Handle NOOP to deal with allowing
17046 % declarations as another means to specify the flags.
17047 (readgram): Allow %prec prior to semantics embedded in a rule.
17048 (skip_to_char, read_declarations, copy_definition)
17049 (parse_token_decl, parse_start_decl, parse_type_decl)
17050 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
17051 (get_type_name, copy_guard, copy_action, readgram)
17052 (get_type, packsymbols): Revised most error messages.
17053 Changed `fatal' to `warnxxx' to avoid aborting for error.
17054 Revised and use multiple warnxxx functions to avoid using VARARGS1.
17055 (read_declarations): Improve the error message for
17056 an invalid character. Do not abort.
17057 (read_declarations, copy_guard, copy_action): Use
17058 printable_version to avoid unprintable characters in printed output.
17059 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
17060 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
17061 Allow the type of a non-terminal can be given
17062 more than once, as long as all specifications give the same type.
17063
17064 * src/output.c:
17065 (output_headers, output_trailers, output, output_gram)
17066 (output_rule_data): Implement noparserflag variable.
17067 Implement toknumflag variable.
17068 (output): Call reader_output_yylsp to output LTYPESTR.
17069
17070 * src/main.c (main):
17071 If reader sees an error, don't process the grammar.
17072 (fatals): Updated to not use VARARGS1.
17073 (printable_version, int_to_string, warn, warni, warns, warnss)
17074 (warnsss): New error reporting functions. Avoid abort for error.
17075
17076 * src/lex.h:
17077 Added THONG and NOOP for alias processing.
17078 Added SETOPT for the new code that allows setting options with %flags.
17079
17080 * src/lex.c:
17081 Include getopt.h. Add some extern decls.
17082 (safegetc): New function to deal with EOF gracefully.
17083 (literalchar); new function to deal with reading \ escapes.
17084 (lex): Use literalchar.
17085 (lex): Implemented "..." tokens.
17086 (literalchar, lex, parse_percent_token): Made tokenbuffer
17087 always contain the token. This includes growing the token
17088 buffer while reading an integer.
17089 (parse_percent_token): Replaced if-else statement with percent_table.
17090 (parse_percent_token): Added % declarations as another
17091 way to specify the flags -n, -l, and -r. Also added hooks for
17092 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
17093 major changes to files.c.
17094 (lex) Retain in the incoming stream a character following
17095 an incorrect '/'.
17096 (skip_white_space, lex): Revised most error messages
17097 and changed fatal to warn to avoid aborting.
17098 (percent_table): Added %thong declarations.
17099
17100 * src/gram.h: Comment changes.
17101
17102 * src/files.c (openfiles, open_extra_files, done):
17103 Add faction flag
17104 and actfile file. Handle noparserflag. Both for -n switch.
17105
17106 * src/conflicts.c (resolve_sr_conflict):
17107 Remove use of alloca.
17108
171091995-06-01 Jim Meyering <meyering@gnu.org>
17110
17111 * doc/bison.texinfo: *** empty log message ***
17112
171131995-05-06 Richard Stallman <rms@gnu.org>
17114
17115 * src/bison.s1: Comment change.
17116
171171995-05-06 Richard Stallman <rms@gnu.org>
17118
17119 * bison.simple: Comment change.
17120
171211995-05-03 Richard Stallman <rms@gnu.org>
17122
17123 * src/version.c: Version now 1.24.
17124
17125 * src/bison.s1: Change distribution terms.
17126
17127 * src/version.c: Version now 1.23.
17128
171291995-05-03 Richard Stallman <rms@gnu.org>
17130
17131 * doc/bison.texinfo:
17132 Rewrite "Conditions for Using Bison".
17133 Update version to 1.24.
17134
171351995-05-03 Richard Stallman <rms@gnu.org>
17136
17137 * bison.simple: Change distribution terms.
17138
171391995-02-23 Richard Stallman <rms@gnu.org>
17140
17141 * src/files.c: Test __VMS_POSIX as well as VMS.
17142
171431995-02-14 Jim Meyering <meyering@gnu.org>
17144
17145 * src/bison.s1 (__yy_memcpy):
17146 Renamed from __yy_bcopy to avoid
17147 confusion. Reverse FROM and TO arguments to be consistent with
17148 those of memcpy.
17149
171501995-02-14 Jim Meyering <meyering@gnu.org>
17151
17152 * bison.simple (__yy_memcpy):
17153 Renamed from __yy_bcopy to avoid
17154 confusion. Reverse FROM and TO arguments to be consistent with
17155 those of memcpy.
17156
171571994-11-10 David J. MacKenzie <djm@gnu.org>
17158
17159 * NEWS: reformat
17160
17161 * NEWS: New file.
17162
17163 * Makefile.in (DISTFILES): Include NEWS.
17164
17165 * Makefile.in (DISTFILES):
17166 Include install-sh, not install.sh.
17167
17168 * configure.in: Update to Autoconf v2 macro names.
17169
171701994-10-05 David J. MacKenzie <djm@gnu.org>
17171
17172 * Makefile.in: fix typo
17173
17174 * Makefile.in (prefix, exec_prefix):
17175 Let configure set them.
17176
171771994-09-28 David J. MacKenzie <djm@gnu.org>
17178
17179 * Makefile.in: Set datadir to $(prefix)/share.
17180
171811994-09-15 Richard Stallman <rms@gnu.org>
17182
17183 * src/bison.s1:
17184 Update copyright notice and GPL version.
17185
171861994-09-15 Richard Stallman <rms@gnu.org>
17187
17188 * bison.simple:
17189 Update copyright notice and GPL version.
17190
171911994-07-12 Richard Stallman <rms@gnu.org>
17192
17193 * src/reduce.c, src/reader.c:
17194 entered into RCS
17195
171961994-05-05 David J. MacKenzie <djm@gnu.org>
17197
17198 * Makefile.in: entered into RCS
17199
172001994-03-26 Richard Stallman <rms@gnu.org>
17201
17202 * src/bison.s1: entered into RCS
17203
172041994-03-26 Richard Stallman <rms@gnu.org>
17205
17206 * bison.simple: entered into RCS
17207
172081994-03-25 Richard Stallman <rms@gnu.org>
17209
17210 * src/main.c: entered into RCS
17211
172121994-03-24 Richard Stallman <rms@gnu.org>
17213
17214 * src/conflicts.c: entered into RCS
17215
172161994-01-02 Richard Stallman <rms@gnu.org>
17217
17218 * Makefile.in: *** empty log message ***
17219
172201993-11-21 Richard Stallman <rms@gnu.org>
17221
17222 * src/bison.s1: *** empty log message ***
17223
172241993-11-21 Richard Stallman <rms@gnu.org>
17225
17226 * doc/bison.texinfo: entered into RCS
17227
17228 * doc/bison.texinfo: *** empty log message ***
17229
172301993-11-21 Richard Stallman <rms@gnu.org>
17231
17232 * bison.simple: *** empty log message ***
17233
172341993-10-25 David J. MacKenzie <djm@gnu.org>
17235
17236 * doc/bison.texinfo: *** empty log message ***
17237
172381993-10-19 Richard Stallman <rms@gnu.org>
17239
17240 * src/bison.s1: *** empty log message ***
17241
172421993-10-19 Richard Stallman <rms@gnu.org>
17243
17244 * bison.simple: *** empty log message ***
17245
172461993-10-14 Richard Stallman <rms@gnu.org>
17247
17248 * src/bison.s1: *** empty log message ***
17249
172501993-10-14 Richard Stallman <rms@gnu.org>
17251
17252 * bison.simple: *** empty log message ***
17253
172541993-09-14 David J. MacKenzie <djm@gnu.org>
17255
17256 * doc/bison.texinfo: *** empty log message ***
17257
172581993-09-13 Noah Friedman <friedman@gnu.org>
17259
17260 * Makefile.in: *** empty log message ***
17261
172621993-09-10 Richard Stallman <rms@gnu.org>
17263
17264 * src/conflicts.c: *** empty log message ***
17265
17266 * src/system.h: entered into RCS
17267
172681993-09-10 Richard Stallman <rms@gnu.org>
17269
17270 * doc/bison.1: entered into RCS
17271
172721993-09-06 Noah Friedman <friedman@gnu.org>
17273
17274 * src/version.c: entered into RCS
17275
172761993-09-06 Noah Friedman <friedman@gnu.org>
17277
17278 * Makefile.in: *** empty log message ***
17279
172801993-07-30 David J. MacKenzie <djm@gnu.org>
17281
17282 * Makefile.in: *** empty log message ***
17283
172841993-07-24 Richard Stallman <rms@gnu.org>
17285
17286 * src/bison.s1: *** empty log message ***
17287
172881993-07-24 Richard Stallman <rms@gnu.org>
17289
17290 * bison.simple: *** empty log message ***
17291
172921993-07-08 David J. MacKenzie <djm@gnu.org>
17293
17294 * Makefile.in: *** empty log message ***
17295
172961993-07-04 Richard Stallman <rms@gnu.org>
17297
17298 * src/bison.s1: *** empty log message ***
17299
173001993-07-04 Richard Stallman <rms@gnu.org>
17301
17302 * bison.simple: *** empty log message ***
17303
173041993-06-26 David J. MacKenzie <djm@gnu.org>
17305
17306 * src/getargs.c: entered into RCS
17307
173081993-06-26 David J. MacKenzie <djm@gnu.org>
17309
17310 * doc/bison.texinfo: *** empty log message ***
17311
17312 * doc/bison.1: New file.
17313
173141993-06-25 Richard Stallman <rms@gnu.org>
17315
17316 * src/getargs.c: New file.
17317
173181993-06-16 Richard Stallman <rms@gnu.org>
17319
17320 * src/bison.s1: *** empty log message ***
17321
173221993-06-16 Richard Stallman <rms@gnu.org>
17323
17324 * bison.simple: *** empty log message ***
17325
173261993-06-03 Richard Stallman <rms@gnu.org>
17327
17328 * src/bison.s1: New file.
17329
173301993-06-03 Richard Stallman <rms@gnu.org>
17331
17332 * doc/bison.texinfo: *** empty log message ***
17333
173341993-06-03 Richard Stallman <rms@gnu.org>
17335
17336 * bison.simple: New file.
17337
173381993-05-19 Richard Stallman <rms@gnu.org>
17339
17340 * doc/bison.texinfo: New file.
17341
173421993-05-07 Noah Friedman <friedman@gnu.org>
17343
17344 * Makefile.in: *** empty log message ***
17345
173461993-04-28 Noah Friedman <friedman@gnu.org>
17347
17348 * src/reader.c: *** empty log message ***
17349
173501993-04-23 Noah Friedman <friedman@gnu.org>
17351
17352 * src/alloc.h: entered into RCS
17353
173541993-04-20 David J. MacKenzie <djm@gnu.org>
17355
17356 * src/version.c: *** empty log message ***
17357
17358 * src/files.c, src/allocate.c:
17359 entered into RCS
17360
17361 * src/reader.c: *** empty log message ***
17362
17363 * src/lex.c: entered into RCS
17364
17365 * src/conflicts.c: New file.
17366
17367 * src/symtab.c: entered into RCS
17368
17369 * src/alloc.h: New file.
17370
17371 * src/LR0.c: entered into RCS
17372
173731993-04-18 Noah Friedman <friedman@gnu.org>
17374
17375 * src/reader.c: New file.
17376
17377 * src/version.c: *** empty log message ***
17378
173791993-04-18 Noah Friedman <friedman@gnu.org>
17380
17381 * Makefile.in: *** empty log message ***
17382
173831993-04-17 Noah Friedman <friedman@gnu.org>
17384
17385 * Makefile.in: *** empty log message ***
17386
173871993-04-15 Richard Stallman <rms@gnu.org>
17388
17389 * src/main.c, src/files.c:
17390 New file.
17391
173921993-04-15 Noah Friedman <friedman@gnu.org>
17393
17394 * configure.in: entered into RCS
17395
17396 * configure.in: *** empty log message ***
17397
17398 * configure.in: New file.
17399
174001993-04-14 Richard Stallman <rms@gnu.org>
17401
17402 * Makefile.in: New file.
17403
174041993-04-13 Richard Stallman <rms@gnu.org>
17405
17406 * src/version.c: New file.
17407
174081993-03-25 Richard Stallman <rms@gnu.org>
17409
17410 * src/output.c: entered into RCS
17411
174121992-09-25 Richard Stallman <rms@gnu.org>
17413
17414 * configure.bat: entered into RCS
17415
174161992-06-22 Richard Stallman <rms@gnu.org>
17417
17418 * src/vmsgetargs.c: entered into RCS
17419
174201992-06-22 Richard Stallman <rms@gnu.org>
17421
17422 * doc/bison.rnh: entered into RCS
17423
174241992-04-20 David J. MacKenzie <djm@gnu.org>
17425
17426 * README: entered into RCS
17427
174281992-01-22 Richard Stallman <rms@gnu.org>
17429
17430 * src/machine.h: entered into RCS
17431
174321991-12-21 Richard Stallman <rms@gnu.org>
17433
17434 * src/lalr.c, src/closure.c:
17435 entered into RCS
17436
174371991-12-20 Richard Stallman <rms@gnu.org>
17438
17439 * src/state.h: entered into RCS
17440
174411991-12-18 Richard Stallman <rms@gnu.org>
17442
17443 * src/print.c, src/nullable.c, src/derives.c:
17444 entered into RCS
17445
174461991-11-03 David J. MacKenzie <djm@gnu.org>
17447
17448 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
17449 entered into RCS
17450
174511988-09-09 Richard Stallman <rms@gnu.org>
17452
17453 * src/bison.hairy: entered into RCS
17454
174551987-12-16 Richard Stallman <rms@gnu.org>
17456
17457 * REFERENCES: entered into RCS
dc546b0f 17458
f294a2c2 17459
04098407 17460 -----
f294a2c2 17461
04098407 17462 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
e2a21b6f
PE
17463 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free
17464 Software Foundation, Inc.
f294a2c2 17465
04098407
PE
17466 Copying and distribution of this file, with or without
17467 modification, are permitted provided the copyright notice and this
17468 notice are preserved.
e9071366
AD
17469
17470$Id$