]> git.saurik.com Git - bison.git/blob - ChangeLog
Import of 2003-06-08 libbitset <http://mail.gnu.org/archive/html/bison-patches/2003...
[bison.git] / ChangeLog
1 2003-06-03 Paul Eggert <eggert@twinsun.com>
2
3 Avoid warnings generated by GCC 2.95.4 when Bison is
4 configured with --enable-gcc-warnings.
5 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
6 yy::]b4_parser_class_name[::translate_,
7 yy::Stack::operator[] (unsigned),
8 yy::Stack::operator[] (unsigned) const,
9 yy::Slice::operator[] (unsigned),
10 yy::Slice::operator[] (unsigned) const):
11 Rename local vars to avoid warnings.
12 * tests/glr-regression.at (Improper handling of embedded actions
13 and $-N in GLR parsers): Remove unused local variable from yylex.
14 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
15 (void) as arg when not pure, since we now assume C89 when building
16 Bison. Pacify GCC by using parameter.
17
18 2003-06-02 Paul Eggert <eggert@twinsun.com>
19
20 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
21 yy::Location::lines, yy::Location::columns): Rename arguments
22 to avoid shadowing; this removes a warning generated by GCC 3.3.
23
24 2003-06-01 Paul Eggert <eggert@twinsun.com>
25
26 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
27 to g++, as GCC 3.3 complains if you do it.
28 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
29 everything that WARNING_CFLAGS has, except omit warnings
30 not suitable for C++.
31 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
32 * tests/atlocal.in (CXXFLAGS): New var.
33 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
34
35 Fix a GLR parser bug I reported in February; see
36 <http://mail.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
37 The problem was that GLR parsers did not conform to the C standard,
38 because actions like { $1 = $2 + $3; } expanded to expressions
39 that invoked YYFILL in separate subexpressions, and YYFILL assigned
40 to a local variable. The C standard says that expressions
41 like (var = f ()) + (var = f ()) have undefined behavior.
42 Another problem was that GCC sometimes issues warnings that
43 yyfill and its parameters are unused.
44
45 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
46 as possibly unused.
47 (yyfill): New function.
48 (YYFILL): Use it.
49 (yyuserAction): Change type of yynormal to bool, so that it matches
50 the new yyfill signature. Mark it as possibly unused.
51
52
53 Follow up on a bug I reported in February, where a Bison-generated
54 parser can loop. Provide a test case and a fix for yacc.c. I
55 don't have a fix for lalr1.cc or for glr.c, unfortunately.
56 The original bug report is in:
57 <http://mail.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
58
59 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
60 macro's size was becoming unwieldy.
61 (yyerrlab): Do not discard an empty lookahead symbol, as this
62 might destroy garbage.
63 (yyerrorlab): New label, with the old contents of YYERROR,
64 plus the following change: pop the stack of rhs corresponding
65 to the production that invoked YYERROR. That is how Yacc
66 behaves, and POSIX requires this behavior.
67 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
68 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
69 Define 'alarm' to do nothing if unistd.h is not available.
70 Add a new rule "exp: '-' error;" to test the above change to
71 data/yacc.c. Use 'alarm' to abort any test taking longer than
72 10 seconds, as it's probably looping.
73 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
74 Also, the new yacc.c generates two fewer diagnostics for an
75 existing test.
76
77 2003-05-24 Paul Eggert <eggert@twinsun.com>
78
79 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
80 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
81 This fixes a problem reported by John Bowman when the Compaq/HP
82 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
83 -ansi -Wall -gall).
84 * data/yacc.c (union yyalloc): Likewise.
85 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
86
87 Switch from 'int' to 'bool' where that makes sense.
88
89 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
90 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
91 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
92 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
93 Return or accept bool, not int. All callers changed.
94 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
95 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
96 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
97 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
98 bitset_or_and_cmp_): Likewise.
99 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
100 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
101 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
102 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
103 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
104 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
105 bitset_stats_or_and_cmp): Likewise.
106 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
107 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
108 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
109 ebitset_xor_cmp): Likewise.
110 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
111 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
112 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
113 lbitset_xor_cmp): Likewise.
114 * lib/bbitset.h: Include <stdbool.h>.
115 (struct bitset_vtable): The following members now return bool, not
116 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
117 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
118 or_and_cmp).
119 * src/conflicts.c (count_rr_conflicts): Likewise.
120 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
121 All uses changed.
122 * lib/ebitset.c (ebitset_obstack_init): Likewise.
123 * lib/lbitset.c (lbitset_obstack_init): Likewise.
124 * src/getargs.c (debug_flag, defines_flag, locations_flag,
125 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
126 graph_flag): Likewise.
127 * src/getargs.h (debug_flag, defines_flag, locations_flag,
128 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
129 graph_flag): Likewise.
130 * src/output.c (error_verbose): Likewise.
131 * src/output.h (error_verbose): Likewise.
132 * src/reader.c (start_flag, typed): Likewise.
133 * src/reader.h (typed): Likewise.
134 * src/getargs.c (LOCATIONS_OPTION): New constant.
135 (long_options, getargs): Use it.
136 * src/lalr.c (build_relations): Use bool, not int.
137 * src/nullable.c (nullable_compute): Likewise.
138 * src/print.c (print_reductions): Likewise.
139 * src/tables.c (action_row, pack_vector): Likewise.
140 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
141 * src/output.c (prepare): Use it.
142 * src/output.c (token_definitions_output,
143 symbol_destructors_output, symbol_destructors_output): Use string,
144 not boolean integer, to keep track of whether to output separator.
145 * src/print_graph.c (print_core): Likewise.
146 * src/state.c (state_rule_lookaheads_print): Likewise.
147
148 * config/install-sh: Sync from automake 1.7.5.
149
150 2003-05-14 Paul Eggert <eggert@twinsun.com>
151
152 * src/parse-gram.y (rules_or_grammar_declaration): Require a
153 semicolon after a grammar declaration, in the interest of possible
154 future changes to the Bison input language.
155 Do not allow a stray semicolon at the start of the grammar.
156 (rhses.1): Allow one or more semicolons after any rule, including
157 just before "|" as required by POSIX.
158 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
159 grammar.
160
161 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
162
163 %parse-param support for lalr1.cc.
164
165 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
166 b4_cc_constructor_calls, b4_cc_constructor_call,
167 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
168 definitions.
169 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
170 parse-param arguments.
171 (yy::b4_parser_class_name): Declare instance variables to
172 hold parse-param arguments.
173 * tests/calc.at: s/value/semantic_value/ because value clashes
174 with a member of yy::b4_parser_class_name. Adjust C++ code
175 to handle %parse-param. Enable %parse-param test in C++.
176
177 2003-05-12 Paul Eggert <eggert@twinsun.com>
178
179 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
180 English a bit. Fix fclose typo. Change "const char" to "char
181 const", and use ANSI C rather than K&R for "main". Suggest
182 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
183 and suggest yy_switch_to_buffer.
184
185 2003-05-05 Paul Eggert <eggert@twinsun.com>
186
187 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
188 C89. This avoids a diagnostic on compilers that define __STDC__
189 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
190 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
191
192 2003-05-03 Paul Eggert <eggert@twinsun.com>
193
194 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
195 Do not overrun array bounds.
196 This should fix a bug reported today by Olatunji Oluwabukunmi in
197 <http://mail.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
198
199 2003-04-29 Akim Demaille <akim@epita.fr>
200
201 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
202 * src/getargs.c, src/getargs.h: here, as bool, not int.
203 (nondeterministic_parser): New.
204 * src/parse-gram.y, src/scan-gram.l: Support
205 %nondeterministic-parser.
206 * src/output.c (prepare): Use nondeterministic_parser instead
207 of glr_parser where appropriate.
208 * src/tables.c (conflict_row, action_row, save_row)
209 (token_actions, token_actions, pack_vector): Ditto.
210
211 2003-04-29 Akim Demaille <akim@epita.fr>
212
213 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
214
215 2003-04-29 Akim Demaille <akim@epita.fr>
216
217 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
218 with %pure-parser and %locations to exercise the patch from Yakov
219 Markovitch below.
220
221 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
222
223 * data/yacc.c: (b4_lex_param): Corrected for the case where
224 %lex-param is provided and %pure-parser isn't.
225
226 2003-04-27 Paul Eggert <eggert@twinsun.com>
227
228 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
229 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
230 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
231 if it is not defined.
232 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
233
234 2003-04-26 Paul Eggert <eggert@twinsun.com>
235
236 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
237 Declare to be of type suitable for the ninf value itself, not of
238 type suitable for the corresponding table, since the latter might
239 be unsigned but the ninf value might be negative. This fixes a
240 bug reported by Alexandre Duret-Lutz in
241 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
242
243 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
244 invokes it. We shouldn't invoke it twice because it will attempt
245 to put error.o in the archive twice. This fixes a glitch reported
246 by Martin Mokrejs in
247 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
248
249 2003-04-21 Paul Eggert <eggert@twinsun.com>
250
251 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
252 to gnulib.
253
254 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
255
256 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
257 Fix obvious typo that results in uncompilable GLR parsers
258 when both %pure-parser and %locations are used. (trivial change)
259
260 2003-04-17 Paul Eggert <eggert@twinsun.com>
261
262 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
263 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
264 Do not insert the expected token via unput, as this runs afoul
265 of a POSIX-compatibility bug in flex 2.5.31.
266 All uses changed to BEGIN the parent state,
267 since we no longer insert the expected token via unput.
268 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
269 that is no longer emitted after the above change.
270
271 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
272 the first one. This change is from Paul Hilfinger, and it fixes
273 regression reported by Werner Lemberg in
274 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
275
276 (resolve_sr_conflict): Don't invoke state_errs_set
277 unless one or more tokens have been explicitly made errors.
278 Otherwise, the above change causes Bison to abort.
279
280 * tests/existing.at (GNU pic Grammar): New test case, taken from
281 Lemberg's email.
282
283 2003-03-31 Akim Demaille <akim@epita.fr>
284
285 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
286
287 2003-03-31 Akim Demaille <akim@epita.fr>
288
289 * src/output.c (prepare_symbols): Avoid trailing spaces in the
290 output.
291
292 2003-03-31 Akim Demaille <akim@epita.fr>
293
294 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
295 From Paul Hilfinger.
296
297 2003-03-29 Akim Demaille <akim@epita.fr>
298
299 * m4/error.m4: Do not put under dynamic conditions some code which
300 expansion is under static control.
301
302 2003-03-29 Akim Demaille <akim@epita.fr>
303
304 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
305
306 2003-03-29 Akim Demaille <akim@epita.fr>
307
308 * doc/bison.texinfo (Strings are Destroyed): New.
309
310 2003-03-13 Paul Eggert <eggert@twinsun.com>
311
312 * .cvsignore: Add configure.lineno.
313 * src/.cvsignore: Add yacc.
314 * tests/.cvsignore: Add testsuite.log.
315 * doc/fdl.texi: Sync with latest FSF version.
316
317 2003-03-12 Paul Eggert <eggert@twinsun.com>
318
319 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
320 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
321 cursor, instead of leaving it undefined. This fixes a bug
322 reported by Tim Van Holder in
323 <http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
324 * tests/input.at (Torturing the Scanner): Test the scanner on
325 an empty input file, which was Tim Van Holder's test case.
326
327 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
328 <sys/resource.h> can be included, include sys/time.h and
329 sys/times.h first, if available. This works around the SunOS
330 4.1.4 porting bug reported by Bruce Becker in
331 <http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
332
333 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
334 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
335 AC_HEADER_SYS_WAIT.
336
337 Merge changes from gnulib. This was prompted because the CVS
338 snapshot didn't build on Solaris 7 due to strnlen problems.
339
340 These changes need to be merged back into gnulib:
341 * lib/hash.c: Include <stdbool.h> unconditionally.
342 * m4/onceonly.m4 (m4_quote): New macro.
343 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
344 Quote AC_FOREACH variable-expansions properly.
345 The 2003-01-03 obstack.h change also needs merging.
346 {end of changes requiring merging}
347
348 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
349 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
350 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
351 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
352 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
353 New files, imported from gnulib.
354 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
355 above.
356
357 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
358 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
359 gnulib sources.
360
361 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
362 Add.
363 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
364 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
365 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
366 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
367 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
368 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
369 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
370 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
371 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
372 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
373 (jm_PREREQ_ARGMATCH): Remove.
374 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
375 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
376
377 * src/system.h: Include <stdbool.h> unconditionally.
378
379 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
380 assuming at least C89 in the bitset code for some time now.
381
382 2003-03-03 Akim Demaille <akim@epita.fr>
383
384 * ro.po: New.
385
386 2003-03-02 Akim Demaille <akim@epita.fr>
387
388 * doc/bison.texinfo (Table of Symbols): Reactivate the
389 documentation for %lex-param, and %parse-param.
390
391 2003-03-02 Akim Demaille <akim@epita.fr>
392
393 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
394 generate verbose error messages.
395 Use the number of tokens as an upper bound in yytname, as it
396 cannot be a non terminal.
397
398 2003-03-02 Akim Demaille <akim@epita.fr>
399
400 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
401 message.
402
403 2003-03-02 Akim Demaille <akim@epita.fr>
404
405 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
406 Use them to exercise yycheck overrun.
407 Based on Andrew Suffield's grammar.
408
409 2003-03-02 Akim Demaille <akim@epita.fr>
410
411 Create tests/local.at for Bison generic testing macros.
412
413 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
414 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
415 This new file.
416 * tests/calc.at (AT_CHECK_CALC): Adjust.
417 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
418 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
419 * tests/local.at: here.
420 (AT_COMPILE_CXX): Tags the tests using it as c++.
421 Ignore the test if CXX is not functional.
422
423 2003-03-01 Paul Eggert <eggert@twinsun.com>
424
425 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
426 not loc->end, since loc->end might contain garbage and this leads
427 to undefined behavior on some platforms.
428 (id_loc, token_start): Use (IF_LINTed) initial values that do not
429 depend on *loc, so that the reader doesn't give the the false
430 impression that *loc is initialized.
431 (<INITIAL>"%%"): Do not bother setting code_start, since its value
432 does not survive the return.
433
434 2003-03-01 Akim Demaille <akim@epita.fr>
435
436 * src/scan-gram.l (code_start): Always initialize it when entering
437 into yylex, as SC_EPILOGUE is activated *before* the corresponding
438 yylex invocation. An alternative would be making it static, but
439 then it starts with the second %%'s beginning, instead of its end.
440
441 2003-02-28 Paul Eggert <eggert@twinsun.com>
442
443 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
444 around a UnixWare 7.1.1 porting bug reported by John Hughes in
445 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
446
447 2003-02-26 Paul Eggert <eggert@twinsun.com>
448
449 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
450 Remove Sequent/Pyramid discussion (nobody uses them any more).
451 Merge VMS and MS-DOS discussion; these ports may well be dead
452 but let's keep mentioning them for now. Put <> around email
453 addresses. Add copyright notice.
454
455 2003-02-24 Paul Eggert <eggert@twinsun.com>
456
457 * data/glr.c (yy_reduce_print): yylineno -> yylno,
458 to avoid collision with flex use of yylineno.
459 Problem reported by Bruce Lilly in
460 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
461 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
462 * data/yacc.c (yy_reduce_print): Likewise.
463
464 * config/depcomp: Sync with Automake 1.7.3.
465
466 2003-02-21 Akim Demaille <akim@epita.fr>
467
468 * data/lalr1.cc: Use temporary variables instead of casts to
469 change integer types.
470 Suggested by Paul Eggert.
471
472 2003-02-21 Akim Demaille <akim@epita.fr>
473
474 * doc/bison.texinfo: Use "location" consistently to refer to @n,
475 to avoid confusions with lalr1.cc's notion of Position.
476 Suggested by Paul Eggert.
477
478 2003-02-20 Akim Demaille <akim@epita.fr>
479
480 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
481 before initial_columns.
482 (location.hh): Use consistent variable names when defining the
483 operator<<.
484 Use "last" so that we subtract from Positions, not from unsigned.
485
486 2003-02-20 Akim Demaille <akim@epita.fr>
487
488 * data/lalr1.cc (position.hh): New subfile, including the extended
489 and Doxygen'ed documentation of class Position.
490 (location.hh): Use it.
491 Document a` la Doxygen.
492 With the help of Benoit Perrot.
493
494 2003-02-20 Akim Demaille <akim@epita.fr>
495
496 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
497 AT_YACC_IF.
498 Redefine AT_YYERROR_SEES_LOC_IF using it.
499 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
500 not defined.
501 Don't use the location in yy::Parser::error_ and
502 yy::Parser::print_ when not %locations.
503 Activate more lalr1.cc tests.
504
505 2003-02-19 Akim Demaille <akim@epita.fr>
506
507 * data/lalr1.cc: When displaying a line number, be sure to make it
508 an int.
509
510 2003-02-19 Akim Demaille <akim@epita.fr>
511
512 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
513 Remove, useless.
514 (YYABORT, YYACCEPT, YYERROR): New.
515 * tests/calc.at: Renable the lalr1.cc test.
516
517 2003-02-19 Akim Demaille <akim@epita.fr>
518
519 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
520 error recovery, mixing with/without pops and discarding of the
521 lookahead.
522 Exercise YYERROR.
523 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
524
525 2003-02-17 Paul Eggert <eggert@twinsun.com>
526
527 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
528 * tests/testsuite.at (AT_COMPILE): Use them.
529 This fixes the testsuite problem reported by Robert Lentz in
530 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
531
532 2003-02-12 Paul Eggert <eggert@twinsun.com>
533
534 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
535 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
536 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
537 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
538 Check for malloc failure, for consistency with yacc.c.
539 (yytname_size): Remove, for consistency with yacc.c.
540
541 The bug still remains in data/lalr1.cc, as I didn't have time
542 to fix it there.
543
544 2003-02-06 Akim Demaille <akim@epita.fr>
545
546 * configure.ac (GXX): Rename as...
547 (CXX): this, to keep the original Autoconf semantics.
548 Require 2.57.
549 * data/lalr1.cc: Fix b4_copyright invocations.
550 If YYDEBUG is not defined, don't depend upon name_ being defined.
551 (location.hh): Include string and iostream.
552 (Position::filename): New member.
553 (Position::Position ()): New.
554 (operator<< (Position)): New.
555 (operator- (Position, int)): New.
556 (Location::first, Location::last): Rename as...
557 (Location::begin, Location::end): these, to mock the conventional
558 iterator names.
559 (operator<< (Location)): New.
560 * tests/atlocal.in (CXX): New.
561 * tests/testsuite.at (AT_COMPILE_CXX): New.
562 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
563 locations in a more synthetic way.
564 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
565 lalr1.cc is used.
566 Adjust the C locations to match those from Emacs: first column is
567 column 0.
568 Change all the expected results.
569 Conform to the GCS: simplify the locations when applicable.
570 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
571 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
572 these CPP macros with the m4 macros new defined by...
573 (AT_CHECK_PUSHDEFS): this, i.e.:
574 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
575 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
576 New macros.
577 (AT_CHECK_POPDEFS): Undefine them.
578 (AT_CHECK_CALC_LALR1_CC): New.
579 Use it for the first lalr1.cc test.
580
581 2003-02-04 Akim Demaille <akim@epita.fr>
582
583 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
584 Location as is defined.
585
586 2003-02-04 Akim Demaille <akim@epita.fr>
587
588 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
589 name_ being defined.
590
591 2003-02-03 Paul Eggert <eggert@twinsun.com>
592
593 * src/gram.h (start_symbol): Remove unused decl.
594
595 Use more-consistent naming conventions for local vars.
596
597 * src/derives.c (derives_compute): Change type of local var from
598 int to rule_number.
599 * src/gram.c (grammar_rules_partial_print): Likewise.
600 * src/print.c (print_core): Likewise.
601 * src/reduce.c (reduce_grammar_tables): Likewise.
602
603 * src/gram.c (grammar_dump): Change name of item_number *
604 local var from r to rp.
605 * src/nullable.c (nullable_compute): Likewise.
606
607 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
608
609 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
610 for symbol or symbol_number var.
611 * src/reader.c (grammar_start_symbol_set): Likewise.
612 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
613 Likewise.
614 * src/state.c (transitions_to): Likewise.
615 * src/state.h: Likewise.
616 * src/tables.c (symbol_number_to_vector_number): Likewise.
617
618 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
619 char * var.
620
621 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
622 var.
623
624 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
625 var.
626
627 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
628 Use str, not s, for char * var. Use ch, not c, for character var.
629 Use size for size var.
630
631 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
632 char * var.
633 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
634 uniqstr var.
635 * src/uniqstr.h: Likewise.
636
637 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
638 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
639 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
640 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
641 param to have same name as that of enum, so that we don't use
642 "s" to stand for a non-state.
643
644 2003-02-02 Akim Demaille <akim@epita.fr>
645
646 * src/scan-skel.l: Scan more than one inert character per yylex
647 invocation.
648
649 2003-02-01 Paul Eggert <eggert@twinsun.com>
650
651 Version 1.875a.
652
653 * po/LINGUAS: Add ms.
654
655 2003-01-30 Akim Demaille <akim@epita.fr>
656
657 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
658
659 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
660
661 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
662 of $1.
663
664 Changes in response to error report by S. Eken: GLR mode does not
665 handle negative $ indices or $ indices in embedded rules correctly.
666 See <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
667
668 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
669 (b4_rhs_location): Ditto.
670 (yyfill): New function to copy from stack tree into array
671 incrementally.
672 (yyuserAction): Modify to allow incremental move of semantic values
673 to rhs array when in GLR mode.
674 Define YYFILL to use in user-defined actions to fill semantic array
675 as needed.
676 Remove dummy use of yystack, as there is now a guaranteed use.
677 (yydoAction): Modify to allow incremental move of semantic values
678 to rhs array when in GLR mode.
679 (yyresolveAction): Ditto.
680 (yyglrShiftDefer): Update comment.
681 (yyresolveStates): Use X == NULL for pointers, not !X.
682 (yyglrReduce): Ditto.
683 (yydoAction): Ditto
684
685 * tests/glr-regr1.at: Rename to ...
686 * tests/glr-regression.at: Add new regression test for the problems
687 described above (adapted from S. Eken).
688 Update copyright notice.
689 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
690 * tests/Makefile.am: Ditto.
691
692 2003-01-28 Paul Eggert <eggert@twinsun.com>
693
694 * data/lalr1.cc: Do not use @output_header_name@ unless
695 b4_defines_flag is set. This fixes two bugs reported by
696 Tim Van Holder in
697 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
698 and <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
699
700 2003-01-21 Paul Eggert <eggert@twinsun.com>
701
702 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
703 we don't need to worry about yyerrlab1 being reported as an
704 "unused label" by non-GCC C compilers. The downside is that if
705 locations are used then a couple of statements are duplicated each
706 time YYERROR is invoked, but the upside is that the warnings
707 should vanish.
708 (yyerrlab1): Move code to YERROR.
709 (yyerrlab2): Remove. Change uses back to yyerrlab1.
710 This reverts some of the 2002-12-27 change.
711
712 2003-01-17 Paul Eggert <eggert@twinsun.com>
713
714 * src/output.c (symbol_printers_output): Fix typo that led
715 to core dump. Problem reported by Antonio Rus in
716 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
717
718 2003-01-13 Akim Demaille <akim@epita.fr>,
719 Quoc Peyrot <chojin@lrde.epita.fr>,
720 Robert Anisko <anisko_r@lrde.epita.fr>
721
722 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
723 when the stacks contain one element, as the loop would otherwise
724 free the last state, and then use the top state (the one we just
725 popped). This means that the initial elements will not be freed
726 explicitly, as is the case in yacc.c; it is not a problem, as
727 these elements have fake values.
728
729 2003-01-11 Paul Eggert <eggert@twinsun.com>
730
731 * NEWS: %expect-violations are now just warnings, reverting
732 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
733 bootstrapping problem reported by Matthias Klose; see
734 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
735 * src/conflicts.c (conflicts_print): Likewise.
736 * tests/conflicts.at (%expect not enough, %expect too much,
737 %expect with reduce conflicts): Likewise.
738 * doc/bison.texinfo (Expect Decl): Document this. Also mention
739 that the warning is enabled if the number of conflicts changes
740 (not necessarily increases).
741
742 * src/getargs.c (version): Update copyright year.
743
744 2003-01-09 Akim Demaille <akim@epita.fr>
745
746 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
747
748 2003-01-08 Paul Eggert <eggert@twinsun.com>
749
750 * Makefile.maint (WGETFLAGS):
751 New macro, containing "-C off" to disable proxy caches.
752 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
753 (rel-check): Use $(WGET) instead of wget.
754
755 2003-01-06 Paul Eggert <eggert@twinsun.com>
756
757 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
758 the GLR paper of Scott, Johnstone and Hussain.
759
760 2003-01-04 Paul Eggert <eggert@twinsun.com>
761
762 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
763 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
764 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
765 (EXTRA_LIBRARIES): New var, for liby.a.
766 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
767 (EXTRA_SCRIPTS): New var, for yacc.
768
769 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
770 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
771 Problem reported by Nelson H. F. Beebe.
772
773 2003-01-03 Paul Eggert <eggert@twinsun.com>
774
775 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
776 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
777 when compiling Bison 1.875's `bitset bset = obstack_alloc
778 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
779
780 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
781 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
782 grow to a huge size with typical invocation.
783
784 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
785 Use the pattern recommended by Autoconf 2.57, except also protect
786 against double-definition.
787 * src/system.h: Likewise.
788 Portability issues reported by Nelson H. F. Beebe.
789
790 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
791 All uses changed. Provide a definition in both C and C++.
792 (yytrue, yyfalse): Define even if defined (__cplusplus).
793
794 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
795 Reported by Nelson H. F. Beebe.
796
797 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
798
799 2003-01-02 Paul Eggert <eggert@twinsun.com>
800
801 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
802 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
803 Bug reported by Nelson H. F. Beebe.
804
805 2003-01-01 Paul Eggert <eggert@twinsun.com>
806
807 * Version 1.875.
808
809 2002-12-30 Paul Eggert <eggert@twinsun.com>
810
811 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
812 Moved here from...
813 (<INITIAL>","): Here. This causes stray "," to be treated
814 more uniformly.
815
816 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
817 last brace in braced code when not in Yacc mode, for compatibility
818 with Bison 1.35. This resurrects the 2001-12-15 patch to
819 src/reader.c.
820
821 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
822 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
823
824 2002-12-28 Paul Eggert <eggert@twinsun.com>
825
826 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
827 that of SYM's type. This fixes Debian bug 168069, reported by
828 Thomas Olsson.
829
830 2002-12-28 Paul Eggert <eggert@twinsun.com>
831
832 Version 1.75f.
833
834 Switch back to the Yacc style of conflict reports, undoing some
835 of the 2002-07-30 change.
836 * doc/bison.texinfo (Understanding): Use Yacc style for
837 conflict reports. Also, use new way of locating rules.
838 * src/conflicts.c (conflict_report):
839 Renamed from conflict_report_yacc, removing the old
840 'conflict_report'. Translate the entire conflict report at once,
841 so that we don't assume that "," has the same interpretation in
842 all languages.
843 (conflicts_output): Use Yacc-style conflict report for each state,
844 instead of our more-complicated style.
845 (conflicts_print): Use Yacc-style conflict report, except print
846 the input file name when not emulating Yacc.
847 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
848 Conflicted Reduction, %expect not enough, %expect too much,
849 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
850 * tests/existing.at (GNU Cim Grammar): Likewise.
851 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
852
853 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
854 fatal): Don't invoke fflush; it's not needed and it might even be
855 harmful for stdout, as stdout might not be open.
856 * src/reduce.c (reduce_print): Likewise.
857
858 2002-12-27 Paul Eggert <eggert@twinsun.com>
859
860 Fix a bug where error locations were not being recorded correctly.
861 This problem was originally reported by Paul Hilfinger in
862 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
863
864 * data/yacc.c (yyparse): New local var yylerrsp, to record the
865 top of the location stack's error locations.
866 (yyerrlab): Set it. When discarding a token, push its location
867 onto yylerrsp so that we don't lose track of the error's end.
868 (yyerrlab1): Now is only the target of YYERROR, so that we can
869 properly record the location of the action that failed. For GCC
870 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
871 GCC warning about yyerrlab1 being unused if YYERROR is unused.
872 (yyerrlab2): New label, which yyerrlab now falls through to.
873 Compute the error's location by applying YYLLOC_DEFAULT to
874 the locations of all the symbols that went into the error.
875 * doc/bison.texinfo (Location Default Action): Mention that
876 YYLLOC_DEFAULT is also invoked for syntax errors.
877 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
878 Error locations include the locations of all the tokens that were
879 discarded, not just the last token.
880
881 2002-12-26 Paul Eggert <eggert@twinsun.com>
882
883 * src/files.c: Include quote.h.
884 (compute_output_file_names): Warn if we detect conflicting
885 outputs to the same file. This should catch the misunderstanding
886 exemplified by Debian Bug 165349, reported by Bruce Stephens..
887
888 * src/conflicts.c (conflicts_print): If the user specifies
889 "%expect N", report an error if there are any reduce/reduce
890 conflicts. This is what the manual says should happen.
891 This fixes Debian bug 130890, reported by Anthony DeRobertis.
892 * tests/conflicts.at (%expect with reduce conflicts): New test.
893
894 Don't use m4_include on relative file names, as it doesn't work as
895 desired if there happens to be a file with that name under ".".
896
897 * m4sugar/version.m4: Remove; it was included but it wasn't used.
898 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
899 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
900 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
901 * src/output.c (output_skeleton): Use full path names when
902 specifying a file to include; don't rely on include path, as
903 it's unreliable when the working file contains a file with
904 that name.
905
906 2002-12-25 Paul Eggert <eggert@twinsun.com>
907
908 Remove obsolete references to bison.simple and bison.hairy.
909 Problem mentioned by Aubin Mahe in
910 <http://mail.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
911 * data/glr.c: Comment fix.
912 * doc/bison.1: Remove references. Also, mention "yacc".
913
914 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
915 with -g option.
916
917 * src/parse-gram.y (declaration): Use enum "report_states" rather
918 than its numeric value 1.
919
920 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
921 opening a new one. This fixes Debian bug 165349, reported by
922 Bruce Stephens.
923
924 2002-12-24 Paul Eggert <eggert@twinsun.com>
925
926 Version 1.75e.
927
928 * Makefile.maint (cvs-update): Don't assume that the shell
929 supports $(...), as Solaris sh doesn't.
930
931 * src/parse-gram.y (lloc_default): Remove test for empty
932 nonterminals at the end, since it didn't change the result.
933
934 2002-12-24 Paul Eggert <eggert@twinsun.com>
935
936 If the user does not define YYSTYPE as a macro, Bison now declares it
937 using typedef instead of defining it as a macro. POSIX requires this.
938 For consistency, YYLTYPE is also declared instead of defined.
939
940 %union directives can now have a tag before the `{', e.g., the
941 directive `%union foo {...}' now generates the C code
942 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
943 The default union tag is `YYSTYPE', for compatibility with Solaris 9
944 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
945 instead of `yyltype'.
946
947 `yystype' and `yyltype' are now obsolescent macros instead of being
948 typedefs or tags; they are no longer documented and will be
949 withdrawn in a future release.
950
951 * data/glr.c (b4_location_type): Remove.
952 (YYSTYPE): Renamed from yystype.
953 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
954 (struct YYLTYPE): Renamed from struct yyltype.
955 (YYLTYPE): Renamed from yyltype.
956 (yyltype, yystype): New (and obsolescent) macros,
957 for backward compatibility.
958 * data/yacc.c: Likewise.
959
960 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
961 does not specify a union tag. This is for compatibility with
962 Solaris 9 yacc.
963
964 * src/parse-gram.y (add_param): 2nd arg is now char * not char
965 const *, since it is now modified by stripping surrounding { }.
966 (current_braced_code): Remove.
967 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
968 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
969 trailing " {...}". Now of type <chars>.
970 (grammar_declaration): Adjust to bundled tokens.
971 (code_content): Remove; stripping is now done by add_param.
972 (print_token_value): Print contents of bundled tokens.
973 (token_name): New function.
974
975 * src/reader.h (braced_code, current_braced_code): Remove.
976 (token_name): New decl.
977
978 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
979 token_type, not braced_code code_kind. All uses changed.
980 (SC_PRE_CODE): New state, for scanning after a keyword that
981 has (or usually has) an immediately-following braced code.
982 (token_type): New local var, to keep track of which token type
983 to return when scanning braced code.
984 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
985 <INITIAL>"%parse-param", <INITIAL>"%printer",
986 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
987 instead of returning a token type immediately.
988 (<INITIAL>"{"): Set token type.
989 (<SC_BRACED_CODE>"}"): Use it.
990 (handle_action_dollar, handle_action_at): Now returns bool
991 indicating success. Fail if ! current_rule; this prevents a core dump.
992 (handle_symbol_code_dollar, handle_symbol_code_at):
993 Remove; merge body into caller.
994 (handle_dollar, handle_at): Complain in invalid contexts.
995
996 * NEWS, doc/bison.texinfo: Document the above.
997 * NEWS: Fix years and program names in copyright notice.
998
999 2002-12-17 Paul Eggert <eggert@twinsun.com>
1000
1001 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
1002 Reporting, Table of Symbols): Omit mentions of %lex-param and
1003 %parse-param from the documentation for now.
1004
1005 2002-12-15 Paul Eggert <eggert@twinsun.com>
1006
1007 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
1008 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
1009 lookahead symbol, and which sets yychar in parser actions) and it
1010 disagreed with the Bison documentation. Bug
1011 reported by Andrew Walrond.
1012
1013 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
1014 as the caller now does that.
1015 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
1016 (YYEMPTY): Parenthesize right hand side, since others use it.
1017 (yyparse): Don't assume that our generated code is the only code
1018 that sets yychar.
1019
1020 2002-12-13 Paul Eggert <eggert@twinsun.com>
1021
1022 Version 1.75d.
1023
1024 POSIX requires a "yacc" command.
1025 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
1026 (MOSTLYCLEANFILES): Add yacc.
1027 (yacc): New rule.
1028 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
1029 as an alias for bison y.
1030
1031 * po/LINGUAS: Add da.
1032
1033 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
1034 problem with latest <getopt.h>.
1035 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
1036
1037 * doc/fdl.texi: Upgrade to 1.2.
1038 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
1039 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
1040 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
1041 gnulib.
1042 * config/install-sh: Sync with autotools.
1043
1044 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
1045 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
1046 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
1047 locations are requested.
1048 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
1049 locations are requested.
1050
1051 2002-12-12 Paul Eggert <eggert@twinsun.com>
1052
1053 Remove unportable casts and storage allocation tricks.
1054 While we're at it, remove almost all casts, since they
1055 usually aren't needed and are a sign of trouble.
1056
1057 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
1058
1059 * src/derives.c (derives_compute): Do not subtract NTOKENS from
1060 the pointer DSET returned by malloc; this isn't portable.
1061 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
1062 Similarly for DERIVES.
1063 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
1064 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
1065 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
1066
1067 * src/derives.c (derives_compute): Do not bother invoking
1068 int_of_rule_number, since rule numbers are integers.
1069
1070 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
1071 rather than XMALLOC (char, N).
1072
1073 * src/files.c (filename_split): Rewrite to avoid cast.
1074
1075 * src/gram.h (symbol_number_as_item_number,
1076 item_number_as_symbol_number, rule_number_as_item_number,
1077 item_number_as_rule_number):
1078 Now inline functions rather than macros, to avoid casts.
1079 * src/state.h (state_number_as_int): Likewise.
1080 * src/tables.c (state_number_to_vector_number,
1081 symbol_number_to_vector_number): Likewise.
1082
1083 * src/gram.h (int_of_rule_number): Remove; no longer used.
1084
1085 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
1086 since the resulting storage is always stored into.
1087
1088 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
1089 where it's needed.
1090
1091 * src/muscle_tab.c (muscle_m4_output):
1092 Now inline. Return bool, not int.
1093 * src/state.c (state_compare): Likewise.
1094 * src/symtab.c (symbol_check_defined,
1095 symbol_check_alias_consistency, symbol_pack, symbol_translation,
1096 hash_compare_symbol, hash_symbol):
1097 Likewise.
1098 * src/uniqstr.c (uniqstr_print): Likewise.
1099 * src/muscle_tab.c (muscle_m4_output_processor):
1100 New function, to avoid casts.
1101 * src/state.c (state_comparator, stage_hasher): Likewise.
1102 * src/symtab.c (symbol_check_defined_processor,
1103 symbol_check_alias_consistency_processor, symbol_pack_processor,
1104 symbol_translation_processor, hash_symbol_comparator,
1105 hash_symbol_hasher): Likewise.
1106 * src/uniqstr.c (uniqstr_print_processor): Likewise.
1107 * src/muscle_tab.c (muscles_m4_output):
1108 Use new functions instead of casting old functions unportably.
1109 * src/state.c (state_hash_new): Likewise.
1110 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
1111 symbols_token_translations_init):
1112 Likewise.
1113 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
1114
1115 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
1116 var instead of casting to long, to avoid casts.
1117 (prepare_states): Use MALLOC rather than alloca, so that we don't
1118 have to worry about alloca.
1119 * src/state.c (state_hash_lookup): Likewise.
1120
1121 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
1122 local var instead of casting to unsigned char, to avoid casts.
1123
1124 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
1125 STATE_ALLOC): Remove.
1126 (transitions_new, errs_new, reductions_new, state_new): Use malloc
1127 rather than calloc, and use offsetof to avoid allocating slightly
1128 too much storage.
1129 (state_new): Initialize all members.
1130
1131 * src/state.c (state_hash): Use unsigned accumulator, not signed.
1132
1133 * src/symtab.c (symbol_free): Remove; unused.
1134 (symbol_get): Remove cast in lhs of assignment.
1135 (symbols_do): Now static. Accept generic arguments, not
1136 hashing-related ones.
1137
1138 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
1139 (symbol_processor): Remove.
1140 (symbols_do): Remove decl; now static.
1141
1142 * src/system.h (alloca): Remove; decl no longer needed.
1143 (<stddef.h>): Include, for offsetof.
1144 (<inttypes.>, <stdint.h>): Include if available.
1145 (uintptr_t): New type, if system lacks it.
1146 (CALLOC, MALLOC, REALLOC): New macros.
1147 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
1148 new macros.
1149
1150 * src/tables.c (table_size): Now int, to pacify GCC.
1151 (table_grow, table_ninf_remap): Use signed table size.
1152 (save_row): Don't bother initializing locals when not needed.
1153 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
1154 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
1155
1156 * src/vcg.h: Correct misspellings.
1157
1158 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
1159
1160
1161 * src/getargs.c (getargs): Don't assume EOF == -1.
1162
1163 2002-12-09 Paul Eggert <eggert@twinsun.com>
1164
1165 Change identifier spellings to avoid collisions with names
1166 that are reserved by POSIX.
1167
1168 Don't use names ending in _t, since POSIX reserves them.
1169 For consistency, remove _e and _s endings -- they're weren't
1170 needed to remove ambiguity. All uses changed.
1171 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
1172 turn was just renamed from struniq_t.
1173 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
1174 which in turn was just renamed from struniq_processor_t.
1175 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
1176 in turn was renamed from hash_compare_struniq_t.
1177 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
1178 (state_list): Renamed from state_list_t.
1179 * src/assoc.h (assoc): Renamed from assoc_t.
1180 * src/conflicts.c (enum conflict_resolution): Renamed from
1181 enum conflict_resolution_e.
1182 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
1183 (rule_list): Renamed from rule_list_t.
1184 * src/getargs.h (enum trace): Renamed from enum trace_e.
1185 (enum report): Renamed from enum report_e.
1186 * src/gram.h (item_number): Renamed from item_number_t.
1187 (rule_number): Renamed from rule_number_t.
1188 (struct rule_s): Remove the "rule_s" part; not used.
1189 (rule): Renamed from rule_t.
1190 (rule_filter): Renamed from rule_filter_t.
1191 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
1192 (goto_list): Renamed from goto_list_t.
1193 * src/lalr.h (goto_number): Renamed from goto_number_t.
1194 * src/location.h (location): Renamed from location_t.
1195 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
1196 and moved here from:
1197 * src/muscle_tab.h (muscle_entry_t): here.
1198 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
1199 (rule_list): Renamed from rule_list_t.
1200 * src/print_graph.c (static_graph): Renamed from graph.
1201 * src/reader.h (braced_code): Renamed from braced_code_t.
1202 Remove brace_code_e tag.
1203 * src/relation.h (relation_node): Renamed from relation_node_t.
1204 (relation_nodes): Renamed from relation_nodes_t.
1205 (relation): Renamed from relation_t.
1206 * src/state.h (state_number): Renamed from state_number_t.
1207 (struct state): Renamed from struct state_s.
1208 (state): Renamed from state_t.
1209 (transitions): Renamed from transitions_t. Unused (and
1210 misspelled) transtion_s tag removed.
1211 (errs): Renamed from errs_t. Unused errs_s tag removed.
1212 (reductions): Renamed from reductions_t. Unused tag
1213 reductions_s removed.
1214 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
1215 (struct symbol_list): Renamed from struct symbol_list_s.
1216 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
1217 (struct symbol): Renamed from struct symbol_s.
1218 (symbol): Renamed from symbol_t.
1219 * src/tables.c (vector_number): Renamed from vector_number_t.
1220 (action_number): Renamed from action_t.
1221 * src/tables.h (base_number): Renamed from base_t.
1222 * src/vcg.h (enum color): Renamed from enum color_e.
1223 (enum textmode): Renamed from enum textmode_e.
1224 (enum shape): Renamed from enum shape_e.
1225 (struct colorentry): Renamed from struct colorentry_s.
1226 (struct classname): Renamed from struct classname_s.
1227 (struct infoname): Renamed from struct infoname_s.
1228 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
1229 (enum decision): Renamed from enum decision_e.
1230 (enum orientation): Renamed from enum orientation_e.
1231 (enum alignment): Renamed from enum alignment_e.
1232 (enum arrow_mode): Renamed from enum arrow_mode_e.
1233 (enum crossing_type): Renamed from enum crossing_type_e.
1234 (enum view): Renamed from enum view_e.
1235 (struct node): Renamed from struct node_s.
1236 (node): Renamed from node_t.
1237 (enum linestyle): Renamed from enum linestyle_e.
1238 (enum arrowstyle): Renamed from enum arrowstyle_e.
1239 (struct edge): Renamed from struct edge.
1240 (edge): Renamed from edge_t.
1241 (struct graph): Renamed from struct graph_s.
1242 (graph): Renamed from graph_t.
1243 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
1244 Rename value_t -> value.
1245 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
1246 value_t_as_yystype -> value_as_yystype.
1247
1248 Don't include <errno.h> in the mainstream code, since it
1249 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
1250 * lib/get-errno.c, lib/get-errno.h: New files.
1251 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
1252 get-errno.c.
1253 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
1254 * src/output.c (output_skeleton): Likewise.
1255 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
1256 instead of errno.
1257 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
1258 Likewise.
1259 (handle_action_dollar, handle_action_at): Likewise.
1260 * src/system.h: Do not include <errno.h>.
1261 (TAB_EXT): Renamed from EXT_TAB.
1262 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
1263
1264 Avoid str[a-z]*, since <string.h> reserves that name space.
1265 Change all instances of "struniq" in names to "uniqstr", and
1266 likewise for "STRUNIQ" and "UNIQSTR".
1267 * src/uniqstr.c: Renamed from src/struniq.c.
1268 * src/uniqstr.h: Renamed from src/struniq.h.
1269 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
1270 * src/files.c (strsuffix): Remove; unused.
1271 (concat2): Renamed from stringappend. Now static.
1272 * src/files.h (strsuffix, stringappend): Remove; unused.
1273 * src/parse-gram.y (<chars>): Renamed from <string>.
1274 (<uniqstr>): Renamed from <struniq>.
1275 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
1276 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
1277 (struct graph_s.expand): Renamed from struct graph_s.stretch.
1278 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
1279 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
1280 (N_EXPAND): Renamed from N_STRETCH.
1281
1282 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
1283 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
1284 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
1285 Remove; unused.
1286 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
1287 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
1288 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
1289 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
1290 (BASE_MAXIMUM): Renamed from BASE_MAX.
1291 (BASE_MINIMUM): Renamed from BASE_MIN.
1292 (ACTION_MAX): Remove; unused.
1293 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
1294 Unnecessary casts removed from above defines.
1295
1296
1297 Fix misspelling in names.
1298 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
1299 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
1300 G_NODE_ALIGNEMENT.
1301
1302
1303 * lib/timevar.c (timevar_report): Renamed from time_report,
1304 for consistency with other names.
1305 * lib/timevar.h (timevar_report): New decl.
1306 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
1307
1308
1309 Sort include-file uses.
1310
1311 Reorder all include files under src to be in the order "system.h".
1312 then the ../lib include files in angle brackets (alphabetized),
1313 then the . include files in double-quotes (alphabetized). Fix
1314 dependency breakages encountered in this process, as follows:
1315 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
1316 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
1317 * src/state.h: Include "symtab.h".
1318
1319 2002-12-08 Paul Eggert <eggert@twinsun.com>
1320
1321 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
1322 since this causes problems when __file__ contains character
1323 sequences like "@" that are treated specially by src/scan-skel.l.
1324 Instead, just use the file's basename. This fixes the bug
1325 reported by Martin Mokrejs in
1326 <http://mail.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
1327
1328 2002-12-06 Paul Eggert <eggert@twinsun.com>
1329
1330 Add support for rules that do not have trailing semicolons, as
1331 POSIX requires. Improve the quality of locations in Bison
1332 diagnostics.
1333
1334 * src/location.c: Include <quotearg.h>.
1335 (empty_location): Now const.
1336 (location_print): New function. Follow the recommendation of the
1337 GNU Coding Standards for locations that span file boundaries.
1338 * src/location.h: Do not include <quotearg.h>; no longer needed.
1339 (boundary): New type.
1340 (location_t): Use it. This allows locations to span file boundaries.
1341 All member uses changed: file -> start.file or end.file (as needed),
1342 first_line -> start.line, first_column -> start.column,
1343 last_line -> end.line, last_column -> end.column.
1344 (equal_boundaries): New function.
1345 (LOCATION_RESET, LOCATION_STEP): Remove.
1346 (LOCATION_PRINT): Remove. All callers changed to use location_print.
1347 (empty_location): Now const.
1348 (location_print): New decl.
1349 * src/parse-gram.y (lloc_default): New function, which handles
1350 empty locations more accurately.
1351 (YYLLOC_DEFAULT): Use it.
1352 (%token COLON): Remove.
1353 (%token ID_COLON): New token.
1354 (rules): Use it.
1355 (declarations, rules): Remove trailing semicolon.
1356 (declaration, rules_or_grammar_declaration):
1357 Allow empty (";") declaration.
1358 (symbol_def): Remove empty actions; no longer needed.
1359 (rules_or_grammar_declaration): Remove trailing semicolon.
1360 (semi_colon.opt): Remove.
1361 * src/reader.h: Include location.h.
1362 (scanner_cursor): New decl.
1363 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
1364 rolling our own.
1365 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
1366 of *loc.
1367 (STEP): Remove. No longer needed, now that adjust_location does
1368 the work. All uses removed.
1369 (scanner_cursor): New var.
1370 (adjust_location): Renamed from extend_location. It now sets
1371 *loc and adjusts the scanner cursor. All uses changed.
1372 Don't bother testing for CR.
1373 (handle_syncline): Remove location arg; now updates scanner cursor.
1374 All callers changed.
1375 (unexpected_end_of_file): Now accepts start boundary of token or
1376 comment, not location. All callers changed. Update scanner cursor,
1377 not the location.
1378 (SC_AFTER_IDENTIFIER): New state.
1379 (context_state): Renamed from c_context. All uses changed.
1380 (id_loc, code_start, token_start): New local vars.
1381 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
1382 processing of Yacc white space and equivalents here.
1383 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
1384 instead of returning ID immediately, since we need to search for
1385 a subsequent colon.
1386 (<INITIAL>"'", "\""): Save token_start.
1387 (<INITIAL>"%{", "{", "%%"): Save code_start.
1388 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
1389 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
1390 BEGIN context_state at end, not INITIAL.
1391 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
1392 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
1393 Return correct token start.
1394 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
1395 the start of a character, string or multiline comment is found.
1396 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
1397 Reduction): Adjust reported locations to match the more-precise
1398 results now expected.
1399 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
1400 * tests/reduce.at (Useless Rules, Reduced Automaton,
1401 Underivable Rules): Likewise.
1402 * tests/regression.at (Invalid inputs): No longer `expecting ";"
1403 or "|"' now that so many other tokens are allowed by the new grammar.
1404
1405 * src/complain.h (current_file): Remove duplicate decl;
1406 current_file is now owned by files.h.
1407 * src/complain.c, src/scan-gram.l: Include files.h.
1408
1409 2002-12-06 Paul Eggert <eggert@twinsun.com>
1410
1411 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
1412 promotes to int; it might be unsigned int.
1413 * data/yacc.c (yy_reduce_print): Likewise.
1414
1415 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
1416 be #defined in the prologue, not in the Bison declarations.
1417 This fixes Debian Bug 102878, reported by Shaul Karl.
1418
1419 2002-12-02 Paul Eggert <eggert@twinsun.com>
1420
1421 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
1422 * lib/strtoul.c: New file, from gnulib.
1423 This fixes a porting bug reported by Peter Klein in
1424 <http://mail.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
1425
1426 2002-11-30 Paul Eggert <eggert@twinsun.com>
1427
1428 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
1429 and put only a forward declaration in the prologue. This is for
1430 consistency with the other scanner helper functions.
1431
1432 Type clashes now generate warnings, not errors, since it
1433 appears that POSIX may allow some grammars with type clashes.
1434 * src/reader.c (grammar_current_rule_check): Warn about
1435 type clashes instead of complaining.
1436 * tests/input.at (Type Clashes): Expect warnings, not complaints.
1437
1438 Add Yacc library, since POSIX requires it.
1439 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
1440 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
1441 * lib/main.c, lib/yyerror.c: New files.
1442
1443 gram_error can be static; it need not be extern.
1444 * src/reader.h (gram_error): Remove decl.
1445 * src/parse-gram.y (gram_error): Now static. Add static decl.
1446 (print_token_value): Omit parameter names from forward decl,
1447 for consistency.
1448
1449 2002-11-29 Paul Eggert <eggert@twinsun.com>
1450
1451 * doc/bison.texinfo: Emphasize that yylex and yyerror must
1452 be declared before being used. E.g., one should typically
1453 declare them in the prologue. Use GNU coding style in examples.
1454 Put "const" consistently after the type it modifies. Mention
1455 that C99 supports "inline". Mention that yyerror traditionally
1456 returns "int".
1457
1458 %parse-param and %lex-param now take just one argument, the
1459 declaration; the argument name is deduced from the declaration.
1460
1461 * doc/bison.texinfo (Parser Function, Pure Calling, Error
1462 Reporting, Table of Symbols): Document this.
1463 * src/parse-gram.y (add_param): New function.
1464 (COMMA): Remove.
1465 (declaration): Implement new rule for %parse-param and %lex-param.
1466 * src/scan-gram.l: "," now elicits a warning, rather than being
1467 a token; this is more compatible with byacc.
1468 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
1469
1470 2002-11-27 Paul Eggert <eggert@twinsun.com>
1471
1472 Rename identifiers to avoid real and potential collisions.
1473
1474 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
1475 to avoid collision with lex macro described by Bruce Lilly in
1476 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
1477 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
1478 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
1479 * src/parse-gram.y (print_token_value): Renamed from yyprint.
1480 All uses changed.
1481 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
1482 The name "yycontrol" violates the name space rules, and this stuff
1483 wasn't being used anyway.
1484 (input): Remove action; this stuff wasn't being used.
1485 (gram_error): Rename local variable yylloc -> loc.
1486 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
1487 (YY_DECL): Don't use "yy" at start of local variables.
1488 All uses changed, e.g., yylloc -> loc.
1489 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
1490 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
1491 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
1492 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
1493
1494 * src/parse-gram.y (gram_error): loc is now const *.
1495 * src/reader.h (gram_error): Likewise.
1496
1497 2002-11-24 Paul Eggert <eggert@twinsun.com>
1498
1499 Version 1.75c.
1500
1501 * tests/actions.at (Actions after errors): Use an output format
1502 more similar to that of the Printers and Destructors test.
1503 Test the position of the ';' token too.
1504 (Printers and Destructors): Likewise.
1505 (Printers and Destructors: %glr-parser): Remove for now, to avoid
1506 unnecessarily alarming people when the test fails.
1507
1508 * data/yacc.c (yyerrlab1): Move this label down, so that the
1509 parser does not discard the lookahead token if the user code
1510 invokes YYERROR. This change is required for POSIX conformance.
1511
1512 * lib/error.c: Sync with gnulib.
1513
1514 2002-11-22 Paul Eggert <eggert@twinsun.com>
1515
1516 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
1517 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
1518 * lib/xmalloc.c: Likewise.
1519
1520 2002-11-20 Paul Eggert <eggert@twinsun.com>
1521
1522 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
1523
1524 2002-11-20 Paul Eggert <eggert@twinsun.com>
1525
1526 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
1527 should use `if (! x) abort ();' rather than `assert (x);', and
1528 anyway it's one less thing to worry about configuring.
1529
1530 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
1531 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
1532 and replace all instances of assert with abort.
1533 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
1534 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
1535
1536 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
1537 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
1538 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
1539 hash_find_entry, hash_rehash, hash_insert): Likewise.
1540 * src/conflicts.c (resolve_sr_conflict): Likewise.
1541 * src/lalr.c (set_goto_map, map_goto): Likewise.
1542 * src/nullable.c (nullable_compute): Likewise.
1543 * src/output.c (prepare_rules, token_definitions_output): Likewise.
1544 * src/reader.c (packgram, reader): Likewise.
1545 * src/state.c (state_new, state_free, state_transitions_set,
1546 state_reduction_find): Likewise.
1547 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
1548 symbol_pack): Likewise.
1549 * src/tables.c (conflict_row, pack_vector): Likewise.
1550 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
1551 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
1552 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
1553 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
1554
1555 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
1556 (ARGMATCH_CONSTRAINT): New macro.
1557 (ARGMATCH_ASSERT): Use it.
1558
1559 * src/system.h (verify): New macro.
1560 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
1561 rather than assert.
1562 * src/tables.c (tables_generate): Likewise.
1563
1564 * src/struniq.c (struniq_assert): Now returns void, and aborts
1565 if the assertion is false.
1566 (struniq_assert_p): Remove.
1567 * src/struniq.h: Likewise.
1568
1569 2002-11-18 Paul Eggert <eggert@twinsun.com>
1570
1571 * data/glr.c (yygetLRActions): Replace `yyindex' with
1572 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
1573 This fixes the regression with Sun ONE Studio 7 cc that I reported in
1574 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
1575
1576 2002-11-18 Akim Demaille <akim@epita.fr>
1577
1578 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
1579 space.
1580 From Tim Van Holder.
1581
1582 2002-11-17 Paul Eggert <eggert@twinsun.com>
1583
1584 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
1585 to "SyntaxError" for consistency with my 2002-11-15 change.
1586
1587 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
1588 not define to {}, since this breaks the common use of `YYDPRINTF
1589 ((...));' if a single statement is desired (e.g. before `else').
1590 Work around GCC warnings by surrounding corresponding calls with
1591 {} if needed.
1592 (yyhasResolvedValue): Remove unused function.
1593 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
1594 loop body.
1595 (yyreportSyntaxError): Renamed from yyreportParseError.
1596 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
1597 All uses changed.
1598 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
1599 extern when possible. Remove unused initializations.
1600
1601 2002-11-16 Akim Demaille <akim@epita.fr>
1602
1603 Augment the similarity between GLR and LALR traces.
1604
1605 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
1606 (YY_REDUCE_PRINT): New.
1607 (yyparse): Use them.
1608 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
1609 YYDPRINT here.
1610 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
1611 state reached after the reduction/recovery, since...
1612 (yyparse, yyprocessOneStack): Report the state we are entering in.
1613
1614 2002-11-16 Akim Demaille <akim@epita.fr>
1615
1616 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
1617 Add support for --trace=skeleton.
1618 * src/scan-skel.l: %option debug.
1619 Scan strings of non-@ or \n instead of character by character.
1620 (scan_skel): Handle trace_skeleton.
1621 (QPUTS): New.
1622 (@output_parser_name@, @output_header_name@): ``Restore'' their
1623 support (used to be M4 macros).
1624 * data/yacc.c: Quote larger chunks, a la glr.c.
1625 * data/lalr1.cc: Likewise.
1626 The header guards are no longer available, so use some other
1627 string than `YYLSP_NEEDED'.
1628
1629 2002-11-16 Akim Demaille <akim@epita.fr>
1630
1631 Make the ``Printers and Destructors'' test more verbose, taking
1632 `yacc.c''s behavior as (possibly wrong) reference.
1633
1634 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
1635 instead of fprint on stdout.
1636 Set and report the last_line of the symbols.
1637 Consistently display values and locations.
1638
1639 2002-11-16 Paul Eggert <eggert@twinsun.com>
1640
1641 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
1642
1643 2002-11-15 Paul Eggert <eggert@twinsun.com>
1644
1645 * tests/actions.at (Actions after errors): New test case.
1646
1647 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
1648 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
1649 tests/action.at, tests/calc.at, tests/conflicts.at,
1650 tests/cxx-type.at, tests/regression.at:
1651 "parse error" -> "syntax error" for POSIX compatibility.
1652 "parsing stack overflow..." -> "parser stack overflow" so
1653 that code matches Bison documentation.
1654
1655 2002-11-15 Akim Demaille <akim@epita.fr>
1656
1657 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
1658 take two BRACED_CODE, not two string_content.
1659 Free the scanner's obstack when we are done.
1660 (code_content): New.
1661 * tests/calc.at: Adjust.
1662 * doc/bison.texinfo: Adjust.
1663 Also, make sure to include the `,' for these declarations.
1664
1665 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
1666
1667 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
1668 definition; avoids potential autoreconf problems.
1669
1670 2002-11-15 Akim Demaille <akim@epita.fr>
1671
1672 Always check the value returned by yyparse.
1673
1674 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
1675 returned by yyparse.
1676 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
1677 Adjust calls.
1678 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
1679 returned by yyparse.
1680
1681 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1682
1683 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
1684 on input.at test.
1685
1686 2002-11-14 Paul Eggert <eggert@twinsun.com>
1687
1688 * src/output.c (output_skeleton): Call xfopen instead of
1689 duplicating xfopen's body.
1690
1691 Fix bugs reported by Nelson H. F. Beebe in
1692 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
1693
1694 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
1695 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
1696 Group compiler. Instead, use "$CC -E bar.c". Include the .h
1697 file twice in the grammar, as an extra check.
1698
1699 * tests/input.at (Torturing the Scanner): Surround the
1700 backslash-newline tests with "#if 0", to make it less likely that
1701 we'll run into compiler bugs. Bring back solitary \ inside
1702 comment, but add a closing comment to work around HP C bug. Don't
1703 test backslash-newline in C character constant.
1704
1705 2002-11-14 Akim Demaille <akim@epita.fr>
1706
1707 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
1708 status of the compiler.
1709 Calling `exit 1' is no longer needed.
1710 Reported by Nelson H. F. Beebe.
1711
1712 2002-11-14 Akim Demaille <akim@epita.fr>
1713
1714 * tests/atlocal.in (CPPFLAGS): We have config.h.
1715 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
1716 New.
1717 * tests/actions.at, tests/calc.at, tests/conflicts.at,
1718 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
1719 * tests/regression.at, tests/torture.at: Use them for all the
1720 grammars that are to be compiled.
1721 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
1722 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
1723 * doc/bison.texinfo (GLR Parsers): Document `inline'.
1724
1725 2002-11-14 Akim Demaille <akim@epita.fr>
1726
1727 * doc/bison.texinfo: Various formatting changes (alignments in
1728 samples, additional @group/@end group, GCS in samples.
1729 Use @deffn instead of simple @table to define the directives,
1730 macros, variables etc.
1731
1732 2002-11-13 Paul Eggert <eggert@twinsun.com>
1733
1734 Fix some bugs reported by Albert Chin-A-Young in
1735 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
1736
1737 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
1738 -o c"; the HP C compiler chatters during compilation.
1739 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
1740 * tests/headers.at (export YYLTYPE): Likewise.
1741
1742 * tests/input.at (Torturing the Scanner): Remove lines containing
1743 solitary backslashes, as they tickle a bug in the HP C compiler.
1744
1745 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
1746 comments, since they're not portable. Use GNU coding style.
1747
1748 2002-11-13 Akim Demaille <akim@epita.fr>
1749
1750 * data/yacc.c: Leave bigger chunks of quoted text.
1751 (YYDSYMPRINTF): New.
1752 Use it to report symbol activities.
1753 * data/glr.c (YYDSYMPRINTF): New.
1754 Use it.
1755
1756 2002-11-12 Paul Eggert <eggert@twinsun.com>
1757
1758 Version 1.75b.
1759
1760 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
1761 (yyglrReduce): Return yyok, not 0.
1762 This should avoid the enumerated-type warnings reported
1763 by Nelson H. F. Beebe in
1764 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
1765
1766 * lib/bbitset.h (BITSET_INLINE): Remove.
1767 * lib/bitset.h [! BITSET_INLINE]: Remove.
1768 (bitset_set, bitset_reset, bitset_test): Rename local vars
1769 to avoid shadowing warnings by GCC.
1770
1771 * data/glr.c (inline): Remove #define. It's the user's
1772 responsibility to #define it away, just like 'const'.
1773 This fixes one of the bugs reported by Nelson H. F. Beebe in
1774 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
1775
1776 * Makefile.maint (po-check): Scan .l and .y files instead of the
1777 .c and the .h files that they generate. This fixes the bug
1778 reported by Tim Van Holder in:
1779 <http://mail.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
1780 Look for N_ as well as for _. Try to avoid matching #define for
1781 N_ and _.
1782 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
1783 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
1784 * src/scan-gram.l: Revamp regular expressions so that " and '
1785 do not confuse xgettext.
1786
1787 * src/struniq.h (struniq_new): Do not declare the return type
1788 to be 'const'; this violates the C standard.
1789 * src/struniq.c (struniq_new): Likewise.
1790
1791 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
1792
1793 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
1794 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
1795 linker.
1796
1797 2002-11-12 Akim Demaille <akim@epita.fr>
1798
1799 * Makefile.maint: Sync with Autoconf:
1800 (local_updates): New.
1801
1802 2002-11-12 Akim Demaille <akim@epita.fr>
1803
1804 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
1805
1806 2002-11-12 Akim Demaille <akim@epita.fr>
1807
1808 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
1809 locations.
1810
1811 2002-11-12 Akim Demaille <akim@epita.fr>
1812
1813 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
1814 not yyvalue.
1815
1816 2002-11-12 Akim Demaille <akim@epita.fr>
1817
1818 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
1819 Use it to test the GLR parser.
1820
1821 2002-11-12 Akim Demaille <akim@epita.fr>
1822
1823 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
1824 defines it.
1825 * data/glr.c (yystos): New.
1826 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
1827 (YYDSYMPRINT): New.
1828 (yyval): Don't define it, it is handled via M4.
1829 (yyrecoverParseError): Free verbosely the discarded symbols.
1830 * data/yacc.c (yysymprint): Remove, rather...
1831 (b4_yysymprint_generate): invoke.
1832 * data/c.m4 (b4_yysymprint_generate): New.
1833 Accept pointers as arguments, as opposed to the version from
1834 yacc.c.
1835 (b4_yydestruct_generate): Likewise.
1836 * tests/cations.at (Printers and Destructors): Use Bison directives
1837 instead of CPP macros.
1838 Don't rely on internal details.
1839
1840 2002-11-12 Akim Demaille <akim@epita.fr>
1841
1842 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
1843 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
1844 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
1845 it against YYEMPTY and so forth), work on yytoken (i.e., set
1846 it to YYEMPTY etc.).
1847 (yydestruct): Replace with a b4_yydestruct_generate invocation.
1848 (b4_symbol_actions): Remove.
1849 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
1850 for 0, end-of-input.
1851
1852 2002-11-12 Akim Demaille <akim@epita.fr>
1853
1854 * doc/bison.texinfo (Destructor Decl): New.
1855
1856 2002-11-12 Akim Demaille <akim@epita.fr>
1857
1858 * src/tables.c (tables_generate): Use free for pointers that
1859 cannot be NULL, not XFREE.
1860 (pack_vector): Use assert, not fatal, for bound violations.
1861 * src/state.c (state_new): Likewise.
1862 * src/reader.c (reader): Likewise.
1863 * src/lalr.c (set_goto_map): Likewise.
1864 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
1865 the file name.
1866
1867 2002-11-12 Akim Demaille <akim@epita.fr>
1868
1869 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
1870 Restore.
1871 * src/scan-gram.l (last_string): Is global to the file, not to
1872 yylex.
1873 * src/parse-gram.y (input): Don't append the epilogue here,
1874 (epilogue.opt): do it here, and free the scanner's obstack.
1875 * src/reader.c (epilogue_set): Rename as...
1876 (epilogue_augment): this.
1877 * data/c.m4 (b4_epilogue): Defaults to empty.
1878
1879 2002-11-12 Akim Demaille <akim@epita.fr>
1880
1881 * src/getargs.c (long_options): Remove duplicates.
1882 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
1883 Remove.
1884 * doc/bison.rnh: Remove.
1885 * doc/bison.texinfo (VMS Invocation): Remove.
1886
1887 2002-11-12 Akim Demaille <akim@epita.fr>
1888
1889 * src/struniq.h, src/struniq.c (struniq_t): Is const.
1890 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
1891
1892 Use struniq for symbols.
1893
1894 * src/symtab.h (symbol_t): The tag member is a struniq.
1895 (symbol_type_set): Adjust.
1896 * src/symtab.c (symbol_new): Takes a struniq.
1897 (symbol_free): Don't free the tag member.
1898 (hash_compare_symbol_t, hash_symbol_t): Rename as...
1899 (hash_compare_symbol, hash_symbol): these.
1900 Use the fact that tags as struniqs.
1901 (symbol_get): Use struniq_new.
1902 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
1903 Returns a strniq.
1904 * src/reader.h (merger_list, grammar_currentmerge_set): The name
1905 and type members are struniqs.
1906 * src/reader.c (get_merge_function)
1907 (grammar_current_rule_merge_set): Adjust.
1908 (TYPE, current_type): Are struniq.
1909
1910 Use struniq for file names.
1911
1912 * src/files.h, src/files.c (infile): Split into...
1913 (grammar_file, current_file): these.
1914 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
1915 * src/reduce.c (reduce_print): Likewise.
1916 * src/getargs.c (getargs): Likewise.
1917 * src/complain.h, src/complain.c: Likewise.
1918 * src/main.c (main): Call struniqs_new early enough to use it for
1919 file names.
1920 Don't free the input file name.
1921
1922 2002-11-12 Akim Demaille <akim@epita.fr>
1923
1924 * src/symtab.c (symbol_free): Remove dead deactivated code:
1925 type_name are properly removed.
1926 Don't use XFREE to free items that cannot be NULL.
1927 * src/struniq.h, src/struniq.c: New.
1928 * src/main.c (main): Initialize/free struniqs.
1929 * src/parse-gram.y (%union): Add astruniq member.
1930 (yyprint): Adjust.
1931 * src/scan-gram.l (<{tag}>): Return a struniq.
1932 Free the obstack bit that used to store it.
1933 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
1934
1935 2002-11-11 Paul Eggert <eggert@twinsun.com>
1936
1937 Revamp to fix many (but not all) of the C- and M4-related quoting
1938 problems. Among other things, this fixes the Bison bug reported
1939 by Jan Hubicka when processing the Bash grammar; see:
1940 <http://mail.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
1941
1942 Use new @ escapes consistently. Represent brackets with @{ and @}
1943 rather than @<:@ and @:>@, since this works a bit better with dumb
1944 editors like vi. Represent @ with @@, since @ is now consistently
1945 an escape. Use @oline@ and @ofile@ rather than __oline__ and
1946 __ofile__, to avoid unexpected expansions. Similarly, use @output
1947 rather than #output.
1948
1949 * data/c.m4 (b4_copyright): Omit file name from comment, since
1950 the file name could contain "*/".
1951 (b4_synclines_flag): Don't quote the 2nd argument; it should already
1952 be quoted. All uses changed.
1953
1954 * data/glr.c: Use new @ escapes consistently.
1955 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
1956 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
1957 Remove, since they couldn't handle arbitrary characters in file
1958 names.
1959 * data/lalr1.cc: Likewise.
1960 * data/yacc.c: Likewise.
1961
1962 * src/files.c (output_infix): Remove; all uses removed.
1963 * src/files.h: Likewise.
1964
1965 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
1966 mishandled funny characters in file names, and anyway it isn't
1967 needed any more.
1968 * data/yacc.c: Likewise.
1969 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
1970
1971 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
1972 * data/yacc.c: Likewise.
1973
1974 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
1975 strings now.
1976 (muscle_init): Quote filename as a C string.
1977 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
1978 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
1979 * src/output.c (escaped_file_name_output): New function.
1980 (prepare_symbols): Quote tokens for M4.
1981 (prepare): Don't insert output_infix, output_prefix,
1982 output_parser_name, output_header_name; this is now down by scan-skel.
1983 Insert skeleton as a C string.
1984
1985 * src/output.c (user_actions_output, symbol_destructors_output,
1986 symbol_printers_output): Quote filenames for C and M4.
1987 * src/reader.c (prologue_augment, epilogue_set): Likewise.
1988
1989 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
1990 escapes other than \\ and \'; this simplifies the code.
1991 (<SC_STRING>): Likewise, for \\ and \".
1992 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
1993 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
1994 Use new escapes @{ and @} for [ and ].
1995
1996 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
1997 them with auto vars.
1998 Switch to new escape scheme, where @ is the escape character uniformly.
1999 Abort if a stray escape character is found. Avoid unbounded input
2000 buffer when parsing non-escaped text.
2001
2002 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
2003 __oline__, #output, $@, and @{ do not have unintended meanings.
2004
2005 2002-11-09 Paul Eggert <eggert@twinsun.com>
2006
2007 Fix the test failure due to GCC warnings described in
2008 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
2009 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
2010 evaluate to 0 if it's impossible for NINF to be in the respective
2011 table.
2012 (yygetLRActions, yyrecoverParseError): Use them.
2013
2014 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
2015 counted in the token inserted at end of file. Now takes
2016 location_t *, not location_t, so that the location can be
2017 adjusted. All uses changed.
2018
2019 * tests/regression.at (Invalid inputs): Adjust wording in
2020 diagnostic to match the new behavior.
2021
2022 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
2023 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
2024 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
2025 abort ();'. This reduces the runtime of the "Many lookaheads"
2026 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
2027 GCC 3.2.
2028
2029 2002-11-07 Paul Eggert <eggert@twinsun.com>
2030
2031 * src/parse-gram.y (CHARACTER): Remove unused token.
2032 All uses removed.
2033
2034 * src/scan-gram.l: Remove stack option. We no longer use the
2035 stack, since the stack was never deeper than 1; instead, use the
2036 new auto var c_context to record the stacked value.
2037
2038 Remove nounput option. At an unexpected end of file, we now unput
2039 the minimal input necessary to end cleanly; this simplifies the
2040 code.
2041
2042 Avoid unbounded token sizes where this is easy.
2043
2044 (unexpected_end_of_file): New function.
2045 Use it to systematize the error message on unexpected EOF.
2046 (last-string): Now auto, not static.
2047 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
2048 (scanner_last_string_free): Remove; not used.
2049 (percent_percent_count): Move decl to just before use.
2050 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
2051 not the (never otherwised-used) CHARACTER.
2052
2053 2002-11-07 Akim Demaille <akim@epita.fr>
2054
2055 Let yyerror always receive the msg as last argument, so that
2056 yyerror can be variadic.
2057
2058 * data/yacc.c (b4_yyerror_args): New.
2059 Use it when calling yyerror.
2060 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
2061 Use it when calling yyerror.
2062 * doc/bison.texinfo (Error Reporting): Adjust.
2063 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
2064 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
2065
2066 2002-11-06 Akim Demaille <akim@epita.fr>
2067
2068 #line should have quoted strings.
2069 Ideally, this should be done by m4_quotearg.
2070
2071 * src/scan-skel.l: Include quotearg.h.
2072 Quote __ofile__.
2073 * src/output.c (symbol_printers_output)
2074 (symbol_destructors_output): Quote the file name.
2075
2076 2002-11-06 Akim Demaille <akim@epita.fr>
2077
2078 * tests/regression.at (Invalid inputs): Adjust to the recent
2079 messages.
2080
2081 2002-11-06 Akim Demaille <akim@epita.fr>
2082
2083 Restore --no-lines.
2084 Reported by Jim Kent.
2085
2086 * data/c.m4 (b4_syncline): New.
2087 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
2088 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
2089 * src/output.c (user_actions_output): Likewise.
2090 (prepare): Define 'b4_synclines_flag'.
2091 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
2092
2093 2002-11-06 Akim Demaille <akim@epita.fr>
2094
2095 * src/main.c (main): Free `infile'.
2096 * src/scan-gram.l (handle_syncline): New.
2097 Recognize `#line'.
2098 * src/output.c (user_actions_output, symbol_destructors_output)
2099 (symbol_printers_output): Use the location's file name, not
2100 infile.
2101 * src/reader.c (prologue_augment, epilogue_set): Likewise.
2102
2103 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2104
2105 * src/tables.c (matching_state): Don't allow states to match if
2106 either has GLR conflict entries.
2107
2108 2002-11-05 Paul Eggert <eggert@twinsun.com>
2109
2110 * src/scan-gram.l: Use more accurate diagnostics, e.g.
2111 "integer out of range" rather than "invalid value".
2112 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
2113 accordingly.
2114
2115 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
2116 Also, remove one static variable in the scanner.
2117
2118 * src/scan-gram.l (braces_level): Now auto, not static.
2119 Initialize to zero if the compiler is being picky.
2120 (INITIAL): Clear braces_level instead of incrementing it.
2121 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
2122 as POSIX 1003.1-2001 requires.
2123 * src/system.h (IF_LINT): New macro, taken from coreutils.
2124 * configure.ac: Define "lint" if --enable-gcc-warnings.
2125
2126 2002-11-05 Akim Demaille <akim@epita.fr>
2127
2128 * src/scan-gram.l: When it starts with `%', complain about the
2129 whole directive, not just that `invalid character: %'.
2130
2131 2002-11-04 Akim Demaille <akim@epita.fr>
2132
2133 * Makefile.maint: Update from Autoconf.
2134 (update, cvs-update, po-update, do-po-update): New.
2135
2136 2002-11-04 Akim Demaille <akim@epita.fr>
2137
2138 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
2139 and yyerror.
2140 Have yyerror `use' its arguments.
2141 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
2142 returns true when location & yacc & pure & parse-param.
2143 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
2144
2145 2002-11-04 Akim Demaille <akim@epita.fr>
2146
2147 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
2148 clashes.
2149 * src/scan-gram.l: Use [\'] instead of ['] to pacify
2150 font-lock-mode.
2151 Use complain_at.
2152 Use quote, not quote_n since LOCATION_PRINT no longer uses the
2153 slot 0.
2154
2155 2002-11-03 Paul Eggert <eggert@twinsun.com>
2156
2157 * src/reader.c (get_merge_function, grammar_current_rule_check):
2158 Use consistent diagnostics for reporting type name clashes.
2159 Quote the types with <>, for consistency with Yacc.
2160 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
2161
2162 2002-11-03 Akim Demaille <akim@epita.fr>
2163
2164 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
2165 New.
2166 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
2167 (b4_parse_param): Remove.
2168 Use b4_identification.
2169 Propagate b4_pure_args where needed to pass them to yyerror.
2170 * data/glr.m4 (b4_parse_param): Remove.
2171 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
2172 (b4_lpure_formals): New.
2173 Use b4_identification.
2174 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
2175 b4_user_formals and b4_user_args.
2176 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
2177 (yyreportAmbiguity): When using a pure parser, also need
2178 the location, and the parse-params.
2179 Adjust callers.
2180 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
2181 When using a pure parser, also need the parse-params.
2182 Adjust callers.
2183 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
2184 (%pure-parser + %parse-param) LALR and GLR parsers.
2185 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
2186 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
2187 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
2188 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
2189 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
2190 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
2191 * doc/bison.texinfo: Untabify the whole file.
2192 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
2193 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
2194 (Error Reporting): Adjust to these new directives.
2195 Document %error-verbose, deprecate YYERROR_VERBOSE.
2196
2197 2002-11-03 Akim Demaille <akim@epita.fr>
2198
2199 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
2200 AT_CHECK_CALC_GLR invocations to use % directives, instead of
2201 command line options.
2202 * tests/cxx-type.at: Formatting changes.
2203
2204 2002-11-03 Paul Eggert <eggert@twinsun.com>
2205
2206 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
2207 to count columns correctly, and to check for invalid inputs.
2208
2209 Use mbsnwidth to count columns correctly. Account for tabs, too.
2210 Include mbswidth.h.
2211 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
2212 (extend_location): New function.
2213 (YY_LINES): Remove.
2214
2215 Handle CRLF in C code rather than in Lex code.
2216 (YY_INPUT): New macro.
2217 (no_cr_read): New function.
2218
2219 Scan UCNs, even though we don't fully handle them yet.
2220 (convert_ucn_to_byte): New function.
2221
2222 Handle backslash-newline correctly in C code.
2223 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
2224 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
2225 all uses changed.
2226 (tag, splice): New EREs. Do not allow NUL or newline in tags.
2227 Use {splice} wherever C allows backslash-newline.
2228 YY_STEP after space, newline, vertical-tab.
2229 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
2230
2231 (letter, id): Don't assume ASCII; e.g., spell out a-z.
2232
2233 ({int}, handle_action_dollar, handle_action_at): Check for integer
2234 overflow.
2235
2236 (YY_STEP): Omit trailing semicolon, so that it's more like C.
2237
2238 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
2239 as well as \000. Check for UCHAR_MAX, not 255.
2240 Allow \x with an arbitrary positive number of digits, as in C.
2241 Check for overflow here.
2242 Allow \? and UCNs, for compatibility with C.
2243
2244 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
2245 with quote slot used by complain_at.
2246
2247 * tests/input.at: Add tests for backslash-newline, m4 quotes
2248 in symbols, long literals, and funny escapes in strings.
2249
2250 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
2251 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
2252 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
2253 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
2254 * m4/mbswidth.m4: New file, from GNU coreutils.
2255
2256 * doc/bison.texinfo (Grammar Outline): Document // comments.
2257 (Symbols): Document that trigraphs have no special meaning in Bison,
2258 nor is backslash-newline allowed.
2259 (Actions): Document that trigraphs have no special meaning.
2260
2261 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
2262 no longer used.
2263
2264 2002-11-02 Paul Eggert <eggert@twinsun.com>
2265
2266 * src/reader.c: Don't include quote.h; not needed.
2267 (get_merge_function): Reword warning to be consistent with
2268 type clash diagnostic in grammar_current_rule_check.
2269
2270 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
2271 bug in trigraph handling.
2272
2273 * src/output.c (prepare_symbols): When printing token names,
2274 escape "[" as "@<:@" and likewise for "]".
2275
2276 * src/system.h (errno): Remove declaration, as we are now
2277 assuming C89 or better, and C89 guarantees errno.
2278
2279 2002-10-30 Paul Eggert <eggert@twinsun.com>
2280
2281 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
2282 Check for close failures.
2283 * src/files.h (xfclose): Return void, not int, since it always
2284 returned zero.
2285 * src/files.c (xfclose): Likewise. Report I/O error if ferror
2286 indicates one.
2287 * src/output.c (output_skeleton): Use xfclose rather than fclose
2288 and ferror. xfclose now checks ferror.
2289
2290 * data/glr.c (YYLEFTMOST_STATE): Remove.
2291 (yyreportTree): Use a stack-based leftmost state. This avoids
2292 our continuing battles with bogus warnings about initializers.
2293
2294 2002-10-30 Akim Demaille <akim@epita.fr>
2295
2296 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
2297 #if.
2298
2299 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2300
2301 * tests/glr-regr1.at: New test for reported regressions.
2302 * tests/testsuite.at: Add glr-regr1.at test.
2303 * tests/Makefile.am: Add glr-regr1.at test.
2304
2305 2002-10-24 Paul Eggert <eggert@twinsun.com>
2306
2307 Version 1.75a.
2308
2309 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
2310 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
2311 we use malloc. Don't assume 'A' through 'Z' are contiguous.
2312 Don't assume strdup exists; POSIX says its an XSI extension.
2313 Check for buffer overflow on input.
2314
2315 2002-10-24 Akim Demaille <akim@epita.fr>
2316
2317 * src/output.c (output_skeleton): Don't disable M4sugar comments
2318 too soon: it results in comments being expanded.
2319 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
2320 first output.
2321
2322 2002-10-24 Akim Demaille <akim@epita.fr>
2323
2324 * data/yacc.c (m4_int_type): New.
2325 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
2326 char' as only yacc.c wants K&R portability.
2327 * data/glr.c (yysigned_char): Remove.
2328 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
2329 Reported by Quoc Peyrot.
2330
2331 2002-10-23 Paul Eggert <eggert@twinsun.com>
2332
2333 * src/main.c (main): With --trace=time, report times even if a
2334 non-fatal error occurs. Formerly, the times were reported in some
2335 such cases but not in others.
2336 * src/reader.c (reader): Just return if a complaint has been issued,
2337 instead of exiting, so that 'main' can report times.
2338
2339 2002-10-22 Akim Demaille <akim@epita.fr>
2340
2341 * src/system.h: Include sys/types.
2342 Reported by Bert Deknuydt.
2343
2344 2002-10-23 Paul Eggert <eggert@twinsun.com>
2345
2346 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
2347 Suggested by Art Haas.
2348
2349 2002-10-22 Paul Eggert <eggert@twinsun.com>
2350
2351 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
2352 decl; not needed any more.
2353 * src/main.c (main): Use return to exit, undoing yesterday's change.
2354 The last OS that we could find where this wouldn't work is
2355 SunOS 3.5, and that's too old to worry about now.
2356
2357 * data/glr.c (struct yyltype): Define members even when not
2358 doing locations. This is more consistent with yacc.c, and it
2359 works around the following bug reports:
2360 http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
2361 http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
2362
2363 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
2364 @acronym consistently. Standardize on "Yacc" instead of "YACC",
2365 "Algol" instead of "ALGOL". Give a bit more history about BNF.
2366
2367 2002-10-22 Akim Demaille <akim@epita.fr>
2368
2369 * data/README: New.
2370
2371 2002-10-21 Paul Eggert <eggert@twinsun.com>
2372
2373 Be consistent about 'bool'; the old code used an enum in one
2374 module and an int in another, and this violates the C standard.
2375 * m4/stdbool.m4: New file, from coreutils 4.5.3.
2376 * configure.ac (AC_HEADER_STDBOOL): Add.
2377 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
2378 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
2379 * src/symtab.c (hash_compare_symbol_t): Likewise.
2380 * src/system.h (bool, false, true): Use a definition consistent
2381 with ../lib/hash.c. All uses changed.
2382
2383 * src/complain.c (warning_issued): Renamed from warn_message_count,
2384 so that we needn't worry about integer overflow (!).
2385 Now of type bool. All uses changed.
2386 (complaint_issued): Renamed from complain_message_count; likewise.
2387
2388 * src/main.c (main): Use exit to exit with failure.
2389
2390 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
2391 rather than 1 and 0.
2392 * src/main.c (main): Likewise.
2393 * src/getargs.c (getargs): Likewise.
2394 * src/reader.c (reader): Likewise.
2395
2396 * src/getarg.c (getargs): Remove duplicate code for
2397 "Try `bison --help'".
2398
2399 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
2400 What was that "2" for?
2401
2402 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
2403 * src/getargs.c (usage): Likewise.
2404
2405 * src/getargs.c (getargs): When there are too few operands, report
2406 the last one. When there are too many, report the first extra
2407 one. This is how diffutils does it.
2408
2409 2002-10-20 Paul Eggert <eggert@twinsun.com>
2410
2411 Remove K&R vestiges.
2412 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
2413 * src/complain.c (VA_START): Remove. Assume prototypes.
2414 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
2415 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
2416 fatal): Assume prototypes.
2417 * src/complain.h: Assume prototypes.
2418 * src/system.h (PARAMS): Remove.
2419 Include <limits.h> unconditionally, since it's guaranteeed even
2420 for a freestanding C89 compiler.
2421 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
2422 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
2423
2424 2002-10-20 Akim Demaille <akim@epita.fr>
2425
2426 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
2427 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
2428 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
2429 (yyresolveStates, yyresolveAction, yyresolveStack)
2430 (yyprocessOneStack): Use them.
2431 (yy_reduce_print): New.
2432 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
2433
2434 2002-10-20 Akim Demaille <akim@epita.fr>
2435
2436 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
2437 arguments and output `void'.
2438 (b4_c_function): Rename as...
2439 (b4_c_function_def): this.
2440 (b4_c_function_decl, b4_c_ansi_function_def)
2441 (b4_c_ansi_function_decl): New.
2442 Change the interpretation of the arguments: before `int, foo', now
2443 `int foo, foo'.
2444 * data/yacc.c (yyparse): Prototype and define thanks to these.
2445 Adjust b4_c_function_def uses.
2446 * data/glr.c (yyparse): Likewise, but ANSI only.
2447
2448 2002-10-20 Akim Demaille <akim@epita.fr>
2449
2450 * src/output.c (prepare): Move the definition of `tokens_number',
2451 `nterms_number', `undef_token_number', `user_token_number_max'
2452 to...
2453 (prepare_tokens): Here.
2454 (prepare_tokens): Rename as...
2455 (prepare_symbols): this.
2456 (prepare): Move the definition of `rules_number' to...
2457 (prepare_rules): here.
2458 (prepare): Move the definition of `last', `final_state_number',
2459 `states_number' to...
2460 (prepare_states): here.
2461 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
2462
2463 2002-10-20 Akim Demaille <akim@epita.fr>
2464
2465 * src/tables.h, src/tables.c, src/output.c: Comment changes.
2466
2467 2002-10-20 Akim Demaille <akim@epita.fr>
2468
2469 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
2470 * data/c.m4: here.
2471
2472 2002-10-20 Akim Demaille <akim@epita.fr>
2473
2474 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
2475 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
2476 `pair'.
2477 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
2478 `name' to...
2479 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
2480 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
2481 These.
2482
2483 2002-10-19 Paul Eggert <eggert@twinsun.com>
2484
2485 Do not create a temporary file, as that involves security and
2486 cleanup headaches. Instead, use a pair of pipes.
2487 Derived from a suggestion by Florian Krohm.
2488 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
2489 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
2490 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
2491 (BISON_PREREQ_SUBPIPE): Add.
2492 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
2493 Add subpipe.h, subpipe.c.
2494 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
2495 * po/POTFILES.in: Add lib/subpipe.c.
2496 * src/output.c: Include "subpipe.h".
2497 (m4_invoke): Remove decl.
2498 (scan_skel): New decl.
2499 (output_skeleton): Use pipe rather than temporary file for m4 input.
2500 Check that m4sugar.m4 is readable, to avoid deadlock.
2501 Check for pipe I/O error.
2502 * src/scan-skel.l (readpipe): Remove decl.
2503 (scan_skel): New function, to be used in place of m4_invoke.
2504 Read from stream rather than file.
2505
2506 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
2507 float, as this generates a warning on Solaris 8 + GCC 3.2 with
2508 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
2509 this generates a more-accurate value anyway.
2510
2511 * lib/timevar.c (timervar_accumulate): Rename locals to
2512 avoid confusion with similarly-named more-global.
2513 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
2514
2515 * src/output.c (prepare): Use xstrdup to convert char const *
2516 to char *, to avoid GCC warning.
2517
2518 2002-10-19 Akim Demaille <akim@epita.fr>
2519
2520 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
2521 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
2522 Use them to have `calc.y' ready for %pure-parser.
2523 * data/yacc.c (YYLEX): Pass a yylex return type to
2524 b4_c_function_call.
2525
2526 2002-10-19 Akim Demaille <akim@epita.fr>
2527
2528 Prototype support of %lex-param and %parse-param.
2529
2530 * src/parse-gram.y: Add the definition of the %lex-param and
2531 %parse-param tokens, plus their rules.
2532 Drop the `_' version of %glr-parser.
2533 Add the "," token.
2534 * src/scan-gram.l (INITIAL): Scan them.
2535 * src/muscle_tab.c: Comment changes.
2536 (muscle_insert, muscle_find): Rename `pair' as `probe'.
2537 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
2538 (muscle_entry_s): The `value' member is no longer const.
2539 Adjust all dependencies.
2540 * src/muscle_tab.c (muscle_init): Adjust: use
2541 MUSCLE_INSERT_STRING.
2542 Initialize the obstack earlier.
2543 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
2544 (muscle_pair_list_grow): New.
2545 * data/c.m4 (b4_c_function_call, b4_c_args): New.
2546 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
2547 * tests/calc.at: Use %locations, not --locations.
2548 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
2549
2550 2002-10-19 Akim Demaille <akim@epita.fr>
2551
2552 * src/getargs.c (usage): Take status as argument and exit
2553 accordingly.
2554 Report the traditional `Try ... --help' message when status != 0.
2555 (usage, version): Don't take a FILE * as arg, it is pointless.
2556 (getargs): When there is an incorrect number of arguments, make it
2557 an error, and report it GNUlically thanks to `usage ()'.
2558
2559 2002-10-18 Paul Eggert <eggert@twinsun.com>
2560
2561 * data/glr.c (yyreportParseError): Don't assume that sprintf
2562 yields the length of the printed string, as this is not true
2563 on SunOS 4.1.4. Reported by Peter Klein.
2564
2565 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
2566 * tests/conflicts.at (%nonassoc and eof): Likewise.
2567 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
2568
2569 2002-10-17 Akim Demaille <akim@epita.fr>
2570
2571 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
2572 * src/getargs.c (trace_types, trace_args): Adjust.
2573 * src/reader.c (grammar_current_rule_prec_set)
2574 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
2575 Standardize error messages.
2576 And s/@prec/%prec/!
2577 (reader): Use trace_flag to enable scanner/parser debugging,
2578 instead of an adhoc scheme.
2579 * src/scan-gram.l: Remove trailing debugging code.
2580
2581 2002-10-16 Paul Eggert <eggert@twinsun.com>
2582
2583 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
2584 MUSCLE_TAB_H.
2585
2586 * NEWS: Officially drop support for building Bison with K&R C,
2587 since it didn't work anyway and it's not worth worrying about.
2588 * Makefile.maint (wget_files): Remove ansi2knr.c.
2589 (ansi2knr.c-url_prefix): Remove.
2590 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
2591 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
2592 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
2593
2594 2002-10-15 Paul Eggert <eggert@twinsun.com>
2595
2596 Stop using the "enum_" trick for K&R-style function definitions;
2597 it confused me, and I was the author! Instead, assume that people
2598 who want to use K&R C compilers (when using these modules in GCC,
2599 perhaps?) will run ansi2knr.
2600
2601 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
2602 All uses of "enum_" changed to "enum ".
2603 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
2604 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
2605
2606 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
2607 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
2608 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
2609 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
2610 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
2611 abitset_not, abitset_ones, abitset_or, abitset_or_and,
2612 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
2613 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
2614 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
2615 Use function prototypes; this removes the need for declaring
2616 static functions simply to provide their prototypes.
2617 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
2618 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
2619 bitset_count_, bitset_create, bitset_dump, bitset_first,
2620 bitset_free, bitset_init, bitset_last, bitset_next,
2621 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
2622 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
2623 bitset_print, bitset_release_memory, bitset_toggle_,
2624 bitset_type_choose, bitset_type_get, bitset_type_name_get,
2625 debug_bitset): Likewise.
2626 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
2627 * lib/bitset_stats.c (bitset_log_histogram_print,
2628 bitset_percent_histogram_print, bitset_stats_and,
2629 bitset_stats_and_cmp, bitset_stats_and_or,
2630 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
2631 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
2632 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
2633 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
2634 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
2635 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
2636 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
2637 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
2638 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
2639 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
2640 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
2641 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
2642 bitset_stats_zero): Likewise.
2643 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
2644 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
2645 bitsetv_dump, debug_bitsetv): Likewise.
2646 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
2647 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
2648 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
2649 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
2650 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
2651 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
2652 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
2653 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
2654 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
2655 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
2656 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
2657 Likewise.
2658 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
2659 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
2660 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
2661 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
2662 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
2663 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
2664 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
2665 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
2666 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
2667 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
2668 lbitset_xor_cmp, lbitset_zero): Likewise.
2669
2670 2002-10-14 Akim Demaille <akim@epita.fr>
2671
2672 Version 1.75.
2673
2674 2002-10-14 Akim Demaille <akim@epita.fr>
2675
2676 * tests/Makefile.am (maintainer-check-posix): New.
2677
2678 2002-10-14 Akim Demaille <akim@epita.fr>
2679
2680 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
2681 member.
2682
2683 2002-10-14 Akim Demaille <akim@epita.fr>
2684
2685 * src/tables.c (table_ninf_remap): base -> tab.
2686 Reported by Matt Rosing.
2687
2688 2002-10-14 Paul Eggert <eggert@twinsun.com>
2689
2690 * tests/action.at, tests/calc.at, tests/conflicts.at,
2691 tests/cxx-type.at, tests/headers.at, tests/input.at,
2692 tests/regression.at, tests/synclines.at, tests/torture.at:
2693 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
2694 so that the tests still work even if POSIXLY_CORRECT is set.
2695 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
2696
2697 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
2698 for portability to K&R hosts. Fix typo: signed char is guaranteed
2699 only to 127, not to 128.
2700 * data/glr.c (yysigned_char): New type.
2701 * data/yacc.c (yysigned_char): Likewise.
2702 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
2703
2704 2002-10-13 Paul Eggert <eggert@twinsun.com>
2705
2706 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
2707 true due to limited range of data type" warning from GCC.
2708
2709 * data/c.m4 (b4_token_defines): Protect against double-inclusion
2710 by wrapping enum yytokentype's definition inside #ifndef
2711 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
2712
2713 2002-10-13 Akim Demaille <akim@epita.fr>
2714
2715 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
2716 Un yy- yyrhs to avoid the name clash with the global YYRHS.
2717
2718 2002-10-13 Akim Demaille <akim@epita.fr>
2719
2720 * Makefile.maint: Update from Autoconf 2.54.
2721 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
2722
2723 2002-10-13 Akim Demaille <akim@epita.fr>
2724
2725 * src/print.c (print_state): Separate the list of solved conflicts
2726 from the other items.
2727 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
2728
2729 2002-10-13 Akim Demaille <akim@epita.fr>
2730
2731 Let nondeterministic skeletons be usable with deterministic
2732 tables.
2733
2734 With the patch, GAWK compiled by GCC without -O2 passes its test
2735 suite using a GLR parser driven by LALR tables. It fails with -O2
2736 because `struct stat' gives two different answers on my machine:
2737 88 (definition of an auto var) and later 96 (memset on this var).
2738 Hence the stack is badly corrumpted. The headers inclusion is to
2739 blame: if I move the awk.h inclusion before GLR's system header
2740 inclusion, the two struct stat have the same size.
2741
2742 * src/tables.c (pack_table): Always create conflict_table.
2743 (token_actions): Always create conflict_list.
2744 * data/glr.c (YYFLAG): Remove, unused.
2745
2746 2002-10-13 Akim Demaille <akim@epita.fr>
2747
2748 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
2749 (O0FLAGS): New.
2750 (VALGRIND, GXX): New.
2751 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
2752 * tests/bison.in: Run $PREBISON a pre-command.
2753 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
2754 (maintainer-check-g++): New.
2755 * Makefile.am (maintainer-check): New.
2756
2757 2002-10-13 Akim Demaille <akim@epita.fr>
2758
2759 * data/glr.c: Formatting changes.
2760 Tweak some trace messages to match yacc.c's.
2761
2762 2002-10-13 Akim Demaille <akim@epita.fr>
2763
2764 GLR parsers sometimes raise parse errors instead of performing the
2765 default reduction.
2766 Reported by Charles-Henry de Boysson.
2767
2768 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
2769 check the length of the traces when %glr.
2770 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
2771 GLR's traces.
2772 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
2773 Test GLR parsers.
2774 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
2775 (yyltype): Remove the yy prefix from the member names.
2776 (yytable): Complete its comment.
2777 (yygetLRActions): Map error action number from YYTABLE from
2778 YYTABLE_NINF to 0.
2779 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
2780 (which was a bug: it should have been YYTABEL_NINF, and yet it was
2781 not satisfying as we could compare an YYACTION computed from
2782 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
2783 only value for error actions.
2784 (yyreportParseError): In verbose parse error messages, don't issue
2785 `error' in the list of expected tokens.
2786 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
2787 next action to perform to match glr.c's decoding.
2788 (yytable): Complete its comment.
2789
2790 2002-10-13 Paul Eggert <eggert@twinsun.com>
2791
2792 Fix problem reported by Henrik Grubbstroem in
2793 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
2794 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
2795 because the Bison parser reads the second action before reducing
2796 the first one.
2797 * src/scan-gram.l (rule_length): New static var.
2798 Use it to keep track of the rule length in the scanner, since
2799 we can't expect the parser to be in lock-step sync with the scanner.
2800 (handle_action_dollar, handle_action_at): Use this var.
2801 * tests/actions.at (Exotic Dollars): Test for the problem.
2802
2803 2002-10-12 Paul Eggert <eggert@twinsun.com>
2804
2805 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
2806 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
2807 Include <sys/time.h> when checking for clock_t and struct tms.
2808 Use same include order as source.
2809 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
2810 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
2811
2812 * lib/timevar.c: Update copyright date and clarify comments.
2813 (get_time) [IN_GCC]: Keep the GCC version for reference.
2814
2815 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
2816 GCC version as of today, then merge Bison's changes.
2817 Change "GCC" to "Bison" in copyright notice. timevar.def's
2818 author is Akim, so change that too.
2819
2820 * src/reader.c (grammar_current_rule_check):
2821 Don't worry about the default action if $$ is untyped.
2822 Prevents bogus warnings reported by Jim Gifford in
2823 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
2824
2825 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
2826 * data/glr.c, data/lalr1.cc, data/yacc.c:
2827 Output token definitions before the first part of user declarations.
2828 Fixes compatibility problem reported by Jim Gifford for kbd in
2829 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
2830
2831 2002-10-11 Paul Eggert <eggert@twinsun.com>
2832
2833 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
2834 (yyparse): here. This undoes some of the 2002-07-25 change.
2835 Compatibility problem reported by Ralf S. Engelschall with
2836 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
2837
2838 2002-10-11 Akim Demaille <akim@epita.fr>
2839
2840 * tests/regression.at Characters Escapes): New.
2841 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
2842 characters.
2843 Reported by Jan Nieuwenhuizen.
2844
2845 2002-10-11 Akim Demaille <akim@epita.fr>
2846
2847 * po/id.po: New.
2848
2849 2002-10-10 Paul Eggert <eggert@twinsun.com>
2850
2851 Portability fixes for bitsets; this also avoids several GCC
2852 warnings.
2853
2854 * lib/abitset.c: Include <stddef.h>, for offsetof.
2855 * lib/lbitset.c: Likewise.
2856
2857 * lib/abitset.c (abitset_bytes): Return a size that is aligned
2858 properly for vectors of objects. Do not assume that adding a
2859 header size to a multiple of a word size yields a value that is
2860 properly aligned for the whole union.
2861 * lib/bitsetv.c (bitsetv_alloc): Likewise.
2862
2863 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
2864 unique names for structures.
2865 * lib/ebitset.c (ebitset_bytes): Likewise.
2866 * lib/lbitset.c (lbitset_bytes): Likewise.
2867
2868 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
2869 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
2870 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
2871 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
2872 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
2873 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
2874 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
2875 to improve the type-checking that GCC can do.
2876 * lib/bitset.c (bitset_op4_cmp): Likewise.
2877 * lib/bitset_stats.c (bitset_stats_count,
2878 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
2879 bitset_stats_copy, bitset_stats_disjoint_p,
2880 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
2881 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
2882 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
2883 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
2884 bitset_stats_and_or_cmp, bitset_stats_andn_or,
2885 bitset_stats_andn_or_cmp, bitset_stats_or_and,
2886 bitset_stats_or_and_cmp): Likewise.
2887 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
2888 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
2889 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
2890 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
2891
2892 * lib/abitset.h: Include bitset.h, not bbitset.h.
2893 * lib/ebitset.h: Likewise.
2894 * lib/lbitset.h: Likewise.
2895
2896 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
2897 All instances of parameters of type enum bitset_opts are now of
2898 type enum_bitset_opts, to conform to the C Standard, and similarly
2899 for enum_bitset_type.
2900 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
2901 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
2902
2903 Do not use "struct bitset_struct" to mean different things in
2904 different modules. Not only is this confusing, it violates
2905 the C Standard, which requires that structure types in different
2906 modules must be compatible if one is to be passed to the other.
2907 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
2908 All instances of "struct bitset_struct *" replaced with "bitset".
2909 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
2910 (union bitset_union, struct abitset_struct, struct ebitset_struct,
2911 struct lbitset_struct, struct bitset_stats_struct): New types.
2912 All uses of struct bitset_struct changed to union bitset_union,
2913 etc.
2914 * lib/abitset.c (struct abitset_struct, abitset,
2915 struct bitset_struct): Remove.
2916 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
2917 struct bitset_struct): Remove.
2918 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
2919 bitset_struct): Remove.
2920 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
2921 Likewise.
2922
2923 Do not call a function of type T using a call that assumes the
2924 function is of a different type U. Standard C requires that a
2925 function must be called with a type that is compatible with its
2926 definition.
2927 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
2928 New decls.
2929 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
2930 New functions.
2931 * lib/ebitset.c (PFV): Remove.
2932 * lib/lbitset.c (PFV): Likewise.
2933 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
2934 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
2935 decls.
2936 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
2937 (ebitset_vtable): Use them.
2938 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
2939 lbitset_xor): New functions.
2940 (lbitset_vtable): Use them.
2941
2942 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
2943 Declare.
2944
2945 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
2946 GCC warning.
2947 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
2948 Use offsetof, for simplicity.
2949
2950 2002-10-06 Paul Eggert <eggert@twinsun.com>
2951
2952 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
2953 the same width as int. This reapplies a hunk of the 2002-08-12 patch
2954 <http://mail.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
2955 which was inadvertently undone by the 2002-09-30 patch.
2956 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
2957 the same width as int.
2958
2959 2002-10-04 Paul Eggert <eggert@twinsun.com>
2960
2961 Version 1.50.
2962
2963 * configure.ac (AC_INIT), NEWS: Increment version number.
2964
2965 * doc/bison.texinfo: Minor spelling, grammar, and white space
2966 fixes.
2967 (Symbols): Mention that any negative value returned from yylex
2968 signifies end-of-input. Warn about negative chars. Mention
2969 the portable Standard C character set.
2970
2971 The GNU coding standard says CFLAGS and YFLAGS are reserved
2972 for the installer to set.
2973 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
2974 * src/Makefile.am (AM_CFLAGS): Likewise.
2975 (AM_YFLAGS): Renamed from YFLAGS.
2976
2977 Fix some MAX and MIN problems.
2978 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
2979 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
2980 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
2981 * src/reader.c (reader): Use it.
2982
2983 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
2984 POSIX 1003.1-2001 has removed fgrep.
2985
2986 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
2987
2988 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
2989 interpreted as signed.
2990 * lib/ebitset.c (ebitset_list): Fix bug.
2991
2992 2002-10-01 Paul Eggert <eggert@twinsun.com>
2993
2994 More fixes for 64-bit hosts and large bitsets.
2995
2996 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
2997 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
2998 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
2999 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
3000 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
3001 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
3002 bitset_count_): Likewise.
3003 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
3004 bitset_first, bitset_last): Likewise.
3005 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
3006 bitset_stats_list_reverse, bitset_stats_size,
3007 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
3008 Likewise.
3009 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
3010 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
3011 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
3012 bitsetv_reflexive_transitive_closure): Likewise.
3013 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
3014 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
3015 Likewise.
3016 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
3017 Likewise.
3018
3019 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
3020 Use size_t, not unsigned int, to count bytes.
3021 * lib/abitset.h (abitset_bytes): Likewise.
3022 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
3023 Likewise.
3024 * lib/bitset.h (bitset_bytes): Likewise.
3025 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
3026 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
3027 * lib/bitsetv.c (bitsetv_alloc): Likewise.
3028 * lib/ebitset.c (ebitset_bytes): Likewise.
3029 * lib/ebitset.h (ebitset_bytes): Likewise.
3030 * lib/lbitset.c (lbitset_bytes): Likewise.
3031 * lib/lbitset.h (lbitset_bytes): Likewise.
3032
3033 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
3034 abitset_subset_p, abitset_disjoint_p, abitset_and,
3035 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
3036 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
3037 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
3038 abitset_or_and, abitset_or_and_cmp):
3039 Use bitset_windex instead of unsigned int.
3040 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
3041 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
3042 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
3043 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
3044 Likewise.
3045 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
3046
3047 * lib/bitset.c (bitset_print):
3048 Use proper printf formats for widths of integer types.
3049 * lib/bitset_stats.c (bitset_percent_histogram_print,
3050 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
3051 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
3052 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
3053 * lib/lbitset.c (lbitset_bytes): Likewise.
3054
3055 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
3056 BITSET_SIZE_MAX): New macros.
3057 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
3058 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
3059 to BITSET_WINDEX_MAX.
3060
3061 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
3062 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
3063 since we now return the bitset_bindex type (not int).
3064
3065 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
3066 when computing sizes.
3067 * lib/ebitset.c (ebitset_elts_grow): Likewise.
3068
3069 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
3070 and avoid cast to unsigned.
3071
3072 2002-09-30 Akim Demaille <akim@epita.fr>
3073
3074 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
3075 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
3076 Updates from Michael Hayes.
3077
3078 2002-09-30 Art Haas <ahaas@neosoft.com>
3079
3080 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
3081 invocations.
3082 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
3083 defined.
3084
3085 2002-09-27 Akim Demaille <akim@epita.fr>
3086
3087 Version 1.49c.
3088
3089 2002-09-27 Akim Demaille <akim@epita.fr>
3090
3091 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
3092 (Because of AC_LIBSOURCE).
3093
3094 2002-09-27 Akim Demaille <akim@epita.fr>
3095
3096 Playing with Autoscan.
3097
3098 * configure.ac: Remove the old LIBOBJ tweaks.
3099 (AC_REPLACE_FUNCS): Add strrchr and strtol.
3100 * lib/strrchr.c: New.
3101 * lib/strtol.c: New, from the Coreutils 4.5.1.
3102
3103 2002-09-27 Akim Demaille <akim@epita.fr>
3104
3105 Playing with Autoscan.
3106
3107 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
3108 * lib/Makefile.am (libbison_a_SOURCES): No longer include
3109 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
3110 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
3111 Coreutils 4.5.1.
3112
3113 2002-09-24 Akim Demaille <akim@epita.fr>
3114
3115 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
3116 (Frequently Asked Questions, Parser Stack Overflow): New.
3117
3118 2002-09-13 Akim Demaille <akim@epita.fr>
3119
3120 Playing with autoscan.
3121
3122 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
3123 * src/files.c (skeleton_find): Remove, unused.
3124 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
3125 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
3126
3127 2002-09-13 Akim Demaille <akim@epita.fr>
3128
3129 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
3130 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
3131
3132 2002-09-13 Akim Demaille <akim@epita.fr>
3133
3134 * configure.ac: Require 2.54.
3135 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
3136 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
3137 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
3138 Remove, provided by Autoconf macros.
3139
3140 2002-09-12 Akim Demaille <akim@epita.fr>
3141
3142 * m4/prereq.m4: Update, from Coreutils 4.5.1.
3143
3144 2002-09-12 Akim Demaille <akim@epita.fr>
3145
3146 * m4/prereq.m4: Update, from Fileutils 4.1.5.
3147 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
3148 Reported by Martin Mokrejs.
3149
3150 2002-09-10 Akim Demaille <akim@epita.fr>
3151
3152 * src/parse-gram.y: Associate a human readable string to each
3153 token type.
3154 * tests/regression.at (Invalid inputs): Adjust.
3155
3156 2002-09-10 Gary V. Vaughan <gary@gnu.org>
3157
3158 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
3159 with an Autoconf-2.5x style configure.ac.
3160
3161 2002-09-06 Paul Eggert <eggert@twinsun.com>
3162
3163 * doc/bison.texinfo (Conditions): Make explicit that the GPL
3164 exception applies only to yacc.c. This is a modification of a
3165 patch originally suggested by Akim Demaille.
3166
3167 2002-09-06 Akim Demaille <akim@epita.fr>
3168
3169 * data/c.m4 (b4_copyright): Move the GPL exception comment from
3170 here to...
3171 * data/yacc.c: here.
3172
3173 * data/lalr1.cc (struct yyltype): Don't define it, since we use
3174 LocationType.
3175 (b4_ltype): Default to yy::Location from location.hh.
3176
3177 2002-09-04 Jim Meyering <jim@meyering.net>
3178
3179 * data/yacc.c: Guard the declaration of yytoknum also with
3180 `#ifdef YYPRINT', so it is declared only when used.
3181
3182 2002-09-04 Akim Demaille <akim@epita.fr>
3183
3184 * configure.in: Rename as...
3185 * configure.ac: this.
3186 Bump to 1.49c.
3187
3188 2002-09-04 Akim Demaille <akim@epita.fr>
3189
3190 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
3191 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
3192 translate maintainer only messages.
3193
3194 2002-08-12 Paul Eggert <eggert@twinsun.com>
3195
3196 Version 1.49b.
3197
3198 * Makefile.am (SUBDIRS): Remove intl.
3199 (DISTCLEANFILES): Remove.
3200 * NEWS: Mention that GNU M4 is now required. Clarify what is
3201 meant by "larger grammars". Mention the pt_BR translation.
3202 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
3203 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
3204 Bump version from 0.11.2 to 0.11.5.
3205 (BISON_PREREQ_STAGE): Remove.
3206 (AM_GNU_GETTEXT): Use external gettext.
3207 (AC_OUTPUT): Remove intl/Makefile.
3208
3209 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
3210
3211 * data/glr.c: Include string.h, for strlen.
3212 (yyreportParseError): Use size_t for yysize.
3213 (yy_yypstack): No longer nested inside yypstates, as nested
3214 functions are not portable. Do not assume size_t is the
3215 same width as int.
3216 (yypstates): Do not assume that ptrdiff_t is the same width
3217 as int, and similarly for yyposn and YYINDEX.
3218
3219 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
3220
3221 * lib/Makefile.am (INCLUDES): Do not include from the intl
3222 directory, which has been removed.
3223 * src/Makefile.am (INCLUDES): Likewise.
3224
3225 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
3226 (bitsets_sources, additional_bitsets_sources, timevars_sources):
3227 New vars.
3228
3229 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
3230 * tests/Makefile.am (EXTRA_DIST): Likewise.
3231
3232 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
3233 Do not assume that bitset_windex is the same width as unsigned.
3234
3235 * lib/abitset.c (abitset_unused_clear): Do not assume that
3236 bitset_word is the same width as int.
3237 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
3238 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
3239 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
3240 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
3241 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
3242
3243 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
3244 portability to one's complement hosts!).
3245 * lib/ebitset.c (ebitset_op1): Likewise.
3246 * lib/lbitset.c (lbitset_op1): Likewise.
3247
3248 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
3249 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
3250 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
3251 Sync with fileutils.
3252 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
3253 lib/gettext.h: Sync with diffutils.
3254
3255 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
3256 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
3257
3258 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
3259 PROTOTYPES to check for prototypes, and "defined __STDC__" to
3260 check for void *.
3261
3262 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
3263 size_t; the old version tried to do this but casted improperly.
3264 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
3265 (bitset_test): Now returns int, not unsigned long.
3266
3267 * lib/bitset_stats.c: Include "gettext.h".
3268 (_): New macro.
3269 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
3270 name locals "index", as it generates unnecessary warnings on some
3271 hosts that have an "index" function.
3272
3273 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
3274 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
3275 they need translation.
3276 * src/LR0.c (state_list_append, new_itemsets, get_state,
3277 append_states, generate_states): Likewise.
3278 * src/assoc.c (assoc_to_string): Likewise.
3279 * src/closure.c (print_closure, set_firsts, closure): Likewise.
3280 * src/gram.c (grammar_dump): Likewise.
3281 * src/injections.c (injections_compute): Likewise.
3282 * src/lalr.c (lookaheads_print): Likewise.
3283 * src/relation.c (relation_transpose): Likewise.
3284 * src/scan-gram.l: Likewise.
3285 * src/tables.c (table_grow, pack_vector): Likewise.
3286
3287 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
3288 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
3289 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
3290 * m4/mbstate_t.m4: Sync with fileutils.
3291 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
3292
3293 * po/LINGUAS: Add pt_BR.
3294 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
3295 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
3296 lib/timevar.c.
3297 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
3298 manual recommends.
3299 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
3300
3301 * src/complain.c (strerror_r): Remove decl; not needed.
3302 (strerror): Use same pattern as ../lib/error.c.
3303
3304 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
3305
3306 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
3307
3308 * src/main.c (main): Cast result of bindtextdomain and textdomain
3309 to void, to avoid a GCC warning when --disable-nls is in effect.
3310
3311 * src/scan-gram.l: Use strings rather than escapes when possible,
3312 to minimize the number of warnings from xgettext.
3313 (handle_action_dollar, handle_action_at): Don't use isdigit,
3314 as it mishandles negative chars and it may not work as expected
3315 outside the C locale.
3316
3317 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
3318 this is a GCC extension and is not portable to other compilers.
3319
3320 * src/system.h (alloca): Use same pattern as ../lib/error.c.
3321 Do not include <ctype.h>; no longer needed.
3322 Do not include <malloc.h>; no longer needed (and generates
3323 warnings on OpenBSD 3.0).
3324
3325 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
3326 it's not portable.
3327
3328 * tests/regression.at: Do not use 'cc -c input.c -o input';
3329 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
3330
3331 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
3332 exit status as failure, not just exit status 1. Sun C exits
3333 with status 2 sometimes.
3334
3335 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
3336 Use it for the two large tests.
3337
3338 2002-08-02 Akim Demaille <akim@epita.fr>
3339
3340 * src/conflicts.c (conflicts_output): Don't output rules never
3341 reduced here, since anyway that computation doesn't work.
3342 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
3343 (rule_useless_p, rule_never_reduced_p): New.
3344 (grammar_rules_partial_print): Use a filter instead of a range.
3345 Display the title only if needed.
3346 (grammar_rules_print): Adjust.
3347 (grammar_rules_never_reduced_report): New.
3348 * src/tables.c (action_row): Move the computation of rules never
3349 reduced to...
3350 (token_actions): here.
3351 * src/main.c (main): Make the parser before making the report, so
3352 that rules never reduced are computed.
3353 Call grammar_rules_never_reduced_report.
3354 * src/print.c (print_results): Report rules never reduced.
3355 * tests/conflicts.at, tests/reduce.at: Adjust.
3356
3357 2002-08-01 Akim Demaille <akim@epita.fr>
3358
3359 Instead of attaching lookaheads and duplicating the rules being
3360 reduced by a state, attach the lookaheads to the reductions.
3361
3362 * src/state.h (state_t): Remove the `lookaheads',
3363 `lookaheads_rule' member.
3364 (reductions_t): Add a `lookaheads' member.
3365 Use a regular array for the `rules'.
3366 * src/state.c (reductions_new): Initialize the lookaheads member
3367 to 0.
3368 (state_rule_lookaheads_print): Adjust.
3369 * src/state.h, src/state.c (state_reductions_find): New.
3370 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
3371 (count_rr_conflicts): Adjust.
3372 * src/lalr.c (LArule): Remove.
3373 (add_lookback_edge): Adjust.
3374 (state_lookaheads_count): New.
3375 (states_lookaheads_initialize): Merge into...
3376 (initialize_LA): this.
3377 (lalr_free): Adjust.
3378 * src/main.c (main): Don't free nullable and derives too early: it
3379 is used by --verbose.
3380 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
3381
3382 2002-08-01 Akim Demaille <akim@epita.fr>
3383
3384 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
3385 `rule_number_t**'.
3386 (set_derives, free_derives): Rename as...
3387 (derives_compute, derives_free): this.
3388 Adjust all dependencies.
3389 * src/nullable.c (set_nullable, free_nullable): Rename as...
3390 (nullable_compute, nullable_free): these.
3391 (rule_list_t): Store rule_t *, not rule_number_t.
3392 * src/state.c (state_rule_lookaheads_print): Directly compare rule
3393 pointers, instead of their numbers.
3394 * src/main.c (main): Call nullable_free, and derives_free earlier,
3395 as they were lo longer used.
3396
3397 2002-08-01 Akim Demaille <akim@epita.fr>
3398
3399 * lib/timevar.c (get_time): Include children time.
3400 * src/lalr.h (LA, LArule): Don't export them: used with the
3401 state_t.
3402 * src/lalr.c (LA, LArule): Static.
3403 * src/lalr.h, src/lalr.c (lalr_free): New.
3404 * src/main.c (main): Call it.
3405 * src/tables.c (pack_vector): Check whether loc is >= to the
3406 table_size, not >.
3407 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
3408 (tables_generate): do it, since that's also it which allocates
3409 them.
3410 Don't free LA and LArule, main does.
3411
3412 2002-07-31 Akim Demaille <akim@epita.fr>
3413
3414 Separate parser tables computation and output.
3415
3416 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
3417 (conflict_list, conflict_list_cnt, table, check, table_ninf)
3418 (yydefgoto, yydefact, high): Move to...
3419 * src/tables.h, src/tables.c: here.
3420 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
3421 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
3422 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
3423 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
3424 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
3425 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
3426 (action_row, save_row, token_actions, save_column, default_goto)
3427 (goto_actions, sort_actions, matching_state, pack_vector)
3428 (table_ninf_remap, pack_table, prepare_actions): Move to...
3429 * src/tables.c: here.
3430 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
3431 * src/output.c (token_actions, output_base, output_conflicts)
3432 (output_check): Merge into...
3433 (prepare_actions): this.
3434 (actions_output): Rename as...
3435 (user_actions_output): this.
3436 * src/main.c (main): Call tables_generate and tables_free.
3437
3438 2002-07-31 Akim Demaille <akim@epita.fr>
3439
3440 Steal GCC's --time-report support.
3441
3442 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
3443 stolen/adjusted from GCC.
3444 * m4/stage.m4: Remove time related checks.
3445 * m4/timevar.m4: New.
3446 * configure.in: Adjust.
3447 * src/system.h: Adjust to using timevar.h.
3448 * src/getargs.h, src/getargs.c: Support trace_time for
3449 --trace=time.
3450 * src/main.c (stage): Remove.
3451 (main): Replace `stage' invocations with timevar calls.
3452 * src/output.c: Insert pertinent timevar calls.
3453
3454 2002-07-31 Akim Demaille <akim@epita.fr>
3455
3456 Let --trace have arguments.
3457
3458 * src/getargs.h (enum trace_e): New.
3459 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
3460 (long_options, short_options): --trace/-T takes an optional
3461 argument.
3462 Change all the uses of trace_flag to reflect the new flags.
3463 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
3464
3465 Strengthen `stage' portability.
3466
3467 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
3468 * configure.in: Use it.
3469 Don't check for malloc.h and sys/times.h.
3470 * src/system.h: Include them when appropriate.
3471 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
3472 times and struct tms are available.
3473
3474 2002-07-30 Akim Demaille <akim@epita.fr>
3475
3476 In verbose parse error message, don't report `error' as an
3477 expected token.
3478 * tests/actions.at (Printers and Destructors): Adjust.
3479 * tests/calc.at (Calculator $1): Adjust.
3480 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
3481 error message, do not report the parser accepts the error token in
3482 that state.
3483
3484 2002-07-30 Akim Demaille <akim@epita.fr>
3485
3486 Normalize conflict related messages.
3487
3488 * src/complain.h, src/complain.c (warn, complain): New.
3489 * src/conflicts.c (conflicts_print): Use them.
3490 (conflict_report_yacc): New, extracted from...
3491 (conflicts_print): here.
3492 * tests/conflicts.at, tests/existing.at: Adjust.
3493
3494 2002-07-30 Akim Demaille <akim@epita.fr>
3495
3496 Report rules which are never reduced by the parser: those hidden
3497 by conflicts.
3498
3499 * src/LR0.c (save_reductions): Don't make the final state too
3500 different: save its reduction (accept) instead of having a state
3501 without any action (no shift or goto, no reduce).
3502 Note: the final state is now a ``regular'' state, i.e., the
3503 parsers now contain `reduce 0' as default reduction.
3504 Nevertheless, since they decide to `accept' when yystate =
3505 final_state, they still will not reduce rule 0.
3506 * src/print.c (print_actions, print_reduction): Adjust.
3507 * src/output.c (action_row): Track reduced rules.
3508 (token_actions): Report rules never reduced.
3509 * tests/conflicts.at, tests/regression.at: Adjust.
3510
3511 2002-07-30 Akim Demaille <akim@epita.fr>
3512
3513 `stage' was accidently included in a previous patch.
3514 Initiate its autoconfiscation.
3515
3516 * configure.in: Look for malloc.h and sys/times.h.
3517 * src/main.c (stage): Adjust.
3518 Report only when trace_flag.
3519
3520 2002-07-29 Akim Demaille <akim@epita.fr>
3521
3522 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
3523 state_number_t.
3524 (errs_t): symbol_t*, not symbol_number_t.
3525 (reductions_t): rule_t*, not rule_number_t.
3526 (FOR_EACH_SHIFT): New.
3527 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
3528 * src/print.c, src/print_graph.c: Adjust.
3529
3530 2002-07-29 Akim Demaille <akim@epita.fr>
3531
3532 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
3533
3534 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
3535 (endtoken, accept): these.
3536 * src/reader.c (reader): Set endtoken's default tag to "$end".
3537 Set undeftoken's tag to "$undefined" instead of "$undefined.".
3538 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
3539 Adjust.
3540
3541 2002-07-29 Akim Demaille <akim@epita.fr>
3542
3543 * src/reduce.c (reduce_grammar): When the language is empty,
3544 complain about the start symbol, not the axiom.
3545 Use its location.
3546 * tests/reduce.at (Empty Language): New.
3547
3548 2002-07-26 Akim Demaille <akim@epita.fr>
3549
3550 * src/reader.h, src/reader.c (gram_error): ... can't get
3551 yycontrol without making too strong assumptions on the parser
3552 itself.
3553 * src/output.c (prepare_tokens): Use the real 0th value of
3554 token_translations instead of `0'.
3555 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
3556 visible here.
3557 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
3558 for the time being: %locations ought to provide it to yyerror.
3559
3560 2002-07-25 Akim Demaille <akim@epita.fr>
3561
3562 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
3563 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
3564 * tests/regression.at (Web2c Actions): Adjust.
3565
3566 2002-07-25 Akim Demaille <akim@epita.fr>
3567
3568 Stop storing rules from 1 to nrules + 1.
3569
3570 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
3571 * src/nullable.c, src/output.c, src/print.c, src/reader.c
3572 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
3573 Iterate from 0 to nrules.
3574 Use rule_number_as_item_number and item_number_as_rule_number.
3575 Adjust to `derive' now containing possibly 0.
3576 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
3577 Handle the `- 1' part in rule numbers from/to item numbers.
3578 * src/conflicts.c (log_resolution): Fix the message which reversed
3579 shift and reduce.
3580 * src/output.c (action_row): Initialize default_rule to -1.
3581 (token_actions): Adjust.
3582 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
3583 expected output.
3584 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
3585
3586 2002-07-25 Akim Demaille <akim@epita.fr>
3587
3588 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
3589 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
3590 (b4_c_knr_arg_decl): New.
3591 * data/yacc.c: Use it to define yysymprint, yydestruct, and
3592 yyreport_parse_error.
3593
3594 2002-07-25 Akim Demaille <akim@epita.fr>
3595
3596 * data/yacc.c (yyreport_parse_error): New, extracted from...
3597 (yyparse): here.
3598 (yydestruct, yysymprint): Move above yyparse.
3599 Be K&R compliant.
3600
3601 2002-07-25 Akim Demaille <akim@epita.fr>
3602
3603 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
3604 replace...
3605 (b4_sint_type, b4_uint_type): these.
3606 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
3607 * tests/regression.at (Web2c Actions): Adjust.
3608
3609 2002-07-25 Akim Demaille <akim@epita.fr>
3610
3611 * src/gram.h (TIEM_NUMBER_MAX): New.
3612 (item_number_of_rule_number, rule_number_of_item_number): Rename
3613 as...
3614 (rule_number_as_item_number, item_number_as_rule_number): these.
3615 Adjust dependencies.
3616 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
3617 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
3618 (symbol_number_to_vector_number): New.
3619 (order): Of vector_number_t* type.
3620 (base_t, BASE_MAX, BASE_MIN): New.
3621 (froms, tos, width, pos, check): Of base_t type.
3622 (action_number_t, ACTION_MIN, ACTION_MAX): New.
3623 (actrow): Of action_number_t type.
3624 (conflrow): Of unsigned int type.
3625 (table_ninf, base_ninf): New.
3626 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
3627 (muscle_insert_int_table, muscle_insert_base_table)
3628 (muscle_insert_rule_number_table): New.
3629 (prepare_tokens): Output `toknum' as int_table.
3630 (action_row): Returns a rule_number_t.
3631 Use ACTION_MIN, not SHRT_MIN.
3632 (token_actions): yydefact is rule_number_t*.
3633 (table_ninf_remap): New.
3634 (pack_table): Use it for `base' and `table'.
3635 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
3636 replaced with...
3637 (YYPACT_NINF, YYTABLE_NINF): these.
3638 (yypact, yytable): Compute their types instead of hard-coded
3639 `short'.
3640 * tests/regression.at (Web2c Actions): Adjust.
3641
3642 2002-07-19 Akim Demaille <akim@epita.fr>
3643
3644 * src/scan-gram.l (id): Can start with an underscore.
3645
3646 2002-07-16 Akim Demaille <akim@epita.fr>
3647
3648 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
3649 Adjust all former `associativity' dependencies.
3650 * src/symtab.c (symbol_new): Default associativity is `undef', not
3651 `right'.
3652 (symbol_check_alias_consistence): Adjust.
3653
3654 2002-07-09 Akim Demaille <akim@epita.fr>
3655
3656 * doc/bison.texinfo: Properly set the ``header'' part.
3657 Use @dircategory ``GNU programming tools'' as per Texinfo's
3658 documentation.
3659 Use @copying.
3660
3661 2002-07-09 Akim Demaille <akim@epita.fr>
3662
3663 * lib/quotearg.h: Protect against multiple inclusions.
3664 * src/location.h (location_t): Add a `file' member.
3665 (LOCATION_RESET, LOCATION_PRINT): Adjust.
3666 * src/complain.c (warn_at, complain_at, fatal_at): Drop
3667 `error_one_per_line' support.
3668
3669 2002-07-09 Akim Demaille <akim@epita.fr>
3670
3671 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
3672 * src/reader.c (lineno): Remove.
3673 Adjust all dependencies.
3674 (get_merge_function): Take a location and use complain_at.
3675 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
3676 * tests/regression.at (Invalid inputs, Mixing %token styles):
3677 Adjust.
3678
3679 2002-07-09 Akim Demaille <akim@epita.fr>
3680
3681 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
3682 recovery rule, and forbid extensions when --yacc.
3683 (gram_error): Use complain_at.
3684 * src/reader.c (reader): Exit if there were parse errors.
3685
3686 2002-07-09 Akim Demaille <akim@epita.fr>
3687
3688 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
3689 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
3690 Reported by R Blake <blakers@mac.com>.
3691
3692 2002-07-09 Akim Demaille <akim@epita.fr>
3693
3694 * data/yacc.c: Output the copyright notive in the header.
3695
3696 2002-07-03 Akim Demaille <akim@epita.fr>
3697
3698 * src/output.c (froms, tos): Are state_number_t.
3699 (save_column): sp, sp1, and sp2 are state_number_t.
3700 (prepare): Rename `final' as `final_state_number', `nnts' as
3701 `nterms_number', `nrules' as `rules_number', `nstates' as
3702 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
3703 unused.
3704 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
3705 * data/lalr1.cc (nsym_): Remove, unused.
3706
3707 2002-07-03 Akim Demaille <akim@epita.fr>
3708
3709 * src/lalr.h, src/lalr.c (goto_number_t): New.
3710 * src/lalr.c (goto_list_t): New.
3711 Propagate them.
3712 * src/nullable.c (rule_list_t): New.
3713 Propagate.
3714 * src/types.h: Remove.
3715
3716 2002-07-03 Akim Demaille <akim@epita.fr>
3717
3718 * src/closure.c (print_fderives): Use rule_rhs_print.
3719 * src/derives.c (print_derives): Use rule_rhs_print.
3720 (rule_list_t): New, replaces `shorts'.
3721 (set_derives): Add comments.
3722 * tests/sets.at (Nullable, Firsts): Adjust.
3723
3724 2002-07-03 Akim Demaille <akim@epita.fr>
3725
3726 * src/output.c (prepare_actions): Free `tally' and `width'.
3727 (prepare_actions): Allocate and free `order'.
3728 * src/symtab.c (symbols_free): Free `symbols'.
3729 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
3730 * src/output.c (m4_invoke): Move to...
3731 * src/scan-skel.l: here.
3732 (<<EOF>>): Close yyout, and free its name.
3733
3734 2002-07-03 Akim Demaille <akim@epita.fr>
3735
3736 Fix some memory leaks, and fix a bug: state 0 was examined twice.
3737
3738 * src/LR0.c (new_state): Merge into...
3739 (state_list_append): this.
3740 (new_states): Merge into...
3741 (generate_states): here.
3742 (set_states): Don't ensure a proper `errs' state member here, do it...
3743 * src/conflicts.c (conflicts_solve): here.
3744 * src/state.h, src/state.c: Comment changes.
3745 (state_t): Rename member `shifts' as `transitions'.
3746 Adjust all dependencies.
3747 (errs_new): For consistency, also take the values as argument.
3748 (errs_dup): Remove.
3749 (state_errs_set): New.
3750 (state_reductions_set, state_transitions_set): Assert that no
3751 previous value was assigned.
3752 (state_free): New.
3753 (states_free): Use it.
3754 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
3755 temporary storage: use `errs' and `nerrs' as elsewhere.
3756 (set_conflicts): Allocate and free this `errs'.
3757
3758 2002-07-02 Akim Demaille <akim@epita.fr>
3759
3760 * lib/libiberty.h: New.
3761 * lib: Update the bitset implementation from upstream.
3762 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
3763 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
3764 * src/main.c: Adjust bitset stats calls.
3765
3766 2002-07-01 Paul Eggert <eggert@twinsun.com>
3767
3768 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
3769 char, so that negative chars don't collide with $.
3770
3771 2002-06-30 Akim Demaille <akim@epita.fr>
3772
3773 Have the GLR tests be `warning' checked, and fix the warnings.
3774
3775 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
3776 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
3777 (yyremoveDeletes): `yyi' and `yyj' are size_t.
3778 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
3779 (yyaddDeferredAction): static.
3780 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
3781 (yyreportParseError): yyprefix is const.
3782 yytokenp is used only when verbose.
3783 (yy__GNUC__): Replace with __GNUC__.
3784 (yypdumpstack): yyi is size_t.
3785 (yypreference): Un-yy local variables and arguments, to avoid
3786 clashes with `yyr1'. Anyway, we are not in the user name space.
3787 (yytname_size): be an int, as is compared with ints.
3788 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
3789 Use them.
3790 * tests/cxx-gram.at: Use quotation to protect $1.
3791 Use AT_COMPILE to enable warnings hunts.
3792 Prototype yylex and yyerror.
3793 `Use' argc.
3794 Include `string.h', not `strings.h'.
3795 Produce and prototype stmtMerge only when used.
3796 yylex takes a location.
3797
3798 2002-06-30 Akim Demaille <akim@epita.fr>
3799
3800 We spend a lot of time in quotearg, in particular when --verbose.
3801
3802 * src/symtab.c (symbol_get): Store a quoted version of the key.
3803 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
3804 Adjust all callers.
3805
3806 2002-06-30 Akim Demaille <akim@epita.fr>
3807
3808 * src/state.h (reductions_t): Rename member `nreds' as num.
3809 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
3810 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
3811
3812 2002-06-30 Akim Demaille <akim@epita.fr>
3813
3814 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
3815 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
3816 (shifts_to): Rename as...
3817 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
3818 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
3819 (TRANSITION_IS_DISABLED, transitions_to): these.
3820
3821 2002-06-30 Akim Demaille <akim@epita.fr>
3822
3823 * src/print.c (print_shifts, print_gotos): Merge into...
3824 (print_transitions): this.
3825 (print_transitions, print_errs, print_reductions): Align the
3826 lookaheads columns.
3827 (print_core, print_transitions, print_errs, print_state,
3828 print_grammar): Output empty lines separator before, not after.
3829 (state_default_rule_compute): Rename as...
3830 (state_default_rule): this.
3831 * tests/conflicts.at (Defaulted Conflicted Reduction),
3832 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
3833 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
3834
3835 2002-06-30 Akim Demaille <akim@epita.fr>
3836
3837 Display items as we display rules.
3838
3839 * src/gram.h, src/gram.c (rule_lhs_print): New.
3840 * src/gram.c (grammar_rules_partial_print): Use it.
3841 * src/print.c (print_core): Likewise.
3842 * tests/conflicts.at (Defaulted Conflicted Reduction),
3843 (Unresolved SR Conflicts): Adjust.
3844 (Unresolved SR Conflicts): Adjust and rename as...
3845 (Resolved SR Conflicts): this, as was meant.
3846 * tests/regression.at (Web2c Report): Adjust.
3847
3848 2002-06-30 Akim Demaille <akim@epita.fr>
3849
3850 * src/print.c (state_default_rule_compute): New, extracted from...
3851 (print_reductions): here.
3852 Pessimize, but clarify the code.
3853 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
3854
3855 2002-06-30 Akim Demaille <akim@epita.fr>
3856
3857 * src/output.c (action_row): Let default_rule be always a rule
3858 number.
3859
3860 2002-06-30 Akim Demaille <akim@epita.fr>
3861
3862 * src/closure.c (print_firsts, print_fderives, closure):
3863 Use BITSET_EXECUTE.
3864 * src/lalr.c (lookaheads_print): Likewise.
3865 * src/state.c (state_rule_lookaheads_print): Likewise.
3866 * src/print_graph.c (print_core): Likewise.
3867 * src/print.c (print_reductions): Likewise.
3868 * src/output.c (action_row): Likewise.
3869 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
3870
3871 2002-06-30 Akim Demaille <akim@epita.fr>
3872
3873 * src/print_graph.c: Use report_flag.
3874
3875 2002-06-30 Akim Demaille <akim@epita.fr>
3876
3877 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
3878 to...
3879 * src/relation.h, src/relation.c (traverse, relation_digraph)
3880 (relation_print, relation_transpose): New.
3881
3882 2002-06-30 Akim Demaille <akim@epita.fr>
3883
3884 * src/state.h, src/state.c (shifts_to): New.
3885 * src/lalr.c (build_relations): Use it.
3886
3887 2002-06-30 Akim Demaille <akim@epita.fr>
3888
3889 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
3890 (item_number_of_rule_number, rule_number_of_item_number): New.
3891 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
3892 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
3893 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
3894 Propagate their use.
3895 Much remains to be done, in particular wrt `shorts' from types.h.
3896
3897 2002-06-30 Akim Demaille <akim@epita.fr>
3898
3899 * src/symtab.c (symbol_new): Initialize the `printer' member.
3900
3901 2002-06-30 Akim Demaille <akim@epita.fr>
3902
3903 * src/LR0.c (save_reductions): Remove, replaced by...
3904 * src/state.h, src/state.c (state_reductions_set): New.
3905 (reductions, errs): Rename as...
3906 (reductions_t, errs_t): these.
3907 Adjust all dependencies.
3908
3909 2002-06-30 Akim Demaille <akim@epita.fr>
3910
3911 * src/LR0.c (state_list_t, state_list_append): New.
3912 (first_state, last_state): Now symbol_list_t.
3913 (this_state): Remove.
3914 (new_itemsets, append_states, save_reductions): Take a state_t as
3915 argument.
3916 (set_states, generate_states): Adjust.
3917 (save_shifts): Remove, replaced by...
3918 * src/state.h, src/state.c (state_shifts_set): New.
3919 (shifts): Rename as...
3920 (shifts_t): this.
3921 Adjust all dependencies.
3922 * src/state.h (state_t): Remove the `next' member.
3923
3924 2002-06-30 Akim Demaille <akim@epita.fr>
3925
3926 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
3927 escaped in slot 0.
3928
3929 2002-06-30 Akim Demaille <akim@epita.fr>
3930
3931 Use hash.h for the state hash table.
3932
3933 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
3934 (allocate_storage): Use state_hash_new.
3935 (free_storage): Use state_hash_free.
3936 (new_state, get_state): Adjust.
3937 * src/lalr.h, src/lalr.c (states): Move to...
3938 * src/states.h (state_t): Remove the `link' member, no longer
3939 used.
3940 * src/states.h, src/states.c: here.
3941 (state_hash_new, state_hash_free, state_hash_lookup)
3942 (state_hash_insert, states_free): New.
3943 * src/states.c (state_table, state_compare, state_hash): New.
3944 * src/output.c (output_actions): Do not free states now, since we
3945 still need to know the final_state number in `prepare', called
3946 afterwards. Do it...
3947 * src/main.c (main): here: call states_free after `output'.
3948
3949 2002-06-30 Akim Demaille <akim@epita.fr>
3950
3951 * src/state.h, src/state.c (state_new): New, extracted from...
3952 * src/LR0.c (new_state): here.
3953 * src/state.h (STATE_ALLOC): Move to...
3954 * src/state.c: here.
3955 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
3956 * src/state.h, src/state.c: here.
3957
3958 2002-06-30 Akim Demaille <akim@epita.fr>
3959
3960 * src/reader.c (gensym): Rename as...
3961 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
3962 (getsym): Rename as...
3963 (symbol_get): this.
3964
3965 2002-06-30 Akim Demaille <akim@epita.fr>
3966
3967 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
3968 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
3969 * src/output.c, src/print.c, src/print_graph.c: Propagate.
3970 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
3971
3972 2002-06-30 Akim Demaille <akim@epita.fr>
3973
3974 Make the test suite pass with warnings checked.
3975
3976 * tests/actions.at (Printers and Destructors): Improve.
3977 Avoid unsigned vs. signed issues.
3978 * tests/calc.at: Don't exercise the scanner here, do it...
3979 * tests/input.at (Torturing the Scanner): here.
3980
3981 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3982
3983 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
3984 reorganize first lines parallel to yacc.c.
3985
3986 2002-06-28 Akim Demaille <akim@epita.fr>
3987
3988 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
3989 (b4_token_enum, b4_token_defines): New, factored from...
3990 * data/lalr1.cc, data/yacc.c, glr.c: here.
3991
3992 2002-06-28 Akim Demaille <akim@epita.fr>
3993
3994 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
3995 unused variables.
3996 * src/output.c (merger_output): static.
3997
3998 2002-06-28 Akim Demaille <akim@epita.fr>
3999
4000 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
4001 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
4002 pacify GCC.
4003 * src/output.c (save_row): Initialize all the variables to pacify GCC.
4004
4005 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4006
4007 Accumulated changelog for new GLR parsing features.
4008
4009 * src/conflicts.c (count_total_conflicts): Change name to
4010 conflicts_total_count.
4011 * src/conflicts.h: Ditto.
4012 * src/output.c (token_actions): Use the new name.
4013 (output_conflicts): Change conflp => conflict_list_heads, and
4014 confl => conflict_list for better readability.
4015 * data/glr.c: Use the new names.
4016 * NEWS: Add self to GLR announcement.
4017
4018 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
4019
4020 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
4021 Akim Demaille.
4022
4023 * data/bison.glr: Change name to glr.c
4024 * data/glr.c: Renamed from bison.glr.
4025 * data/Makefile.am: Add glr.c
4026
4027 * src/getargs.c:
4028
4029 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
4030 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
4031
4032 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4033
4034 * data/bison.glr: Be sure to restore the
4035 current #line when returning to the skeleton contents after having
4036 exposed the input file's #line.
4037
4038 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4039
4040 * data/bison.glr: Bring up to date with changes to bison.simple.
4041
4042 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4043
4044 * data/bison.glr: Correct definitions that use b4_prefix.
4045 Various reformatting.
4046 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
4047 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
4048 yytokenp argument; now part of stack.
4049 (yychar): Define to behave as documented.
4050 (yyclearin): Ditto.
4051
4052 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4053
4054 * src/reader.h: Add declaration for free_merger_functions.
4055
4056 * src/reader.c (merge_functions): New variable.
4057 (get_merge_function): New function.
4058 (free_merger_functions): New function.
4059 (readgram): Check for %prec that is not followed by a symbol.
4060 Handle %dprec and %merge declarations.
4061 (packgram): Initialize dprec and merger fields in rules array.
4062
4063 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
4064 conflict_list_cnt, conflict_list_free): New variables.
4065 (table_grow): Also grow conflict_table.
4066 (prepare_rules): Output dprec and merger tables.
4067 (conflict_row): New function.
4068 (action_row): Output conflict lists for GLR parser. Don't use
4069 default reduction in conflicted states for GLR parser so that there
4070 are spaces for the conflict lists.
4071 (save_row): Also save conflict information.
4072 (token_actions): Allocate conflict list.
4073 (merger_output): New function.
4074 (pack_vector): Pack conflict table, too.
4075 (output_conflicts): New function to output yyconflp and yyconfl.
4076 (output_check): Allocate conflict_tos.
4077 (output_actions): Output conflict tables, also.
4078 (output_skeleton): Output b4_mergers definition.
4079 (prepare): Output b4_max_rhs_length definition.
4080 Use 'bison.glr' as default skeleton for GLR parsers.
4081
4082 * src/gram.c (glr_parser): New flag.
4083 (grammar_free): Call free_merger_functions.
4084
4085 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
4086 all pairs of conflicting reductions, rather than just all tokens
4087 causing conflicts. Needed to size conflict tables.
4088 (conflicts_output): Modify call to count_rr_conflicts for new
4089 interface.
4090 (conflicts_print): Ditto.
4091 (count_total_conflicts): New function.
4092
4093 * src/reader.h (merger_list): New type.
4094 (merge_functions): New variable.
4095
4096 * src/lex.h (tok_dprec, tok_merge): New token types.
4097
4098 * src/gram.h (rule_s): Add dprec and merger fields.
4099 (glr_parser): New flag.
4100
4101 * src/conflicts.h (count_total_conflicts): New function.
4102
4103 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
4104
4105 * doc/bison.texinfo (Generalized LR Parsing): New section.
4106 (GLR Parsers): New section.
4107 (Language and Grammar): Mention GLR parsing.
4108 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
4109 Correct typo ("tge" -> "the").
4110
4111 * data/bison.glr: New skeleton for GLR parsing.
4112
4113 * tests/cxx-gram.at: New tests for GLR parsing.
4114
4115 * tests/testsuite.at: Include cxx-gram.at.
4116
4117 * tests/Makefile.am: Add cxx-gram.at.
4118
4119 * src/parse-gram.y:
4120
4121 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
4122
4123 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
4124
4125 2002-06-27 Akim Demaille <akim@epita.fr>
4126
4127 * src/options.h, src/options.c: Remove.
4128 * src/getargs.c (short_options, long_options): New.
4129
4130 2002-06-27 Akim Demaille <akim@epita.fr>
4131
4132 * data/bison.simple, data/bison.c++: Rename as...
4133 * data/yacc.c, data/lalr1.cc: these.
4134 * doc/bison.texinfo (Environment Variables): Remove.
4135
4136 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
4137
4138 * src/getargs.c (report_argmatch): Initialize strtok().
4139
4140 2002-06-20 Akim Demaille <akim@epita.fr>
4141
4142 * data/bison.simple (b4_symbol_actions): New, replaces...
4143 (b4_symbol_destructor, b4_symbol_printer): these.
4144 (yysymprint): Be sure to call YYPRINT only for tokens, and using
4145 user token numbers.
4146
4147 2002-06-20 Akim Demaille <akim@epita.fr>
4148
4149 * data/bison.simple (yydestructor): Rename as...
4150 (yydestruct): this.
4151
4152 2002-06-20 Akim Demaille <akim@epita.fr>
4153
4154 * src/symtab.h, src/symtab.c (symbol_type_set)
4155 (symbol_destructor_set, symbol_precedence_set): The location is
4156 the last argument.
4157 Adjust all callers.
4158
4159 2002-06-20 Akim Demaille <akim@epita.fr>
4160
4161 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
4162 internals.
4163 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
4164 Takes a location.
4165 * src/symtab.h, src/symtab.c (symbol_class_set)
4166 (symbol_user_token_number_set): Likewise.
4167 Adjust all callers.
4168 Promote complain_at.
4169 * tests/input.at (Type Clashes): Adjust.
4170
4171 2002-06-20 Akim Demaille <akim@epita.fr>
4172
4173 * data/bison.simple (YYLEX): Fix the declaration when
4174 %pure-parser.
4175
4176 2002-06-20 Akim Demaille <akim@epita.fr>
4177
4178 * data/bison.simple (yysymprint): Don't print the token number,
4179 just its name.
4180 * tests/actions.at (Destructors): Rename as...
4181 (Printers and Destructors): this.
4182 Also exercise %printer.
4183
4184 2002-06-20 Akim Demaille <akim@epita.fr>
4185
4186 * data/bison.simple (YYDSYMPRINT): New.
4187 Use it to remove many of the #if YYDEBUG/if (yydebug).
4188
4189 2002-06-20 Akim Demaille <akim@epita.fr>
4190
4191 * src/symtab.h, src/symtab.c (symbol_t): printer and
4192 printer_location are new members.
4193 (symbol_printer_set): New.
4194 * src/parse-gram.y (PERCENT_PRINTER): New token.
4195 Handle its associated rule.
4196 * src/scan-gram.l: Adjust.
4197 (handle_destructor_at, handle_destructor_dollar): Rename as...
4198 (handle_symbol_code_at, handle_symbol_code_dollar): these.
4199 * src/output.c (symbol_printers_output): New.
4200 (output_skeleton): Call it.
4201 * data/bison.simple (yysymprint): New. Cannot be named yyprint
4202 since there are already many grammar files with a user `yyprint'.
4203 Replace the calls to YYPRINT to calls to yysymprint.
4204 * tests/calc.at: Adjust.
4205 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
4206 taking advantage of parser very internal details (stack size!).
4207
4208 2002-06-20 Akim Demaille <akim@epita.fr>
4209
4210 * src/scan-gram.l: Complete the scanner with the missing patterns
4211 to pacify Flex.
4212 Use `quote' and `symbol_tag_get' where appropriate.
4213
4214 2002-06-19 Akim Demaille <akim@epita.fr>
4215
4216 * tests/actions.at (Destructors): Augment to test locations.
4217 * data/bison.simple (yydestructor): Pass it the current location
4218 if locations are enabled.
4219 Prototype only when __STDC__ or C++.
4220 Change the argument names to move into the yy name space: there is
4221 user code here.
4222
4223 2002-06-19 Akim Demaille <akim@epita.fr>
4224
4225 * data/bison.simple (b4_pure_if): New.
4226 Use it instead of #ifdef YYPURE.
4227
4228 2002-06-19 Akim Demaille <akim@epita.fr>
4229
4230 * data/bison.simple (b4_location_if): New.
4231 Use it instead of #ifdef YYLSP_NEEDED.
4232
4233 2002-06-19 Akim Demaille <akim@epita.fr>
4234
4235 Prepare @$ in %destructor, but currently don't bind it in the
4236 skeleton, as %location use is not cleaned up yet.
4237
4238 * src/scan-gram.l (handle_dollar, handle_destructor_at)
4239 (handle_action_at): New.
4240 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
4241 a braced_code_t and a location as additional arguments.
4242 (handle_destructor_dollar): Instead of requiring `b4_eval', just
4243 unquote one when outputting `b4_dollar_dollar'.
4244 Adjust callers.
4245 * data/bison.simple (b4_eval): Remove.
4246 (b4_symbol_destructor): Adjust.
4247 * tests/input.at (Invalid @n): Adjust.
4248
4249 2002-06-19 Zack Weinberg <zack@codesourcery.com>
4250
4251 * doc/bison.texinfo: Document ability to have multiple
4252 prologue sections.
4253
4254 2002-06-18 Akim Demaille <akim@epita.fr>
4255
4256 * src/files.c (compute_base_names): When computing the output file
4257 names from the input file name, strip the directory part.
4258
4259 2002-06-18 Akim Demaille <akim@epita.fr>
4260
4261 * data/bison.simple.new: Comment changes.
4262 Reported by Andreas Schwab.
4263
4264 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
4265
4266 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
4267 there are no `label `yyoverflowlab' defined but not used' warnings
4268 when yyoverflow is defined.
4269
4270 2002-06-18 Akim Demaille <akim@epita.fr>
4271
4272 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
4273 new member.
4274 (symbol_destructor_set): Adjust.
4275 * src/output.c (symbol_destructors_output): Output the destructor
4276 locations.
4277 Output the symbol name.
4278 * data/bison.simple (b4_symbol_destructor): Adjust.
4279
4280 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
4281 and Akim Demaille <akim@epita.fr>
4282
4283 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
4284 what's left on the stack when the error recovery hits EOF.
4285 * tests/actions.at (Destructors): Complete to exercise this case.
4286
4287 2002-06-17 Akim Demaille <akim@epita.fr>
4288
4289 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
4290 arguments is really empty, not only equal to `[]'.
4291 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
4292 member.
4293 (symbol_destructor_set): New.
4294 * src/output.c (symbol_destructors_output): New.
4295 * src/reader.h (brace_code_t, current_braced_code): New.
4296 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
4297 (handle_dollar): Rename as...
4298 (handle_action_dollar): this.
4299 (handle_destructor_dollar): New.
4300 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
4301 (grammar_declaration): Use it.
4302 * data/bison.simple (yystos): Is always defined.
4303 (yydestructor): New.
4304 * tests/actions.at (Destructors): New.
4305 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
4306
4307 2002-06-17 Akim Demaille <akim@epita.fr>
4308
4309 * src/symlist.h, src/symlist.c (symbol_list_length): New.
4310 * src/scan-gram.l (handle_dollar, handle_at): Compute the
4311 rule_length only when needed.
4312 * src/output.c (actions_output, token_definitions_output): Output
4313 the full M4 block.
4314 * src/symtab.c: Don't access directly to the symbol tag, use
4315 symbol_tag_get.
4316 * src/parse-gram.y: Use symbol_list_free.
4317
4318 2002-06-17 Akim Demaille <akim@epita.fr>
4319
4320 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
4321 (symbol_list_prepend, get_type_name): Move to...
4322 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
4323 (symbol_list_prepend, symbol_list_n_type_name_get): here.
4324 Adjust all callers.
4325 (symbol_list_free): New.
4326 * src/scan-gram.l (handle_dollar): Takes a location.
4327 * tests/input.at (Invalid $n): Adjust.
4328
4329 2002-06-17 Akim Demaille <akim@epita.fr>
4330
4331 * src/reader.h, src/reader.c (symbol_list_new): Export it.
4332 (symbol_list_prepend): New.
4333 * src/parse-gram.y (%union): `list' is a new member.
4334 (symbols.1): New, replaces...
4335 (terms_to_prec.1, nterms_to_type.1): these.
4336 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
4337 Take a location as additional argument.
4338 Adjust all callers.
4339
4340 2002-06-15 Akim Demaille <akim@epita.fr>
4341
4342 * src/parse-gram.y: Move %token in the declaration section so that
4343 we don't depend upon CVS Bison.
4344
4345 2002-06-15 Akim Demaille <akim@epita.fr>
4346
4347 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
4348 * src/print.c (print_core): Use it.
4349
4350 2002-06-15 Akim Demaille <akim@epita.fr>
4351
4352 * src/conflicts.c (log_resolution): Accept the rule involved in
4353 the sr conflicts instead of the lookahead number that points to
4354 that rule.
4355 (flush_reduce): Accept the current lookahead vector as argument,
4356 instead of the index in LA.
4357 (resolve_sr_conflict): Accept the current number of lookahead
4358 bitset to consider for the STATE, instead of the index in LA.
4359 (set_conflicts): Adjust.
4360 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
4361
4362 2002-06-15 Akim Demaille <akim@epita.fr>
4363
4364 * src/state.h (state_t): Replace the `lookaheadsp' member, a
4365 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
4366 Adjust all dependencies.
4367 * src/lalr.c (initialize_lookaheads): Split into...
4368 (states_lookaheads_count, states_lookaheads_initialize): these.
4369 (lalr): Adjust.
4370
4371 2002-06-15 Akim Demaille <akim@epita.fr>
4372
4373 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
4374 out of...
4375 (grammar_rules_print): here.
4376 * src/reduce.c (reduce_output): Use it.
4377 * tests/reduce.at (Useless Rules, Reduced Automaton)
4378 (Underivable Rules): Adjust.
4379
4380 2002-06-15 Akim Demaille <akim@epita.fr>
4381
4382 Copy BYacc's nice way to report the grammar.
4383
4384 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
4385 New.
4386 Don't print the rules' location, it is confusing and useless.
4387 (rule_print): Use grammar_rhs_print.
4388 * src/print.c (print_grammar): Use grammar_rules_print.
4389
4390 2002-06-15 Akim Demaille <akim@epita.fr>
4391
4392 Complete and rationalize `useless thing' warnings.
4393
4394 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
4395 (symbol_tag_print): New.
4396 Use them everywhere in place of accessing directly the tag member.
4397 * src/gram.h, src/gram.c (rule_print): New.
4398 Use it where a rule used to be printed `by hand'.
4399 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
4400 (reduce_grammar_tables): Report the useless rules.
4401 (reduce_print): Useless things are a warning, not an error.
4402 Report it as such.
4403 * tests/reduce.at (Useless Nonterminals, Useless Rules):
4404 (Reduced Automaton, Underivable Rules): Adjust.
4405 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
4406 * tests/conflicts.at (Unresolved SR Conflicts)
4407 (Solved SR Conflicts): Adjust.
4408
4409 2002-06-15 Akim Demaille <akim@epita.fr>
4410
4411 Let symbols have a location.
4412
4413 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
4414 (getsym): Adjust.
4415 Adjust all callers.
4416 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
4417 Use location_t, not int.
4418 * src/symtab.c (symbol_check_defined): Take advantage of the
4419 location.
4420 * tests/regression.at (Invalid inputs): Adjust.
4421
4422 2002-06-15 Akim Demaille <akim@epita.fr>
4423
4424 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
4425 (input): Don't try to initialize yylloc here, do it in the
4426 scanner.
4427 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
4428 * src/gram.h (rule_t): Change line and action_line into location
4429 and action_location, of location_t type.
4430 Adjust all dependencies.
4431 * src/location.h, src/location.c (empty_location): New.
4432 * src/reader.h, src/reader.c (grammar_start_symbol_set)
4433 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
4434 (grammar_current_rule_symbol_append)
4435 (grammar_current_rule_action_append): Expect a location as argument.
4436 * src/reader.c (grammar_midrule_action): Adjust to attach an
4437 action's location as dummy symbol location.
4438 * src/symtab.h, src/symtab.c (startsymbol_location): New.
4439 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
4440 the line numbers.
4441
4442 2002-06-14 Akim Demaille <akim@epita.fr>
4443
4444 Grammar declarations may be found in the grammar section.
4445
4446 * src/parse-gram.y (rules_or_grammar_declaration): New.
4447 (declarations): Each declaration may end with a semicolon, not
4448 just...
4449 (grammar_declaration): `"%union"'.
4450 (grammar): Branch to rules_or_grammar_declaration.
4451
4452 2002-06-14 Akim Demaille <akim@epita.fr>
4453
4454 * src/main.c (main): Invoke scanner_free.
4455
4456 2002-06-14 Akim Demaille <akim@epita.fr>
4457
4458 * src/output.c (m4_invoke): Extracted from...
4459 (output_skeleton): here.
4460 Free tempfile.
4461
4462 2002-06-14 Akim Demaille <akim@epita.fr>
4463
4464 * src/parse-gram.y (directives, directive, gram)
4465 (grammar_directives, precedence_directives, precedence_directive):
4466 Rename as...
4467 (declarations, declaration, grammar, grammar_declaration)
4468 (precedence_declaration, precedence_declarator): these.
4469 (symbol_declaration): New.
4470
4471 2002-06-14 Akim Demaille <akim@epita.fr>
4472
4473 * src/files.c (action_obstack): Remove, unused.
4474 (output_obstack): Remove it, and all its dependencies, as it is no
4475 longer needed.
4476 * src/reader.c (epilogue_set): Build the epilogue in the
4477 muscle_obstack.
4478 * src/output.h, src/output.c (muscle_obstack): Move to...
4479 * src/muscle_tab.h, src/muscle_tab.h: here.
4480 (muscle_init): Initialize muscle_obstack.
4481 (muscle_free): New.
4482 * src/main.c (main): Call it.
4483
4484 2002-06-14 Akim Demaille <akim@epita.fr>
4485
4486 * src/location.h: New, extracted from...
4487 * src/reader.h: here.
4488 * src/Makefile.am (noinst_HEADERS): Merge into
4489 (bison_SOURCES): this.
4490 Add location.h.
4491 * src/parse-gram.y: Use location_t instead of Bison's.
4492 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
4493 Use location_t instead of ints.
4494
4495 2002-06-14 Akim Demaille <akim@epita.fr>
4496
4497 * data/bison.simple, data/bison.c++: Be sure to restore the
4498 current #line when returning to the skeleton contents after having
4499 exposed the input file's #line.
4500
4501 2002-06-12 Akim Demaille <akim@epita.fr>
4502
4503 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
4504 eager.
4505 * tests/actions.at (Exotic Dollars): New.
4506
4507 2002-06-12 Akim Demaille <akim@epita.fr>
4508
4509 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
4510 ['"/] too eagerly.
4511 * tests/input.at (Torturing the Scanner): New.
4512
4513 2002-06-11 Akim Demaille <akim@epita.fr>
4514
4515 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
4516 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
4517 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
4518 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
4519 * src/reader.c (reader): Use it.
4520
4521 2002-06-11 Akim Demaille <akim@epita.fr>
4522
4523 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
4524 Adjust all callers.
4525 (scanner_last_string_free): New.
4526
4527 2002-06-11 Akim Demaille <akim@epita.fr>
4528
4529 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
4530 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
4531 (last_string, YY_OBS_FREE): New.
4532 Use them when returning an ID.
4533
4534 2002-06-11 Akim Demaille <akim@epita.fr>
4535
4536 Have Bison grammars parsed by a Bison grammar.
4537
4538 * src/reader.c, src/reader.h (prologue_augment): New.
4539 * src/reader.c (copy_definition): Remove.
4540
4541 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
4542 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
4543 (grammar_current_rule_prec_set, grammar_current_rule_check)
4544 (grammar_current_rule_symbol_append)
4545 (grammar_current_rule_action_append): Export.
4546 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
4547 (symbol_list_action_append): Remove.
4548 Hook the routines from reader.
4549 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
4550 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
4551
4552 * src/reader.c (read_declarations): Remove, unused.
4553
4554 * src/parse-gram.y: Handle the epilogue.
4555 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
4556 (grammar_start_symbol_set): this.
4557 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
4558 * src/reader.c (readgram): Remove, unused.
4559 (reader): Adjust to insert eoftoken and axiom where appropriate.
4560
4561 * src/reader.c (copy_dollar): Replace with...
4562 * src/scan-gram.h (handle_dollar): this.
4563 * src/parse-gram.y: Remove `%thong'.
4564
4565 * src/reader.c (copy_at): Replace with...
4566 * src/scan-gram.h (handle_at): this.
4567
4568 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
4569 New.
4570
4571 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
4572 time being.
4573
4574 * src/reader.h, src/reader.c (grammar_rule_end): New.
4575
4576 * src/parse.y (current_type, current_class): New.
4577 Implement `%nterm', `%token' support.
4578 Merge `%term' into `%token'.
4579 (string_as_id): New.
4580 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
4581 type name.
4582
4583 * src/parse-gram.y: Be sure to handle properly the beginning of
4584 rules.
4585
4586 * src/parse-gram.y: Handle %type.
4587 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
4588
4589 * src/parse-gram.y: More directives support.
4590 * src/options.c: No longer handle source directives.
4591
4592 * src/parse-gram.y: Fix %output.
4593
4594 * src/parse-gram.y: Handle %union.
4595 Use the prologue locations.
4596 * src/reader.c (parse_union_decl): Remove.
4597
4598 * src/reader.h, src/reader.c (epilogue_set): New.
4599 * src/parse-gram.y: Use it.
4600
4601 * data/bison.simple, data/bison.c++: b4_stype is now either not
4602 defined, then default to int, or to the contents of %union,
4603 without `union' itself.
4604 Adjust.
4605 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
4606
4607 * src/output.c (actions_output): Don't output braces, as they are
4608 already handled by the scanner.
4609
4610 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
4611 characters to themselves.
4612
4613 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
4614 that the epilogue has a proper #line.
4615
4616 * src/parse-gram.y: Handle precedence/associativity.
4617
4618 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
4619 a terminal.
4620 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
4621 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
4622 at all to define terminals that cannot be emitted.
4623
4624 * src/scan-gram.l: Escape M4 characters.
4625
4626 * src/scan-gram.l: Working properly with escapes in user
4627 strings/characters.
4628
4629 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
4630 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
4631 grammar.
4632 Use more modest sizes, as for the time being the parser does not
4633 release memory, and therefore the process swallows a huge amount
4634 of memory.
4635
4636 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
4637 stricter %token grammar.
4638
4639 * src/symtab.h (associativity): Add `undef_assoc'.
4640 (symbol_precedence_set): Do nothing when passed an undef_assoc.
4641 * src/symtab.c (symbol_check_alias_consistence): Adjust.
4642
4643 * tests/regression.at (Invalid %directive): Remove, as it is now
4644 meaningless.
4645 (Invalid inputs): Adjust to the new error messages.
4646 (Token definitions): The new grammar doesn't allow too many
4647 eccentricities.
4648
4649 * src/lex.h, src/lex.c: Remove.
4650 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
4651 (copy_character, copy_string2, copy_string, copy_identifier)
4652 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
4653 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
4654 (parse_action): Remove.
4655 * po/POTFILES.in: Adjust.
4656
4657 2002-06-11 Akim Demaille <akim@epita.fr>
4658
4659 * src/reader.c (parse_action): Don't store directly into the
4660 rule's action member: return the action as a string.
4661 Don't require `rule_length' as an argument: compute it.
4662 (grammar_current_rule_symbol_append)
4663 (grammar_current_rule_action_append): New, eved out from
4664 (readgram): here.
4665 Remove `action_flag', `rulelength', unused now.
4666
4667 2002-06-11 Akim Demaille <akim@epita.fr>
4668
4669 * src/reader.c (grammar_current_rule_prec_set).
4670 (grammar_current_rule_check): New, eved out from...
4671 (readgram): here.
4672 Remove `xaction', `first_rhs': useless.
4673 * tests/input.at (Type clashes): New.
4674 * tests/existing.at (GNU Cim Grammar): Adjust.
4675
4676 2002-06-11 Akim Demaille <akim@epita.fr>
4677
4678 * src/reader.c (grammar_midrule_action): New, Eved out from
4679 (readgram): here.
4680
4681 2002-06-11 Akim Demaille <akim@epita.fr>
4682
4683 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
4684 New.
4685 (readgram): Use them as replacement of inlined code, crule and
4686 crule1.
4687
4688 2002-06-11 Akim Demaille <akim@epita.fr>
4689
4690 * src/reader.c (grammar_end, grammar_symbol_append): New.
4691 (readgram): Use them.
4692 Make the use of `p' as local as possible.
4693
4694 2002-06-10 Akim Demaille <akim@epita.fr>
4695
4696 GCJ's parser requires the tokens to be defined before the prologue.
4697
4698 * data/bison.simple: Output the token definition before the user's
4699 prologue.
4700 * tests/regression.at (Braces parsing, Duplicate string)
4701 (Mixing %token styles): Check the output from bison.
4702 (Early token definitions): New.
4703
4704 2002-06-10 Akim Demaille <akim@epita.fr>
4705
4706 * src/symtab.c (symbol_user_token_number_set): Don't complain when
4707 assigning twice the same user number to a token, so that we can
4708 use it in...
4709 * src/lex.c (lex): here.
4710 Also use `symbol_class_set' instead of hand written code.
4711 * src/reader.c (parse_assoc_decl): Likewise.
4712
4713 2002-06-10 Akim Demaille <akim@epita.fr>
4714
4715 * src/symtab.c, src/symtab.c (symbol_class_set)
4716 (symbol_user_token_number_set): New.
4717 * src/reader.c (parse_token_decl): Use them.
4718 Use a switch instead of ifs.
4719 Use a single argument.
4720
4721 2002-06-10 Akim Demaille <akim@epita.fr>
4722
4723 Remove `%thong' support as it is undocumented, unused, duplicates
4724 `%token's job, and creates useless e-mail traffic with people who
4725 want to know what it is, why it is undocumented, unused, and
4726 duplicates `%token's job.
4727
4728 * src/reader.c (parse_thong_decl): Remove.
4729 * src/options.c (option_table): Remove "thong".
4730 * src/lex.h (tok_thong): Remove.
4731
4732 2002-06-10 Akim Demaille <akim@epita.fr>
4733
4734 * src/symtab.c, src/symtab.c (symbol_type_set)
4735 (symbol_precedence_set): New.
4736 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
4737 (value_components_used): Remove, unused.
4738
4739 2002-06-09 Akim Demaille <akim@epita.fr>
4740
4741 Move symbols handling code out of the reader.
4742
4743 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
4744 (axiom): Move to...
4745 * src/symtab.h, src/symtab.c: here.
4746
4747 * src/gram.c (start_symbol): Remove: use startsymbol->number.
4748 * src/reader.c (startval): Rename as...
4749 * src/symtab.h, src/symtab.c (startsymbol): this.
4750 * src/reader.c: Adjust.
4751
4752 * src/reader.c (symbol_check_defined, symbol_make_alias)
4753 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
4754 (token_translations_init)
4755 Move to...
4756 * src/symtab.c: here.
4757 * src/reader.c (packsymbols): Move to...
4758 * src/symtab.h, src/symtab.c (symbols_pack): here.
4759 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
4760 argument.
4761
4762 2002-06-03 Akim Demaille <akim@epita.fr>
4763
4764 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
4765 then statements.
4766
4767 2002-06-03 Akim Demaille <akim@epita.fr>
4768
4769 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
4770 structs with non literals.
4771 * src/scan-skel.l: never-interactive.
4772 * src/conflicts.c (enum conflict_resolution_e): No trailing
4773 comma.
4774 * src/getargs.c (usage): Split long literal strings.
4775 Reported by Hans Aberg.
4776
4777 2002-05-28 Akim Demaille <akim@epita.fr>
4778
4779 * data/bison.c++: Use C++ ostreams.
4780 (cdebug_): New member.
4781
4782 2002-05-28 Akim Demaille <akim@epita.fr>
4783
4784 * src/output.c (output_skeleton): Be sure to allocate enough room
4785 for `/' _and_ for `\0' in full_skeleton.
4786
4787 2002-05-28 Akim Demaille <akim@epita.fr>
4788
4789 * data/bison.c++: Catch up with bison.simple:
4790 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4791 and Paul Eggert <eggert@twinsun.com>: `error' handing.
4792 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
4793 and popping traces.
4794
4795 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4796
4797 * src/output.c (output_skeleton): Put an explicit path in front of
4798 the skeleton file name, rather than relying on the -I directory,
4799 to partially alleviate effects of having a skeleton file lying around
4800 in the current directory.
4801
4802 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4803
4804 * src/conflicts.c (log_resolution): Correct typo:
4805 obstack_printf should be obstack_fgrow1.
4806
4807 2002-05-26 Akim Demaille <akim@epita.fr>
4808
4809 * src/state.h (state_t): `solved_conflicts' is a new member.
4810 * src/LR0.c (new_state): Set it to 0.
4811 * src/conflicts.h, src/conflicts.c (print_conflicts)
4812 (free_conflicts, solve_conflicts): Rename as...
4813 (conflicts_print, conflicts_free, conflicts_solve): these.
4814 Adjust callers.
4815 * src/conflicts.c (enum conflict_resolution_e)
4816 (solved_conflicts_obstack): New, used by...
4817 (log_resolution): this.
4818 Adjust to attach the conflict resolution to each state.
4819 Complete the description with the precedence/associativity
4820 information.
4821 (resolve_sr_conflict): Adjust.
4822 * src/print.c (print_state): Output its solved_conflicts.
4823 * tests/conflicts.at (Unresolved SR Conflicts)
4824 (Solved SR Conflicts): Exercise --report=all.
4825
4826 2002-05-26 Akim Demaille <akim@epita.fr>
4827
4828 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
4829 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
4830 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
4831 (token_number_t, item_number_as_token_number)
4832 (token_number_as_item_number, muscle_insert_token_number_table):
4833 Rename as...
4834 (symbol_number_t, item_number_as_symbol_number)
4835 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
4836 these, since it is more appropriate.
4837
4838 2002-05-26 Akim Demaille <akim@epita.fr>
4839
4840 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
4841 `Error:' lines.
4842 * data/bison.simple (yystos) [YYDEBUG]: New.
4843 (yyparse) [YYDEBUG]: Display the symbols which are popped during
4844 error recovery.
4845 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
4846
4847 2002-05-25 Akim Demaille <akim@epita.fr>
4848
4849 * doc/bison.texinfo (Debugging): Split into...
4850 (Tracing): this new section, its former contents, and...
4851 (Understanding): this new section.
4852 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
4853 by...
4854 (report_flag): this.
4855 Adjust all dependencies.
4856 (report_args, report_types, report_argmatch): New.
4857 (usage, getargs): Report/support -r, --report.
4858 * src/options.h
4859 (struct option_table_struct): Rename as..,
4860 (struct option_table_s): this.
4861 Rename the `set_flag' member to `flag' to match with getopt_long's
4862 struct.
4863 * src/options.c (option_table): Split verbose into an entry for
4864 %verbose, and another for --verbose.
4865 Support --report/-r, so remove -r from the obsolete --raw.
4866 * src/print.c: Attach full item sets and lookaheads reports to
4867 report_flag instead of trace_flag.
4868 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
4869
4870 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4871 and Paul Eggert <eggert@twinsun.com>
4872
4873 * data/bison.simple (yyparse): Correct error handling to conform to
4874 POSIX and yacc. Specifically, after syntax error is discovered,
4875 do not reduce further before shifting the error token.
4876 Clean up the code a bit by removing the labels yyerrdefault,
4877 yyerrhandle, yyerrpop.
4878 * NEWS: Document the above.
4879
4880 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4881
4882 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
4883 type; it isn't always big enough, since it doesn't necessarily
4884 include non-terminals.
4885 (yytranslate): Expand definition of yy_token_number_type, so that
4886 the latter can be removed.
4887 (yy_token_number_type): Remove, only one use.
4888 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
4889 don't use TokenNumberType as element type.
4890
4891 * tests/regression.at: Modify expected output to agree with change
4892 to yyr1 and yytranslate.
4893
4894 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
4895
4896 * src/reader.c (parse_action): Use copy_character instead of
4897 obstack_1grow.
4898
4899 2002-05-13 Akim Demaille <akim@epita.fr>
4900
4901 * tests/regression.at (Token definitions): Prototype yylex and
4902 yyerror.
4903
4904 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4905
4906 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
4907 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
4908 32-bit arithmetic.
4909 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
4910
4911 2002-05-07 Akim Demaille <akim@epita.fr>
4912
4913 * tests/synclines.at: Be sure to prototype yylex and yyerror to
4914 avoid GCC warnings.
4915
4916 2002-05-07 Akim Demaille <akim@epita.fr>
4917
4918 Kill GCC warnings.
4919
4920 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
4921 over the RHS of each rule.
4922 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
4923 * src/state.h (state_t): Member `nitems' is unsigned short.
4924 * src/LR0.c (get_state): Adjust.
4925 * src/reader.c (packgram): Likewise.
4926 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
4927 `Type'.
4928 (muscle_insert_int_table): Remove, unused.
4929 (prepare_rules): Remove `max'.
4930
4931 2002-05-06 Akim Demaille <akim@epita.fr>
4932
4933 * src/closure.c (print_firsts): Display of the symbol tags.
4934 (bitmatrix_print): Move to...
4935 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
4936 here.
4937 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
4938
4939 2002-05-06 Akim Demaille <akim@epita.fr>
4940
4941 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
4942 hash_do_for_each.
4943
4944 2002-05-06 Akim Demaille <akim@epita.fr>
4945
4946 * src/LR0.c (new_state, get_state): Instead of using the global
4947 `kernel_size' and `kernel_base', have two new arguments:
4948 `core_size' and `core'.
4949 Adjust callers.
4950
4951 2002-05-06 Akim Demaille <akim@epita.fr>
4952
4953 * src/reader.c (packgram): No longer end `ritem' with a 0
4954 sentinel: it is not used.
4955
4956 2002-05-05 Akim Demaille <akim@epita.fr>
4957
4958 New experimental feature: display the lookaheads in the report and
4959 graph.
4960
4961 * src/print (print_core): When --trace-flag, display the rules
4962 lookaheads.
4963 * src/print_graph.c (print_core): Likewise.
4964 Swap the arguments.
4965 Adjust caller.
4966
4967 2002-05-05 Akim Demaille <akim@epita.fr>
4968
4969 * tests/torture.at (Many lookaheads): New test.
4970
4971 2002-05-05 Akim Demaille <akim@epita.fr>
4972
4973 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
4974 (GENERATE_MUSCLE_INSERT_TABLE): this.
4975 (output_int_table, output_unsigned_int_table, output_short_table)
4976 (output_token_number_table, output_item_number_table): Replace with...
4977 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
4978 (muscle_insert_short_table, muscle_insert_token_number_table)
4979 (muscle_insert_item_number_table): these.
4980 Adjust all callers.
4981 (prepare_tokens): Don't free `translations', since...
4982 * src/reader.h, src/reader.c (grammar_free): do it.
4983 Move to...
4984 * src/gram.h, src/gram.c (grammar_free): here.
4985 * data/bison.simple, data/bison.c++: b4_token_number_max is now
4986 b4_translate_max.
4987
4988 2002-05-05 Akim Demaille <akim@epita.fr>
4989
4990 * src/output.c (output_unsigned_int_table): New.
4991 (prepare_rules): `i' is unsigned.
4992 `prhs', `rline', `r2' are unsigned int.
4993 Rename muscle `rhs_number_max' as `rhs_max'.
4994 Output muscles `prhs_max', `rline_max', and `r2_max'.
4995 Free rline and r1.
4996 * data/bison.simple, data/bison.c++: Adjust to use these muscles
4997 to compute types instead of constant types.
4998 * tests/regression.at (Web2c Actions): Adjust.
4999
5000 2002-05-04 Akim Demaille <akim@epita.fr>
5001
5002 * src/symtab.h (SALIAS, SUNDEF): Rename as...
5003 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
5004 Adjust dependencies.
5005 * src/output.c (token_definitions_output): Be sure not to output a
5006 `#define 'a'' when fed with `%token 'a' "a"'.
5007 * tests/regression.at (Token definitions): New.
5008
5009 2002-05-03 Paul Eggert <eggert@twinsun.com>
5010
5011 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
5012 for K&R C.
5013
5014 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
5015
5016 * Makefile.am (SUBDIRS): Remove intl.
5017 (EXTRA_DIST): Add config/config.rpath.
5018
5019 2002-05-03 Akim Demaille <akim@epita.fr>
5020
5021 * data/bison.simple (m4_if): Don't output empty enums.
5022 And actually, output valid enum definitions :(.
5023
5024 2002-05-03 Akim Demaille <akim@epita.fr>
5025
5026 * configure.bat: Remove, completely obsolete.
5027 * Makefile.am (EXTRA_DIST): Adjust.
5028 Don't distribute config.rpath...
5029 * config/Makefile.am (EXTRA_DIST): Do it.
5030
5031 2002-05-03 Akim Demaille <akim@epita.fr>
5032
5033 * configure.in (GETTEXT_VERSION): New.
5034 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
5035
5036 2002-05-03 Akim Demaille <akim@epita.fr>
5037
5038 * data/bison.simple (b4_token_enum): New.
5039 (b4_token_defines): Use it to output tokens both as #define and
5040 enums.
5041 Suggested by Paul Eggert.
5042 * src/output.c (token_definitions_output): Don't output spurious
5043 white spaces.
5044
5045 2002-05-03 Akim Demaille <akim@epita.fr>
5046
5047 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
5048
5049 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
5050
5051 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
5052 Update the stack class, give a try to deque as the default container.
5053
5054 2002-05-02 Akim Demaille <akim@epita.fr>
5055
5056 * data/bison.simple (yyparse): Do not implement @$ = @1.
5057 (YYLLOC_DEFAULT): Adjust to do it.
5058 * doc/bison.texinfo (Location Default Action): Fix.
5059
5060 2002-05-02 Akim Demaille <akim@epita.fr>
5061
5062 * src/reader.c (parse_braces): Merge into...
5063 (parse_action): this.
5064
5065 2002-05-02 Akim Demaille <akim@epita.fr>
5066
5067 * configure.in (ALL_LINGUAS): Remove.
5068 * po/LINGUAS, hr.po: New.
5069
5070 2002-05-02 Akim Demaille <akim@epita.fr>
5071
5072 Remove the so called hairy (semantic) parsers.
5073
5074 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
5075 * src/gram.h, src/gram.c (semantic_parser): Remove.
5076 (rule_t): Remove the guard and guard_line members.
5077 * src/lex.h (token_t): remove tok_guard.
5078 * src/options.c (option_table): Remove %guard and %semantic_parser
5079 support.
5080 * src/output.c, src/output.h (guards_output): Remove.
5081 (prepare): Adjust.
5082 (token_definitions_output): Don't output the `T'
5083 tokens (???).
5084 (output_skeleton): Don't output the guards.
5085 * src/files.c, src/files.c (attrsfile): Remove.
5086 * src/reader.c (symbol_list): Remove the guard and guard_line
5087 members.
5088 Adjust dependencies.
5089 (parse_guard): Remove.
5090 * data/bison.hairy: Remove.
5091 * doc/bison.texinfo (Environment Variables): Remove occurrences of
5092 BISON_HAIRY.
5093
5094 2002-05-02 Akim Demaille <akim@epita.fr>
5095
5096 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
5097 (parse_guard): Rename the formal argument `stack_offset' as
5098 `rule_length', which is more readable.
5099 Adjust callers.
5100 (copy_at, copy_dollar): Instead of outputting the hard coded
5101 values of $$, $n and so forth, output invocation to b4_lhs_value,
5102 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
5103 Note: this patch partially drops `semantic-parser' support: it
5104 always does `rule_length - n', where semantic parsers ought to
5105 always use `-n'.
5106 * data/bison.simple, data/bison.c++ (b4_lhs_value)
5107 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
5108
5109 2002-05-02 Akim Demaille <akim@epita.fr>
5110
5111 * configure.in (AC_INIT): Bump to 1.49b.
5112 (AM_INIT_AUTOMAKE): Short invocation.
5113
5114 2002-05-02 Akim Demaille <akim@epita.fr>
5115
5116 Version 1.49a.
5117
5118 2002-05-01 Akim Demaille <akim@epita.fr>
5119
5120 * src/skeleton.h: Remove.
5121
5122 2002-05-01 Akim Demaille <akim@epita.fr>
5123
5124 * src/skeleton.h: Fix the #endif.
5125 Reported by Magnus Fromreide.
5126
5127 2002-04-26 Paul Eggert <eggert@twinsun.com>
5128
5129 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
5130 Define if we define YYSTYPE and YYLTYPE, respectively.
5131 (YYCOPY): Fix [] quoting problem in the non-GCC case.
5132
5133 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
5134
5135 * src/scan-skel.l: Postprocess quadrigraphs.
5136
5137 * src/reader.c (copy_character): New function, used to output
5138 single characters while replacing `[' and `]' with quadrigraphs, to
5139 avoid troubles with M4 quotes.
5140 (copy_comment): Output characters with copy_character.
5141 (read_additionnal_code): Likewise.
5142 (copy_string2): Likewise.
5143 (copy_definition): Likewise.
5144
5145 * tests/calc.at: Exercise M4 quoting.
5146
5147 2002-04-25 Akim Demaille <akim@epita.fr>
5148
5149 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
5150 between `!' and the command.
5151 Reported by Paul Eggert.
5152
5153 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
5154
5155 * tests/calc.at: Exercise prologue splitting.
5156
5157 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
5158 `b4_post_prologue' instead of `b4_prologue'.
5159
5160 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
5161 muscles.
5162 (output): Free pre_prologue_obstack and post_prologue_obstack.
5163 * src/files.h, src/files.c (attrs_obstack): Remove.
5164 (pre_prologue_obstack, post_prologue_obstack): New.
5165 * src/reader.c (copy_definition): Add a parameter to specify the
5166 obstack to fill, instead of using attrs_obstack unconditionally.
5167 (read_declarations): Pass pre_prologue_obstack to copy_definition if
5168 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
5169
5170 2002-04-23 Paul Eggert <eggert@twinsun.com>
5171
5172 * data/bison.simple: Remove unnecessary commentary and white
5173 space differences from 1_29-branch.
5174 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
5175
5176 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
5177 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
5178 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
5179 constructors or destructors.
5180
5181 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
5182
5183 2002-04-23 Akim Demaille <akim@epita.fr>
5184
5185 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
5186 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
5187 location with columns.
5188 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
5189 All reported by Paul Eggert.
5190
5191 2002-04-22 Akim Demaille <akim@epita.fr>
5192
5193 * src/reduce.c (dump_grammar): Move to...
5194 * src/gram.h, src/gram.c (grammar_dump): here.
5195 Be sure to separate long item numbers.
5196 Don't read the members of a rule's prec if its nil.
5197
5198 2002-04-22 Akim Demaille <akim@epita.fr>
5199
5200 * src/output.c (table_size, table_grow): New.
5201 (MAXTABLE): Remove, replace uses with table_size.
5202 (pack_vector): Instead of dying when the table is too big, grow it.
5203
5204 2002-04-22 Akim Demaille <akim@epita.fr>
5205
5206 * data/bison.simple (yyr1): Its type is that of a token number.
5207 * data/bison.c++ (r1_): Likewise.
5208 * tests/regression.at (Web2c Actions): Adjust.
5209
5210 2002-04-22 Akim Demaille <akim@epita.fr>
5211
5212 * src/reader.c (token_translations_init): 256 is now the default
5213 value for the error token, i.e., it will be assigned another
5214 number if the user assigned 256 to one of her tokens.
5215 (reader): Don't force 256 to error.
5216 * doc/bison.texinfo (Symbols): Adjust.
5217 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
5218 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
5219 etc. instead of 10, 20, 30 (which was used to `jump' over error
5220 (256) and undefined (2)).
5221
5222 2002-04-22 Akim Demaille <akim@epita.fr>
5223
5224 Propagate more token_number_t.
5225
5226 * src/gram.h (token_number_as_item_number)
5227 (item_number_as_token_number): New.
5228 * src/output.c (GENERATE_OUTPUT_TABLE): New.
5229 Use it to create output_item_number_table and
5230 output_token_number_table.
5231 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
5232 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
5233 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
5234 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
5235
5236 2002-04-22 Akim Demaille <akim@epita.fr>
5237
5238 * src/output.h, src/output.c (get_lines_number): Remove.
5239
5240 2002-04-19 Akim Demaille <akim@epita.fr>
5241
5242 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
5243 as Lex/Flex'.
5244 (Debugging): More details about enabling the debugging features.
5245 (Table of Symbols): Describe $$, $n, @$, and @n.
5246 Suggested by Tim Josling.
5247
5248 2002-04-19 Akim Demaille <akim@epita.fr>
5249
5250 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
5251
5252 2002-04-10 Akim Demaille <akim@epita.fr>
5253
5254 * src/system.h: Rely on HAVE_LIMITS_H.
5255 Suggested by Paul Eggert.
5256
5257 2002-04-09 Akim Demaille <akim@epita.fr>
5258
5259 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
5260 full stderr, and strip it according to the bison options, instead
5261 of composing the error message from different bits.
5262 This makes it easier to check for several error messages.
5263 Adjust all the invocations.
5264 Add an invocation exercising the error token.
5265 Add an invocation demonstrating a stupid error message.
5266 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
5267 Adjust the tests.
5268 Error message are for stderr, not stdout.
5269
5270 2002-04-09 Akim Demaille <akim@epita.fr>
5271
5272 * src/gram.h, src/gram.c (error_token_number): Remove, use
5273 errtoken->number.
5274 * src/reader.c (reader): Don't specify the user token number (2)
5275 for $undefined, as it uselessly prevents using it.
5276 * src/gram.h (token_number_t): Move to...
5277 * src/symtab.h: here.
5278 (state_t.number): Is a token_number_t.
5279 * src/print.c, src/reader.c: Use undeftoken->number instead of
5280 hard coded 2.
5281 (Even though this 2 is not the same as above: the number of the
5282 undeftoken remains being 2, it is its user token number which
5283 might not be 2).
5284 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
5285 `user_token_number_max'.
5286 Output `undef_token_number'.
5287 * data/bison.simple, data/bison.c++: Use them.
5288 Be sure to map invalid yylex return values to
5289 `undef_token_number'. This saves us from gratuitous SEGV.
5290
5291 * tests/conflicts.at (Solved SR Conflicts)
5292 (Unresolved SR Conflicts): Adjust.
5293 * tests/regression.at (Web2c Actions): Adjust.
5294
5295 2002-04-08 Akim Demaille <akim@epita.fr>
5296
5297 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
5298 Adding #line.
5299 Remove the duplicate `typedefs'.
5300 (RhsNumberType): Fix the declaration and various other typos.
5301 Use __ofile__.
5302 * data/bison.simple: Use __ofile__.
5303 * src/scan-skel.l: Handle __ofile__.
5304
5305 2002-04-08 Akim Demaille <akim@epita.fr>
5306
5307 * src/gram.h (item_number_t): New, the type of item numbers in
5308 RITEM. Note that it must be able to code symbol numbers as
5309 positive number, and the negation of rule numbers as negative
5310 numbers.
5311 Adjust all dependencies (pretty many).
5312 * src/reduce.c (rule): Remove this `short *' pointer: use
5313 item_number_t.
5314 * src/system.h (MINSHORT, MAXSHORT): Remove.
5315 Include `limits.h'.
5316 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
5317 (shortcpy): Remove.
5318 (MAXTABLE): Move to...
5319 * src/output.c (MAXTABLE): here.
5320 (prepare_rules): Use output_int_table to output rhs.
5321 * data/bison.simple, data/bison.c++: Adjust.
5322 * tests/torture.at (Big triangle): Move the limit from 254 to
5323 500.
5324 * tests/regression.at (Web2c Actions): Ajust.
5325
5326 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
5327 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
5328 passes, but produces negative #line number, once fixed, GCC is
5329 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
5330 C), it passes.
5331 * src/state.h (state_h): Code input lines on ints, not shorts.
5332
5333 2002-04-08 Akim Demaille <akim@epita.fr>
5334
5335 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
5336 and then the grammar.
5337
5338 2002-04-08 Akim Demaille <akim@epita.fr>
5339
5340 * src/system.h: No longer using strndup.
5341
5342 2002-04-07 Akim Demaille <akim@epita.fr>
5343
5344 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
5345 * src/output.c (output_table_data): Return the longest number.
5346 (prepare_tokens): Output `token_number_max').
5347 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
5348 New.
5349 Use them to define yy_token_number_type/TokenNumberType.
5350 Use this type for yytranslate.
5351 * tests/torture.at (Big triangle): Push the limit from 124 to
5352 253.
5353 * tests/regression.at (Web2c Actions): Adjust.
5354
5355 2002-04-07 Akim Demaille <akim@epita.fr>
5356
5357 * tests/torture.at (Big triangle): New.
5358 (GNU AWK Grammar, GNU Cim Grammar): Move to...
5359 * tests/existing.at: here.
5360
5361 2002-04-07 Akim Demaille <akim@epita.fr>
5362
5363 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
5364 nritems.
5365 Adjust dependencies.
5366
5367 2002-04-07 Akim Demaille <akim@epita.fr>
5368
5369 * src/reader.c: Normalize increments to prefix form.
5370
5371 2002-04-07 Akim Demaille <akim@epita.fr>
5372
5373 * src/reader.c, symtab.c: Remove debugging code.
5374
5375 2002-04-07 Akim Demaille <akim@epita.fr>
5376
5377 Rename all the `bucket's as `symbol_t'.
5378
5379 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
5380 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
5381 * src/symtab.c, src/symtab.h (bucket): Rename as...
5382 (symbol_t): this.
5383 (symbol_list_new, bucket_check_defined, bucket_make_alias)
5384 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
5385 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
5386 (buckets_new, buckets_free, buckets_do): Rename as...
5387 (symbol_list_new, symbol_check_defined, symbol_make_alias)
5388 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
5389 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
5390 (symbols_new, symbols_free, symbols_do): these.
5391
5392 2002-04-07 Akim Demaille <akim@epita.fr>
5393
5394 Use lib/hash for the symbol table.
5395
5396 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
5397 EOF.
5398 * src/lex.c (lex): Set the `number' member of new terminals.
5399 * src/reader.c (bucket_check_defined, bucket_make_alias)
5400 (bucket_check_alias_consistence, bucket_translation): New.
5401 (reader, grammar_free, readgram, token_translations_init)
5402 (packsymbols): Adjust.
5403 (reader): Number the predefined tokens.
5404 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
5405 for predefined tokens.
5406 * src/symtab.h (bucket): Remove all the hash table related
5407 members.
5408 * src/symtab.c (symtab): Replace by...
5409 (bucket_table): this.
5410 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
5411 (buckets_new, buckets_do): New.
5412
5413 2002-04-07 Akim Demaille <akim@epita.fr>
5414
5415 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
5416 (start_symbol, max_user_token_number, semantic_parser)
5417 (error_token_number): Initialize.
5418 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
5419 Initialize.
5420 (reader): Don't.
5421 (errtoken, eoftoken, undeftoken, axiom): Extern.
5422
5423 2002-04-07 Akim Demaille <akim@epita.fr>
5424
5425 * src/gram.h (rule_s): prec and precsym are now pointers
5426 to the bucket giving the priority/associativity.
5427 Member `associativity' removed: useless.
5428 * src/reduce.c, src/conflicts.c: Adjust.
5429
5430 2002-04-07 Akim Demaille <akim@epita.fr>
5431
5432 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
5433 Properly escape the symbols' TAG when outputting them.
5434
5435 2002-04-07 Akim Demaille <akim@epita.fr>
5436
5437 * src/lalr.h (LA): Is a bitsetv, not bitset*.
5438
5439 2002-04-07 Akim Demaille <akim@epita.fr>
5440
5441 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
5442 (LArule): this, which is an array to rule_t*.
5443 * src/print.c, src/conflicts.c: Adjust.
5444
5445 2002-04-07 Akim Demaille <akim@epita.fr>
5446
5447 * src/gram.h (rule_t): Rename `number' as `user_number'.
5448 `number' is a new member.
5449 Adjust dependencies.
5450 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
5451
5452 2002-04-07 Akim Demaille <akim@epita.fr>
5453
5454 As a result of the previous patch, it is no longer needed
5455 to reorder ritem itself.
5456
5457 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
5458
5459 2002-04-07 Akim Demaille <akim@epita.fr>
5460
5461 Be sure never to walk through RITEMS, but use only data related to
5462 the rules themselves. RITEMS should be banished.
5463
5464 * src/output.c (output_token_translations): Rename as...
5465 (prepare_tokens): this.
5466 In addition to `translate', prepare the muscles `tname' and
5467 `toknum', which were handled by...
5468 (output_rule_data): this.
5469 Remove, and move the remainder of its outputs into...
5470 (prepare_rules): this new routines, which also merges content from
5471 (output_gram): this.
5472 (prepare_rules): Be sure never to walk through RITEMS.
5473 (output_stos): Rename as...
5474 (prepare_stos): this.
5475 (output): Always invoke prepare_states, after all, just don't use it
5476 in the output if you don't need it.
5477
5478 2002-04-07 Akim Demaille <akim@epita.fr>
5479
5480 * src/LR0.c (new_state): Display `nstates' as the name of the
5481 newly created state.
5482 Adjust to initialize first_state and last_state if needed.
5483 Be sure to distinguish the initial from the final state.
5484 (new_states): Create the itemset of the initial state, and use
5485 new_state.
5486 * src/closure.c (closure): Now that the initial state has its
5487 items properly set, there is no need for a special case when
5488 creating `ruleset'.
5489
5490 As a result, now the rule 0, reducing to $axiom, is visible in the
5491 outputs. Adjust the test suite.
5492
5493 * tests/conflicts.at (Solved SR Conflicts)
5494 (Unresolved SR Conflicts): Adjust.
5495 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
5496 * tests/conflicts.at (S/R in initial): New.
5497
5498 2002-04-07 Akim Demaille <akim@epita.fr>
5499
5500 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
5501 the RHS of the rules.
5502 * src/output.c (output_gram): Likewise.
5503
5504 2002-04-07 Akim Demaille <akim@epita.fr>
5505
5506 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
5507 bucket.
5508 Adjust all dependencies.
5509 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
5510 `number' of the buckets too.
5511 * src/gram.h: Include `symtab.h'.
5512 (associativity): Move to...
5513 * src/symtab.h: here.
5514 No longer include `gram.h'.
5515
5516 2002-04-07 Akim Demaille <akim@epita.fr>
5517
5518 * src/gram.h, src/gram.c (rules_rhs_length): New.
5519 (ritem_longest_rhs): Use it.
5520 * src/gram.h (rule_t): `number' is a new member.
5521 * src/reader.c (packgram): Set it.
5522 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
5523 the end of `rules', and count them out of `nrules'.
5524 (reduce_output, dump_grammar): Adjust.
5525 * src/print.c (print_grammar): It is no longer needed to check for
5526 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
5527 * tests/reduce.at (Reduced Automaton): New test.
5528
5529 2002-04-07 Akim Demaille <akim@epita.fr>
5530
5531 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
5532 lacking `+ 1' to nrules, Bison reported as useless a token if it
5533 was used solely to set the precedence of the last rule...
5534
5535 2002-04-07 Akim Demaille <akim@epita.fr>
5536
5537 * data/bison.c++, data/bison.simple: Don't output the current file
5538 name in #line, to avoid useless diffs between two identical
5539 outputs under different names.
5540
5541 2002-04-07 Akim Demaille <akim@epita.fr>
5542
5543 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
5544 Normalize loops to using `< nrules + 1', not `<= nrules'.
5545
5546 2002-04-07 Akim Demaille <akim@epita.fr>
5547
5548 * TODO: Update.
5549
5550 2002-04-07 Akim Demaille <akim@epita.fr>
5551
5552 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
5553 bucket.value as bucket.number.
5554
5555 2002-04-07 Akim Demaille <akim@epita.fr>
5556
5557 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
5558 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
5559 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
5560 RHS, instead of being an index in RITEMS.
5561
5562 2002-04-04 Paul Eggert <eggert@twinsun.com>
5563
5564 * doc/bison.texinfo: Update copyright date.
5565 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
5566 (Symbols): Warn about running Bison in one character set,
5567 but compiling and/or running in an incompatible one.
5568 Warn about character code 256, too.
5569
5570 2002-04-03 Paul Eggert <eggert@twinsun.com>
5571
5572 * src/bison.data (YYSTACK_ALLOC): Depend on whether
5573 YYERROR_VERBOSE is nonzero, not whether it is defined.
5574
5575 Merge changes from bison-1_29-branch.
5576
5577 2002-03-20 Paul Eggert <eggert@twinsun.com>
5578
5579 Merge fixes from Debian bison_1.34-1.diff.
5580
5581 * configure.in (AC_PREREQ): 2.53.
5582
5583 2002-03-20 Akim Demaille <akim@epita.fr>
5584
5585 * src/conflicts.c (log_resolution): Argument `resolution' is const.
5586
5587 2002-03-19 Paul Eggert <eggert@twinsun.com>
5588
5589 * src/bison.simple (YYCOPY): New macro.
5590 (YYSTACK_RELOCATE): Use it.
5591 Remove Type arg; no longer needed. All callers changed.
5592 (yymemcpy): Remove; no longer needed.
5593
5594 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
5595 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
5596
5597 2002-03-19 Akim Demaille <akim@epita.fr>
5598
5599 Test and fix the #line outputs.
5600
5601 * tests/atlocal.at (GCC): New.
5602 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
5603 (Prologue synch line, ,%union synch line, Postprologue synch line)
5604 (Action synch line, Epilogue synch line): New tests.
5605 * src/reader.c (parse_union_decl): Define the muscle stype_line.
5606 * data/bison.simple, data/bison.c++: Use it.
5607
5608 2002-03-19 Akim Demaille <akim@epita.fr>
5609
5610 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
5611 (Solved SR Conflicts, %expect not enough, %expect right)
5612 (%expect too much): Move to...
5613 * tests/conflicts.at: this new file.
5614
5615 2002-03-19 Akim Demaille <akim@epita.fr>
5616
5617 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
5618 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
5619 that we can move to enums for instance.
5620 * src/output.c (token_definitions_output): Output a list of
5621 `token-name, token-number' instead of the #define.
5622 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
5623
5624 2002-03-14 Akim Demaille <akim@epita.fr>
5625
5626 Use Gettext 0.11.1.
5627
5628 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
5629
5630 * data/bison.c++: Make the user able to add members to the generated
5631 parser by subclassing.
5632
5633 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
5634
5635 * src/reader.c (read_additionnal_code): `c' should be an integer, not
5636 a character.
5637 Reported by Nicolas Tisserand and Nicolas Burrus.
5638
5639 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
5640
5641 * src/reader.c: Warn about lacking semi-colons, do not complain.
5642
5643 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
5644
5645 * data/bison.c++: Remove a debug line.
5646
5647 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
5648
5649 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
5650 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
5651 provide a default implementation.
5652
5653 2002-03-04 Akim Demaille <akim@epita.fr>
5654
5655 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
5656 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
5657 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
5658 * tests/semantic.at (Parsing Guards): Similarly.
5659 * src/reader.at (readgram): Complain if the last rule is not ended
5660 with a semi-colon.
5661
5662 2002-03-04 Akim Demaille <akim@epita.fr>
5663
5664 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
5665 * src/closure.c: here.
5666 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
5667 RTC.
5668 * src/warshall.h, src/warshall.c: Remove.
5669 * tests/sets.at (Broken Closure): Adjust.
5670
5671 2002-03-04 Akim Demaille <akim@epita.fr>
5672
5673 * src/output.c (output_skeleton): tempdir is const.
5674 bytes_read is unused.
5675
5676 2002-03-04 Akim Demaille <akim@epita.fr>
5677
5678 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
5679 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
5680 Update.
5681 From Michael Hayes.
5682
5683 2002-03-04 Akim Demaille <akim@epita.fr>
5684
5685 * src/closure.c (closure): `r' is unused.
5686
5687 2002-03-04 Akim Demaille <akim@epita.fr>
5688
5689 * tests/sets.at (Broken Closure): Add the ending `;'.
5690 * src/reader.at (readgram): Complain if a rule is not ended with a
5691 semi-colon.
5692
5693 2002-03-04 Akim Demaille <akim@epita.fr>
5694
5695 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
5696 (count_sr_conflicts): Use bitset_count.
5697 * src/reduce.c (inaccessable_symbols): Ditto.
5698 (bits_size): Remove.
5699 * src/warshall.h, src/warshall.c: Convert to bitsetv.
5700
5701 2002-03-04 Akim Demaille <akim@epita.fr>
5702
5703 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
5704 * src/reduce.c: Remove the `bitset_zero's following the
5705 `bitset_create's, as now it is performed by the latter.
5706
5707 2002-03-04 Akim Demaille <akim@epita.fr>
5708
5709 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
5710 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
5711 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
5712 latest sources from Michael.
5713
5714 2002-03-04 Akim Demaille <akim@epita.fr>
5715
5716 * src/output.c (output): Don't free the grammar.
5717 * src/reader.c (grammar_free): New.
5718 * src/main.c (main): Call it and don't free symtab here.
5719
5720 2002-03-04 Akim Demaille <akim@epita.fr>
5721
5722 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
5723 before returning.
5724 Reported by Benoit Perrot.
5725
5726 2002-03-04 Akim Demaille <akim@epita.fr>
5727
5728 Use bitset operations when possible, not loops over bits.
5729
5730 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
5731 bitset_or.
5732 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
5733 * src/reduce.c (useless_nonterminals): Formatting changes.
5734 * src/warshall.c (TC): Use bitset_or.
5735
5736 2002-03-04 Akim Demaille <akim@epita.fr>
5737
5738 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
5739 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
5740 Ditto.
5741
5742 2002-03-04 Akim Demaille <akim@epita.fr>
5743
5744 * src/lalr.c (F): Now a bitset*.
5745 Adjust all dependencies.
5746
5747 2002-03-04 Akim Demaille <akim@epita.fr>
5748
5749 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
5750 Adjust all dependencies.
5751
5752 2002-03-04 Akim Demaille <akim@epita.fr>
5753
5754 * src/L0.c, src/LR0.h (nstates): Be size_t.
5755 Adjust comparisons (signed vs unsigned).
5756 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
5757 bitset*.
5758 Adjust all dependencies.
5759
5760 2002-03-04 Akim Demaille <akim@epita.fr>
5761
5762 * src/closure.c (firsts): Now, also a bitset.
5763 Adjust all dependencies.
5764 (varsetsize): Remove, now unused.
5765 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
5766
5767 2002-03-04 Akim Demaille <akim@epita.fr>
5768
5769 * src/print.c: Convert to use bitset.h, not hand coded iterations
5770 over ints.
5771
5772 2002-03-04 Akim Demaille <akim@epita.fr>
5773
5774 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
5775
5776 2002-03-04 Akim Demaille <akim@epita.fr>
5777
5778 * src/closure.c (ruleset): Be a bitset.
5779 (rulesetsize): Remove.
5780
5781 2002-03-04 Akim Demaille <akim@epita.fr>
5782
5783 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
5784 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
5785 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
5786 * src/closure.c (fderives): Be an array of bitsets.
5787
5788 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
5789
5790 * data/bison.c++: Merge the two generated headers. Insert a copyright
5791 notice in each output file.
5792
5793 2002-02-28 Akim Demaille <akim@epita.fr>
5794
5795 * data/bison.c++: Copy the prologue of bison.simple to fetch
5796 useful M4 definitions, such as b4_header_guard.
5797
5798 2002-02-25 Akim Demaille <akim@epita.fr>
5799
5800 * src/getargs.c (version): Give the name of the authors, and use a
5801 translator friendly scheme for the bgr
5802 copyright notice.
5803
5804 2002-02-25 Akim Demaille <akim@epita.fr>
5805
5806 * src/output.c (header_output): Remove, now handled completely via
5807 M4.
5808
5809 2002-02-25 Akim Demaille <akim@epita.fr>
5810
5811 * m4/m4.m4: New, from CVS Autoconf.
5812 * configure.in: Invoke it.
5813 * src/output.c (output_skeleton): Use its result instead of the
5814 hard coded name.
5815
5816 2002-02-25 Akim Demaille <akim@epita.fr>
5817
5818 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
5819 Fileutils 4.1.5.
5820 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
5821 * src/output.c (output_skeleton): Use mkstemp to create a real
5822 temporary file.
5823 Move the filling of `skeleton' and its muscle to...
5824 (prepare): here.
5825 (output): Move the definition of the prologue muscle to...
5826 (prepare): here.
5827 * src/system.h (DEFAULT_TMPDIR): New.
5828
5829 2002-02-14 Paul Eggert <eggert@twinsun.com>
5830
5831 Remove the support for C++ namespace cleanliness; it was
5832 causing more problems than it was curing, since it didn't work
5833 properly on some nonstandard C++ compilers. This can wait
5834 for a proper C++ parser.
5835
5836 * NEWS: Document this.
5837 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
5838 of C++, as it's treated like C now.
5839 * src/bison.simple (YYSTD): Remove.
5840 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
5841 Treat C++ just like Standard C instead of trying to support
5842 namespace cleanliness.
5843
5844 2002-02-14 Akim Demaille <akim@epita.fr>
5845
5846 * tests/regression.at (else): Adjust to Andreas' change.
5847
5848 2002-02-14 Akim Demaille <akim@epita.fr>
5849
5850 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
5851
5852 2002-02-13 Andreas Schwab <schwab@suse.de>
5853
5854 * src/output.c (output_rule_data): Don't output NULL, it might
5855 not be defined yet.
5856
5857 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
5858
5859 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
5860 (Copyright notice): Update.
5861
5862 2002-02-11 Akim Demaille <akim@epita.fr>
5863
5864 * tests/regression.at (%nonassoc and eof): Don't include
5865 nonportable headers.
5866
5867 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
5868
5869 * data/bison.c++: Correct error recovery. Make the user able to
5870 initialize the starting location.
5871
5872 2002-02-07 Akim Demaille <akim@epita.fr>
5873
5874 * tests/input.at: New.
5875
5876 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
5877
5878 * data/bison.c++: Replace some direct m4 expansions by constants. Be
5879 more consistent when naming methods and variables. Put preprocessor
5880 directives around tables only needed for debugging.
5881
5882 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
5883
5884 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
5885 C++ parsers.
5886 (yy::b4_name::parse): Use print_.
5887
5888 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
5889
5890 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
5891
5892 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
5893
5894 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
5895 C++ parsers.
5896 (yy::b4_name::parse): Build verbose error messages, and use error_.
5897
5898 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
5899
5900 * data/bison.c++: Fix m4 quoting in comments.
5901
5902 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
5903
5904 * data/bison.c++: Adjust the parser code. Fix some muscles that were
5905 not expanded by m4.
5906
5907 2002-02-05 Akim Demaille <akim@epita.fr>
5908
5909 * data/bison.c++: Adjust to the M4 back end.
5910 More is certainly needed.
5911
5912 2002-02-05 Akim Demaille <akim@epita.fr>
5913
5914 Give a try to M4 as a back end.
5915
5916 * lib/readpipe.c: New, from wdiff.
5917 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
5918 BISON_HAIRY.
5919 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
5920 specific values. Now it is m4 that performs the lookup.
5921 * src/parse-skel.y: Remove.
5922 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
5923 * src/output.c (actions_output, guards_output)
5924 (token_definitions_output): No longer keeps track of the output
5925 line number, hence remove the second argument.
5926 (guards_output): Check against the guard member of a rule, not the
5927 action member.
5928 Adjust callers.
5929 (output_skeleton): Don't look for the skeleton location, let m4 do
5930 that.
5931 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
5932 file will be used.
5933 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
5934 (prepare): Given that for the time being changesyntax is not
5935 usable in M4, rename the muscles using `-' to `_'.
5936 Define `defines_flag', `output_parser_name' and `output_header_name'.
5937 * src/output.h (actions_output, guards_output)
5938 (token_definitions_output): Adjust prototypes.
5939 * src/scan-skel.l: Instead of scanning the skeletons, it now
5940 processes the output of m4: `__oline__' and `#output'.
5941 * data/bison.simple: Adjust to be used by M4(sugar).
5942 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
5943 to date.
5944 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
5945 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
5946 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
5947 shamelessly stolen from CVS Autoconf.
5948
5949 2002-02-05 Akim Demaille <akim@epita.fr>
5950
5951 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
5952 * configure.in: Check for the declarations of free and malloc.
5953 * src/muscle_tab.c: Adjust.
5954
5955 2002-02-05 Akim Demaille <akim@epita.fr>
5956
5957 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
5958 which have no values.
5959
5960 2002-02-05 Akim Demaille <akim@epita.fr>
5961
5962 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
5963 * data/: here.
5964
5965 2002-01-29 Paul Eggert <eggert@twinsun.com>
5966
5967 * src/bison.simple (YYSIZE_T): Do not define merely because
5968 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
5969 On some platforms, <alloca.h> does not declare YYSTD (size_t).
5970
5971 2002-01-27 Akim Demaille <akim@epita.fr>
5972
5973 Fix `%nonassoc and eof'.
5974
5975 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
5976 which were not properly copied! Replace
5977 memcpy (res->errs, src->errs, src->nerrs);
5978 with
5979 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
5980 !!!
5981 * tests/regression.at (%nonassoc and eof): Adjust to newest
5982 Autotest: `.' is not in the PATH.
5983
5984 2002-01-27 Akim Demaille <akim@epita.fr>
5985
5986 * tests/sets.at (AT_EXTRACT_SETS): New.
5987 (Nullable): Use it.
5988 (Firsts): New.
5989
5990 2002-01-26 Akim Demaille <akim@epita.fr>
5991
5992 * tests/actions.at, tests/calc.at, tests/headers.at,
5993 * tests/torture.at: Adjust to the newest Autotest which no longer
5994 forces `.' in the PATH.
5995
5996 2002-01-25 Akim Demaille <akim@epita.fr>
5997
5998 * tests/regression.at (%nonassoc and eof): New.
5999 Suggested by Robert Anisko.
6000
6001 2002-01-24 Akim Demaille <akim@epita.fr>
6002
6003 Bison dumps core when trying to complain about broken input files.
6004 Reported by Cris van Pelt.
6005
6006 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
6007 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
6008 into...
6009 (Invalid inputs): Strengthen: exercise parse_percent_token.
6010
6011 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
6012
6013 * src/Makefile.am: Add bison.c++.
6014 * src/bison.c++: New skeleton.
6015
6016 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
6017
6018 * po/it.po: New.
6019
6020 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
6021
6022 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
6023
6024 2002-01-20 Marc Autret <marc@gnu.org>
6025
6026 * src/files.c (compute_output_file_names): Fix
6027
6028 2002-01-20 Marc Autret <marc@gnu.org>
6029
6030 * tests/output.at: New test.
6031 * src/files.c (compute_base_names): Don't map extensions when
6032 the YACC flag is set, use defaults.
6033 Reported by Evgeny Stambulchik.
6034
6035 2002-01-20 Marc Autret <marc@gnu.org>
6036
6037 * src/system.h: Need to define __attribute__ away for non-GCC
6038 compilers as well (i.e. the vendor C compiler).
6039 Suggested by Albert Chin-A-Young.
6040
6041 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
6042
6043 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
6044 canonical definition.
6045 * src/system.h: Use the canonical definition for PARAMS (avoids
6046 a conflict with the macro from lib/hash.h).
6047
6048 2002-01-11 Akim Demaille <akim@epita.fr>
6049
6050 * configure.in: Use AC_FUNC_STRNLEN.
6051 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
6052
6053 2002-01-09 Akim Demaille <akim@epita.fr>
6054
6055 * src/files.c, src/files.h (output_infix): New.
6056 (tab_extension): Remove.
6057 (compute_base_names): Compute the former, drop the latter.
6058 * src/output.c (prepare): Insert the muscles `output-infix', and
6059 `output-suffix'.
6060 * src/parse-skel.y (string, string.1): New.
6061 (section.header): Use it.
6062 (section.yacc): Remove.
6063 (prefix): Remove too.
6064 * src/scan-skel.l: Adjust.
6065 * src/bison.simple, src/bison.hairy: Adjust.
6066
6067 2002-01-09 Akim Demaille <akim@epita.fr>
6068
6069 * configure.in (WERROR_CFLAGS): Compute it.
6070 * src/Makefile.am (CFLAGS): Pass it.
6071 * tests/atlocal.in (CFLAGS): Idem.
6072 * src/files.c: Fix a few warnings.
6073 (get_extension_index): Remove, unused.
6074
6075 2002-01-08 Akim Demaille <akim@epita.fr>
6076
6077 * src/getargs.c (AS_FILE_NAME): New.
6078 (getargs): Use it to convert DOSish file names.
6079 * src/files.c (base_name): Rename as full_base_name to avoid
6080 clashes with `base_name ()'.
6081 (filename_split): New.
6082 (compute_base_names): N-th rewrite, using filename_split.
6083
6084 2002-01-08 Akim Demaille <akim@epita.fr>
6085
6086 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
6087 New, stolen from the Fileutils 4.1.
6088 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
6089 * configure.in: Check for the presence of memrchr, and of its
6090 prototype.
6091
6092 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
6093
6094 * lib/hash.h (__P): Added definition for this macro.
6095 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
6096 BUILT_SOURCES, to ensure they are generated first.
6097 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
6098 %error-verbose to allow bootstrapping with bison 1.30x.
6099
6100 2002-01-06 Akim Demaille <akim@epita.fr>
6101
6102 * src/reader.c (parse_braces): Don't fetch the next char, the
6103 convention is to fetch on entry.
6104 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
6105 'switch' without a following semicolon.
6106 * tests/regression.at (braces parsing): New.
6107
6108 2002-01-06 Akim Demaille <akim@epita.fr>
6109
6110 Bison is dead wrong in its RR conflict reports.
6111
6112 * tests/torture.at (GNU Cim Grammar): New.
6113 * src/conflicts.c (count_rr_conflicts): Fix.
6114
6115 2002-01-06 Akim Demaille <akim@epita.fr>
6116
6117 Creating package.m4 from configure.ac causes too many problems.
6118
6119 * tests/Makefile.am (package.m4): Create it by hand,
6120 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
6121
6122 2002-01-06 Akim Demaille <akim@epita.fr>
6123
6124 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
6125 skeleton.h.
6126
6127 2002-01-04 Paul Eggert <eggert@twinsun.com>
6128
6129 * doc/bison.texinfo (Debugging):
6130 Remove YYSTDERR; it's no longer defined or used.
6131 Also, s/cstdio.h/cstdio/.
6132
6133 2002-01-03 Akim Demaille <akim@epita.fr>
6134
6135 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
6136
6137 2002-01-03 Akim Demaille <akim@epita.fr>
6138
6139 * src/parse-skel.y (process_skeleton): Don't bind the parser's
6140 tracing code to --trace, wait for a better --trace option, with
6141 args.
6142
6143 2002-01-03 Akim Demaille <akim@epita.fr>
6144
6145 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
6146 The ISO C++ standard is extremely clear about it: stderr is
6147 considered a macro, not a regular symbol (see table 94 `Header
6148 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
6149 Therefore std:: does not apply to it. It still does with fprintf.
6150 Also, s/cstdio.h/cstdio/.
6151
6152 2002-01-03 Akim Demaille <akim@epita.fr>
6153
6154 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
6155 for non system headers.
6156
6157 2002-01-02 Akim Demaille <akim@epita.fr>
6158
6159 Equip the skeleton chain with location tracking, runtime trace,
6160 pure parser and scanner.
6161
6162 * src/parse-skel.y: Request a pure parser, locations, and prefix
6163 renaming.
6164 (%union): Having several members with the same type does not help
6165 type mismatches, simplify.
6166 (YYPRINT, yyprint): New.
6167 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
6168 (skel_error): this.
6169 Handle locations.
6170 * src/scan-skel.l: Adjust to these changes.
6171 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
6172 (LOCATION_PRINT, skel_control_t): New.
6173
6174 2001-12-30 Akim Demaille <akim@epita.fr>
6175
6176 * src/parse-skel.y: Get rid of the shift/reduce conflict:
6177 replace `gb' with BLANKS.
6178 * src/scan-skel.l: Adjust.
6179
6180 2001-12-30 Akim Demaille <akim@epita.fr>
6181
6182 * src/system.h: We don't need nor want bcopy.
6183 Throw away MS-DOS crap: we don't need getpid.
6184 * configure.in: We don't need strndup. It was even causing
6185 problems: because Flex includes the headers *before* us,
6186 _GNU_SOURCE is not defined by config.h, and therefore strndup was
6187 not visible.
6188 * lib/xstrndup.c: New.
6189 * src/scan-skel.l: Use it.
6190 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
6191 * src/parse-skel.y: Use %directives instead of #defines.
6192
6193 2001-12-30 Akim Demaille <akim@epita.fr>
6194
6195 * src/skeleton.h: New.
6196 * src/output.c (output_parser, output_master_parser): Remove, dead
6197 code.
6198 * src/output.h (get_lines_number, actions_output, guards_output)
6199 (token_definitions_output): Prototype them.
6200 * src/parse-skel.y: Add the license notice.
6201 Include output.h and skeleton.h.
6202 (process_skeleton): Returns void, and takes a single parameter.
6203 * src/scan-skel.l: Add the license notice.
6204 Include skeleton.h.
6205 Don't use %option yylineno: it seems that then Flex imagines
6206 REJECT has been used, and therefore it won't reallocate its
6207 buffers (which makes no other sense to me than a bug). It results
6208 in warnings for `unused: yy_flex_realloc'.
6209
6210 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
6211
6212 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
6213 (MUSCLE_INSERT_PREFIX): ...to there.
6214 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
6215 (MUSCLE_INSERT_PREFIX): Move from here...
6216
6217 * src/bison.hairy: Add a section directive. Put braces around muscle
6218 names. This parser skeleton is still broken, but Bison should not
6219 choke on a bad muscle 'syntax'.
6220 * src/bison.simple: Add a section directive. Put braces around muscle
6221 names.
6222
6223 * src/files.h (strsuffix, stringappend): Add declarations.
6224 (tab_extension): Add declaration.
6225 (short_base_name): Add declaration.
6226
6227 * src/files.c (strsuffix, stringappend): No longer static. These
6228 functions are used in the skeleton parser.
6229 (tab_extension): New.
6230 (compute_base_names): Use the computations done in this function
6231 to guess if the generated parsers should have '.tab' in their
6232 names.
6233 (short_base_name): No longer static.
6234
6235 * src/output.c (output_skeleton): New.
6236 (output): Disable call to output_master_parser, and give a try to
6237 a new skeleton handling system.
6238 (guards_output, actions_output): No longer static.
6239 (token_definitions_output, get_lines_number): No longer static.
6240
6241 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
6242
6243 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
6244 parse-skel.y.
6245
6246 * src/parse-skel.y: New file.
6247 * src/scan-skel.l: New file.
6248
6249 2001-12-29 Akim Demaille <akim@epita.fr>
6250
6251 %name-prefix is broken.
6252
6253 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
6254 Adjust all dependencies.
6255 * tests/headers.at (export YYLTYPE): Strengthen this test: use
6256 %name-prefix.
6257
6258 Renaming yylval but not yylloc is not consistent. Now we do.
6259
6260 * src/bison.simple: Prefix yylloc if used.
6261 * doc/bison.texinfo (Decl Summary): Document that.
6262
6263 2001-12-29 Akim Demaille <akim@epita.fr>
6264
6265 * doc/bison.texinfo: Promote `%long-directive' over
6266 `%long_directive'.
6267 Remove all references to fixed-output-files, yacc is enough.
6268
6269 2001-12-29 Akim Demaille <akim@epita.fr>
6270
6271 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
6272 user prologue. These are defaults.
6273 * tests/actions.at (Mid-rule actions): Make sure the user can
6274 define YYDEBUG and YYERROR_VERBOSE.
6275
6276 2001-12-29 Akim Demaille <akim@epita.fr>
6277
6278 * src/output.c (header_output): Don't forget to export YYLTYPE and
6279 yylloc.
6280 * tests/headers.at (export YYLTYPE): New, make sure it does.
6281 * tests/regression.at (%union and --defines, Invalid CPP headers):
6282 Move to...
6283 * tests/headers.at: here.
6284
6285 2001-12-29 Akim Demaille <akim@epita.fr>
6286
6287 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
6288
6289 2001-12-29 Akim Demaille <akim@epita.fr>
6290
6291 * tests/actions.at (Mid-rule actions): Output on a single line
6292 instead of several.
6293
6294 2001-12-29 Akim Demaille <akim@epita.fr>
6295
6296 * doc/bison.texinfo: Formatting changes.
6297
6298 2001-12-29 Akim Demaille <akim@epita.fr>
6299
6300 Don't store the token defs in a muscle, just be ready to output it
6301 on command. Now possible via `symbols'. Fixes a memory leak.
6302
6303 * src/output.c (token_definitions_output): New.
6304 (output_parser, header_output): Use it.
6305 * src/reader.c (symbols_save): Remove.
6306
6307 2001-12-29 Akim Demaille <akim@epita.fr>
6308
6309 * src/bison.simple: Do not provide a default for YYSTYPE and
6310 YYLTYPE before the user's prologue. Otherwise it's hardly... a
6311 default.
6312
6313 2001-12-29 Akim Demaille <akim@epita.fr>
6314
6315 Mid-rule actions are simply... ignored!
6316
6317 * src/reader.c (readgram): Be sure to attach mid-rule actions to
6318 the empty-rule associated to the dummy symbol, not to the host
6319 rule.
6320 * tests/actions.at (Mid-rule actions): New.
6321
6322 2001-12-29 Akim Demaille <akim@epita.fr>
6323
6324 Memory leak.
6325
6326 * src/reader.c (reader): Free grammar.
6327
6328 2001-12-29 Akim Demaille <akim@epita.fr>
6329
6330 Memory leak.
6331
6332 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
6333 since it allocates it for each state, although only one is needed.
6334 (allocate_storage): Do it here.
6335
6336 2001-12-29 Akim Demaille <akim@epita.fr>
6337
6338 * src/options.h, src/options.c (create_long_option_table): Rename
6339 as...
6340 (long_option_table_new): this, with a clearer prototype.
6341 (percent_table): Remove, unused,
6342 * src/getargs.c (getargs): Adjust.
6343
6344 2001-12-29 Akim Demaille <akim@epita.fr>
6345
6346 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
6347 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
6348 as states.
6349
6350 2001-12-29 Akim Demaille <akim@epita.fr>
6351
6352 * src/lalr.c (build_relations): Rename `states' as `states1'.
6353 Sorry, I don't understand exactly what it is, no better name...
6354
6355 2001-12-29 Akim Demaille <akim@epita.fr>
6356
6357 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
6358 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
6359 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
6360 as rules.
6361
6362 2001-12-29 Akim Demaille <akim@epita.fr>
6363
6364 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
6365 ago.
6366
6367 2001-12-29 Akim Demaille <akim@epita.fr>
6368
6369 * src/reader.c, src/reader.h (user_toknums): Remove.
6370 Adjust all users to use symbols[i]->user_token_number.
6371
6372 2001-12-29 Akim Demaille <akim@epita.fr>
6373
6374 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
6375 Adjust all users to use symbols[i]->prec or ->assoc.
6376
6377 2001-12-29 Akim Demaille <akim@epita.fr>
6378
6379 * src/reader.c, src/reader.h (tags): Remove.
6380 Adjust all users to use symbols[i]->tag.
6381
6382 2001-12-29 Akim Demaille <akim@epita.fr>
6383
6384 * src/gram.h, src/gram.c (symbols): New, similar to state_table
6385 and rule_table.
6386 * src/reader.c (packsymbols): Fill this table.
6387 Drop sprec.
6388 * src/conflicts.c (resolve_sr_conflict): Adjust.
6389 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
6390 single table.
6391 Use symbols[i]->tag instead of tags[i].
6392
6393 2001-12-29 Akim Demaille <akim@epita.fr>
6394
6395 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
6396 In addition, put a comment in there, to replace...
6397 * tests/regression.at (%union and C comments): Remove.
6398
6399 2001-12-29 Akim Demaille <akim@epita.fr>
6400
6401 * tests/regression.at (Web2c Actions): Blindly move the actual
6402 output as expected output. The contents *seem* right to me, but I
6403 can't pretend reading perfectly parser tables... Nonetheless, all
6404 the other tests pass correctly, the table look OK, even though the
6405 presence of `$axiom' is to be noted: AFAICS it is useless (but
6406 harmless).
6407
6408 2001-12-29 Akim Demaille <akim@epita.fr>
6409
6410 * src/reader.c (readgram): Don't add the rule 0 if there were no
6411 rules read. In other words, add it _after_ having performed
6412 grammar sanity checks.
6413 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
6414
6415 2001-12-29 Akim Demaille <akim@epita.fr>
6416
6417 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
6418 visible, and some states have now a different number.
6419
6420 2001-12-29 Akim Demaille <akim@epita.fr>
6421
6422 * src/reader.c (readgram): Bind the initial rule's lineno to that
6423 of the first rule.
6424 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
6425 (Solved SR Conflicts): Adjust rule 0's line number.
6426
6427 2001-12-29 Akim Demaille <akim@epita.fr>
6428
6429 Fix the `GAWK Grammar' failure.
6430
6431 * src/LR0.c (final_state): Initialize to -1 so that we do compute
6432 the reductions of the first state which was mistakenly confused
6433 with the final state because precisely final_state was initialized
6434 to 0.
6435 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
6436 now noticed by Bison.
6437 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
6438 have a reduction on $default.
6439
6440 2001-12-29 Akim Demaille <akim@epita.fr>
6441
6442 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
6443 rule line numbers.
6444 * src/closure.c (print_closure): Likewise.
6445 * src/derives.c (print_derives): Likewise.
6446 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
6447 now.
6448
6449 2001-12-29 Akim Demaille <akim@epita.fr>
6450
6451 * src/lalr.c (lookaheads_print): New.
6452 (lalr): Call it when --trace-flag.
6453 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
6454 are dumped.
6455
6456 2001-12-29 Akim Demaille <akim@epita.fr>
6457
6458 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
6459 when walking through ritem, even via rule->rhs.
6460 * src/reduce.c (dump_grammar, useful_production, reduce_output)
6461 (useful_production, useless_nonterminals): Likewise.
6462 (reduce_grammar_tables): Likewise, plus update nritems.
6463 * src/nullable.c (set_nullable): Likewise.
6464 * src/lalr.c (build_relations): Likewise.
6465 * tests/sets.at (Nullable): Adjust.
6466 Fortunately, now, the $axiom is no longer nullable.
6467
6468 2001-12-29 Akim Demaille <akim@epita.fr>
6469
6470 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
6471 the 0-sentinel.
6472 * src/gram.c (ritem_longest_rhs): Likewise.
6473 * src/reduce.c (nonterminals_reduce): Likewise.
6474 * src/print_graph.c (print_graph): Likewise.
6475 * src/output.c (output_rule_data): Likewise.
6476 * src/nullable.c (set_nullable): Likewise.
6477
6478 2001-12-29 Akim Demaille <akim@epita.fr>
6479
6480 * src/output.c: Comment changes.
6481
6482 2001-12-27 Paul Eggert <eggert@twinsun.com>
6483
6484 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
6485 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
6486 Sparc, as they were causing more porting problems than the
6487 (minor) performance improvement was worth.
6488
6489 Also, catch up with 1.31's YYSTD.
6490
6491 2001-12-27 Akim Demaille <akim@epita.fr>
6492
6493 * src/output.c (output_gram): Rely on nritems, not the
6494 0-sentinel. See below.
6495 Use -1 as separator, not 0.
6496 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
6497 Rely on -1 as separator in yyrhs, instead of 0.
6498 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
6499 twice `Now at end of input', therefore there are two lines less to
6500 expect.
6501
6502 2001-12-27 Akim Demaille <akim@epita.fr>
6503
6504 * tests/regression.at (Unresolved SR Conflicts):
6505 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
6506 below.
6507
6508 2001-12-27 Akim Demaille <akim@epita.fr>
6509
6510 * src/LR0.c (new_state): Recognize the final state by the fact it
6511 is reached by eoftoken.
6512 (insert_start_shifting_state, insert_eof_shifting_state)
6513 (insert_accepting_state, augment_automaton): Remove, since now
6514 these states are automatically computed from the initial state.
6515 (generate_states): Adjust.
6516 * src/print.c: When reporting a rule number to the user, substract
6517 1, so that the axiom rule is rule 0, and the first user rule is 1.
6518 * src/reduce.c: Likewise.
6519 * src/print_graph.c (print_core): For the time being, just as for
6520 the report, depend upon --trace-flags to dump the full set of
6521 items.
6522 * src/reader.c (readgram): Once the grammar read, insert the rule
6523 0: `$axiom: START-SYMBOL $'.
6524 * tests/set.at: Adjust: rule 0 is now displayed, and since the
6525 number of the states has changed (the final state is no longer
6526 necessarily the last), catch up.
6527
6528 2001-12-27 Akim Demaille <akim@epita.fr>
6529
6530 Try to make the use of the eoftoken valid. Given that its value
6531 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
6532 is used instead of > 0 where appropriate, (ii), depend upon nritems
6533 instead of the 0-sentinel.
6534
6535 * src/gram.h, src/gram.c (nritems): New.
6536 Expected to be duplication of nitems, but for the time being...
6537 * src/reader.c (packgram): Assert nritems and nitems are equal.
6538 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
6539 * src/closure.c (print_closure, print_fderives): Likewise.
6540 * src/gram.c (ritem_print): Likewise.
6541 * src/print.c (print_core, print_grammar): Likewise.
6542 * src/print_graph.c: Likewise.
6543
6544 2001-12-27 Akim Demaille <akim@epita.fr>
6545
6546 * src/main.c (main): If there are complains after grammar
6547 reductions, then output the report anyway if requested, then die.
6548 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
6549 * src/reader.c (eoftoken): New.
6550 (parse_token_decl): If the token being defined has value `0', it
6551 is the eoftoken.
6552 (packsymbols): No longer hack `tags' to insert `$' by hand.
6553 Be sure to preserve the value of the eoftoken.
6554 (reader): Make sure eoftoken is defined.
6555 Initialize nsyms to 0: now eoftoken is created just like the others.
6556 * src/print.c (print_grammar): Don't special case the eof token.
6557 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
6558 lie anyway, albeit pleasant.
6559 * tests/calc.at: Exercise error messages with eoftoken.
6560 Change the grammar so that empty input is invalid.
6561 Adjust expectations.
6562 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
6563
6564 2001-12-27 Akim Demaille <akim@epita.fr>
6565
6566 * configure.in: Check the protos of strchr ans strspn.
6567 Replace strchr if needed.
6568 * src/system.h: Provide the protos of strchr, strspn and memchr if
6569 missing.
6570 * lib/strchr.c: New.
6571 * src/reader.c (symbols_save): Use strchr.
6572
6573 2001-12-27 Akim Demaille <akim@epita.fr>
6574
6575 * src/print.c, src/print_graph.c (escape): New.
6576 Use it to quote the TAGS outputs.
6577 * src/print_graph.c (print_state): Now errors are in red, and
6578 reductions in green.
6579 Prefer high to wide: output the state number on a line of its own.
6580
6581 2001-12-27 Akim Demaille <akim@epita.fr>
6582
6583 * src/state.h, src/state.c (reductions_new): New.
6584 * src/LR0.c (set_state_table): Let all the states have a
6585 `reductions', even if reduced to 0.
6586 (save_reductions): Adjust.
6587 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
6588 * src/print.c (print_reductions, print_actions): Adjust.
6589 * src/output.c (action_row): Adjust.
6590
6591 2001-12-27 Akim Demaille <akim@epita.fr>
6592
6593 * src/state.h, src/state.c (errs_new, errs_dup): New.
6594 * src/LR0.c (set_state_table): Let all the states have an errs,
6595 even if reduced to 0.
6596 * src/print.c (print_errs, print_reductions): Adjust.
6597 * src/output.c (output_actions, action_row): Adjust.
6598 * src/conflicts.c (resolve_sr_conflict): Adjust.
6599
6600 2001-12-27 Akim Demaille <akim@epita.fr>
6601
6602 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
6603
6604 2001-12-27 Akim Demaille <akim@epita.fr>
6605
6606 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
6607 * src/print.c: here.
6608 (lookaheadset, shiftset): New, used as additional storage by
6609 print_reductions.
6610 (print_results): Adjust.
6611 (print_shifts, print_gotos, print_errs): New, extracted from...
6612 (print_actions): here.
6613 * src/print_graph.c (print_actions): Remove dead code.
6614
6615 2001-12-27 Akim Demaille <akim@epita.fr>
6616
6617 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
6618 `$n' and `@n'.
6619
6620 2001-12-27 Akim Demaille <akim@epita.fr>
6621
6622 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
6623 (build_relations): Adjust.
6624
6625 2001-12-27 Akim Demaille <akim@epita.fr>
6626
6627 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
6628 duplication.
6629
6630 2001-12-27 Akim Demaille <akim@epita.fr>
6631
6632 * src/reader.c (packgram): Catch nitems overflows.
6633
6634 2001-12-27 Akim Demaille <akim@epita.fr>
6635
6636 * src/files.c, src/files.h (guard_obstack): Remove.
6637 * src/output.c (output): Adjust.
6638 * src/reader.c (parse_braces): New, factoring...
6639 (copy_action, copy_guard): these two which are renamed as...
6640 (parse_action, parse_guard): these.
6641 As a voluntary consequence, using braces around guards is now
6642 mandatory.
6643
6644 2001-12-27 Akim Demaille <akim@epita.fr>
6645
6646 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
6647 * src/reader.c (symbol_list): `guard' and `guard_line' are new
6648 members.
6649 (symbol_list_new): Adjust.
6650 (copy_action): action_line is the first line, not the last.
6651 (copy_guard): Just as for actions, store the `action' only, not
6652 the switch/case/break flesh.
6653 Don't parse the user action that might follow the guard, let...
6654 (readgram): do it, i.e., now, there can be an action after a
6655 guard.
6656 In other words the guard is just explicitly optional.
6657 (packgram): Adjust.
6658 * src/output.c (guards_output): New.
6659 (output_parser): Call it when needed.
6660 (output): Also free the guard and attrs obstacks.
6661 * src/files.c, src/files.h (obstack_save): Remove.
6662 (output_files): Remove.
6663 As a result, if one needs the former `.act' file, using an
6664 appropriate skeleton which requires actions and guards is now
6665 required.
6666 * src/main.c (main): Adjust.
6667 * tests/semantic.at: New.
6668 * tests/regression.at: Use `input.y' as input file name.
6669 Avoid 8+3 problems by requiring input.c when the test needs the
6670 parser.
6671
6672 2001-12-27 Akim Demaille <akim@epita.fr>
6673
6674 * src/reader.c (symbol_list_new): Be sure to initialize all the
6675 fields.
6676
6677 2001-12-27 Akim Demaille <akim@epita.fr>
6678
6679 All the hacks using a final pseudo state are now useless.
6680
6681 * src/LR0.c (set_state_table): state_table holds exactly nstates.
6682 * src/lalr.c (nLA): New.
6683 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
6684 instead of lookaheadsp from the pseudo state (nstate + 1).
6685
6686 2001-12-27 Akim Demaille <akim@epita.fr>
6687
6688 * src/output.c (action_row, token_actions): Use a state_t instead
6689 of a integer, and nlookaheads instead of the following state's
6690 lookaheadsp.
6691
6692 2001-12-27 Akim Demaille <akim@epita.fr>
6693
6694 * src/conflicts.c (log_resolution, flush_shift)
6695 (resolve_sr_conflict, set_conflicts, solve_conflicts)
6696 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
6697 (conflicts_print, print_reductions): Use a state_t instead of an
6698 integer when referring to a state.
6699 As much as possible, depend upon nlookaheads, instead of the
6700 `lookaheadsp' member of the following state (since lookaheads of
6701 successive states are successive, the difference between state n + 1
6702 and n served as the number of lookaheads for state n).
6703 * src/lalr.c (add_lookback_edge): Likewise.
6704 * src/print.c (print_core, print_actions, print_state)
6705 (print_results): Likewise.
6706 * src/print_graph.c (print_core, print_actions, print_state)
6707 (print_graph): Likewise.
6708 * src/conflicts.h: Adjust.
6709
6710 2001-12-27 Akim Demaille <akim@epita.fr>
6711
6712 * src/bison.hairy: Formatting/comment changes.
6713 ANSIfy.
6714 Remove `register' indications.
6715 Add plenty of `static'.
6716
6717 2001-12-27 Akim Demaille <akim@epita.fr>
6718
6719 * src/output.c (prepare): Drop the muscle `ntbase' which
6720 duplicates ntokens.
6721 * src/bison.simple: Formatting/comment changes.
6722 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
6723 is an undocumented synonym.
6724
6725 2001-12-22 Akim Demaille <akim@epita.fr>
6726
6727 * src/output.c (output_table_data): Change the prototype to use
6728 `int' for array ranges: some invocations do pass an int, not a
6729 short.
6730 Reported by Wayne Green.
6731
6732 2001-12-22 Akim Demaille <akim@epita.fr>
6733
6734 Some actions of web2c.y are improperly triggered.
6735 Reported by Mike Castle.
6736
6737 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
6738 * tests/regression.at (Web2c): Rename as...
6739 (Web2c Report): this.
6740 (Web2c Actions): New.
6741
6742 2001-12-22 Akim Demaille <akim@epita.fr>
6743
6744 Reductions in web2c.y are improperly reported.
6745 Reported by Mike Castle.
6746
6747 * src/conflicts.c (print_reductions): Fix.
6748 * tests/regression.at (Web2c): New.
6749
6750 2001-12-18 Akim Demaille <akim@epita.fr>
6751
6752 Some host fail on `assert (!"foo")', which expands to
6753 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
6754 Reported by Nelson Beebee.
6755
6756 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
6757 `#define it_succeeded 0' and `assert (it_succeeded)'.
6758
6759 2001-12-17 Marc Autret <autret_m@epita.fr>
6760
6761 * src/bison.simple: Don't hard code the skeleton line and filename.
6762 * src/output.c (output_parser): Rename 'line' as 'output_line'.
6763 New line counter 'skeleton_line' (skeleton-line muscle).
6764
6765 2001-12-17 Paul Eggert <eggert@twinsun.com>
6766
6767 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
6768 YYDEBUG must be defined to a nonzero value.
6769
6770 * src/bison.simple (yytname): Do not assume that the user defines
6771 YYDEBUG to a properly parenthesized expression.
6772
6773 2001-12-17 Akim Demaille <akim@epita.fr>
6774
6775 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
6776 nlookaheads is a new member.
6777 Adjust all users.
6778 * src/lalr.h (nlookaheads): Remove this orphan declaration.
6779 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
6780 state.
6781
6782 2001-12-17 Akim Demaille <akim@epita.fr>
6783
6784 * src/files.h, src/files.c (open_files, close_files): Remove.
6785 * src/main.c (main): Don't open/close files, nor invoke lex_free,
6786 let...
6787 * src/reader.c (reader): Do it.
6788
6789 2001-12-17 Akim Demaille <akim@epita.fr>
6790
6791 * src/conflicts.c (print_reductions): Formatting changes.
6792
6793 2001-12-17 Akim Demaille <akim@epita.fr>
6794
6795 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
6796 (flush_reduce): New.
6797 (resolve_sr_conflict): Adjust.
6798
6799 2001-12-17 Akim Demaille <akim@epita.fr>
6800
6801 * src/output.c (output_obstack): Be static and rename as...
6802 (format_obstack): this, to avoid any confusion with files.c's
6803 output_obstack.
6804 * src/reader.h (muscle_obstack): Move to...
6805 * src/output.h: here, since it's defined in output.c.
6806
6807 2001-12-17 Akim Demaille <akim@epita.fr>
6808
6809 * src/output.c (action_row, save_column, default_goto)
6810 (sort_actions, matching_state, pack_vector): Better variable
6811 locality.
6812
6813 2001-12-17 Akim Demaille <akim@epita.fr>
6814
6815 * src/output.c: Various formatting changes.
6816
6817 2001-12-17 Akim Demaille <akim@epita.fr>
6818
6819 * src/files.c (output_files): Free the output_obstack.
6820 * src/main.c (main): Call print and print_graph conditionally.
6821 * src/print.c (print): Work unconditionally.
6822 * src/print_graph.c (print_graph): Work unconditionally.
6823 * src/conflicts.c (log_resolution): Output only if verbose_flag.
6824
6825 2001-12-16 Marc Autret <autret_m@epita.fr>
6826
6827 * src/output.c (actions_output): Fix. When we use %no-lines,
6828 there is one less line per action.
6829
6830 2001-12-16 Marc Autret <autret_m@epita.fr>
6831
6832 * src/bison.simple: Remove a useless #line directive.
6833 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
6834 * src/output.c (get_lines_number): New.
6835 (output_parser): Adjust, now takes care about the lines of a
6836 output muscles.
6837 Fix line numbering.
6838 (actions_output): Computes the number of lines taken by actions.
6839 (output_master_parser): Insert new skeleton which is the name of
6840 the output parser file name.
6841
6842 2001-12-15 Marc Autret <autret_m@epita.fr>
6843
6844 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
6845
6846 2001-12-15 Marc Autret <autret_m@epita.fr>
6847
6848 * src/output.c (output_gram): Keep track of the hairy one.
6849
6850 2001-12-15 Akim Demaille <akim@epita.fr>
6851
6852 Make `make distcheck' work.
6853
6854 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
6855 system.h which uses libgettext.h.
6856
6857 2001-12-15 Akim Demaille <akim@epita.fr>
6858
6859 * src/nullable.c (set_nullable): Useless rules must be skipped,
6860 otherwise, since we range over their symbols, we might look at a
6861 nonterminal which no longer ``exists'', i.e., it is not counted in
6862 `nvars', hence we overflow our arrays.
6863
6864 2001-12-15 Akim Demaille <akim@epita.fr>
6865
6866 The header can also be produced directly, without any obstack!
6867 Yahoo!
6868
6869 * src/files.c, src/files.h (defines_obstack): Remove.
6870 (compute_header_macro): Global.
6871 (defines_obstack_save): Remove.
6872 * src/reader.c (parse_union_decl): No longer output to
6873 defines_obstack: its content can be found in the `stype' muscle
6874 anyway.
6875 (output_token_translations): Merge into...
6876 (symbols_output): this.
6877 Rename as...
6878 (symbols_save): this.
6879 (reader): Adjust.
6880 * src/output.c (header_output): New.
6881 (output): Call it.
6882
6883 2001-12-15 Akim Demaille <akim@epita.fr>
6884
6885 * src/reader.c (parse_union_decl): Instead of handling two obstack
6886 simultaneously, use one to define the `stype' muscle, and use the
6887 value of the latter to fill defines_obstack.
6888 (copy_comment): Remove.
6889 (copy_comment2): Work for a single obstack.
6890 Rename as...
6891 (copy_comment): this.
6892
6893 2001-12-15 Akim Demaille <akim@epita.fr>
6894
6895 * src/lex.c, src/lex.h (xgetc): No longer static.
6896 * src/reader.c (parse_union_decl): Revamp.
6897
6898 2001-12-15 Akim Demaille <akim@epita.fr>
6899
6900 Still making progress in separating Bison into (i) input, (ii)
6901 process, (iii) output: now we can directly output the parser file
6902 without using table_obstack at all.
6903
6904 * src/files.c, src/files.h (table_obstack): Bye bye.
6905 (parser_file_name): New.
6906 * src/files.c (compute_output_file_names): Compute it.
6907 * src/output.c (actions_output, output_parser)
6908 (output_master_parser): To a file instead of an obstack.
6909
6910 2001-12-15 Akim Demaille <akim@epita.fr>
6911
6912 Attach actions to rules, instead of pre-outputting them to
6913 actions_obstack.
6914
6915 * src/gram.h (rule_t): action and action_line are new members.
6916 * src/reader.c (symbol_list): Likewise.
6917 (copy_action): Save the actions within the rule.
6918 (packgram): Save them in rule_table.
6919 * src/output.c (actions_output): New.
6920 (output_parser): Use it on `%%actions'.
6921 (output_rule_data): Don't free rule_table.
6922 (output): Do it.
6923 (prepare): Don't save the `action' muscle.
6924 * src/bison.simple: s/%%action/%%actions/.
6925
6926 2001-12-15 Akim Demaille <akim@epita.fr>
6927
6928 * src/reader.c (copy_action): When --yacc, don't append a `;'
6929 to the user action: let it fail if lacking.
6930 Suggested by Arnold Robbins and Tom Tromey.
6931
6932 2001-12-14 Akim Demaille <akim@epita.fr>
6933
6934 * src/lex.c (literalchar): Simply return the char you decoded, non
6935 longer mess around with obstacks and int pointers.
6936 Adjust all callers.
6937
6938 2001-12-14 Akim Demaille <akim@epita.fr>
6939
6940 * src/lex.c (literalchar): Don't escape the special characters,
6941 just decode them, and keep them as char (before, eol was output as
6942 the 2 char string `\n' etc.).
6943 * src/output.c (output_rule_data): Use quotearg to output the
6944 token strings.
6945
6946 2001-12-13 Paul Eggert <eggert@twinsun.com>
6947
6948 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
6949 Do not infringe on the global user namespace when using C++.
6950 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
6951 All uses of `fprintf' and `stderr' changed.
6952
6953 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
6954
6955 2001-12-13 Akim Demaille <akim@epita.fr>
6956
6957 The computation of nullable is broken: it doesn't handle empty
6958 RHS's properly.
6959
6960 * tests/torture.at (GNU AWK Grammar): New.
6961 * tests/sets.at (Nullable): New.
6962 * src/nullable.c (set_nullable): Instead of blindly looping over
6963 `ritems', loop over the rules, and then over their rhs's.
6964
6965 Work around Autotest bugs.
6966
6967 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
6968 frame, because Autotest understand lines starting with a `+' as
6969 traces from the shell. Then, they are not processed properly.
6970 Admittedly an Autotest bug, but we don't have time to wait for
6971 Autotest to catch up.
6972 * tests/regression.at (Broken Closure): Adjust to the new table
6973 frames.
6974 Move to...
6975 * tests/sets.at: here.
6976
6977 2001-12-13 Akim Demaille <akim@epita.fr>
6978
6979 * src/closure.c (closure): Use nrules instead of playing tricks
6980 with BITS_PER_WORD.
6981
6982 2001-12-13 Akim Demaille <akim@epita.fr>
6983
6984 * src/print.c (print_actions): Output the handling of `$' as the
6985 traces do: shifting the token EOF. Before EOF was treated as a
6986 nonterminal.
6987 * tests/regression.at: Adjust some tests.
6988 * src/print_graph.c (print_core): Complete the set of items via
6989 closure. The next-to-final and final states are still unsatisfying,
6990 but that's to be addressed elsewhere.
6991 No longer output the rule numbers, but do output the state number.
6992 A single loop for the shifts + gotos is enough, but picked a
6993 distinct color for each.
6994 (print_graph): Initialize and finalize closure.
6995
6996 2001-12-13 Akim Demaille <akim@epita.fr>
6997
6998 * src/reader.c (readgram): Remove dead code, an strip useless
6999 braces.
7000 (get_type): Remove, unused.
7001
7002 2001-12-12 Akim Demaille <akim@epita.fr>
7003
7004 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
7005 on that of lib/error.c.
7006
7007 2001-12-12 Akim Demaille <akim@epita.fr>
7008
7009 Some hosts don't like `/' in includes.
7010
7011 * src/system.h: Include libgettext.h without qualifying the path.
7012 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
7013 $(top_srcdir).
7014
7015 2001-12-11 Marc Autret <autret_m@epita.fr>
7016
7017 * src/output.c (output_parser): Remove useless muscle.
7018
7019 2001-12-11 Marc Autret <autret_m@epita.fr>
7020
7021 * src/bison.simple: Remove #line just before %%epilogue. It
7022 is now handled in ...
7023 * src/reader.c (read_additionnal_code): Add the output of a
7024 #line for the epilogue.
7025
7026 2001-12-10 Marc Autret <autret_m@epita.fr>
7027
7028 * src/reader.c (copy_definition): Re-use CPP-outed code which
7029 replace precedent remove.
7030 * src/bison.simple: Remove #line before %%prologue because
7031 %%input-line is wrong at this time.
7032
7033 2001-12-10 Marc Autret <autret_m@epita.fr>
7034
7035 * src/reader.c (symbols_output): Clean up.
7036 * src/output.c (output_gram, output): Clean up.
7037
7038 2001-12-10 Akim Demaille <akim@epita.fr>
7039
7040 * src/lalr.c (initialize_lookaheads): New. Extracted from...
7041 * src/LR0.c (set_state_table): here.
7042 * src/lalr.c (lalr): Call it.
7043
7044 2001-12-10 Akim Demaille <akim@epita.fr>
7045
7046 * src/state.h (shifts): Remove the `number' member: shifts are
7047 attached to state, hence no longer need to be labelled with a
7048 state number.
7049
7050 2001-12-10 Akim Demaille <akim@epita.fr>
7051
7052 Now that states have a complete set of members, the linked list of
7053 shifts is useless: just fill directly the state's shifts member.
7054
7055 * src/state.h (shifts): Remove the `next' member.
7056 * src/LR0.c (first_state, last_state): Remove.
7057 Adjust the callers.
7058 (augment_automaton): Don't look for the shifts that must be added
7059 a shift on EOF: it is those of the state we looked for! But now,
7060 since shifts are attached, it is no longer needed to looking
7061 merely by its id: its number.
7062
7063 2001-12-10 Akim Demaille <akim@epita.fr>
7064
7065 * src/LR0.c (augment_automaton): Better variable locality.
7066 Remove an impossible branch: if there is a state corresponding to
7067 the start symbol being shifted, then there is shift for the start
7068 symbol from the initial state.
7069
7070 2001-12-10 Akim Demaille <akim@epita.fr>
7071
7072 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
7073 only when appropriate: when insert_start_shifting_state' is not
7074 invoked.
7075 * tests/regression.at (Rule Line Numbers): Adjust.
7076
7077 2001-12-10 Akim Demaille <akim@epita.fr>
7078
7079 * src/LR0.c (augment_automaton): Now that all states have shifts,
7080 merge the two cases addition shifts to the initial state.
7081
7082 2001-12-10 Akim Demaille <akim@epita.fr>
7083
7084 * src/lalr.c (set_state_table): Move to...
7085 * src/LR0.c: here.
7086 * src/lalr.c (lalr): Don't call it...
7087 * src/LR0.c (generate_states): do it.
7088 * src/LR0.h (first_state): Remove, only the table is used.
7089
7090 2001-12-10 Akim Demaille <akim@epita.fr>
7091
7092 * src/LR0.h (first_shift, first_reduction): Remove.
7093 * src/lalr.c: Don't use first_shift: find shifts through the
7094 states.
7095
7096 2001-12-10 Akim Demaille <akim@epita.fr>
7097
7098 * src/LR0.c: Attach shifts to states as soon as they are
7099 computed.
7100 * src/lalr.c (set_state_table): Instead of assigning shifts to
7101 state, just assert that the mapping was properly done.
7102
7103 2001-12-10 Akim Demaille <akim@epita.fr>
7104
7105 * src/LR0.c (insert_start_shift): Rename as...
7106 (insert_start_shifting_state): this.
7107 (insert_eof_shifting_state, insert_accepting_state): New.
7108 (augment_automaton): Adjust.
7109 Better locality of the variables.
7110 When looking if the start_symbol is shifted from the initial
7111 state, using `while (... symbol != start_symbol ...)' sounds
7112 better than `while (... symbol < start_symbol ...)': If fail
7113 to see how the order between symbols could be relevant!
7114
7115 2001-12-10 Akim Demaille <akim@epita.fr>
7116
7117 * src/getargs.h: Don't declare `spec_name_prefix' and
7118 `spec_file_prefix', declared by src/files.h.
7119 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
7120 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
7121 * src/output.c (prepare): Adjust.
7122 * src/reader.c (symbols_output): Likewise.
7123 * src/vmsgetargs.c: Vaguely adjust, but who cares?
7124
7125 2001-12-10 Akim Demaille <akim@epita.fr>
7126
7127 * src/muscle_tab.c (muscle_init): NULL is a better default than
7128 `"0"'.
7129
7130 2001-12-10 Akim Demaille <akim@epita.fr>
7131
7132 * src/reader.c (reader): Calling symbols_output once is enough.
7133
7134 2001-12-10 Akim Demaille <akim@epita.fr>
7135
7136 Now that states have a complete set of members, the linked list of
7137 reductions is useless: just fill directly the state's reductions
7138 member.
7139
7140 * src/state.h (struct reductions): Remove member `number' and
7141 `next'.
7142 * src/LR0.c (first_reduction, last_reduction): Remove.
7143 (save_reductions): Don't link the new reductions, store them in
7144 this_state.
7145 * src/lalr.c (set_state_table): No need to attach reductions to
7146 states, it's already done.
7147 * src/output.c (output_actions): No longer free the shifts, then
7148 the reductions, then the states: free all the states and their
7149 members.
7150
7151 2001-12-10 Akim Demaille <akim@epita.fr>
7152
7153 * src/options.c (OPTN, DRTV, BOTH): New.
7154 (option_table): Use them.
7155
7156 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
7157 the job of system.h.
7158 * src/options.c: Don't include stdio.h and xalloc.h for the same
7159 reasons.
7160
7161 2001-12-10 Akim Demaille <akim@epita.fr>
7162
7163 * src/output.c (output, prepare): Make sure the values of the
7164 muscles `action' and `prologue' are 0-terminated.
7165
7166 2001-12-10 Akim Demaille <akim@epita.fr>
7167
7168 Clean up GCC warnings.
7169
7170 * src/reader.c (copy_action): `buf' is not used.
7171 (parse_skel_decl): Be static.
7172 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
7173 * src/options.h (create_long_option_table): Have a real prototype.
7174 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
7175 (hash_delete_at): Return const void *.
7176 Adjust casts to preserve the const.
7177
7178 2001-12-10 Akim Demaille <akim@epita.fr>
7179
7180 * configure.in: Require 2.52g.
7181 M4 is not needed, but AUTOM4TE is.
7182 * m4/m4.m4: Remove.
7183 * tests/Makefile.am: Adjust.
7184
7185 2001-12-10 Akim Demaille <akim@epita.fr>
7186
7187 One structure for states is enough, even though theoretically
7188 there are LR(0) states and LALR(1) states.
7189
7190 * src/lalr.h (state_t): Remove.
7191 (state_table): Be state_t **, not state_t *.
7192 * src/state.h (core, CORE_ALLOC): Rename as...
7193 (state_t, STATE_ALLOC): this.
7194 Add the LALR(1) members: shifts, reductions, errs.
7195 * src/LR0.c (state_table): Rename as...
7196 (state_hash): this, to avoid name clashes with the global
7197 `state_table'.
7198 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
7199 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
7200
7201 2001-12-10 Akim Demaille <akim@epita.fr>
7202
7203 Bison dumps core on bash.y.
7204 Reported by Pascal Bart.
7205
7206 * src/warshall.c (bitmatrix_print): New.
7207 (TC): Use it.
7208 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
7209 j must be the outer loop.
7210 * tests/regression.at (Broken Closure): New.
7211
7212 2001-12-05 Akim Demaille <akim@epita.fr>
7213
7214 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
7215 its argument.
7216 Reported by Peter Hamorsky.
7217
7218 2001-12-05 Akim Demaille <akim@epita.fr>
7219
7220 * src/conflicts.c (err_table): Remove.
7221 (resolve_sr_conflict): Adjust.
7222 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
7223 Rename as...
7224 (state_t.reductions, state_t.shifts): this.
7225
7226 2001-12-05 Akim Demaille <akim@epita.fr>
7227
7228 * src/reduce.c (reduce_grammar_tables): No longer disable the
7229 removal of useless rules via CPP but via `if (0)', so that the
7230 compiler still check the code is valid.
7231 For instance, it should have noticed `rline' no longer exists: use
7232 the `line' member of rule_t.
7233 * src/gram.c (dummy, rline): Remove, unused.
7234
7235 2001-12-05 Akim Demaille <akim@epita.fr>
7236
7237 * src/output.c (pack_vector): Use assert, not berror.
7238 * src/main.c (berror): Remove, unused.
7239
7240 2001-12-05 Akim Demaille <akim@epita.fr>
7241
7242 New experimental feature: if --verbose --trace output all the
7243 items of a state, not only its kernel.
7244
7245 * src/print.c (print_core): If `trace_flag', then invoke closure
7246 before outputting the items of the state (print_core is no longer
7247 a correct name them).
7248 (print_results): Invoke new_closure/free_closure if needed.
7249
7250 2001-12-05 Akim Demaille <akim@epita.fr>
7251
7252 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
7253 * src/closure.c, src/closure.h (itemsetsize): Rename as...
7254 (nitemset): for consistency with the rest of the project.
7255
7256 2001-12-05 Akim Demaille <akim@epita.fr>
7257
7258 * src/closure.c (print_closure): Improve.
7259 (closure): Use it for printing input and output.
7260
7261 2001-12-05 Akim Demaille <akim@epita.fr>
7262
7263 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
7264 indexed by nonterminals.
7265
7266 2001-12-05 Akim Demaille <akim@epita.fr>
7267
7268 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
7269 what it was!).
7270 * src/warshall.h: Remove accidental duplication of the content.
7271
7272 2001-12-05 Akim Demaille <akim@epita.fr>
7273
7274 * src/closure.c (set_fderives): De-obfuscate.
7275
7276 2001-12-05 Akim Demaille <akim@epita.fr>
7277
7278 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
7279
7280 2001-12-05 Akim Demaille <akim@epita.fr>
7281
7282 * src/closure.c (set_firsts): De-obfuscate.
7283
7284 2001-12-05 Akim Demaille <akim@epita.fr>
7285
7286 * src/output.c (action_row): De-obfuscate
7287 using the good o' techniques: arrays not pointers, variable
7288 locality, BITISSET, RESETBIT etc.
7289
7290 2001-12-05 Akim Demaille <akim@epita.fr>
7291
7292 Pessimize the code to simplify it: from now on, all the states
7293 have a valid SHIFTS, which NSHIFTS is possibly 0.
7294
7295 * src/LR0.c (shifts_new): Be global and move to..
7296 * src/state.c, src/state.h: here.
7297 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
7298 * src/print_graph: Adjust.
7299
7300 2001-12-05 Akim Demaille <akim@epita.fr>
7301
7302 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
7303 * src/conflicts.c: Use it.
7304 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
7305 incorrectly ``simplified''.
7306
7307 2001-12-05 Akim Demaille <akim@epita.fr>
7308
7309 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
7310 using the good o' techniques: arrays not pointers, variable
7311 locality, BITISSET, RESETBIT etc.
7312
7313 2001-12-05 Akim Demaille <akim@epita.fr>
7314
7315 * src/state.h (SHIFT_SYMBOL): New.
7316 * src/conflicts.c: Use it to deobfuscate.
7317
7318 2001-12-05 Akim Demaille <akim@epita.fr>
7319
7320 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
7321 (print_reductions): De-obfuscate using the good o' techniques:
7322 arrays not pointers, variable locality, BITISSET.
7323
7324 2001-12-05 Akim Demaille <akim@epita.fr>
7325
7326 * src/conflicts.c (print_reductions): Arrays, not pointers.
7327 Use BITISSET.
7328
7329 2001-12-05 Akim Demaille <akim@epita.fr>
7330
7331 * src/conflicts.c (print_reductions): Pessimize, but clarify.
7332
7333 2001-12-05 Akim Demaille <akim@epita.fr>
7334
7335 * src/conflicts.c (print_reductions): Improve variable locality.
7336
7337 2001-12-05 Akim Demaille <akim@epita.fr>
7338
7339 * src/conflicts.c (print_reductions): Pessimize, but clarify.
7340
7341 2001-12-05 Akim Demaille <akim@epita.fr>
7342
7343 * src/conflicts.c (print_reductions): Improve variable locality.
7344
7345 2001-12-05 Akim Demaille <akim@epita.fr>
7346
7347 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
7348 * src/lalr.c: Use them.
7349
7350 2001-12-05 Akim Demaille <akim@epita.fr>
7351
7352 * src/LR0.c (augment_automaton): Formatting changes.
7353 Better variable locality.
7354
7355 2001-12-05 Akim Demaille <akim@epita.fr>
7356
7357 * src/lalr.c (matrix_print): New.
7358 (transpose): Use it.
7359 Use arrays instead of pointers.
7360
7361 2001-12-05 Akim Demaille <akim@epita.fr>
7362
7363 * src/lalr.c (maxrhs): Move to...
7364 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
7365 * src/lalr.c (build_relations): Adjust.
7366
7367 2001-12-05 Akim Demaille <akim@epita.fr>
7368
7369 * src/lalr.c (transpose): Free the memory allocated to the
7370 argument, as it is replaced by the results by the unique caller.
7371 (build_relations): Merely invoke transpose: it handles the memory
7372 deallocation.
7373 Improve variable locality.
7374 Avoid variables used as mere abbreviations.
7375 (compute_lookaheads): Use arrays instead of pointers.
7376
7377 2001-12-05 Akim Demaille <akim@epita.fr>
7378
7379 * src/lalr.c (initialize_F): Improve variable locality.
7380 Avoid variables used as mere abbreviations.
7381
7382 2001-12-05 Akim Demaille <akim@epita.fr>
7383
7384 * src/derives.c (print_derives): Display the ruleno.
7385 * src/lalr.c (initialize_F, transpose): Better variable locality
7386 to improve readability.
7387 Avoid variables used as mere abbreviations.
7388
7389 2001-12-05 Akim Demaille <akim@epita.fr>
7390
7391 * src/lalr.c (traverse): Use arrays instead of pointers.
7392
7393 2001-12-05 Akim Demaille <akim@epita.fr>
7394
7395 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
7396 the handling of squeue.
7397 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
7398
7399 2001-12-05 Akim Demaille <akim@epita.fr>
7400
7401 Because useless nonterminals are now kept alive (instead of being
7402 `destroyed'), we now sometimes examine them, and store information
7403 related to them. Hence we need to know their number, and adjust
7404 memory allocations.
7405
7406 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
7407 static.
7408 * src/LR0.c (allocate_itemsets): The memory allocated to
7409 `symbol_count' was used for two different purpose: once to count
7410 the number of occurrences of each symbol, and later reassigned to
7411 `shift_symbol', containing the symbol that can be shifted from a
7412 given state.
7413 Deobfuscate, i.e., allocate, use and free `symbol_count' here
7414 only, and...
7415 (new_itemsets): Allocate `shift_symbol' here.
7416 (allocate_itemsets): symbol_count includes useless nonterminals.
7417 Make room for them.
7418 (free_storage): Use `free', not `XFREE', for pointers that cannot
7419 be null.
7420
7421 2001-12-05 Akim Demaille <akim@epita.fr>
7422
7423 * src/nullable.c (set_nullable): Deobfuscate the handling of
7424 ritem.
7425 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
7426
7427 2001-12-05 Akim Demaille <akim@epita.fr>
7428
7429 * src/gram.c, src/gram.h (ritem_print): New.
7430 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
7431 (This useless function was defined only to work around VMS linkers
7432 that can't handle compilation units with variables only).
7433 * src/reduce.c (dump_grammar): Use it to trace the construction of
7434 ritem.
7435
7436 2001-12-04 Paul Eggert <eggert@twinsun.com>
7437
7438 * src/bison.simple (union yyalloc): Change member names
7439 to be the same as the stack names.
7440 (yyparse): yyptr is now union yyalloc *, not char *.
7441 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
7442 and may generate better code on some machines.
7443 (yystpcpy): Use prototype if __STDC__ is defined, not just
7444 if __cplusplus is defined.
7445
7446 2001-11-30 Akim Demaille <akim@epita.fr>
7447
7448 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
7449 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
7450 Gettext doesn't compile cleanly, and dies with -Werror.
7451 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
7452 Include WARNING_CFLAGS here.
7453 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
7454 before being defined.
7455
7456 2001-11-27 Paul Eggert <eggert@twinsun.com>
7457
7458 * lib/quotearg.h (quotearg_n, quotearg_n_style):
7459 First arg is int, not unsigned.
7460 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
7461 (SIZE_MAX, UINT_MAX): New macros.
7462 (quotearg_n_options): Abort if N is negative.
7463 Avoid overflow check on hosts where size_t is 64 bits and int
7464 is 32 bits, as overflow is impossible there.
7465 Fix off-by-one typo that caused unnecessary reallocation.
7466
7467 2001-11-29 Paul Eggert <eggert@twinsun.com>
7468
7469 Name space cleanup in generated parser.
7470
7471 * doc/bison.texinfo (Bison Parser): Discuss system headers
7472 and their effect on the user name space.
7473
7474 * src/bison.simple:
7475 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
7476 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
7477 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
7478
7479 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
7480 on user names when possible.
7481
7482 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
7483 Simplify test for whather <alloca.h> exists.
7484
7485 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
7486
7487 (<stdio.h>): Include if YYDEBUG.
7488
7489 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
7490 ! defined (yyoverflow) && ! defined (yymemcpy).
7491
7492 (yymemcpy, yyparse): Rename local variables as needed so that
7493 they all begin with 'yy'.
7494
7495 (yystrlen, yystpcpy): New functions.
7496
7497 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
7498 All uses changed.
7499
7500 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
7501 instead of relying on string.h functions. Use YYSTACK_ALLOC
7502 and YYSTACK_FREE instead of malloc and free.
7503
7504 2001-11-30 Akim Demaille <akim@epita.fr>
7505
7506 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
7507 before their first uses.
7508 (YYBISON, YYPURE): Move to the top of the output.
7509
7510 2001-11-30 Akim Demaille <akim@epita.fr>
7511
7512 * tests/reduce.at (Useless Nonterminals): Fix.
7513
7514 2001-11-30 Akim Demaille <akim@epita.fr>
7515
7516 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
7517 if body instead of `;' to pacify GCC's warnings.
7518
7519 2001-11-30 Akim Demaille <akim@epita.fr>
7520
7521 Instead of mapping the LHS of unused rules to -1, keep the LHS
7522 valid, but flag the rules as invalid.
7523
7524 * src/gram.h (rule_t): `useful' is a new member.
7525 * src/print.c (print_grammar): Adjust.
7526 * src/derives.c (set_derives): Likewise.
7527 * src/reader.c (packgram, reduce_output): Likewise.
7528 * src/reduce.c (reduce_grammar_tables): Likewise.
7529 * tests/reduce.at (Underivable Rules, Useless Rules): New.
7530
7531 2001-11-30 Akim Demaille <akim@epita.fr>
7532
7533 * src/reduce.c (reduce_output): Formatting changes.
7534 * src/print.c (print_results, print_grammar): Likewise.
7535 * tests/regression.at (Rule Line Numbers)
7536 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
7537
7538 2001-11-30 Akim Demaille <akim@epita.fr>
7539
7540 * src/reduce.c (nonterminals_reduce): Instead of throwing away
7541 useless nonterminals, move them at the end of the symbol arrays.
7542 (reduce_output): Adjust.
7543 * tests/reduce.at (Useless Nonterminals): Adjust.
7544
7545 2001-11-30 Akim Demaille <akim@epita.fr>
7546
7547 * src/reduce.c: Various comment/formatting changes.
7548 (nonterminals_reduce): New, extracted from...
7549 (reduce_grammar_tables): here.
7550 (reduce_grammar): Call nonterminals_reduce.
7551
7552 2001-11-29 Paul Eggert <eggert@twinsun.com>
7553
7554 * src/bison.simple (YYSTACK_REALLOC): Remove.
7555 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
7556 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
7557 New macros.
7558 (union yyalloc): New type.
7559 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
7560 an arbitrary restriction on hosts where size_t is wider than int.
7561
7562 (yyparse): Don't dump core if alloca or malloc fails; instead, report
7563 a parser stack overflow. Allocate just one block of memory for all
7564 three stacks, instead of allocating three blocks; this typically is
7565 faster and reduces fragmentation.
7566
7567 Do not limit the number of items in the stack to a value that fits
7568 in 'int', as this is an arbitrary limit on hosts with 64-bit
7569 size_t and 32-bit int.
7570
7571 2001-11-29 Marc Autret <autret_m@epita.fr>
7572
7573 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
7574 of defining YYERROR_VERBOSE.
7575 [AT_DATA]: $4 is now out of C declarations in the prologue.
7576
7577 2001-11-28 Marc Autret <autret_m@epita.fr>
7578
7579 * src/reader.c (parse_dquoted_param): New.
7580 (parse_skel_decl): Use it.
7581 * src/lex.h: Add its prototype.
7582 * src/lex.c (literalchar): Become not static.
7583
7584 2001-11-28 Marc Autret <autret_m@epita.fr>
7585
7586 * src/output.h: And put its extern declaration here.
7587 * src/output.c (error_verbose): Define here.
7588 (prepare): Echo name modification.
7589 * src/getargs.h: Clean its extern declaration.
7590 * src/getargs.c (error_verbose_flag): Remove.
7591 (getargs): Remove case 'e'.
7592 * src/options.c (option_table): 'error-verbose' is now seen as simple
7593 percent option.
7594 Include output.h.
7595
7596 * src/reader.c (read_declarations): Remove case tok_include.
7597 (parse_include_decl): Remove.
7598 * src/lex.h (token_t): Remove tok_include.
7599 * src/options.c (option_table): 'include' is now a simple command line
7600 option.
7601
7602 2001-11-28 Marc Autret <autret_m@epita.fr>
7603
7604 * src/bison.simple: Adjust muscle names.
7605 * src/muscle_tab.c (muscle_init): Also rename the muscles.
7606 * src/output.c (prepare): s/_/-/ for the muscles names.
7607 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
7608
7609 2001-11-28 Marc Autret <autret_m@epita.fr>
7610
7611 * src/bison.simple: Fix debug.
7612 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
7613
7614 2001-11-28 Akim Demaille <akim@epita.fr>
7615
7616 * src/LR0.c (shifts_new): New.
7617 (save_shifts, insert_start_shift, augment_automaton): Use it.
7618
7619 2001-11-28 Akim Demaille <akim@epita.fr>
7620
7621 * src/closure.c (closure): `b' and `ruleno' denote the same value:
7622 keep ruleno only.
7623
7624 2001-11-28 Akim Demaille <akim@epita.fr>
7625
7626 * src/closure.c (closure): Instead of looping over word in array
7627 then bits in words, loop over bits in array.
7628
7629 2001-11-28 Akim Demaille <akim@epita.fr>
7630
7631 * src/closure.c (closure): No longer optimize the special case
7632 where all the bits of `ruleset[r]' are set to 0, to make the code
7633 clearer.
7634
7635 2001-11-28 Akim Demaille <akim@epita.fr>
7636
7637 * src/closure.c (closure): `r' and `c' are new variables, used to
7638 de-obfuscate accesses to RULESET and CORE.
7639
7640 2001-11-28 Akim Demaille <akim@epita.fr>
7641
7642 * src/reduce.c (reduce_print): Use ngettext.
7643 (dump_grammar): Improve the trace accuracy.
7644
7645 2001-11-28 Akim Demaille <akim@epita.fr>
7646
7647 * src/reduce.c (dump_grammar): Don't translate trace messages.
7648
7649 2001-11-28 Akim Demaille <akim@epita.fr>
7650
7651 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
7652 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
7653 as all tags are free'ed afterwards.
7654 From Enrico Scholz.
7655
7656 2001-11-27 Paul Eggert <eggert@twinsun.com>
7657
7658 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
7659 use alloca when we didn't want to, and vice versa.
7660
7661 2001-11-27 Marc Autret <autret_m@epita.fr>
7662
7663 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
7664 initialization.
7665 * src/output.c (prepare): Remove its update.
7666
7667 2001-11-27 Marc Autret <autret_m@epita.fr>
7668
7669 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
7670 Use %error-verbose.
7671
7672 2001-11-27 Marc Autret <autret_m@epita.fr>
7673
7674 * src/bison.simple: Remove YYERROR_VERBOSE using.
7675 Use %%error_verbose.
7676 (yyparse): Likewise.
7677 * src/output.c (prepare): Give its final value.
7678 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
7679 * src/getargs.h: Add its extern declaration.
7680 * src/getargs.c (error_verbose_flag): New int.
7681 (getargs): Update to catch new case.
7682 * src/options.c (option_table): 'error-verbose' is a new option.
7683 (shortopts): Update.
7684
7685 2001-11-27 Akim Demaille <akim@epita.fr>
7686
7687 * src/system.h: Use intl/libgettext.h.
7688 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
7689
7690 2001-11-27 Akim Demaille <akim@epita.fr>
7691
7692 * tests/torture.at (Exploding the Stack Size with Malloc):
7693 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
7694
7695 2001-11-27 Akim Demaille <akim@epita.fr>
7696
7697 * src/files.c: Include error.h.
7698 Reported by Hans Aberg.
7699
7700 2001-11-26 Marc Autret <autret_m@epita.fr>
7701
7702 * src/reader.c (parse_include_decl): New, not yet implemented.
7703 (read_declarations): Add case tok_include.
7704 * src/getargs.h (include): Add its extern definition.
7705 * src/getargs.c (include): New const char *.
7706 (getargs): Add case '-I'.
7707 * src/options.c (option_table): Add include as command line and
7708 percent option.
7709 * src/lex.h (token_t): Add tok_include.
7710
7711 2001-11-26 Akim Demaille <akim@epita.fr>
7712
7713 * src/reader.c (readgram): Make sure rules for mid-rule actions
7714 have a lineno equal to that of their host rule.
7715 Reported by Hans Aberg.
7716 * tests/regression.at (Rule Line Numbers): New.
7717
7718 2001-11-26 Akim Demaille <akim@epita.fr>
7719
7720 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
7721 size_ts.
7722
7723 2001-11-26 Akim Demaille <akim@epita.fr>
7724
7725 * src/complain.c, src/complain.h (error): Remove, provided by
7726 lib/error.[ch].
7727
7728 2001-11-26 Akim Demaille <akim@epita.fr>
7729
7730 * src/reader.c (read_declarations): Don't abort on tok_illegal,
7731 issue an error message.
7732 * tests/regression.at (Invalid %directive): New.
7733 Reported by Hans Aberg.
7734
7735 2001-11-26 Akim Demaille <akim@epita.fr>
7736
7737 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
7738 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
7739
7740 2001-11-26 Akim Demaille <akim@epita.fr>
7741
7742 * src/conflicts.c (conflicts_print): Don't complain at all when
7743 there are no reduce/reduce conflicts, and as many shift/reduce
7744 conflicts as expected.
7745 * tests/regression.at (%expect right): Adjust.
7746
7747 2001-11-23 Akim Demaille <akim@epita.fr>
7748
7749 * lib/alloca.c: Update, from fileutils.
7750
7751 2001-11-23 Akim Demaille <akim@epita.fr>
7752
7753 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
7754
7755 2001-11-23 Akim Demaille <akim@epita.fr>
7756
7757 * src/system.h: Include alloca.h.
7758 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
7759
7760 2001-11-23 Akim Demaille <akim@epita.fr>
7761
7762 * src/print_graph.c (print_actions): Remove `rule', unused.
7763 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
7764 pacify GCC's signed < unsigned warnings.
7765 * src/closure.c (itemsetsize): Likewise.
7766 * src/reader.c (symbol_list_new): Static.
7767
7768 2001-11-23 Akim Demaille <akim@epita.fr>
7769
7770 Attaching lineno to buckets is stupid, since only one copy of each
7771 symbol is kept, only the line of the first occurrence is kept too.
7772
7773 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
7774 * src/reader.c (rline_allocated): Remove, unused.
7775 (symbol_list): Have a `line' member.
7776 (symbol_list_new): New.
7777 (readgram): Use it.
7778 * src/print.c (print_grammar): Output the rule line numbers.
7779 * tests/regression.at (Solved SR Conflicts)
7780 (Unresolved SR Conflicts): Adjust.
7781 Reported by Hans Aberg.
7782
7783 2001-11-22 Marc Autret <autret_m@epita.fr>
7784
7785 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
7786
7787 2001-11-22 Marc Autret <autret_m@epita.fr>
7788
7789 * src/muscle_tab.c (muscle_init): Remove initialization of
7790 skeleton muscle.
7791 * src/output.c (output_master_parser): Do it here.
7792
7793 2001-11-20 Akim Demaille <akim@epita.fr>
7794
7795 * po/sv.po: New.
7796 * configure.in (ALL_LINGUAS): Adjust.
7797 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
7798 longer contains strings to translate.
7799
7800 2001-11-19 Akim Demaille <akim@epita.fr>
7801
7802 * src/conflicts.c (conflicts_print): Add a missing \n.
7803
7804 2001-11-19 Akim Demaille <akim@epita.fr>
7805
7806 * src/nullable.c (nullable_print): New.
7807 (set_nullable): Call it when tracing.
7808 Better locality of variables.
7809
7810 2001-11-19 Akim Demaille <akim@epita.fr>
7811
7812 * src/print.c (print_actions): Better locality of variables.
7813
7814 2001-11-19 Akim Demaille <akim@epita.fr>
7815
7816 * src/derives.c (print_derives): Fix and enrich.
7817 * src/closure.c (print_fderives): Likewise.
7818
7819 2001-11-19 Akim Demaille <akim@epita.fr>
7820
7821 * src/closure.c (itemsetend): Remove, replaced with...
7822 (itemsetsize): new.
7823
7824 2001-11-19 Akim Demaille <akim@epita.fr>
7825
7826 * src/LR0.c (kernel_end): Remove, replaced with...
7827 (kernel_size): new.
7828
7829 2001-11-19 Akim Demaille <akim@epita.fr>
7830
7831 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
7832 to clarify.
7833
7834 2001-11-19 Akim Demaille <akim@epita.fr>
7835
7836 * src/closure.c (closure): Use arrays instead of pointers to clarify.
7837
7838 2001-11-19 Akim Demaille <akim@epita.fr>
7839
7840 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
7841 trace messages.
7842 * src/LR0.c: Likewise.
7843 (allocate_itemsets): Use arrays instead of pointers to clarify.
7844
7845 2001-11-19 Akim Demaille <akim@epita.fr>
7846
7847 * src/getargs.c (statistics_flag): Replace with...
7848 (trace_flag): New.
7849 (longopts): Accept --trace instead of --statistics.
7850 * src/getargs.h, src/options.c: Adjust.
7851 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
7852 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
7853
7854 2001-11-19 Akim Demaille <akim@epita.fr>
7855
7856 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
7857 pointers to clarify the code.
7858 (save_reductions, save_shifts): Factor common parts of alternatives.
7859
7860 2001-11-19 Akim Demaille <akim@epita.fr>
7861
7862 * src/LR0.c (new_state, get_state): Complete TRACE code.
7863 * src/closure.c: Include `reader.h' to get `tags', needed by the
7864 trace code.
7865 Rename the conditional DEBUG as TRACE.
7866 Output consistently TRACEs to stderr, not stdout.
7867 * src/derives.c: Likewise.
7868 * src/reduce.c: (inaccessable_symbols): Using if is better style
7869 than goto.
7870 Use `#if TRACE' instead of `#if 0' for tracing code.
7871
7872 2001-11-19 Akim Demaille <akim@epita.fr>
7873
7874 * src/system.h (LIST_FREE, shortcpy): New.
7875 * src/LR0.c: Use them.
7876 * src/output.c (free_itemsets, free_reductions, free_shifts):
7877 Remove, replaced by LIST_FREE.
7878
7879 2001-11-19 Akim Demaille <akim@epita.fr>
7880
7881 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
7882 (REDUCTIONS_ALLOC): New.
7883 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
7884 allocation.
7885
7886 2001-11-19 Akim Demaille <akim@epita.fr>
7887
7888 * src/LR0.c (new_state): Complete trace code.
7889 * src/nullable.c (set_nullable): Don't translate traces.
7890
7891 2001-11-19 Akim Demaille <akim@epita.fr>
7892
7893 * src/print_graph.c (print_core): Better locality of variables.
7894 * src/print.c (print_core): Likewise.
7895
7896 2001-11-19 Akim Demaille <akim@epita.fr>
7897
7898 * src/vcg.c: You do the output, so you are responsible of the
7899 handling of VCG syntax, in particular: use quotearg.
7900 * src/print_graph.c: Don't.
7901 (print_actions): Don't output the actions as part of the nodes,
7902 since that's the job of the edges.
7903 (print_state): Don't output by hand: fill the node description,
7904 and ask for its output.
7905
7906 2001-11-19 Akim Demaille <akim@epita.fr>
7907
7908 * src/bison.simple (yyparse): When verbosely reporting an error,
7909 no longer put additional quotes around token names.
7910 * tests/calc.at: Adjust.
7911
7912 2001-11-19 Akim Demaille <akim@epita.fr>
7913
7914 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
7915 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
7916 * src/output.c: Adjust.
7917
7918 2001-11-19 Akim Demaille <akim@epita.fr>
7919
7920 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
7921 (rule_t): this.
7922 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
7923
7924 2001-11-19 Akim Demaille <akim@epita.fr>
7925
7926 * src/gram.h (rule_t): New.
7927 (rule_table): New.
7928 (rrhs, rlhs): Remove, part of state_t.
7929 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
7930 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
7931 * src/reader.c, src/reduce.c: Adjust.
7932
7933 2001-11-19 Akim Demaille <akim@epita.fr>
7934
7935 * src/reader.c (symbols_output): New, extracted from...
7936 (packsymbols): Here.
7937 (reader): Call it.
7938
7939 2001-11-19 Akim Demaille <akim@epita.fr>
7940
7941 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
7942 (maxrhs): this new function.
7943
7944 2001-11-19 Akim Demaille <akim@epita.fr>
7945
7946 * src/lalr.c (F): New macro to access the variable F.
7947 Adjust.
7948
7949 2001-11-19 Akim Demaille <akim@epita.fr>
7950
7951 * src/lalr.h (LA): New macro to access the variable LA.
7952 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7953 * src/lalr.c: Adjust.
7954
7955 2001-11-19 Akim Demaille <akim@epita.fr>
7956
7957 * src/lalr.c (initialize_LA): Only initialize LA. Let...
7958 (set_state_table): handle the `lookaheads' members.
7959
7960 2001-11-19 Akim Demaille <akim@epita.fr>
7961
7962 * src/lalr.h (lookaheads): Removed array, whose contents is now
7963 a member of...
7964 (state_t): this structure.
7965 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7966 Adjust.
7967
7968 2001-11-19 Akim Demaille <akim@epita.fr>
7969
7970 * src/lalr.h (consistent): Removed array, whose contents is now
7971 a member of...
7972 (state_t): this structure.
7973 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7974 Adjust.
7975
7976 2001-11-19 Akim Demaille <akim@epita.fr>
7977
7978 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
7979 contents are now members of...
7980 (state_t): this structure.
7981 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7982 Adjust.
7983
7984 2001-11-19 Akim Demaille <akim@epita.fr>
7985
7986 * src/lalr.h (state_t): New.
7987 (state_table): Be a state_t * instead of a core **.
7988 (accessing_symbol): Remove, part of state_t.
7989 * src/lalr.c: Adjust.
7990 (set_accessing_symbol): Merge into...
7991 (set_state_table): this.
7992 * src/print_graph.c, src/conflicts.c: Adjust.
7993
7994 2001-11-14 Akim Demaille <akim@epita.fr>
7995
7996 * tests/calc.at, tests/output.at, tests/regression.at,
7997 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
7998 now the tests are run in private dirs, therefore AC_CLEANUP and
7999 family can be simplified to 0-ary.
8000 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
8001 use abs. path to find config.h.
8002 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
8003 stderr, there can be way too much random noise.
8004 Instead pass -Werror to GCC and rely on the exit status.
8005 Reported by Wolfram Wagner.
8006
8007 2001-11-14 Akim Demaille <akim@epita.fr>
8008
8009 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
8010 defined only if yyoverflow is defined, to avoid `warning: unused
8011 variable `yyvs1''.
8012 Reported by The Test Suite.
8013
8014 2001-11-14 Akim Demaille <akim@epita.fr>
8015
8016 * src/print.c: Include reduce.h.
8017 Reported by Hans Aberg.
8018
8019 2001-11-14 Akim Demaille <akim@epita.fr>
8020
8021 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
8022 Revert a previous patch: these are really const.
8023 * src/conflicts.c (conflict_report): Additional useless pair of
8024 braces to pacify GCC's warnings for `if () if () {} else {}'.
8025 * src/lex.c (parse_percent_token): Replace equal_offset with
8026 arg_offset.
8027 arg is const.
8028 Be sure to strdup `arg' when used, since there is no reason for
8029 token_buffer not to change.
8030
8031 2001-11-14 Akim Demaille <akim@epita.fr>
8032
8033 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
8034 definition.
8035 * src/main.c (main): Use them.
8036 Suggested by Hans Aberg.
8037
8038 2001-11-12 Akim Demaille <akim@epita.fr>
8039
8040 * src/system.h (ngettext): Now that we use ngettext, be sure to
8041 provide a default definition when NLS are not used.
8042
8043 2001-11-12 Akim Demaille <akim@epita.fr>
8044
8045 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
8046 Use @kbd to denote user input.
8047 (Language and Grammar): ANSIfy the example.
8048 Adjust its layout for info/notinfo.
8049 (Location Tracking Calc): Output error messages to stderr.
8050 Output locations in a more GNUtically correct way.
8051 Fix a couple of Englishos.
8052 Adjust @group/@end group pairs.
8053
8054 2001-11-12 Akim Demaille <akim@epita.fr>
8055
8056 %expect was not functioning at all.
8057
8058 * src/conflicts.c (expected_conflicts): Set to -1.
8059 (conflict_report): Use ngettext.
8060 (conflicts_print): Check %expect and make its violation an error.
8061 * doc/bison.texinfo (Expect Decl): Adjust.
8062 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
8063 * tests/regression.at (%expect not enough, %expect right)
8064 (%expect too much): New.
8065
8066 2001-11-12 Akim Demaille <akim@epita.fr>
8067
8068 * tests/regression.at (Conflicts): Rename as...
8069 (Unresolved SR Conflicts): this.
8070 (Solved SR Conflicts): New.
8071
8072 2001-11-12 Akim Demaille <akim@epita.fr>
8073
8074 * src/reduce.c (print_results): Rename as...
8075 (reduce_output): This.
8076 Output to OUT, passed as argument, instead of output_obstack.
8077 (dump_grammar): Likewise.
8078 (reduce_free): New.
8079 Also free V1.
8080 (reduce_grammar): No longer call reduce_output, since...
8081 * src/print.c (print_results): do it.
8082 * src/main.c (main): Call reduce_free;
8083
8084 2001-11-12 Akim Demaille <akim@epita.fr>
8085
8086 * src/conflicts.c (print_reductions): Accept OUT as argument.
8087 Output to it, not to output_obstack.
8088 * src/print.c (print_actions): Adjust.
8089
8090 2001-11-12 Akim Demaille <akim@epita.fr>
8091
8092 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
8093 the result instead of using...
8094 (src_total, rrc_total, src_count, rrc_count): Remove.
8095 (any_conflicts): Remove.
8096 (print_conflicts): Split into...
8097 (conflicts_print, conflicts_output): New.
8098 * src/conflicts.h: Adjust.
8099 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
8100 * src/print.c (print_grammar): Issue `\n' between two rules.
8101 * tests/regression.at (Conflicts): New.
8102 Reported by Tom Lane.
8103
8104 2001-11-12 Akim Demaille <akim@epita.fr>
8105
8106 * tests/regression.at (Invalid input): Remove, duplicate with
8107 ``Invalid input: 1''.
8108
8109 2001-11-12 Akim Demaille <akim@epita.fr>
8110
8111 * tests/torture.at (AT_DATA_STACK_TORTURE)
8112 (Exploding the Stack Size with Alloca)
8113 (Exploding the Stack Size with Malloc): New.
8114
8115 2001-11-12 Akim Demaille <akim@epita.fr>
8116
8117 * src/bison.simple (YYSTACK_REALLOC): New.
8118 (yyparse) [!yyoverflow]: Use it and free the old stack.
8119 Reported by Per Allansson.
8120
8121 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
8122
8123 * src/bison.simple: Define type yystype instead of YYSTYPE, and
8124 define CPP macro, which substitute YYSTYPE by yystype.
8125 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
8126 with yyltype/YYLTYPE. This allows inclusion of the generated
8127 header within the parser if the compiler, such as GGC, accepts
8128 multiple equivalent #defines.
8129 From Akim.
8130
8131 2001-11-05 Akim Demaille <akim@epita.fr>
8132
8133 * src/reader.c (symbols_output): New, extracted from...
8134 (packsymbols): here.
8135 (reader): Adjust.
8136
8137 2001-11-05 Akim Demaille <akim@epita.fr>
8138
8139 * src/lex.c (parse_percent_token): s/quotearg/quote/.
8140
8141 2001-11-05 Akim Demaille <akim@epita.fr>
8142
8143 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
8144 pattern.
8145
8146 2001-11-05 Akim Demaille <akim@epita.fr>
8147
8148 * src/options.h (struct option_table_struct): set_flags is void*.
8149 * src/options.c (longopts): Support `--output' and `%output'.
8150 (usage): Adjust.
8151 * src/lex.h (tok_setopt): Remove, replaced with...
8152 (tok_intopt, tok_stropt): these new guys.
8153 * src/lex.c (getopt.h): Not needed.
8154 (token_buffer, unlexed_token_buffer): Not const.
8155 (percent_table): Promote `-' over `_' in directive names.
8156 Active `%name-prefix', `file-prefix', and `output'.
8157 (parse_percent_token): Accept possible arguments to directives.
8158 Promote `-' over `_' in directive names.
8159
8160 2001-11-04 Akim Demaille <akim@epita.fr>
8161
8162 * doc/bison.texinfo (Decl Summary): Split the list into
8163 `directives for grammars' and `directives for bison'.
8164 Sort'em.
8165 Add description of `%name-prefix', `file-prefix', and `output'.
8166 Promote `-' over `_' in directive names.
8167 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
8168 Simplify the description of `--name-prefix'.
8169 Promote `-' over `_' in directive names.
8170 Promote `--output' over `--output-file'.
8171 Fix the description of `--defines'.
8172 * tests/output.at: Exercise %file-prefix and %output.
8173
8174 2001-11-02 Akim Demaille <akim@epita.fr>
8175
8176 * doc/refcard.tex: Update.
8177
8178 2001-11-02 Akim Demaille <akim@epita.fr>
8179
8180 * src/symtab.h (SUNDEF): New.
8181 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
8182 stand for `uninitialized', instead of 0.
8183 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
8184 * src/lex.c (lex): Adjust.
8185
8186 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
8187 Number it 0.
8188 Let yylex return it instead of a plain 0.
8189 Reported by Dick Streefland.
8190
8191 2001-11-02 Akim Demaille <akim@epita.fr>
8192
8193 * tests/regression.at (Mixing %token styles): New test.
8194
8195 2001-11-02 Akim Demaille <akim@epita.fr>
8196
8197 * src/reader.c (parse_thong_decl): Formatting changes.
8198 (token_translations_init): New, extracted from...
8199 (packsymbols): Here.
8200 Adjust.
8201
8202 2001-11-01 Akim Demaille <akim@epita.fr>
8203
8204 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
8205 Check that `9foo.y' produces correct cpp guards.
8206 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
8207 guards.
8208 Reported by Wwp.
8209
8210 2001-11-01 Akim Demaille <akim@epita.fr>
8211
8212 * tests/regression.at (Invalid input: 2): New.
8213 * src/lex.c (unlexed_token_buffer): New.
8214 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
8215 too.
8216 Reported by Wwp.
8217
8218 2001-11-01 Akim Demaille <akim@epita.fr>
8219
8220 * tests/calc.at: Catch up with 1.30.
8221 * configure.in: Bump to 1.49a.
8222 Adjust to newer Autotest.
8223
8224 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
8225
8226 * src/conflicts.c: Move global variables rrc_total and src_total ...
8227 (print_conflicts): here.
8228 * src/output.c (output): Free global variable user_toknums.
8229 * src/lex.c (token_obstack): Become static.
8230
8231 2001-10-18 Akim Demaille <akim@epita.fr>
8232
8233 * tests/atlocal.in (GCC): Add.
8234 * tests/calc.at: s/m4_match/m4_bmatch/.
8235 s/m4_patsubst/m4_bpatsubst/.
8236 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
8237 * configure.in: AC_SUBST(GCC).
8238
8239 2001-10-14 Marc Autret <autret_m@epita.fr>
8240
8241 * src/options.c (create_long_option_table): Fix.
8242
8243 2001-10-10 Akim Demaille <akim@epita.fr>
8244
8245 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
8246
8247 2001-10-04 Akim Demaille <akim@epita.fr>
8248
8249 * src/reader.c (parse_union_decl): Push the caracters in
8250 union_obstack, not attrs_obstack.
8251
8252 2001-10-04 Akim Demaille <akim@epita.fr>
8253
8254 Merge in the branch 1.29.
8255
8256 * src/reader.c (packsymbols): Use a temporary obstack for
8257 `%%tokendef', since output_stack is already used elsewhere.
8258
8259 2001-10-02 Akim Demaille <akim@epita.fr>
8260
8261 Bump 1.29d.
8262
8263 2001-10-02 Akim Demaille <akim@epita.fr>
8264
8265 Version 1.29c.
8266
8267 2001-10-02 Akim Demaille <akim@epita.fr>
8268
8269 * tests/regression.at (Invalid CPP headers): New.
8270 From Alexander Belopolsky.
8271 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
8272
8273 2001-10-02 Akim Demaille <akim@epita.fr>
8274
8275 * tests/regression.at (Invalid input): New.
8276 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
8277 Reported by Shura.
8278
8279 2001-10-02 Akim Demaille <akim@epita.fr>
8280
8281 * tests/calc.at: Now that --debug works, the tests must be adjusted.
8282
8283 2001-10-02 Akim Demaille <akim@epita.fr>
8284
8285 * src/output.c (output_parser): Assert `skeleton'.
8286 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
8287 systems.
8288 From Shura.
8289
8290 2001-10-01 Marc Autret <autret_m@epita.fr>
8291
8292 * src/lex.h: Echo modifications.
8293 * src/lex.c (unlex): Parameter is now token_t.
8294 From Hans Aberg.
8295
8296 2001-10-01 Marc Autret <autret_m@epita.fr>
8297
8298 * src/main.c: Include lex.h.
8299 From Hans Aberg.
8300
8301 2001-09-29 Akim Demaille <akim@epita.fr>
8302
8303 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
8304
8305 2001-09-28 Akim Demaille <akim@epita.fr>
8306
8307 * tests/testsuite.at: Update to newer Autotest.
8308 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
8309
8310 2001-09-27 Akim Demaille <akim@epita.fr>
8311
8312 Position independent wrapper.
8313
8314 * tests/bison: Remove.
8315 * tests/bison.in: New.
8316 * configure.in: Adjust.
8317
8318 2001-09-27 Paul Eggert <eggert@twinsun.com>
8319
8320 Port quotearg fixes from tar 1.13.24.
8321
8322 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
8323 tm to be declared.
8324 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
8325 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
8326
8327 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
8328 * m4/mbrtowc.m4: New file.
8329 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
8330 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
8331
8332 2001-09-27 Akim Demaille <akim@epita.fr>
8333
8334 Bump to 1.29c.
8335
8336 2001-09-27 Akim Demaille <akim@epita.fr>
8337
8338 Version 1.29b.
8339
8340 2001-09-25 Akim Demaille <akim@epita.fr>
8341
8342 * src/system.h: Include `xalloc.h'.
8343 Remove it from the C files.
8344 * src/files.c (output_files): Free the obstacks.
8345 * src/lex.c (init_lex): Rename as...
8346 (lex_init): this.
8347 (lex_free): New.
8348 * src/main.c (main): Use it.
8349
8350 2001-09-24 Marc Autret <autret_m@epita.fr>
8351
8352 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
8353 to output informations in fout (FILE*).
8354 (open_graph, close_graph): Likewise.
8355 (output_graph, output_edge, output_node): Likewise.
8356 * src/vcg.h: Update function prototypes.
8357 * src/print_graph.c (print_graph): Open output graph file.
8358 (print_actions): Adjust.
8359 * src/files.h: Remove extern declaration.
8360 * src/files.c: Remove graph_obstack declaration.
8361 (open_files): Remove graph_obstack initialization.
8362 (output_files): Remove graph_obstack saving.
8363
8364 2001-09-24 Marc Autret <autret_m@epita.fr>
8365
8366 * src/files.c (compute_output_file_names): Fix.
8367
8368 2001-09-24 Marc Autret <autret_m@epita.fr>,
8369 Akim Demaille <akim@epita.fr>
8370
8371 * src/reader.c (reader): Remove call to free_symtab ().
8372 * src/main.c (main): Call it here.
8373 Include symtab.h.
8374 * src/conflicts.c (initialize_conflicts): Rename as...
8375 (solve_conflicts): this.
8376 * src/print.c (print_core, print_actions, print_state)
8377 (print_grammar): Dump to a file instead a `output_obstack'.
8378 (print_results): Dump `output_obstack', and then proceed with the
8379 FILE *.
8380 * src/files.c (compute_output_file_names, close_files): New.
8381 (output_files): Adjust.
8382 * src/main.c (main): Adjust.
8383
8384 2001-09-23 Marc Autret <autret_m@epita.fr>
8385
8386 * src/files.c (compute_header_macro): Computes header macro name
8387 from spec_defines_file when given.
8388
8389 2001-09-23 Marc Autret <autret_m@epita.fr>
8390
8391 * src/files.c (output_files): Add default extensions.
8392
8393 2001-09-22 Akim Demaille <akim@epita.fr>
8394
8395 * src/conflicts.c (finalize_conflicts): Rename as...
8396 (free_conflicts): this.
8397
8398 2001-09-22 Akim Demaille <akim@epita.fr>
8399
8400 * src/gram.c (gram_free): Rename back as...
8401 (dummy): this.
8402 (output_token_translations): Free `token_translations'.
8403 * src/symtab.c (free_symtab): Free the tag field.
8404
8405 2001-09-22 Akim Demaille <akim@epita.fr>
8406
8407 Remove `translations' as it is always set to true.
8408
8409 * src/gram.h: Adjust.
8410 * src/reader.c (packsymbols, parse_token_decl): Adjust
8411 * src/print.c (print_grammar): Adjust.
8412 * src/output.c (output_token_translations): Adjust.
8413 * src/lex.c (lex): Adjust.
8414 * src/gram.c: Be sure the set pointers to NULL.
8415 (dummy): Rename as...
8416 (gram_free): this.
8417
8418 2001-09-22 Akim Demaille <akim@epita.fr>
8419
8420 * configure.in: Invoke AM_LIB_DMALLOC.
8421 * src/system.h: Use dmalloc.
8422 * src/LR0.c: Be sure to have pointers initialized to NULL.
8423 (allocate_itemsets): Allocate kernel_items only if needed.
8424
8425 2001-09-22 Akim Demaille <akim@epita.fr>
8426
8427 * configure.in: Bump to 1.29b.
8428 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
8429 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
8430 need xmalloc.c in calc.y.
8431 From Pascal Bart.
8432
8433 2001-09-21 Akim Demaille <akim@epita.fr>
8434
8435 Version 1.29a.
8436 * Makefile.maint, config/config.guess, config/config.sub,
8437 * config/missing: Update from masters.
8438 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
8439 upon package.m4.
8440 * configure.in (ALL_LINGUAS): Add `tr'.
8441
8442 2001-09-21 Akim Demaille <akim@epita.fr>
8443
8444 * tests/Makefile.am (package.m4): Move to...
8445 ($(srcdir)/$(TESTSUITE)): here.
8446
8447 2001-09-20 Akim Demaille <akim@epita.fr>
8448
8449 * src/complain.c: No longer try to be standalone: use system.h.
8450 Don't assume __STDC__ is defined to 1. Just test if it is defined.
8451 * src/complain.h: Likewise.
8452 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
8453 Remove the unused variable `n'.
8454 From Albert Chin-A-Young.
8455
8456 2001-09-18 Marc Autret <autret_m@epita.fr>
8457
8458 * doc/bison.1: Update.
8459 * doc/bison.texinfo (Bison Options): Update --defines and --graph
8460 descriptions.
8461 (Option Cross Key): Update.
8462 Add --graph.
8463
8464 2001-09-18 Marc Autret <autret_m@epita.fr>
8465
8466 * tests/regression.at: New test (comment in %union).
8467
8468 2001-09-18 Marc Autret <autret_m@epita.fr>
8469
8470 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
8471 do that.
8472 Reported by Keith Browne.
8473
8474 2001-09-18 Marc Autret <autret_m@epita.fr>
8475
8476 * tests/output.at: Add tests for --defines and --graph.
8477
8478 2001-09-18 Marc Autret <autret_m@epita.fr>
8479
8480 * tests/output.at: Removes tests of %{header,src}_extension features.
8481
8482 2001-09-18 Akim Demaille <akim@epita.fr>
8483
8484 * tests/Makefile.am (package.m4): New.
8485 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
8486 (_AT_CHECK_CALC_ERROR): Likewise.
8487 Factor the `, ' part of verbose error messages.
8488
8489 2001-09-18 Marc Autret <autret_m@epita.fr>
8490
8491 * src/getargs.c (longopts): Declare --defines and --graph as options
8492 with optional arguments.
8493 * src/files.h: Add extern declarations.
8494 * src/files.c (spec_graph_file, spec_defines_file): New.
8495 (output_files): Update.
8496 Remove CPP-outed code.
8497
8498 2001-09-18 Marc Autret <autret_m@epita.fr>
8499
8500 Turn off %{source,header}_extension feature.
8501
8502 * src/files.c (compute_exts_from_gf): Update.
8503 (compute_exts_from_src): Update.
8504 (output_files): CPP-out useless code.
8505 * src/files.h: Remove {header,source}_extension extern declarations.
8506 * src/reader.c (parse_dquoted_param): CPP-out.
8507 (parse_header_extension_decl): Remove.
8508 (parse_source_extension_decl): Remove.
8509 (read_declarations): Remove cases tok_{hdrext,srcext}.
8510 * src/lex.c (percent_table): Remove {header,source}_extension entries.
8511 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
8512
8513 2001-09-10 Akim Demaille <akim@epita.fr>
8514
8515 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
8516 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
8517 (AT_CHECK_OUTPUT): this.
8518 Merely check ls' exit status, its output is useless.
8519
8520 2001-09-10 Akim Demaille <akim@epita.fr>
8521
8522 * tests/calc.at: Use m4_match.
8523 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
8524
8525 2001-09-10 Marc Autret <autret_m@epita.fr>,
8526 Akim Demaille <akim@epita.fr>
8527
8528 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
8529 enum color_e.
8530 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
8531 to `normal'.
8532 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
8533 * src/lex.h: Adjust prototype.
8534 (token_t): Add `tok_undef'.
8535 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
8536 (parse_percent_token): Now returns token_t.
8537 Add default statement in switch.
8538 (lex): Separate `c' as an input variable, from the token_t result
8539 part.
8540 (unlexed): Is a token_t.
8541
8542 2001-09-10 Akim Demaille <akim@epita.fr>
8543
8544 * configure.in: Bump to 1.29a.
8545
8546 2001-09-07 Akim Demaille <akim@epita.fr>
8547
8548 Version 1.29.
8549
8550 2001-08-30 Akim Demaille <akim@epita.fr>
8551
8552 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
8553 * m4/atconfig.m4: Remove.
8554 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
8555 * tests/bison: New.
8556 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
8557 m4_if, m4_patsubst, and m4_regexp.
8558 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
8559 `input' file instead of echo.
8560
8561 2001-08-29 Akim Demaille <akim@epita.fr>
8562
8563 Bump to 1.28e.
8564
8565 2001-08-29 Akim Demaille <akim@epita.fr>
8566
8567 Version 1.28d.
8568
8569 2001-08-29 Paul Eggert <eggert@twinsun.com>
8570
8571 * src/bison.simple (yyparse): Don't take the address of an
8572 item before the start of an array, as that doesn't conform to
8573 the C Standard.
8574
8575 2001-08-29 Robert Anisko <anisko_r@epita.fr>
8576
8577 * doc/bison.texinfo (Location Tracking Calc): New node.
8578
8579 2001-08-29 Paul Eggert <eggert@twinsun.com>
8580
8581 * src/output.c (output): Do not define const, as this now
8582 causes more problems than it cures.
8583
8584 2001-08-29 Akim Demaille <akim@epita.fr>
8585
8586 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
8587 the nodes.
8588 Be sure to tag the `detailmenu'.
8589
8590 2001-08-29 Akim Demaille <akim@epita.fr>
8591
8592 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
8593 download in a tmp dir.
8594
8595 2001-08-28 Marc Autret <autret_m@epita.fr>
8596
8597 * config/depcomp: New file.
8598
8599 2001-08-28 Marc Autret <autret_m@epita.fr>
8600
8601 * doc/bison.1 (mandoc): Adjust.
8602 From Juan Manuel Guerrero.
8603
8604 2001-08-28 Marc Autret <autret_m@epita.fr>
8605
8606 * src/print_graph.c (print_state): Fix.
8607
8608 2001-08-27 Marc Autret <autret_m@epita.fr>
8609
8610 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
8611 char * members.
8612 Echo modifications to the functions prototypes.
8613 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
8614
8615 2001-08-27 Marc Autret <autret_m@epita.fr>
8616
8617 * src/vcg.c: Include `xalloc.h'.
8618 (add_colorentry): New.
8619 (add_classname): New.
8620 (add_infoname): New.
8621 * src/vcg.h: Add new prototypes.
8622
8623 2001-08-27 Akim Demaille <akim@epita.fr>
8624
8625 * Makefile.maint: Sync. again with CVS Autoconf.
8626
8627 2001-08-27 Akim Demaille <akim@epita.fr>
8628
8629 * Makefile.maint: Formatting changes.
8630 (po-update, cvs-update, update): New targets.
8631 (AMTAR): Remove.
8632
8633 2001-08-27 Akim Demaille <akim@epita.fr>
8634
8635 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
8636 * Makefile.maint: Sync. with CVS Autoconf.
8637
8638 2001-08-27 Marc Autret <autret_m@epita.fr>
8639
8640 * src/vcg.h (struct infoname_s): New.
8641 (struct colorentry_s): New.
8642 (graph_s): New fields {vertical,horizontal}_order in structure.
8643 Add `infoname' field.
8644 Add `colorentry' field;
8645 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
8646 (G_HORIZONTAL_ORDER): New.
8647 (G_INFONAME): New.
8648 (G_COLORENTRY): New.
8649 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
8650 Add output of `infoname'.
8651 Add output of `colorentry'.
8652
8653 2001-08-27 Marc Autret <autret_m@epita.fr>
8654
8655 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
8656 This one shadowed a global parameter.
8657
8658 2001-08-24 Marc Autret <autret_m@epita.fr>
8659
8660 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
8661 instead of `unsigned'.
8662 (print_state): Do not call obstack_object_size () in obstack_grow ()
8663 to avoid macro variables shadowing.
8664
8665 2001-08-23 Marc Autret <autret_m@epita.fr>
8666
8667 * src/lex.c (percent_table): Typo: s/naem/name/.
8668 Add graph option.
8669 Normalize new options declarations.
8670
8671 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
8672
8673 * tests/suite.at: Exercise %header_extension and %source_extension.
8674
8675 2001-08-16 Marc Autret <autret_m@epita.fr>
8676
8677 * src/reader.c (parse_dquoted_param): New.
8678 (parse_header_extension_decl): Use it.
8679 (parse_source_extension_decl): Likewise.
8680
8681 2001-08-16 Marc Autret <autret_m@epita.fr>
8682
8683 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
8684 (get_xxxx_str): Use assert () instead of complain ().
8685 Remove return invokations in default cases.
8686 (get_decision_str): Modify default behaviour. Remove second argument.
8687 Echo modifications on calls.
8688 (output_graph): Fix.
8689
8690 2001-08-16 Marc Autret <autret_m@epita.fr>
8691
8692 * src/getargs.c (usage): Update with ``-g, --graph''.
8693
8694 2001-08-16 Marc Autret <autret_m@epita.fr>
8695
8696 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
8697 (Option Cross Key): Likewise.
8698 * doc/bison.1: Update.
8699
8700 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
8701
8702 * src/output.c (output_master_parser): Don't finish action_obstack.
8703 (output_parser): Don't care about the muscle action, here.
8704 (prepare): Copy the action_obstack in the action muscle.
8705 (output): Free action_obstack.
8706
8707 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
8708
8709 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
8710 will contain `%union' declaration.
8711 (parse_union_decl): Delete #line directive output.
8712 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
8713 informations about %union.
8714 (parse_union_decl): Copy the union_obstack in the muscle stype.
8715 * src/bison.simple: Add new #line directive.
8716 Add typdef %%stype YYSTYPE.
8717
8718 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
8719
8720 * src/bison.simple: Add new `#line' directive.
8721
8722 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
8723
8724 * src/bison.simple: New `#line' directive.
8725 * src/output.c (output_parser): Support new dynamic muscle input_line.
8726
8727 2001-09-22 Marc Autret <autret_m@epita.fr>
8728
8729 * src/output.c (output_master_parser): New.
8730 (output_parser): Be more re-entrant.
8731
8732 2001-09-21 Marc Autret <autret_m@epita.fr>
8733
8734 * src/reader.c (copy_definition, parse_union_decl): Update and use
8735 `linef' muscle.
8736 (copy_action): Likewise.
8737 Use obstack_1grow ().
8738 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
8739
8740 2001-09-21 Marc Autret <autret_m@epita.fr>
8741
8742 * src/options.c (option_table): Adjust.
8743 * src/lex.c (parse_percent_token): Fix.
8744
8745 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
8746
8747 * src/options.c (symtab.h): Include it, need by lex.h.
8748
8749 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
8750
8751 * src/lex.c (parse_percent_token): Change type of variable `tx', which
8752 is now an option_table_struct*.
8753 (option_strcmp): New function option_strcmp.
8754 (parse_percent_token): Call option_strcmp.
8755 * src/getargs.c (xalloc.h, options.h): Include it.
8756 (getargs): Call create_long_option_table.
8757 (getargs): Free longopts at the end of the function.
8758 (shortopts): Move in options.c.
8759 * src/options.c (create_long_option_table): New function. Convert
8760 information from option_table to option structure.
8761 * src/reader.c (options.h): Include it.
8762
8763 * src/Makefile.am: Adjust.
8764 * src/options.c (option_table): Create from longopts and percent_table.
8765 * src/getargs.c (longopts): Delete.
8766 * src/lex.c (struct percent_table_struct): Delete.
8767 (percent_table): Delete.
8768 (options.h): Include it.
8769 * src/options.c: Create.
8770 * src/options.h: Create.
8771 Declare enum opt_access_e.
8772 Define struct option_table_struct.
8773
8774 2001-09-20 Marc Autret <autret_m@epita.fr>
8775
8776 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
8777 sections of Bison.
8778
8779 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
8780
8781 * src/bison.simple: s/%%filename/%%skeleton.
8782 * src/muscle_tab.c (getargs.h): Include it.
8783 (muscle_init): Insert new muscle skeleton.
8784
8785 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
8786
8787 * src/output.c (output_parser): Delete unused variable actions_dumped.
8788
8789 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
8790
8791 * src/output.c (output): Delete call to reader_output_yylsp.
8792 * src/reader.c (reader): Likewise.
8793 * src/reader.h: Delete declaration of reader_output_yylsp.
8794
8795 2001-09-02 Marc Autret <autret_m@epita.fr>
8796
8797 * src/reader.c: Include muscle_tab.h.
8798 (parse_union_decl): Update.
8799 (parse_macro_decl): Rename parse_muscle_decl.
8800 Update to use renamed functions and variable.
8801 (read_declarations, copy_action, read_additionnal_code, : Updated
8802 with correct variables and functions names.
8803 (packsymbols, reader): Likewise.
8804
8805 * src/reader.h (muscle_obstack): Extern declaration update.
8806
8807 * src/output.c: Include muscle_tab.h
8808 In all functions using macro_insert, change by using muscle_insert ().
8809 (macro_obstack): Rename muscle_obstack.
8810 Echo modifications in the whole file.
8811 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
8812 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
8813 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
8814
8815 * src/muscle_tab.h: Update double inclusion macros.
8816 (macro_entry_s): Rename muscle_entry_s.
8817 Update prototypes.
8818
8819 * src/muscle_tab.c: Include muscle_tab.h.
8820 Rename macro_tabble to muscle_table.
8821 (mhash1, mhash2, mcmp): Use muscle_entry.
8822 (macro_init): Rename muscle_init. Update.
8823 (macro_insert): Rename muscle_insert. Update.
8824 (macro_find): Rename muscle_find. Update.
8825
8826 * src/main.c: Include muscle_tab.h.
8827 (main): Call muscle_init ().
8828 * src/Makefile.am (bison_SOURCES): Echo modifications.
8829
8830 2001-09-02 Marc Autret <autret_m@epita.fr>
8831
8832 Now the files macro_tab.[ch] are named muscle_tab.[ch].
8833
8834 * src/muscle_tab.c, src/muscle_tab.h: Add files.
8835
8836 2001-09-02 Marc Autret <autret_m@epita.fr>
8837
8838 * src/macrotab.c, src/macrotab.h: Remove.
8839
8840 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
8841
8842 * src/reader.c (copy_guard): Use muscle to specify the `#line'
8843 filename.
8844
8845 2001-09-01 Marc Autret <autret_m@epita.fr>
8846
8847 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
8848 to an explicit value to activate the feature. We do it here.
8849
8850 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
8851
8852 * src/output.c (prepare): Delete the `filename' muscule insertion.
8853 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
8854 (parse_union_decl): Likewise.
8855 * src/macrotab.c (macro_init): Initialize filename by infile.
8856
8857 2001-08-31 Marc Autret <autret_m@epita.fr>
8858
8859 * src/bison.simple (YYLSP_NEEDED): New definition.
8860 * src/output.c (prepare): Add macro insertion of `locations_flag'
8861
8862 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
8863
8864 * src/output.c (prepare): Delete insertion of previous muscles,
8865 and insert the `prefix' muscles.
8866 * src/macrotab.c (macro_init): Likewise.
8867 (macro_init): Initialization prefix directive by `yy'.
8868 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
8869 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
8870 yylval, yydebug, yyerror, yynerrs and yyparse.
8871 New directive `#define' to substitute yydebug, ... with option
8872 name_prefix.
8873
8874 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
8875
8876 * src/main.c (main): Standardize.
8877 * src/output.c (output_table_data, output_parser): Likewise.
8878 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
8879
8880 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
8881
8882 * src/reader.c (read_additionnal_code): Rename %%user_code to
8883 %%epilogue.
8884 * src/output.c (output): Rename %%declarations to %%prologue.
8885 * src/bison.simple: Echo modifications.
8886
8887 2001-08-31 Marc Autret <autret_m@epita.fr>
8888
8889 * src/reader.c (readgram): CleanUp.
8890 (output_token_defines): Likewise.
8891 (packsymbols): Likewise.
8892 (reader): Likewise.
8893 * src/output.c (output): CPP-out useless code.
8894
8895 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
8896
8897 * src/reader.c (reader): Delete obsolete call to function
8898 output_trailers and output_headers.
8899 * src/output.h: Remove obsolete functions prototypes of output_headers
8900 and output_trailers.
8901
8902 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
8903
8904 * src/main.c: Include macrotab.h.
8905 * src/macrotab.h (macro_entry_s): Constify fields.
8906 Adjust functions prototypes.
8907 * src/macrotab.c (macro_insert): Constify key and value.
8908 (macro_find): Constify key.
8909 (macro_insert): Include 'xalloc.h'
8910 (macro_insert): Use XMALLOC.
8911 (macro_find): Constify return value.
8912 * src/output.c (output_table_data): Rename table to table_data.
8913 (output_parser): Constify macro_key, macro_value.
8914
8915 2001-08-30 Marc Autret <autret_m@epita.fr>
8916
8917 * src/reader.c (parse_skel_decl): New.
8918 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
8919 * src/lex.h (token_t): New token `tok_skel'.
8920 * src/lex.c (percent_table): Add skeleton option entry.
8921 Standardize.
8922
8923 2001-08-29 Marc Autret <autret_m@epita.fr>
8924
8925 * src/bison.simple: Add %%user_code directive at the end.
8926 * src/reader.c (read_additionnal_code): New.
8927 (reader): Use it.
8928 * src/output.c (output_program): Remove.
8929 (output): Update.
8930
8931 2001-08-28 Marc Autret <autret_m@epita.fr>
8932
8933 * src/output.c (output_actions): Clean up.
8934 (output_gram): CPP-out useless code.
8935 * src/reader.c (reader): Clean up, CPP-out useless code.
8936
8937 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
8938
8939 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
8940 directive.
8941 * src/bison.simple: Add `%%definitions'.
8942
8943 2001-08-28 Marc Autret <autret_m@epita.fr>
8944
8945 * config/depcomp: New file.
8946
8947 2001-08-27 Paul Eggert <eggert@twinsun.com>
8948
8949 * src/bison.simple (yyparse): Don't take the address of an
8950 item before the start of an array, as that doesn't conform to
8951 the C Standard.
8952
8953 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
8954
8955 * src/output.c (output): Remove the initialization of the macro
8956 obstack. It was done too late here.
8957
8958 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
8959 completely wrong.
8960 (reader): Initialize the macro obstack here, since we need it to grow
8961 '%define' directives.
8962
8963 * src/reader.h: Declare the macro obstack as extern.
8964
8965 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
8966
8967 * src/output.c (output_parser): Fix. Store single '%' characters in
8968 the output obstack instead of throwing them away.
8969
8970 2001-08-27 Akim Demaille <akim@epita.fr>
8971
8972 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
8973
8974 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8975
8976 * lib/Makefile.am: Adjust.
8977
8978 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8979
8980 * src/bison.simple: Update and add '%%' directives.
8981
8982 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8983
8984 * src/reader.c (reader): Remove calls to 'output_headers' and
8985 'output_trailers'. Remove some C output.
8986 (readgram): Disable a piece of code that was writing a default
8987 definition for 'YYSTYPE'.
8988 (reader_output_yylsp): Remove.
8989 (packsymbols): Output token defintions to a macro.
8990 (copy_definition): Disable C output.
8991
8992 * src/reader.c (parse_macro_decl): New function used to parse macro
8993 declarations.
8994 (copy_string2): Put the body of copy_string into this new function.
8995 Add a parameter to let the caller choose whether he wants to copy the
8996 string delimiters or not.
8997 (copy_string): Be a simple call to copy_string2 with the last argument
8998 bound to true.
8999 (read_declarations): Add case for macro definition.
9000 (copy_identifier): New.
9001 (parse_macro_decl): Read macro identifiers using copy_identifier
9002 rather than lex.
9003
9004 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9005
9006 * src/output.c (prepare): Add prefixed names.
9007 (output_parser): Output semantic actions.
9008 (output_parser): Fix bug on '%%line' directives.
9009
9010 * src/output.c (output_headers): Remove. The C code printed by this
9011 function should now be in the skeletons.
9012 (output_trailers): Remove.
9013 (output): Disable call to 'reader_output_yylsp'.
9014 (output_rule_data): Do not output tables to the table obstack.
9015
9016 * src/output.c: Remove some C dedicated output.
9017 Improve the use of macro and output obstacks.
9018 (output_defines): Remove.
9019
9020 * src/output.c (output_token_translations): Associate 'translate'
9021 table with a macro. No output to the table obstack.
9022 (output_gram): Same for 'rhs' and 'prhs'.
9023 (output_stos): Same for 'stos'.
9024 (output_rule_data): Same for 'r1' and 'r2'.
9025 (token_actions): Same for 'defact'.
9026 (goto_actions): Same for 'defgoto'.
9027 (output_base): Same for 'pact' and 'pgoto'.
9028 (output_table): Same for 'table'.
9029 (output_check): Same for 'check'.
9030
9031 * src/output.c (output_table_data): New function.
9032 (output_short_table): Remove.
9033 (output_short_or_char_table): Remove.
9034
9035 * src/output.c (output_parser): Replace most of the skeleton copy code
9036 with something new. Skeletons are now processed character by character
9037 rather than line by line, and Bison looks for '%%' macros. This is the
9038 first step in making Bison's output process (a lot) more flexible.
9039 (output_parser): Use the macro table.
9040
9041 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9042
9043 * src/main.c (main): Initialize the macro table.
9044
9045 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9046
9047 * src/lex.c (percent_table): Add tok_define.
9048 * src/lex.h: Add tok_define.
9049
9050 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9051
9052 * src/macrotab.c: New file.
9053 * src/macrotab.h: New file.
9054 * src/Makefile.am: Update.
9055
9056 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9057
9058 * lib/hash.c: New file.
9059 * lib/hash.h: New file.
9060 * lib/Makefile.am: Update.
9061
9062 2001-08-15 Akim Demaille <akim@epita.fr>
9063
9064 Version 1.28c.
9065
9066 2001-08-15 Marc Autret <autret_m@epita.fr>
9067
9068 * src/reader.c (readgram): Indent output macro YYSTYPE.
9069 (packsymbols): Likewise.
9070 (output_token_defines): Likewise.
9071 * src/files.c: Standardize.
9072 (compute_header_macro): New.
9073 (defines_obstack_save): New. Use compute_header_macro.
9074 (output_files): Update. Use defines_obstack_save.
9075
9076 2001-08-15 Akim Demaille <akim@epita.fr>
9077
9078 * doc/bison.texinfo (Table of Symbols): Document
9079 YYSTACK_USE_ALLOCA.
9080
9081 2001-08-15 Akim Demaille <akim@epita.fr>
9082
9083 * missing: Update from CVS Automake.
9084 * config/config.guess, config/config.sub, config/texinfo.tex:
9085 Update from gnu.org.
9086
9087 2001-08-15 Akim Demaille <akim@epita.fr>
9088
9089 * Makefile.maint: Sync with CVS Autoconf.
9090
9091 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
9092
9093 * doc/bison.texinfo: Include GNU Free Documentation License from
9094 `fdl.texi'.
9095 * doc/fdl.texi: Add to package.
9096
9097 2001-08-14 Marc Autret <autret_m@epita.fr>
9098
9099 Turn on %{source,header}_extension features.
9100
9101 * src/lex.c (percent_table): Un-CPP out header_extension and
9102 source_extension.
9103 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
9104 (compute_exts_from_src): Remove conditions. It restores priorities
9105 between options.
9106
9107 2001-08-14 Marc Autret <autret_m@epita.fr>
9108
9109 * src/files.c (compute_base_names): Add extensions computing when
9110 `--file-prefix' used.
9111 Standardize function calls.
9112
9113 2001-08-13 Marc Autret <autret_m@epita.fr>
9114
9115 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
9116 defining it (defined but null disables alloca).
9117
9118 2001-08-13 Marc Autret <autret_m@epita.fr>
9119
9120 * src/bison.simple (_yy_memcpy): CPP reformat.
9121
9122 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
9123
9124 * tests/atconfig.in (CPPFLAGS): Fix.
9125
9126 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
9127
9128 * doc/bison.texinfo: Include GNU General Public License from
9129 `gpl.texi'.
9130 * doc/gpl.texi: Add to package.
9131
9132 2001-08-10 Marc Autret <autret_m@epita.fr>
9133
9134 * src/print_graph.h: Fix.
9135 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
9136
9137 2001-08-10 Akim Demaille <akim@epita.fr>
9138
9139 * src/system.h: Provide default declarations for stpcpy, strndup,
9140 and strnlen.
9141
9142 2001-08-10 Robert Anisko <anisko_r@epita.fr>
9143
9144 * doc/bison.texinfo (Locations): Update @$ stuff.
9145
9146 2001-08-09 Robert Anisko <anisko_r@epita.fr>
9147
9148 * src/bison.simple (YYLLOC_DEFAULT): Update.
9149 (yyparse): Adjust.
9150
9151 2001-08-08 Marc Autret <autret_m@epita.fr>
9152
9153 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
9154 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
9155 Reported by Fabrice Bauzac.
9156
9157 2001-08-08 Marc Autret <autret_m@epita.fr>
9158
9159 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
9160 * src/vcg.c (output_node): Fix.
9161 * src/vcg.h: Cleanup.
9162 * src/print_graph.c: Add comments.
9163 (node_output_size): New global variable. Simplify the formatting of
9164 the VCG graph output.
9165 (print_actions): Unused code is now used. It notifies the final state
9166 and no action states in the VCG graph. It also give the reduce actions.
9167 The `shift and goto' edges are red and the `go to state' edges are
9168 blue.
9169 Get the current node name and node_obstack by argument.
9170 (node_obstack): New variable.
9171 (print_state): Manage node_obstack.
9172 (print_core): Use node_obstack given by argument.
9173 A node is not only computed here but in print_actions also.
9174 (print_graph): CPP out useless code instead of commenting it.
9175
9176 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
9177
9178 * tests/atconfig.in (CPPFLAGS): Fix.
9179
9180 2001-08-07 Akim Demaille <akim@epita.fr>
9181
9182 * src/print_graph.c (quote): New.
9183 (print_core): Use it.
9184
9185 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
9186
9187 * src/vcg.c (complain.h): Include it.
9188 Unepitaize `return' invocations.
9189 [NDEBUG] (main): Remove.
9190 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
9191 * src/files.c (open_files): Initialize graph_obstack.
9192 * src/print_graph.c (print_actions): CPP out useless code.
9193 (print_core): Don't output the last `\n' in labels.
9194 Use `quote'.
9195 * src/files.c (output_files): Output the VCG file.
9196 * src/main.c (main): Invoke print_graph ();
9197
9198 2001-08-06 Marc Autret <autret_m@epita.fr>
9199
9200 Automaton VCG graph output.
9201 Using option ``-g'' or long option ``--graph'', you can generate
9202 a gram_filename.vcg file containing a VCG description of the LALR (1)
9203 automaton of your grammar.
9204
9205 * src/main.c: Call to print_graph() function.
9206 * src/getargs.h: Update.
9207 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
9208 (graph_flag): New flag.
9209 (longopts): Update.
9210 (getargs): Add case `g'.
9211 * src/files.c (graph_obstack): New obstack struct.
9212 (open_files): Initialize new obstack.
9213 (output_files): Saves graph_obstack if required.
9214 * src/files.h (graph_obstack): New extern declaration.
9215 * src/Makefile.am: Add new source files.
9216
9217 2001-08-06 Marc Autret <autret_m@epita.fr>
9218
9219 * src/print_graph.c, src/print_graph.h (graph): New.
9220 * src/vcg.h: New file.
9221 * src/vcg.c: New file, VCG graph handling.
9222
9223 2001-08-06 Marc Autret <autret_m@epita.fr>
9224
9225 Add of %source_extension and %header_extension which specify
9226 the source or/and the header output file extension.
9227
9228 * src/files.c (compute_base_names): Remove initialisation of
9229 src_extension and header_extension.
9230 (compute_exts_from_gf): Update.
9231 (compute_exts_from_src): Update.
9232 (output_files): Update.
9233 * src/reader.c (parse_header_extension_decl): New.
9234 (parse_source_extension_decl): New.
9235 (read_declarations): New case statements for the new tokens.
9236 * src/lex.c (percent_table): Add entries for %source_extension
9237 and %header_extension.
9238 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
9239
9240 2001-08-06 Marc Autret <autret_m@epita.fr>
9241
9242 * configure.in: Bump to 1.28c.
9243 * doc/bison.texinfo: Texinfo thingies.
9244
9245 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
9246
9247 * tests/atconfig.in (CPPFLAGS): Add.
9248 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
9249
9250 2001-08-03 Akim Demaille <akim@epita.fr>
9251
9252 Version 1.28b.
9253
9254 2001-08-03 Akim Demaille <akim@epita.fr>
9255
9256 * tests/Makefile.am (check-local): Ship testsuite.
9257 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
9258 Include `string.h'.
9259
9260 2001-08-03 Akim Demaille <akim@epita.fr>
9261
9262 * configure.in: Try using -Wformat when compiling.
9263
9264 2001-08-03 Akim Demaille <akim@epita.fr>
9265
9266 * configure.in: Bump to 1.28b.
9267
9268 2001-08-03 Akim Demaille <akim@epita.fr>
9269
9270 * src/complain.c: Adjust strerror_r portability issues.
9271
9272 2001-08-03 Akim Demaille <akim@epita.fr>
9273
9274 Version 1.28a.
9275
9276 2001-08-03 Akim Demaille <akim@epita.fr>
9277
9278 * src/getargs.c, src/getarg.h (skeleton)): Constify.
9279 * src/lex.c (literalchar): Avoid name clashes on `buf'.
9280 * src/getargs.c: Include complain.h.
9281 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
9282 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
9283
9284 2001-08-03 Akim Demaille <akim@epita.fr>
9285
9286 * src/reader.c (readgram): Display hidden chars in error messages.
9287
9288 2001-08-03 Akim Demaille <akim@epita.fr>
9289
9290 Update to gettext 0.10.39.
9291
9292 2001-08-03 Akim Demaille <akim@epita.fr>
9293
9294 * lib/strspn.c: New.
9295
9296 2001-08-01 Marc Autret <autret_m@epita.fr>
9297
9298 * doc/bison.texinfo: Update.
9299 * doc/bison.1 (mandoc): Update.
9300 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
9301 * src/files.c: Support output files extensions computing.
9302 (src_extension): New static variable.
9303 (header_extension): New static variable.
9304 (tr): New function.
9305 (get_extension_index): New function, gets the index of an extension
9306 filename in a string.
9307 (compute_exts_from_gf): New function, computes extensions from the
9308 grammar file extension.
9309 (compute_exts_from_src): New functions, computes extensions from the
9310 C source file extension, file given by ``-o'' option.
9311 (compute_base_names): Update.
9312 (output_files): Update.
9313
9314 2001-08-01 Robert Anisko <anisko_r@epita.fr>
9315
9316 * doc/bison.texi: Document @$.
9317 (Locations): New section.
9318
9319 2001-07-18 Akim Demaille <akim@epita.fr>
9320
9321 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
9322 * config/prev-version.txt, config/move-if-change: New.
9323 * Makefile.am: Adjust.
9324
9325 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
9326
9327 * src/bison.simple (yyparse): Suppress warning `comparaison
9328 between signed and unsigned'.
9329
9330 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
9331
9332 * src/getargs.h (raw_flag): Remove.
9333 * src/getargs.c: Die on `-r'/`--raw'.
9334 * src/lex.c (parse_percent_token): Die on `%raw'.
9335 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
9336 * tests/calc.at: Suppress test with option `--raw'.
9337
9338 2001-07-14 Akim Demaille <akim@epita.fr>
9339
9340 * config/: New.
9341 * configure.in: Require Autoconf 2.50.
9342 Update to gettext 0.10.38.
9343
9344 2001-03-16 Akim Demaille <akim@epita.fr>
9345
9346 * doc/bison.texinfo: ANSIfy the examples.
9347
9348 2001-03-16 Akim Demaille <akim@epita.fr>
9349
9350 * getargs.c (skeleton): New variable.
9351 (longopts): --skeleton is a new option.
9352 (shortopts, getargs): -S is a new option.
9353 * getargs.h: Declare skeleton.
9354 * output.c (output_parser): Use it.
9355
9356 2001-03-16 Akim Demaille <akim@epita.fr>
9357
9358 * m4/strerror_r.m4: New.
9359 * m4/error.m4: Run AC_FUNC_STRERROR_R.
9360 * lib/error.h, lib/error.c: Update.
9361
9362 2001-03-16 Akim Demaille <akim@epita.fr>
9363
9364 * src/getargs.c (longopts): Clean up.
9365
9366 2001-02-21 Akim Demaille <akim@epita.fr>
9367
9368 * src/reader.c (gensym): `gensym_count' is your own.
9369 Use a static buf to create the symbol name, as token_buffer is no
9370 longer a buffer.
9371
9372 2001-02-08 Akim Demaille <akim@epita.fr>
9373
9374 * src/conflicts.c (conflict_report): Be sure not to append to res
9375 between two calls, which could happen if both first sprintf were
9376 skipped, but not the first cp += strlen.
9377
9378 2001-02-08 Akim Demaille <akim@epita.fr>
9379
9380 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
9381 New, from fileutils 4.0.37.
9382 * configure.in: Require Autoconf 2.49c. I took some time before
9383 making this decision. This is the only way out for portability
9384 issues in Bison, it would mean way too much duplicate effort to
9385 import in Bison features implemented in 2.49c since 2.13.
9386 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
9387
9388 2001-02-02 Akim Demaille <akim@epita.fr>
9389
9390 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
9391 * lib/xalloc.h, lib/xmalloc.c: Update.
9392
9393 2001-01-19 Akim Demaille <akim@epita.fr>
9394
9395 Get rid of the ad hoc handling of token_buffer in the scanner: use
9396 the obstacks.
9397
9398 * src/lex.c (token_obstack): New.
9399 (init_lex): Initialize it. No longer call...
9400 (grow_token_buffer): this. Remove it.
9401 Adjust all the places which used it to use the obstack.
9402
9403 2001-01-19 Akim Demaille <akim@epita.fr>
9404
9405 * src/lex.h: Rename all the tokens:
9406 s/\bENDFILE\b/tok_eof/g;
9407 s/\bIDENTIFIER\b/tok_identifier/g;
9408 etc.
9409 Let them be enums, not #define, to ease debugging.
9410 Adjust all the code.
9411
9412 2001-01-18 Akim Demaille <akim@epita.fr>
9413
9414 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
9415 * src/lex.c (maxtoken, grow_token_buffer): Static.
9416
9417 2001-01-18 Akim Demaille <akim@epita.fr>
9418
9419 Since we now use obstacks, more % directives can be enabled.
9420
9421 * src/lex.c (percent_table): Also accept `%yacc',
9422 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
9423 `%debug'.
9424 Handle the actions for `%semantic_parser' and `%pure_parser' here,
9425 instead of returning a token.
9426 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
9427 * src/reader.c (read_declarations): Adjust.
9428 * src/files.c (open_files): Don't call `compute_base_names', don't
9429 compute `attrsfile' since they depend upon data which might be
9430 *in* the input file now.
9431 (output_files): Do it here.
9432 * src/output.c (output_headers): Document the fact that this patch
9433 introduces a guaranteed SEGV for semantic parsers.
9434 * doc/bison.texinfo: Document them.
9435 * tests/suite.at: Exercise these %options.
9436
9437 2000-12-20 Akim Demaille <akim@epita.fr>
9438
9439 Also handle the output file (--verbose) with obstacks.
9440
9441 * files.c (foutput): Remove.
9442 (output_obstack): New.
9443 Adjust all dependencies.
9444 * src/conflicts.c: Return a string.
9445 * src/system.h (obstack_grow_string): Rename as...
9446 (obstack_sgrow): this. Be ready to work with non literals.
9447 (obstack_fgrow4): New.
9448
9449 2000-12-20 Akim Demaille <akim@epita.fr>
9450
9451 * src/files.c (open_files): Fix the computation of short_base_name
9452 in the case of `-o foo.tab.c'.
9453
9454 2000-12-20 Akim Demaille <akim@epita.fr>
9455
9456 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
9457 (copy_dollar): Now that everything uses obstacks, get rid of the
9458 FILE * parameters.
9459
9460 2000-12-20 Akim Demaille <akim@epita.fr>
9461
9462 * src/files.c (open_files): Actually the `.output' file is based
9463 on the short_base_name, not base_name.
9464 * tests/suite.at (Checking output file names): Adjust.
9465
9466 2000-12-20 Akim Demaille <akim@epita.fr>
9467
9468 * src/bison.s1: Remove, we now use directly...
9469 * src/bison.simple: this.
9470 * src/Makefile.am: Use pkgdata instead of data.
9471
9472 2000-12-20 Akim Demaille <akim@epita.fr>
9473
9474 * src/files.c (guard_obstack): New.
9475 (open_files): Initialize it.
9476 (output_files): Dump it...
9477 * src/files.h: Export it.
9478 * src/reader.c (copy_guard): Use it.
9479
9480 2000-12-19 Akim Demaille <akim@epita.fr>
9481
9482 * src/files.c (outfile, defsfile, actfile): Removed as global
9483 vars.
9484 (open_files): Don't compute them.
9485 (output_files): Adjust.
9486 (base_name, short_base_name): Be global.
9487 Adjust dependencies.
9488
9489 2000-12-19 Akim Demaille <akim@epita.fr>
9490
9491 * src/files.c (strsuffix): New.
9492 (stringappend): Be just like strcat but allocate.
9493 (base_names): Eve out from open_files.
9494 Try to simplify the rather hairy computation of base_name and
9495 short_base_name.
9496 (open_files): Use it.
9497 * tests/suite.at (Checking output file names): New test.
9498
9499 2000-12-19 Akim Demaille <akim@epita.fr>
9500
9501 * src/system.h (obstack_grow_literal_string): Rename as...
9502 (obstack_grow_string): this.
9503 * src/output.c (output_parser): Recognize `%% actions' instead of
9504 `$'.
9505 * src/bison.s1: s/$/%% actions/.
9506 * src/bison.hairy: Likewise.
9507
9508 2000-12-19 Akim Demaille <akim@epita.fr>
9509
9510 * src/output.c (output_parser): Compute the `#line' lines when
9511 there are.
9512 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
9513 Suggested by Hans Aberg.
9514
9515 2000-12-19 Akim Demaille <akim@epita.fr>
9516
9517 Let the handling of the skeleton files be local to the procedures
9518 that use it.
9519
9520 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
9521 longer static.
9522 (fparser, open_extra_files): Remove.
9523 (open_files, output_files): Don't take care of fparser.
9524 * src/files.h: Adjust.
9525 * src/output.c (output_parser): Open and close the file to the
9526 skeleton.
9527 * src/reader.c (read_declarations): When %semantic_parser, open
9528 fguard.
9529
9530 2000-12-19 Akim Demaille <akim@epita.fr>
9531
9532 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
9533 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
9534
9535 2000-12-19 Akim Demaille <akim@epita.fr>
9536
9537 * src/files.c (open_files): Yipee! We no longer need all the code
9538 looking for `/tmp' since we have no tmp file.
9539
9540 2000-12-19 Akim Demaille <akim@epita.fr>
9541
9542 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
9543 New macros.
9544 * src/files.c (open_files): Less dependency on MSDOS etc.
9545
9546 2000-12-14 Akim Demaille <akim@epita.fr>
9547
9548 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
9549 Provide a default definition.
9550 Use it when executing the default @ action.
9551 * src/reader.c (reader_output_yylsp): No longer include
9552 `timestamp' and `text' in the default YYLTYPE.
9553
9554 2000-12-12 Akim Demaille <akim@epita.fr>
9555
9556 * src/reader.c (copy_definition, parse_union_decl, copy_action)
9557 (copy_guard): Quote the file names.
9558 Reported by Laurent Mascherpa.
9559
9560 2000-12-12 Akim Demaille <akim@epita.fr>
9561
9562 * src/output.c (output_headers, output_program, output): Be sure
9563 to escape special characters when outputting filenames.
9564 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
9565 (output_headers): Don't depend on them, Use ACTSTR.
9566
9567 2000-11-17 Akim Demaille <akim@epita.fr>
9568
9569 * lib/obstack.h: Formatting changes.
9570 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
9571 prevents type checking.
9572 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
9573 cast the value to (void *): assigning a `foo *' to a `void *'
9574 variable is valid.
9575 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
9576 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
9577 append characters.
9578
9579 2000-11-17 Akim Demaille <akim@epita.fr>
9580
9581 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
9582 as...
9583 (suite.m4, regression.m4, calc.m4): these.
9584 * tests/atgeneral.m4: Update from CVS Autoconf.
9585
9586 2000-11-17 Akim Demaille <akim@epita.fr>
9587
9588 * tests/regression.m4 (%union and --defines): New test,
9589 demonstrating a current bug in the obstack implementation.
9590
9591 2000-11-17 Akim Demaille <akim@epita.fr>
9592
9593 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
9594 macros.
9595 Use them to declare the variables which are global or local to
9596 `yyparse'.
9597
9598 2000-11-17 Akim Demaille <akim@epita.fr>
9599
9600 * acconfig.h: Remove, no longer used.
9601
9602 2000-11-07 Akim Demaille <akim@epita.fr>
9603
9604 * src: s/Copyright (C)/Copyright/g.
9605
9606 2000-11-07 Akim Demaille <akim@epita.fr>
9607
9608 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
9609 defining.
9610 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
9611
9612 2000-11-07 Akim Demaille <akim@epita.fr>
9613
9614 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
9615 Merge in a single CPP if/else.
9616
9617 2000-11-07 Akim Demaille <akim@epita.fr>
9618
9619 * src/output.c (output): Remove useless variables.
9620 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
9621 argument `data' for consistency with the prototypes.
9622 Qualify it `const'.
9623 (obstack_copy, obstack_copy0): Rename the second argument as
9624 `address' for consistency. Qualify it `const'.
9625 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
9626 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
9627 `const' their input argument (`data' or `address').
9628 Adjust the corresponding macros to include `const' in casts.
9629
9630 2000-11-03 Akim Demaille <akim@epita.fr>
9631
9632 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
9633 s/PFILE1/BISON_HAIRY/.
9634 Adjust dependencies.
9635
9636 2000-11-03 Akim Demaille <akim@epita.fr>
9637
9638 For some reason, this was not applied.
9639
9640 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
9641 `unlink': it's no longer used.
9642
9643 2000-11-03 Akim Demaille <akim@epita.fr>
9644
9645 * src/files.c (skeleton_find): New function, eved out of...
9646 (open_files, open_extra_files): here.
9647
9648 2000-11-03 Akim Demaille <akim@epita.fr>
9649
9650 Don't use `atexit'.
9651
9652 * src/files.c (obstack_save): New function.
9653 (done): Rename as...
9654 (output_files): this.
9655 Use `obstack_save'.
9656 * src/main.c (main): Don't use `atexit' to register `done', since
9657 it no longer has to remove tmp files, just call `output_files'
9658 when there are no errors.
9659
9660 2000-11-02 Akim Demaille <akim@epita.fr>
9661
9662 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
9663 `unlink': it's no longer used.
9664 * src/files.h: Formatting changes.
9665
9666 2000-11-02 Akim Demaille <akim@epita.fr>
9667
9668 Remove the last uses of mktemp and unlink/delete.
9669
9670 * src/files.c (fdefines, ftable): Removed.
9671 (defines_ostack, table_obstack): New.
9672 Adjust dependencies of the former into uses of the latter.
9673 * src/output.c (output_short_or_char_table, output_short_table):
9674 Convert to using obstacks.
9675 * src/reader.c (copy_comment2): Accept one FILE * and two
9676 obstacks.
9677 (output_token_defines, reader_output_yylsp): Use obstacks.
9678 * src/system.h (obstack_fgrow3): New.
9679
9680 2000-11-01 Akim Demaille <akim@epita.fr>
9681
9682 Change each use of `fattrs' into a use of `attrs_obstack'.
9683
9684 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
9685 * src/files.c (fattrs): Remove.
9686 (attrs_obstack): New.
9687 Adjust all dependencies.
9688 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
9689
9690 2000-11-01 Akim Demaille <akim@epita.fr>
9691
9692 Introduce obstacks.
9693 Change each use of `faction' into a use of `action_obstack'.
9694
9695 * lib/obstack.h, lib/obstack.c: New files.
9696 * src/files.c (faction): Remove.
9697 (action_obstack): New.
9698 Adjust all dependencies.
9699
9700 2000-10-20 Akim Demaille <akim@epita.fr>
9701
9702 * lib/quote.h (PARAMS): New macro. Use it.
9703
9704 2000-10-16 Akim Demaille <akim@epita.fr>
9705
9706 * src/output.c (output_short_or_char_table): New function.
9707 (output_short_table, output_token_translations): Use it.
9708 (goto_actions): Use output_short_table.
9709
9710 2000-10-16 Akim Demaille <akim@epita.fr>
9711
9712 * src/symtab.c (bucket_new): New function.
9713 (getsym): Use it.
9714
9715 * src/output.c (output_short_table): New argument to display the
9716 comment associated with the table.
9717 Adjust dependencies.
9718 (output_gram): Use it.
9719 (output_rule_data): Nicer output layout for YYTNAME.
9720
9721 2000-10-16 Akim Demaille <akim@epita.fr>
9722
9723 * src/lex.c (read_typename): New function.
9724 (lex): Use it.
9725 * src/reader.c (copy_dollar): Likewise.
9726
9727 2000-10-16 Akim Demaille <akim@epita.fr>
9728
9729 * src/reader.c (copy_comment2): Expect the input stream to be on
9730 the `/' which is suspected to open a comment, instead of being
9731 called after `//' or `/*' was read.
9732 (copy_comment, copy_definition, parse_union_decl, copy_action)
9733 (copy_guard): Adjust.
9734
9735 2000-10-16 Akim Demaille <akim@epita.fr>
9736
9737 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
9738 `read_signed_integer'.
9739
9740 2000-10-16 Akim Demaille <akim@epita.fr>
9741
9742 * src/reader.c (copy_dollar): New function.
9743 (copy_guard, copy_action): Use it.
9744
9745 2000-10-16 Akim Demaille <akim@epita.fr>
9746
9747 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
9748 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
9749 New files, from Fileutils 4.0.27.
9750 * src/main.c (printable_version): Remove.
9751 * src/lex.c, src/reader.c: Use `quote'.
9752
9753 2000-10-04 Akim Demaille <akim@epita.fr>
9754
9755 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
9756
9757 2000-10-04 Akim Demaille <akim@epita.fr>
9758
9759 * doc/bison.texinfo: Various typos spotted by Neil Booth.
9760
9761 2000-10-04 Akim Demaille <akim@epita.fr>
9762
9763 When a literal string is used to define two different tokens,
9764 `bison -v' segfaults.
9765 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
9766
9767 * tests/regression.m4: New file.
9768 Include the core of the sample provided by Piotr Gackiewicz.
9769 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
9770 properly.
9771
9772 2000-10-04 Akim Demaille <akim@epita.fr>
9773
9774 * src/reader.c (parse_expect_decl): Keep `count' within the size
9775 of `buffer'.
9776 From Neil Booth.
9777
9778 2000-10-02 Paul Eggert <eggert@twinsun.com>
9779
9780 * bison.s1 (yyparse): Assign the default value
9781 unconditionally, to avoid a GCC warning and make the parser a
9782 tad smaller.
9783
9784 2000-10-02 Akim Demaille <akim@epita.fr>
9785
9786 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
9787 options.
9788
9789 2000-10-02 Akim Demaille <akim@epita.fr>
9790
9791 * src/derives.c, src/print.c, src/reduce.c: To ease the
9792 translation, move some `\n' out of the translated strings.
9793
9794 2000-10-02 Akim Demaille <akim@epita.fr>
9795
9796 The location tracking mechanism is precious for parse error
9797 messages. Nevertheless, it is enabled only when `@n' is used in
9798 the grammar, which is a different issue (you can use it in error
9799 message, but not in the grammar per se). Therefore, there should
9800 be another means to enable it.
9801
9802 * src/getargs.c (getargs): Support `--locations'.
9803 (usage): Report it.
9804 * src/getargs.h (locationsflag): Export it.
9805 * src/lex.c (percent_table): Support `%locations'.
9806 * src/reader.c (yylsp_needed): Remove this variable, now replaced
9807 with `locationsflag'.
9808 * doc/bison.texinfo: Document `--locations' and `%locations'.
9809 Sort the options.
9810 * tests/calc.m4: Test it.
9811
9812 For regularity of the names, replace each
9813 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
9814 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
9815 In addition replace each `flag' with `_flag'.
9816
9817 2000-10-02 Akim Demaille <akim@epita.fr>
9818
9819 Also test parse error messages, including with YYERROR_VERBOSE.
9820
9821 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
9822 associative).
9823 Use it to check the computations.
9824 Use it to check `nonassoc' is honored.
9825 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
9826 `--yyerror-verbose'.
9827 (_AT_CHECK_CALC): Adjust to this option.
9828 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
9829
9830 2000-10-02 Akim Demaille <akim@epita.fr>
9831
9832 Test also `--verbose', `--defines' and `--name-prefix'. Testing
9833 the latter demonstrates a flaw in the handling of non debugging
9834 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
9835 was used in order to simplify:
9836
9837 #if YYDEBUG
9838 if (yydebug)
9839 {
9840 ...
9841 }
9842 #endif
9843
9844 into
9845
9846 if (yydebug)
9847 {
9848 ...
9849 }
9850
9851 unfortunately this leads to a CPP conflict when
9852 `--name-prefix=foo' is used since it produces `#define yydebug
9853 foodebug'.
9854
9855 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
9856 (YYDPRINTF): New macro.
9857 Spread its use.
9858 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
9859 the bison options.
9860 Also test `--verbose', `--defines' and `--name-prefix'.
9861
9862 2000-10-02 Akim Demaille <akim@epita.fr>
9863
9864 Improve the readability of the produced parsers.
9865
9866 * src/bison.s1: Formatting changes.
9867 Improve the comment related to the `$' mark.
9868 (yydefault): Don't fall through to `yyresume': `goto' there.
9869 * src/output.c (output_parser): When the `$' is met, skip the end
9870 of its line.
9871 New variable, `number_of_dollar_signs', to check there's exactly
9872 one `$' in the parser skeleton.
9873
9874 2000-10-02 Akim Demaille <akim@epita.fr>
9875
9876 * lib/xstrdup.c: New file, from the fileutils.
9877 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
9878 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
9879 instead of strlen + xmalloc + strcpy.
9880 * src/symtab.c (copys): Remove, use xstrdup instead.
9881
9882 2000-10-02 Akim Demaille <akim@epita.fr>
9883
9884 * src/gram.h (associativity): New enum type which replaces the
9885 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
9886 `right_assoc', `left_assoc' and `non_assoc'.
9887 Adjust all dependencies.
9888 * src/reader.c: Formatting changes.
9889 (LTYPESTR): Don't define it, use it as a literal in
9890 `reader_output_yylsp'.
9891 * src/symtab.h (symbol_class): New enum type which replaces the
9892 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
9893 `sunknown', `stoken and `snterm'.
9894
9895 2000-10-02 Akim Demaille <akim@epita.fr>
9896
9897 * src/getargs.c (fixed_outfiles): Rename as...
9898 (yaccflag): for consistency and accuracy.
9899 Adjust dependencies.
9900
9901 2000-10-02 Akim Demaille <akim@epita.fr>
9902
9903 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
9904 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
9905 difficult and introduced a lot of core dump. It turns out that
9906 Bison used an implementation of `xmalloc' based on `calloc', and
9907 at various places it does depend upon the initialization to 0. I
9908 have not tried to isolate the pertinent places, and all the former
9909 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
9910 someone should address this issue.
9911
9912 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
9913 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
9914 files.
9915 Adjust dependencies.
9916 * src/warshall.h: New file.
9917 Propagate.
9918
9919 2000-10-02 Akim Demaille <akim@epita.fr>
9920
9921 Various anti-`extern in *.c' changes.
9922
9923 * src/system.h: Include `assert.h'.
9924
9925 2000-10-02 Akim Demaille <akim@epita.fr>
9926
9927 * src/state.h (nstates, final_state, first_state, first_shift)
9928 (first_reduction): Move their exportation from here...
9929 * src/LR0.h: to here.
9930 Adjust dependencies.
9931 * src/getargs.c (statisticsflag): New variable.
9932 Add support for `--statistics'.
9933 Adjust dependencies.
9934
9935 Remove a lot of now useless `extern' statements in most files.
9936
9937 2000-10-02 Akim Demaille <akim@epita.fr>
9938
9939 * src/LR0.h: New file.
9940 Propagate its use.
9941
9942 2000-10-02 Akim Demaille <akim@epita.fr>
9943
9944 * src/print.h: New file.
9945 Propagate its use.
9946 * src/print.c: Formatting and ordering changes.
9947 (verbose, terse): Replace with...
9948 (print_results): this new function.
9949 Adjust dependencies.
9950
9951 2000-10-02 Akim Demaille <akim@epita.fr>
9952
9953 * src/conflicts.c (conflict_report): New function.
9954 (conflict_log, verbose_conflict_log): Replace with...
9955 (print_conflicts): this function.
9956 Adjust dependencies.
9957 * src/conflicts.h: New file.
9958 Propagate its inclusion.
9959
9960 2000-10-02 Akim Demaille <akim@epita.fr>
9961
9962 * src/nullable.h: New file.
9963 Propagate its inclusion.
9964 * src/nullable.c: Formatting changes.
9965
9966 2000-10-02 Akim Demaille <akim@epita.fr>
9967
9968 * src/reduce.h: New file.
9969 Propagate its inclusion.
9970 * src/reduce.c: Topological sort and other formatting changes.
9971 (bool, TRUE, FALSE): Move their definition to...
9972 * src/system.h: here.
9973
9974 2000-10-02 Akim Demaille <akim@epita.fr>
9975
9976 * src/files.c: Formatting changes.
9977 (tryopen, tryclose, openfiles): Rename as...
9978 (xfopen, xfclose, open_files): this.
9979 (stringappend): static.
9980 * src/files.h: Complete the list of exported symbols.
9981 Propagate its use.
9982
9983 2000-10-02 Akim Demaille <akim@epita.fr>
9984
9985 * src/reader.h: New file.
9986 Propagate its use instead of tedious list of `extern' and
9987 prototypes.
9988 * src/reader.c: Formatting changes, topological sort,
9989 s/register//.
9990
9991 2000-10-02 Akim Demaille <akim@epita.fr>
9992
9993 * src/lex.h: Prototype `lex.c' exported functions.
9994 * src/reader.c: Adjust.
9995 * src/lex.c: Formatting changes.
9996 (safegetc): Rename as...
9997 (xgetc): this.
9998
9999 2000-10-02 Akim Demaille <akim@epita.fr>
10000
10001 * src/lalr.h: New file.
10002 Propagate its inclusion instead of prototypes and `extern'.
10003 * src/lalr.c: Formatting changes, topological sorting etc.
10004
10005 2000-10-02 Akim Demaille <akim@epita.fr>
10006
10007 * src/output.c (token_actions): Introduce a temporary array,
10008 YYDEFACT, that makes it possible for this function to use
10009 output_short_table.
10010
10011 2000-10-02 Akim Demaille <akim@epita.fr>
10012
10013 `user_toknums' is output as a `short[]' in `output.c', while it is
10014 defined as a `int[]' in `reader.c'. For consistency with the
10015 other output tables, `user_toknums' is now defined as a table of
10016 shorts.
10017
10018 * src/reader.c (user_toknums): Be a short table instead of an int
10019 table.
10020 Adjust dependencies.
10021
10022 Factor the short table outputs.
10023
10024 * src/output.c (output_short_table): New function.
10025 * src/output.c (output_gram, output_stos, output_rule_data)
10026 (output_base, output_table, output_check): Use it.
10027
10028 2000-10-02 Akim Demaille <akim@epita.fr>
10029
10030 * src/output.c (output): Topological sort of the functions, in
10031 order to get rid of the `static' prototypes.
10032 No longer use `register'.
10033 * src/output.h: New file.
10034 Propagate its inclusion in files explicitly prototyping functions
10035 from output.c.
10036
10037 2000-09-21 Akim Demaille <akim@epita.fr>
10038
10039 * src/atgeneral.m4: Update from Autoconf.
10040
10041 2000-09-21 Akim Demaille <akim@epita.fr>
10042
10043 * src/closure.h: New file.
10044 * src/closure.c: Formatting changes, topological sort over the
10045 functions, use of closure.h.
10046 (initialize_closure, finalize_closure): Rename as...
10047 (new_closure, free_closure): these. Adjust dependencies.
10048 * src/LR0.c: Formatting changes, topological sort, use of
10049 cloture.h.
10050 (initialize_states): Rename as...
10051 (new_states): this.
10052 * src/Makefile.am (noinst_HEADERS): Adjust.
10053
10054 2000-09-20 Akim Demaille <akim@epita.fr>
10055
10056 * src/acconfig.h: Don't protect config.h against multiple
10057 inclusion.
10058 Don't define PARAMS.
10059 * src/system.h: Define PARAMS.
10060 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
10061 purpose of config.h. system.h must not try to fix wrong
10062 definitions in config.h.
10063
10064 2000-09-20 Akim Demaille <akim@epita.fr>
10065
10066 * src/derives.h: New file.
10067 * src/main.c, src/derives.h: Use it.
10068 Formatting changes.
10069 * src/Makefile.am (noinst_HEADERS): Adjust.
10070
10071 2000-09-20 Akim Demaille <akim@epita.fr>
10072
10073 * tests/atgeneral.m4: Update from Autoconf.
10074 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
10075 (AT_CHECK_CALC): New macros.
10076 Use these macros to test bison with options `', `--raw',
10077 `--debug', `--yacc', `--yacc --debug'.
10078
10079 2000-09-19 Akim Demaille <akim@epita.fr>
10080
10081 * src/output.c: Formatting changes.
10082 * src/machine.h: Remove, leaving its contents in...
10083 * src/system.h: here.
10084 Include stdio.h.
10085 Adjust all dependencies on stdio.h and machine.h.
10086 * src/getargs.h: New file.
10087 Let all `extern' declarations about getargs.c be replaced with
10088 inclusion of `getargs.h'.
10089 * src/Makefile.am (noinst_HEADERS): Adjust.
10090
10091 * tests/calc.m4 (yyin): Be initialized in main, not on the global
10092 scope.
10093 (yyerror): Returns void, not int.
10094 * doc/bison.texinfo: Formatting changes.
10095
10096 2000-09-19 Akim Demaille <akim@epita.fr>
10097
10098 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
10099 portable.
10100
10101 2000-09-18 Akim Demaille <akim@epita.fr>
10102
10103 * configure.in: Append WARNING_CFLAGS to CFLAGS.
10104 * src/Makefile.am (INCLUDES): Don't.
10105 Be ready to fetch headers in lib/.
10106
10107 2000-09-18 Akim Demaille <akim@epita.fr>
10108
10109 * doc/bison.texinfo: Update the copyright.
10110 ANSIfy and GNUify the examples.
10111 Remove the old menu.
10112
10113 2000-09-18 Akim Demaille <akim@epita.fr>
10114
10115 First set of tests: use the `calc' example from the documentation.
10116
10117 * src/bison.s1 (yyparse): Condition the code using `yytname' which
10118 is defined only when YYDEBUG is.
10119 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
10120 * src/files.c (tryopen, tryclose): Formatting changes.
10121 Move to the top and be static.
10122 * src/reader.c (read_signed_integer): Likewise.
10123 * tests/calc.m4: New file.
10124 * Makefile.am, suite.m4: Adjust.
10125 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
10126
10127 2000-09-18 Akim Demaille <akim@epita.fr>
10128
10129 Add support for an Autotest test suite for Bison.
10130
10131 * m4/m4.m4, m4/atconfig.m4: New files.
10132 * m4/Makefile.am (EXTRA_DIST): Adjust.
10133 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
10134 files.
10135 * src/getargs.c: Display a more standard --version message.
10136 * src/reader.c (reader): Formatting changes.
10137 No longer depend upon VERSION_STRING.
10138 * configure.in: No longer use `dnl'.
10139 Set up the test suite and the new directory `tests/.
10140 (VERSION_STRING): Remove.
10141
10142 2000-04-14 Akim Demaille <akim@epita.fr>
10143
10144 * src/reader.c (copy_comment2): New function, same as former
10145 `copy_comment', but outputs into two FILE *.
10146 (copy_comment): Use it.
10147 (parse_union_decl): Use it.
10148 (get_type, parse_start_decl): Use the same `invalid' message.
10149 (parse_start_decl, parse_union_decl): Use the same `multiple'
10150 message.
10151 (parse_union_decl, copy_guard, copy_action): Use the same
10152 `unmatched' message.
10153 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
10154
10155 2000-03-31 Akim Demaille <akim@epita.fr>
10156
10157 * src/files.c (tryopen, tryclose): Move to the top.
10158 Be static.
10159
10160 2000-03-31 Akim Demaille <akim@epita.fr>
10161
10162 * src/main.c (main): Don't call `done', exit does it.
10163
10164 2000-03-31 Akim Demaille <akim@epita.fr>
10165
10166 * allocate.c: s/return (foo)/return foo/.
10167 * lalr.c: Likewise.
10168 * LR0.c: Likewise.
10169 * output.c: Likewise.
10170 * reader.c: Likewise.
10171 * symtab.c: Likewise.
10172 * vmsgetargs.c: Likewise.
10173
10174 2000-03-31 Akim Demaille <akim@epita.fr>
10175
10176 Clean up the error reporting functions.
10177
10178 * src/report.c: New file.
10179 * src/report.h: Likewise.
10180 * src/Makefile.am: Adjust.
10181 * m4/error.m4: New file.
10182 * m4/Makefile.am: Adjust.
10183 * configure.in (jm_PREREQ_ERROR): Call it.
10184 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
10185 Remove.
10186 (fatal, fatals): Remove. All callers use complain.c::fatal.
10187 (warn, warni, warns, warnss, warnss): Remove. All callers use
10188 complain.c::complain.
10189 (toomany): Remove, use fatal instead.
10190 * src/files.c (done): No argument, use complain_message_count.
10191 * src/main.c (main): Register `done' to `atexit'.
10192
10193 * src/getargs.c (usage): More `fputs', less `fprintf'.
10194
10195 2000-03-28 Akim Demaille <akim@epita.fr>
10196
10197 * lib/: New directory.
10198 * Makefile.am (SUBDIRS): Adjust.
10199 * configure.in: Adjust.
10200 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
10201 useless.
10202 * src/alloca.c: Moved to lib/.
10203 * src/getopt.c: Likewise.
10204 * src/getopt1.c: Likewise.
10205 * src/getopt.h: Likewise.
10206 * src/ansi2knr.c: Likewise.
10207 * src/ansi2knr.1: Likewise.
10208 * src/Makefile.am: Adjust.
10209 * lib/Makefile.am: New file.
10210
10211 2000-03-28 Akim Demaille <akim@epita.fr>
10212
10213 * src/getargs.c (usage): Refresh the help message.
10214
10215 2000-03-17 Akim Demaille <akim@epita.fr>
10216
10217 * src/getopt1.c: Updated from textutils 2.0e
10218 * src/getopt.c: Likewise.
10219 * src/getopt.h: Likewise.
10220
10221 2000-03-17 Akim Demaille <akim@epita.fr>
10222
10223 * src/Makefile.am (bison.simple): Fix the awk program: quote only
10224 the file name, not the whole `#line LINE FILE'.
10225
10226 2000-03-17 Akim Demaille <akim@epita.fr>
10227
10228 On syntax errors, report the token on which we choked.
10229
10230 * src/bison.s1 (yyparse): In the label yyerrlab, when
10231 YYERROR_VERBOSE, add yychar in msg.
10232
10233 2000-03-17 Akim Demaille <akim@epita.fr>
10234
10235 * src/reader.c (copy_at): New function.
10236 (copy_guard): Use it.
10237 (copy_action): Use it.
10238
10239 2000-03-17 Akim Demaille <akim@epita.fr>
10240
10241 Be kind to translators, save some useless translations.
10242
10243 * src/main.c (banner): New function.
10244 (fatal_banner): Use it.
10245 (warn_banner): Use it.
10246
10247 2000-03-17 Akim Demaille <akim@epita.fr>
10248
10249 * src/reader.c (copy_definition): Use copy_string and
10250 copy_comment. Removed now unused `match', `ended',
10251 `cplus_comment'.
10252 (copy_comment, copy_string): Moved, to be visible from
10253 copy_definition.
10254
10255 2000-03-17 Akim Demaille <akim@epita.fr>
10256
10257 * src/reader.c (copy_string): Declare `static inline'. No
10258 problems with inline, since it is checked by configure.
10259 (copy_comment): Likewise.
10260
10261 2000-03-17 Akim Demaille <akim@epita.fr>
10262
10263 * src/reader.c (packsymbols): Formatting changes.
10264
10265 2000-03-17 Akim Demaille <akim@epita.fr>
10266
10267 * src/reader.c (copy_comment): New function, factored out from:
10268 (copy_action): Use it. Removed now unused `match', `ended',
10269 `cplus_comment'.
10270 (copy_guard): Likewise.
10271
10272 2000-03-17 Akim Demaille <akim@epita.fr>
10273
10274 * src/reader.c (copy_string): New function, factored out from:
10275 (copy_action): Use it.
10276 (copy_guard): Likewise.
10277
10278 2000-03-17 Akim Demaille <akim@epita.fr>
10279
10280 Change the handling of @s so that they behave exactly like $s.
10281 There is now a pseudo variable @$ (readble and writable), location
10282 of the lhs of the rule (by default ranging from the location of
10283 the first symbol of the rhs, to the location of the last symbol,
10284 or, if the rhs is empty, YYLLOC).
10285
10286 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
10287 yyval.
10288 (yyparse): When providing a default semantic action, provide a
10289 default location action.
10290 (after the $): No longer change `*YYLSP', just stack YYLOC the
10291 same way you stack YYVAL.
10292 * src/reader.c (read_declarations): Use warns.
10293 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
10294 (copy_action, case '@'): Likewise.
10295 Use a standard error message, to save useless work from
10296 translators.
10297
10298 2000-03-17 Akim Demaille <akim@epita.fr>
10299
10300 * src/bison.s1: Formatting and cosmetics changes.
10301 * src/reader.c: Likewise.
10302 Update the Copyright notice.
10303
10304 2000-03-17 Akim Demaille <akim@epita.fr>
10305
10306 * src/bison.s1 (#line): All set to `#line' only, since the
10307 Makefile now handles them.
10308
10309 2000-03-16 Akim Demaille <akim@epita.fr>
10310
10311 * src/output.c (output_rule_data): Output the documentation of
10312 some of the tables.
10313 (Copyright notice): Update.
10314 Formatting changes.
10315
10316 2000-03-16 Akim Demaille <akim@epita.fr>
10317
10318 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
10319 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
10320 One `#if YYDEBUG' remains, since it uses variables which are
10321 defined only if `YYDEBUG != 0'.
10322
10323 2000-03-16 Akim Demaille <akim@epita.fr>
10324
10325 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
10326 and related variables so that the similarities are highlighted.
10327
10328 2000-03-16 Akim Demaille <akim@epita.fr>
10329
10330 * src/bison.s1: Properly indent CPP directives.
10331
10332 2000-03-16 Akim Demaille <akim@epita.fr>
10333
10334 * src/bison.s1: Properly indent the `alloca' CPP section.
10335
10336 2000-03-16 Akim Demaille <akim@epita.fr>
10337
10338 Do not hard code values of directories in `configure.in'.
10339 Update the `configure' tool chain.
10340
10341 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
10342 src/makefile.am.
10343 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
10344 (AC_OUTPUT): Add m4/Makefile.
10345 Bump to bison 1.28a, 1.29 has never been released.
10346 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
10347 handled via src/Makefile.am.
10348 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
10349 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
10350 autoheader.
10351 * Makefile.am (SUBDIRS): Add m4.
10352 (ACLOCAL_AM_FLAGS): New variable.
10353 (AUTOMAKE_OPTIONS): Add check-news.
10354 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
10355 the proper line number and file name.
10356 (DEFS): Propagate the location of bison library files and of the
10357 locale files.
10358 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
10359 builddir.
10360 * acinclude.m4: Remove, replaced by the directory m4.
10361 * m4/Makefile.am (EXTRA_DIST): New variable.
10362 * m4/gettext.m4: New file, from the fileutils.
10363 * m4/lcmessage.m4: Likewise
10364 * m4/progtest.m4: Likewise.
10365 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
10366
10367 2000-03-10 Akim Demaille <akim@epita.fr>
10368
10369 * src/closure.c:
10370 Formatting changes of various comments.
10371 Respect the GNU coding standards at various places.
10372 Don't use `_()' when no translation is needed.
10373
10374 1999-12-13 Jesse Thilo <jthilo@gnu.org>
10375
10376 * src/files.c:
10377 OS/2 honors TMPDIR environment variable.
10378
10379 1999-12-13 Jesse Thilo <jthilo@gnu.org>
10380
10381 * doc/bison.texinfo: Tweaked spelling and grammar.
10382 Updated ISBN.
10383 Removed reference to price of printed copy.
10384 Mention BISON_SIMPLE and BISON_HAIRY.
10385
10386 1999-12-13 Jesse Thilo <jthilo@gnu.org>
10387
10388 * configure.in, NEWS:
10389 Bison 1.29 released.
10390
10391 1999-10-27 Jesse Thilo <jthilo@gnu.org>
10392
10393 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
10394 Added reference card.
10395
10396 1999-07-26 Jesse Thilo <jthilo@gnu.org>
10397
10398 * po/ru.po: Added Russian translation.
10399
10400 1999-07-26 Jesse Thilo <jthilo@gnu.org>
10401
10402 * configure.in: Added Russian translation.
10403
10404 1999-07-06 Jesse Thilo <jthilo@gnu.org>
10405
10406 * configure.in, NEWS, README:
10407 Released version 1.28.
10408
10409 1999-06-14 Jesse Thilo <jthilo@gnu.org>
10410
10411 * src/system.h:
10412 Squashed redefinition warning on some systems.
10413
10414 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
10415 Have configure build version string instead of relying on ANSI string
10416 concatentation.
10417
10418 1999-06-14 Jesse Thilo <jthilo@gnu.org>
10419
10420 * po/POTFILES.in: Got rid of version.c.
10421
10422 1999-06-14 Jesse Thilo <jthilo@gnu.org>
10423
10424 * acconfig.h, configure.in:
10425 Have configure build version string instead of relying on ANSI string
10426 concatentation.
10427
10428 1999-06-08 Jesse Thilo <jthilo@gnu.org>
10429
10430 * doc/bison.1:
10431 Dropped mention of `+' for long-named options.
10432
10433 1999-05-30 Jesse Thilo <jthilo@gnu.org>
10434
10435 * src/files.c: Added <unistd.h> for unlink().
10436
10437 * src/Makefile.am, src/system.h:
10438 I18n fixes.
10439
10440 1999-05-30 Jesse Thilo <jthilo@gnu.org>
10441
10442 * README: Added a FAQ list.
10443
10444 * configure.in, acconfig.h:
10445 I18n fixes.
10446
10447 1999-05-30 Jesse Thilo <jthilo@gnu.org>
10448
10449 * doc/FAQ, doc/Makefile.am:
10450 Added a FAQ list.
10451
10452 1999-05-19 Jesse Thilo <jthilo@gnu.org>
10453
10454 * src/alloc.h, src/symtab.h, src/version.c:
10455 Protected inclusion of "config.h" with HAVE_CONFIG_H.
10456
10457 1999-04-18 Jesse Thilo <jthilo@gnu.org>
10458
10459 * src/.cvsignore, src/Makefile.am:
10460 Reorganized: sources in `src', documentation in `doc'.
10461
10462 * src/lex.c (literalchar):
10463 fixed the code for escaping double quotes (thanks
10464 Jonathan Czisny.)
10465
10466 1999-04-18 Jesse Thilo <jthilo@gnu.org>
10467
10468 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
10469 Adjusted paths to reflect directory reorganization.
10470
10471 1999-04-18 Jesse Thilo <jthilo@gnu.org>
10472
10473 * doc/.cvsignore, doc/Makefile.am:
10474 Reorganized: sources in `src', documentation in `doc'.
10475
10476 1999-04-18 Jesse Thilo <jthilo@gnu.org>
10477
10478 * configure.in:
10479 Updated AC_INIT file to reflect directory reorganization.
10480
10481 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
10482 Reorganized: sources in `src', documentation in `doc'.
10483
10484 1999-04-13 Jesse Thilo <jthilo@gnu.org>
10485
10486 * src/allocate.c:
10487 Don't declare calloc() and realloc() if not necessary.
10488
10489 1999-04-13 Jesse Thilo <jthilo@gnu.org>
10490
10491 * configure.in, acconfig.h, acinclude.m4:
10492 Don't declare calloc() and realloc() if not necessary.
10493
10494 1999-03-23 Jesse Thilo <jthilo@gnu.org>
10495
10496 * po/.cvsignore: Added i18n support.
10497
10498 1999-03-23 Jesse Thilo <jthilo@gnu.org>
10499
10500 * acconfig.h, configure.in, Makefile.am:
10501 Added i18n support.
10502
10503 1999-03-22 Jesse Thilo <jthilo@gnu.org>
10504
10505 * src/bison.s1: Fixed #line numbers.
10506
10507 1999-03-15 Jesse Thilo <jthilo@gnu.org>
10508
10509 * po/es.po, po/fr.po, po/nl.po, po/de.po:
10510 Added PO files from Translation Project.
10511
10512 1999-03-03 Jesse Thilo <jthilo@gnu.org>
10513
10514 * Makefile.am:
10515 Added support for non-ANSI compilers (ansi2knr).
10516
10517 1999-02-16 Jesse Thilo <jthilo@gnu.org>
10518
10519 * configure.in: Bumped version number to 1.27.
10520
10521 * Makefile.am:
10522 Added `bison.simple' to list of files removed by `make distclean'.
10523
10524 1999-02-12 Jesse Thilo <jthilo@gnu.org>
10525
10526 * src/files.c, src/files.h:
10527 Defined locations of parser files in config.h instead of Makefile.
10528
10529 1999-02-12 Jesse Thilo <jthilo@gnu.org>
10530
10531 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
10532 Defined locations of parser files in config.h instead of Makefile.
10533
10534 1999-02-09 Jesse Thilo <jthilo@gnu.org>
10535
10536 * Makefile.am:
10537 Removed inappropriate use of $< macro.
10538
10539 1999-02-05 Jesse Thilo <jthilo@gnu.org>
10540
10541 * po/Makefile.in.in, po/POTFILES.in:
10542 Add `po' directory skeleton.
10543
10544 1999-01-27 Jesse Thilo <jthilo@gnu.org>
10545
10546 * README: Document help-bison list.
10547
10548 * configure.in: Add check for mkstemp().
10549
10550 1999-01-20 Jesse Thilo <jthilo@gnu.org>
10551
10552 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
10553 Hush a few compiler warnings.
10554
10555 * src/files.c:
10556 Add tryclose(), which verifies that fclose was successful.
10557 Hush a couple of compiler warnings.
10558
10559 1999-01-20 Jesse Thilo <jthilo@gnu.org>
10560
10561 * Makefile.am, OChangeLog:
10562 ChangeLog is now automatically generated. Include the old version as
10563 OChangeLog.
10564
10565 1999-01-14 Jesse Thilo <jthilo@gnu.org>
10566
10567 * 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:
10568 Update FSF address.
10569
10570 1999-01-14 Jesse Thilo <jthilo@gnu.org>
10571
10572 * doc/bison.texinfo: Fix formatting glitch.
10573
10574 * doc/bison.texinfo: Update FSF address.
10575
10576 1999-01-14 Jesse Thilo <jthilo@gnu.org>
10577
10578 * acconfig.h: Update FSF address.
10579
10580 1999-01-08 Jesse Thilo <jthilo@gnu.org>
10581
10582 * src/system.h:
10583 Don't define PACKAGE here, since config.h defines it.
10584
10585 1998-12-30 Jesse Thilo <jthilo@gnu.org>
10586
10587 * src/reader.c: Update copyright date.
10588
10589 * src/main.c:
10590 Ditch sprintf to statically-sized buffers in fatal/warn functions in
10591 favor of output directly to stderr (avoids buffer overruns).
10592
10593 * src/reader.c: Some checks for premature EOF.
10594
10595 * 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:
10596 Use prototypes if the compiler understands them.
10597
10598 * src/files.c: Honor TMPDIR on Unix hosts.
10599 Use prototypes if the compiler understands them.
10600
10601 * src/reader.c:
10602 Fix a couple of buffer overrun bugs.
10603 Use prototypes if the compiler understands them.
10604
10605 * src/system.h: Include unistd.h and ctype.h.
10606 Use #ifdef instead of #if for NLS symbols.
10607
10608 1998-12-30 Jesse Thilo <jthilo@gnu.org>
10609
10610 * doc/bison.texinfo:
10611 Delete comment "consider using @set for edition number, etc..." since
10612 we now are doing so.
10613
10614 1998-12-30 Jesse Thilo <jthilo@gnu.org>
10615
10616 * configure.in:
10617 Use prototypes if the compiler understands them.
10618
10619 * NEWS: Document 1.26 highlights.
10620
10621 * Makefile.am: Require Automake 1.3 or later.
10622
10623 * acconfig.h:
10624 Use prototypes if the compiler understands them.
10625
10626 1998-12-29 Jesse Thilo <jthilo@gnu.org>
10627
10628 * src/version.c:
10629 Use VERSION symbol from automake for version number.
10630
10631 1998-12-29 Jesse Thilo <jthilo@gnu.org>
10632
10633 * acconfig.h, configure.in, version.cin:
10634 Use VERSION symbol from automake for version number.
10635
10636 1998-11-28 Jesse Thilo <jthilo@gnu.org>
10637
10638 * Makefile.am:
10639 Distribute original version of simple parser (bison.s1), not built
10640 version (bison.simple).
10641
10642 1998-11-28 Jesse Thilo <jthilo@gnu.org>
10643
10644 * doc/bison.texinfo: Add info dir entry.
10645
10646 * doc/bison.texinfo:
10647 Let automake put version number into documentation.
10648
10649 1998-11-26 Jesse Thilo <jthilo@gnu.org>
10650
10651 * src/bison.cld, src/build.com, src/vmshlp.mar:
10652 Add non-RCS files from /gd/gnu/bison.
10653
10654 1998-11-26 Jesse Thilo <jthilo@gnu.org>
10655
10656 * doc/bison.1:
10657 Document the BISON_HAIRY and BISON_SIMPLE variables.
10658
10659 1998-11-25 Jesse Thilo <jthilo@gnu.org>
10660
10661 * src/version.c: Build version.c automatically.
10662
10663 * src/reader.c:
10664 Fix token numbering (used to start at 258, not 257).
10665
10666 * src/system.h: Include config.h.
10667
10668 * src/getargs.c: Update bug report address.
10669
10670 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
10671 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
10672
10673 1998-11-25 Jesse Thilo <jthilo@gnu.org>
10674
10675 * Makefile.am:
10676 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
10677
10678 * configure.in, version.cin:
10679 Build version.c automatically.
10680
10681 * AUTHORS: Add AUTHORS file.
10682
10683 * README: Update bug report address.
10684
10685 * bison.simple:
10686 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
10687
10688 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
10689 Add automake stuff.
10690
10691 1998-11-25 Jesse Thilo <jthilo@gnu.org>
10692
10693 * doc/bison.texinfo: Clean up some formatting.
10694
10695 1998-05-05 Richard Stallman <rms@gnu.org>
10696
10697 * doc/bison.texinfo:
10698 Explain better why to make a pure parser.
10699
10700 1998-01-05 Richard Stallman <rms@gnu.org>
10701
10702 * src/files.c (openfiles):
10703 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
10704 find a temporary directory, if possible. Do not unlink files while
10705 they are open.
10706
10707 1997-08-25 Richard Stallman <rms@gnu.org>
10708
10709 * src/reader.c (stack_offset;):
10710 Change some warni to warns.
10711
10712 * src/lex.c (literalchar): Use warns, not warni.
10713
10714 1997-06-28 Richard Stallman <rms@gnu.org>
10715
10716 * src/bison.s1: Add a Bison version comment.
10717
10718 * src/main.c (fatal, warn, berror):
10719 Use program_name.
10720
10721 1997-06-28 Richard Stallman <rms@gnu.org>
10722
10723 * Makefile.in (bison_version): New variable.
10724 (dist): Use that variable.
10725 (bison.s1): Substitute the Bison version into bison.simple.
10726
10727 * bison.simple: Add a Bison version comment.
10728
10729 1997-06-18 Richard Stallman <rms@gnu.org>
10730
10731 * src/main.c (fatal, warn, berror):
10732 Make error messages standard.
10733 (toomany): Improve error message text.
10734
10735 * 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:
10736 new.h renamed to alloc.h.
10737
10738 1997-06-18 Richard Stallman <rms@gnu.org>
10739
10740 * Makefile.in: new.h renamed to alloc.h.
10741
10742 1997-05-24 Richard Stallman <rms@gnu.org>
10743
10744 * src/lex.c (literalchar):
10745 Fix the code for escaping \, " and '.
10746
10747 (lex): Avoid trouble when there are many chars
10748 to discard in a char literal with just several chars in it.
10749
10750 1997-05-17 Richard Stallman <rms@gnu.org>
10751
10752 * src/bison.s1:
10753 Use malloc, if using alloca is troublesome.
10754 (YYSTACK_USE_ALLOCA): New flag macro.
10755 Define it for some systems and compilers.
10756 (YYSTACK_ALLOC): New macro.
10757 (yyparse): Use YYSTACK_ALLOC to allocate stack.
10758 If it was malloc'd, free it.
10759
10760 1997-05-17 Richard Stallman <rms@gnu.org>
10761
10762 * bison.simple:
10763 Use malloc, if using alloca is troublesome.
10764 (YYSTACK_USE_ALLOCA): New flag macro.
10765 Define it for some systems and compilers.
10766 (YYSTACK_ALLOC): New macro.
10767 (yyparse): Use YYSTACK_ALLOC to allocate stack.
10768 If it was malloc'd, free it.
10769
10770 1997-04-23 Richard Stallman <rms@gnu.org>
10771
10772 * src/bison.s1:
10773 (alloca) [__hpux]: Always define as __builtin_alloca.
10774
10775 1997-04-23 Richard Stallman <rms@gnu.org>
10776
10777 * bison.simple:
10778 (alloca) [__hpux]: Always define as __builtin_alloca.
10779
10780 1997-04-22 Richard Stallman <rms@gnu.org>
10781
10782 * src/bison.s1:
10783 [__hpux]: Include alloca.h (right for HPUX 10)
10784 instead of declaring alloca (right for HPUX 9).
10785
10786 * src/bison.s1 (__yy_memcpy):
10787 Declare arg `count' as unsigned int.
10788 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
10789
10790 1997-04-22 Richard Stallman <rms@gnu.org>
10791
10792 * bison.simple:
10793 [__hpux]: Include alloca.h (right for HPUX 10)
10794 instead of declaring alloca (right for HPUX 9).
10795
10796 * bison.simple (__yy_memcpy):
10797 Declare arg `count' as unsigned int.
10798 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
10799
10800 1997-01-03 Richard Stallman <rms@gnu.org>
10801
10802 * src/allocate.c: [__STDC__ or _MSC_VER]:
10803 Declare calloc and realloc to return void *.
10804
10805 1997-01-02 Richard Stallman <rms@gnu.org>
10806
10807 * src/system.h:
10808 [_MSC_VER]: Include stdlib.h and process.h.
10809 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
10810
10811 * src/main.c (main): Return FAILURE as a value.
10812 (printable_version): Declare arg as int, not char.
10813
10814 1997-01-02 Richard Stallman <rms@gnu.org>
10815
10816 * Makefile.in (dist):
10817 Explicitly check for symlinks, and copy them.
10818
10819 1996-12-19 Richard Stallman <rms@gnu.org>
10820
10821 * src/files.c:
10822 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
10823
10824 1996-12-18 Paul Eggert <eggert@gnu.org>
10825
10826 * src/bison.s1 (yyparse):
10827 If __GNUC__ and YYPARSE_PARAM are both defined,
10828 declare yyparse to have a void * argument.
10829
10830 1996-12-18 Paul Eggert <eggert@gnu.org>
10831
10832 * bison.simple (yyparse):
10833 If __GNUC__ and YYPARSE_PARAM are both defined,
10834 declare yyparse to have a void * argument.
10835
10836 1996-12-17 Richard Stallman <rms@gnu.org>
10837
10838 * src/reduce.c (nbits): Add some casts.
10839
10840 1996-08-12 Richard Stallman <rms@gnu.org>
10841
10842 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
10843
10844 1996-08-12 Richard Stallman <rms@gnu.org>
10845
10846 * bison.simple: Test _MSDOS as well as _MSDOS_.
10847
10848 1996-07-31 Richard Stallman <rms@gnu.org>
10849
10850 * src/bison.s1:
10851 [__sun && __i386]: Include alloca.h.
10852
10853 1996-07-31 Richard Stallman <rms@gnu.org>
10854
10855 * bison.simple:
10856 [__sun && __i386]: Include alloca.h.
10857
10858 1996-07-30 Richard Stallman <rms@gnu.org>
10859
10860 * src/bison.s1: Comment change.
10861
10862 * src/bison.s1: Test _MSDOS_, not MSDOS.
10863
10864 1996-07-30 Richard Stallman <rms@gnu.org>
10865
10866 * bison.simple: Comment change.
10867
10868 * bison.simple: Test _MSDOS_, not MSDOS.
10869
10870 1996-06-01 Richard Stallman <rms@gnu.org>
10871
10872 * 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:
10873 Insert `_' macro around many string constants.
10874
10875 * src/main.c:
10876 Insert `_' macro around many string constants.
10877
10878 (main): Call setlocale, bindtextdomain and textdomain.
10879
10880 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
10881 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
10882 [ENABLE_NLS]: Include libintl.h.
10883 [ENABLE_NLS] (gettext): Define.
10884 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
10885 (N_, PACKAGE, LOCALEDIR): New macros.
10886
10887 1996-06-01 Richard Stallman <rms@gnu.org>
10888
10889 * POTFILES.in: New file.
10890
10891 * Makefile.in (allocate.o):
10892 Define target explicitly.
10893
10894 * Makefile.in (CFLAGS): Set to @CFLAGS@.
10895 (LDFLAGS): Set to @LDFLAGS@.
10896 (configure): Run autoconf only if preceding `cd' succeeds.
10897 (bison.s1): Redirect output to temporary file then move the
10898 temporary to the target, rather than redirecting directly to bison.s1.
10899 (clean): Remove config.status and config.log.
10900 (distclean): Don't remove config.status here.
10901
10902 1996-05-12 Richard Stallman <rms@gnu.org>
10903
10904 * src/bison.s1:
10905 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
10906
10907 1996-05-12 Richard Stallman <rms@gnu.org>
10908
10909 * bison.simple:
10910 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
10911
10912 1996-05-11 Richard Stallman <rms@gnu.org>
10913
10914 * src/bison.s1 (__yy_memcpy):
10915 Really reorder the args, as was supposedly done on Feb 14 1995.
10916 (yyparse): Calls changed accordingly.
10917
10918 1996-05-11 Richard Stallman <rms@gnu.org>
10919
10920 * Makefile.in (dist): Don't use $(srcdir).
10921
10922 * bison.simple (__yy_memcpy):
10923 Really reorder the args, as was supposedly done on Feb 14 1995.
10924 (yyparse): Calls changed accordingly.
10925
10926 1996-01-27 Richard Stallman <rms@gnu.org>
10927
10928 * src/output.c (output_rule_data):
10929 Test YYERROR_VERBOSE in the conditional
10930 around the definition of ttyname.
10931
10932 1995-12-29 Richard Stallman <rms@gnu.org>
10933
10934 * src/bison.s1:
10935 Fix line numbers in #line commands.
10936
10937 1995-12-29 Richard Stallman <rms@gnu.org>
10938
10939 * bison.simple:
10940 Fix line numbers in #line commands.
10941
10942 1995-12-27 Richard Stallman <rms@gnu.org>
10943
10944 * src/bison.s1 (YYPARSE_PARAM_DECL):
10945 In C++, make it always null.
10946 (YYPARSE_PARAM_ARG): New macro.
10947 (yyparse): Use YYPARSE_PARAM_ARG.
10948
10949 1995-12-27 Richard Stallman <rms@gnu.org>
10950
10951 * bison.simple (YYPARSE_PARAM_DECL):
10952 In C++, make it always null.
10953 (YYPARSE_PARAM_ARG): New macro.
10954 (yyparse): Use YYPARSE_PARAM_ARG.
10955
10956 1995-11-29 Richard Stallman <rms@gnu.org>
10957
10958 * doc/bison.texinfo:
10959 Describe literal string tokens, %raw, %no_lines, %token_table.
10960
10961 1995-11-29 Daniel Hagerty <hag@gnu.org>
10962
10963 * doc/bison.texinfo: Fixed update date
10964
10965 1995-10-16 Richard Stallman <rms@gnu.org>
10966
10967 * src/version.c: Version 1.25.
10968
10969 1995-10-16 Richard Stallman <rms@gnu.org>
10970
10971 * NEWS: *** empty log message ***
10972
10973 1995-10-16 Richard Stallman <rms@gnu.org>
10974
10975 * doc/bison.1, doc/bison.rnh:
10976 Add new options.
10977
10978 1995-10-15 Richard Stallman <rms@gnu.org>
10979
10980 * src/vmsgetargs.c, src/getargs.c:
10981 Added -n, -k, and -raw switches.
10982 (noparserflag, toknumflag, rawtoknumflag): New variables.
10983
10984 * src/symtab.h (SALIAS):
10985 New #define for adding aliases to %token.
10986 (struct bucket): Added `alias' field.
10987
10988 * src/reduce.c (reduce_grammar):
10989 Revise error message.
10990 (print_notices): Remove final `.' from error message.
10991
10992 * src/reader.c (reader_output_yylsp):
10993 New function.
10994 (readgram): Use `#if 0' around code that accepted %command
10995 inside grammar rules: The documentation doesn't allow it,
10996 and it will fail since the %command processors scan for the next %.
10997 (parse_token_decl): Extended the %token
10998 declaration to allow a multi-character symbol as an alias.
10999 (parse_thong_decl): New function.
11000 (read_declarations): Added %thong declarations.
11001 (read_declarations): Handle NOOP to deal with allowing
11002 % declarations as another means to specify the flags.
11003 (readgram): Allow %prec prior to semantics embedded in a rule.
11004 (skip_to_char, read_declarations, copy_definition)
11005 (parse_token_decl, parse_start_decl, parse_type_decl)
11006 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
11007 (get_type_name, copy_guard, copy_action, readgram)
11008 (get_type, packsymbols): Revised most error messages.
11009 Changed `fatal' to `warnxxx' to avoid aborting for error.
11010 Revised and use multiple warnxxx functions to avoid using VARARGS1.
11011 (read_declarations): Improve the error message for
11012 an invalid character. Do not abort.
11013 (read_declarations, copy_guard, copy_action): Use
11014 printable_version to avoid unprintable characters in printed output.
11015 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
11016 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
11017 Allow the type of a non-terminal can be given
11018 more than once, as long as all specifications give the same type.
11019
11020 * src/output.c:
11021 (output_headers, output_trailers, output, output_gram)
11022 (output_rule_data): Implement noparserflag variable.
11023 Implement toknumflag variable.
11024 (output): Call reader_output_yylsp to output LTYPESTR.
11025
11026 * src/main.c (main):
11027 If reader sees an error, don't process the grammar.
11028 (fatals): Updated to not use VARARGS1.
11029 (printable_version, int_to_string, warn, warni, warns, warnss)
11030 (warnsss): New error reporting functions. Avoid abort for error.
11031
11032 * src/lex.h:
11033 Added THONG and NOOP for alias processing.
11034 Added SETOPT for the new code that allows setting options with %flags.
11035
11036 * src/lex.c:
11037 Include getopt.h. Add some extern decls.
11038 (safegetc): New function to deal with EOF gracefully.
11039 (literalchar); new function to deal with reading \ escapes.
11040 (lex): Use literalchar.
11041 (lex): Implemented "..." tokens.
11042 (literalchar, lex, parse_percent_token): Made tokenbuffer
11043 always contain the token. This includes growing the token
11044 buffer while reading an integer.
11045 (parse_percent_token): Replaced if-else statement with percent_table.
11046 (parse_percent_token): Added % declarations as another
11047 way to specify the flags -n, -l, and -r. Also added hooks for
11048 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
11049 major changes to files.c.
11050 (lex) Retain in the incoming stream a character following
11051 an incorrect '/'.
11052 (skip_white_space, lex): Revised most error messages
11053 and changed fatal to warn to avoid aborting.
11054 (percent_table): Added %thong declarations.
11055
11056 * src/gram.h: Comment changes.
11057
11058 * src/files.c (openfiles, open_extra_files, done):
11059 Add faction flag
11060 and actfile file. Handle noparserflag. Both for -n switch.
11061
11062 * src/conflicts.c (resolve_sr_conflict):
11063 Remove use of alloca.
11064
11065 1995-06-01 Jim Meyering <meyering@gnu.org>
11066
11067 * doc/bison.texinfo: *** empty log message ***
11068
11069 1995-05-06 Richard Stallman <rms@gnu.org>
11070
11071 * src/bison.s1: Comment change.
11072
11073 1995-05-06 Richard Stallman <rms@gnu.org>
11074
11075 * bison.simple: Comment change.
11076
11077 1995-05-03 Richard Stallman <rms@gnu.org>
11078
11079 * src/version.c: Version now 1.24.
11080
11081 * src/bison.s1: Change distribution terms.
11082
11083 * src/version.c: Version now 1.23.
11084
11085 1995-05-03 Richard Stallman <rms@gnu.org>
11086
11087 * doc/bison.texinfo:
11088 Rewrite "Conditions for Using Bison".
11089 Update version to 1.24.
11090
11091 1995-05-03 Richard Stallman <rms@gnu.org>
11092
11093 * bison.simple: Change distribution terms.
11094
11095 1995-02-23 Richard Stallman <rms@gnu.org>
11096
11097 * src/files.c: Test __VMS_POSIX as well as VMS.
11098
11099 1995-02-14 Jim Meyering <meyering@gnu.org>
11100
11101 * src/bison.s1 (__yy_memcpy):
11102 Renamed from __yy_bcopy to avoid
11103 confusion. Reverse FROM and TO arguments to be consistent with
11104 those of memcpy.
11105
11106 1995-02-14 Jim Meyering <meyering@gnu.org>
11107
11108 * bison.simple (__yy_memcpy):
11109 Renamed from __yy_bcopy to avoid
11110 confusion. Reverse FROM and TO arguments to be consistent with
11111 those of memcpy.
11112
11113 1994-11-10 David J. MacKenzie <djm@gnu.org>
11114
11115 * NEWS: reformat
11116
11117 * NEWS: New file.
11118
11119 * Makefile.in (DISTFILES): Include NEWS.
11120
11121 * Makefile.in (DISTFILES):
11122 Include install-sh, not install.sh.
11123
11124 * configure.in: Update to Autoconf v2 macro names.
11125
11126 1994-10-05 David J. MacKenzie <djm@gnu.org>
11127
11128 * Makefile.in: fix typo
11129
11130 * Makefile.in (prefix, exec_prefix):
11131 Let configure set them.
11132
11133 1994-09-28 David J. MacKenzie <djm@gnu.org>
11134
11135 * Makefile.in: Set datadir to $(prefix)/share.
11136
11137 1994-09-15 Richard Stallman <rms@gnu.org>
11138
11139 * src/bison.s1:
11140 Update copyright notice and GPL version.
11141
11142 1994-09-15 Richard Stallman <rms@gnu.org>
11143
11144 * bison.simple:
11145 Update copyright notice and GPL version.
11146
11147 1994-07-12 Richard Stallman <rms@gnu.org>
11148
11149 * src/reduce.c, src/reader.c:
11150 entered into RCS
11151
11152 1994-05-05 David J. MacKenzie <djm@gnu.org>
11153
11154 * Makefile.in: entered into RCS
11155
11156 1994-03-26 Richard Stallman <rms@gnu.org>
11157
11158 * src/bison.s1: entered into RCS
11159
11160 1994-03-26 Richard Stallman <rms@gnu.org>
11161
11162 * bison.simple: entered into RCS
11163
11164 1994-03-25 Richard Stallman <rms@gnu.org>
11165
11166 * src/main.c: entered into RCS
11167
11168 1994-03-24 Richard Stallman <rms@gnu.org>
11169
11170 * src/conflicts.c: entered into RCS
11171
11172 1994-01-02 Richard Stallman <rms@gnu.org>
11173
11174 * Makefile.in: *** empty log message ***
11175
11176 1993-11-21 Richard Stallman <rms@gnu.org>
11177
11178 * src/bison.s1: *** empty log message ***
11179
11180 1993-11-21 Richard Stallman <rms@gnu.org>
11181
11182 * doc/bison.texinfo: entered into RCS
11183
11184 * doc/bison.texinfo: *** empty log message ***
11185
11186 1993-11-21 Richard Stallman <rms@gnu.org>
11187
11188 * bison.simple: *** empty log message ***
11189
11190 1993-10-25 David J. MacKenzie <djm@gnu.org>
11191
11192 * doc/bison.texinfo: *** empty log message ***
11193
11194 1993-10-19 Richard Stallman <rms@gnu.org>
11195
11196 * src/bison.s1: *** empty log message ***
11197
11198 1993-10-19 Richard Stallman <rms@gnu.org>
11199
11200 * bison.simple: *** empty log message ***
11201
11202 1993-10-14 Richard Stallman <rms@gnu.org>
11203
11204 * src/bison.s1: *** empty log message ***
11205
11206 1993-10-14 Richard Stallman <rms@gnu.org>
11207
11208 * bison.simple: *** empty log message ***
11209
11210 1993-09-14 David J. MacKenzie <djm@gnu.org>
11211
11212 * doc/bison.texinfo: *** empty log message ***
11213
11214 1993-09-13 Noah Friedman <friedman@gnu.org>
11215
11216 * Makefile.in: *** empty log message ***
11217
11218 1993-09-10 Richard Stallman <rms@gnu.org>
11219
11220 * src/conflicts.c: *** empty log message ***
11221
11222 * src/system.h: entered into RCS
11223
11224 1993-09-10 Richard Stallman <rms@gnu.org>
11225
11226 * doc/bison.1: entered into RCS
11227
11228 1993-09-06 Noah Friedman <friedman@gnu.org>
11229
11230 * src/version.c: entered into RCS
11231
11232 1993-09-06 Noah Friedman <friedman@gnu.org>
11233
11234 * Makefile.in: *** empty log message ***
11235
11236 1993-07-30 David J. MacKenzie <djm@gnu.org>
11237
11238 * Makefile.in: *** empty log message ***
11239
11240 1993-07-24 Richard Stallman <rms@gnu.org>
11241
11242 * src/bison.s1: *** empty log message ***
11243
11244 1993-07-24 Richard Stallman <rms@gnu.org>
11245
11246 * bison.simple: *** empty log message ***
11247
11248 1993-07-08 David J. MacKenzie <djm@gnu.org>
11249
11250 * Makefile.in: *** empty log message ***
11251
11252 1993-07-04 Richard Stallman <rms@gnu.org>
11253
11254 * src/bison.s1: *** empty log message ***
11255
11256 1993-07-04 Richard Stallman <rms@gnu.org>
11257
11258 * bison.simple: *** empty log message ***
11259
11260 1993-06-26 David J. MacKenzie <djm@gnu.org>
11261
11262 * src/getargs.c: entered into RCS
11263
11264 1993-06-26 David J. MacKenzie <djm@gnu.org>
11265
11266 * doc/bison.texinfo: *** empty log message ***
11267
11268 * doc/bison.1: New file.
11269
11270 1993-06-25 Richard Stallman <rms@gnu.org>
11271
11272 * src/getargs.c: New file.
11273
11274 1993-06-16 Richard Stallman <rms@gnu.org>
11275
11276 * src/bison.s1: *** empty log message ***
11277
11278 1993-06-16 Richard Stallman <rms@gnu.org>
11279
11280 * bison.simple: *** empty log message ***
11281
11282 1993-06-03 Richard Stallman <rms@gnu.org>
11283
11284 * src/bison.s1: New file.
11285
11286 1993-06-03 Richard Stallman <rms@gnu.org>
11287
11288 * doc/bison.texinfo: *** empty log message ***
11289
11290 1993-06-03 Richard Stallman <rms@gnu.org>
11291
11292 * bison.simple: New file.
11293
11294 1993-05-19 Richard Stallman <rms@gnu.org>
11295
11296 * doc/bison.texinfo: New file.
11297
11298 1993-05-07 Noah Friedman <friedman@gnu.org>
11299
11300 * Makefile.in: *** empty log message ***
11301
11302 1993-04-28 Noah Friedman <friedman@gnu.org>
11303
11304 * src/reader.c: *** empty log message ***
11305
11306 1993-04-23 Noah Friedman <friedman@gnu.org>
11307
11308 * src/alloc.h: entered into RCS
11309
11310 1993-04-20 David J. MacKenzie <djm@gnu.org>
11311
11312 * src/version.c: *** empty log message ***
11313
11314 * src/files.c, src/allocate.c:
11315 entered into RCS
11316
11317 * src/reader.c: *** empty log message ***
11318
11319 * src/lex.c: entered into RCS
11320
11321 * src/conflicts.c: New file.
11322
11323 * src/symtab.c: entered into RCS
11324
11325 * src/alloc.h: New file.
11326
11327 * src/LR0.c: entered into RCS
11328
11329 1993-04-18 Noah Friedman <friedman@gnu.org>
11330
11331 * src/reader.c: New file.
11332
11333 * src/version.c: *** empty log message ***
11334
11335 1993-04-18 Noah Friedman <friedman@gnu.org>
11336
11337 * Makefile.in: *** empty log message ***
11338
11339 1993-04-17 Noah Friedman <friedman@gnu.org>
11340
11341 * Makefile.in: *** empty log message ***
11342
11343 1993-04-15 Richard Stallman <rms@gnu.org>
11344
11345 * src/main.c, src/files.c:
11346 New file.
11347
11348 1993-04-15 Noah Friedman <friedman@gnu.org>
11349
11350 * configure.in: entered into RCS
11351
11352 * configure.in: *** empty log message ***
11353
11354 * configure.in: New file.
11355
11356 1993-04-14 Richard Stallman <rms@gnu.org>
11357
11358 * Makefile.in: New file.
11359
11360 1993-04-13 Richard Stallman <rms@gnu.org>
11361
11362 * src/version.c: New file.
11363
11364 1993-03-25 Richard Stallman <rms@gnu.org>
11365
11366 * src/output.c: entered into RCS
11367
11368 1992-09-25 Richard Stallman <rms@gnu.org>
11369
11370 * configure.bat: entered into RCS
11371
11372 1992-06-22 Richard Stallman <rms@gnu.org>
11373
11374 * src/vmsgetargs.c: entered into RCS
11375
11376 1992-06-22 Richard Stallman <rms@gnu.org>
11377
11378 * doc/bison.rnh: entered into RCS
11379
11380 1992-04-20 David J. MacKenzie <djm@gnu.org>
11381
11382 * README: entered into RCS
11383
11384 1992-01-22 Richard Stallman <rms@gnu.org>
11385
11386 * src/machine.h: entered into RCS
11387
11388 1991-12-21 Richard Stallman <rms@gnu.org>
11389
11390 * src/lalr.c, src/closure.c:
11391 entered into RCS
11392
11393 1991-12-20 Richard Stallman <rms@gnu.org>
11394
11395 * src/state.h: entered into RCS
11396
11397 1991-12-18 Richard Stallman <rms@gnu.org>
11398
11399 * src/print.c, src/nullable.c, src/derives.c:
11400 entered into RCS
11401
11402 1991-11-03 David J. MacKenzie <djm@gnu.org>
11403
11404 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
11405 entered into RCS
11406
11407 1988-09-09 Richard Stallman <rms@gnu.org>
11408
11409 * src/bison.hairy: entered into RCS
11410
11411 1987-12-16 Richard Stallman <rms@gnu.org>
11412
11413 * REFERENCES: entered into RCS
11414
11415 -----
11416
11417 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
11418 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
11419
11420 This file is part of Bison, the GNU Compiler Compiler.
11421
11422 Bison is free software; you can redistribute it and/or modify
11423 it under the terms of the GNU General Public License as published by
11424 the Free Software Foundation; either version 2, or (at your option)
11425 any later version.
11426
11427 Bison is distributed in the hope that it will be useful,
11428 but WITHOUT ANY WARRANTY; without even the implied warranty of
11429 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11430 GNU General Public License for more details.
11431
11432 You should have received a copy of the GNU General Public License
11433 along with Bison; see the file COPYING. If not, write to
11434 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
11435 Boston, MA 02111-1307, USA.