]> git.saurik.com Git - bison.git/blob - ChangeLog
Use size_t (not unsigned int) for hashes, since the gnulib hash module
[bison.git] / ChangeLog
1 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
2
3 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
4 unsigned int, for compatibility with latest gnulib hash module.
5 * src/state.c (state_hash, state_hasher): Likewise.
6 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
7 * src/uniqstr.c (hash_uniqstr): Likewise.
8
9 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
10
11 * NEWS: Unescaped newlines are no longer allowed in char & strings.
12
13 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
14 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
15 character and string literals.
16 (unexpected_end): New function.
17 (unexpected_eof): Use it.
18 (unexpected_newline): New function.
19 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
20 actions.
21
22 * NEWS: Document %expect-rr.
23
24 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
25 Fix typo by replacing $1 with $option.
26 Remove more 'intl'-related files.
27 Don't DEFUN AM_INTL_SUBDIR twice.
28
29 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
30 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
31 strtoul.c.
32 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
33 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
34 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
35 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
36 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
37 * src/.cvsignore: Add *.output.
38
39 * src/parse-gram.y: Put copyright notice inside %{ %} so it
40 gets copied to the output file.
41
42 2004-04-28 Paul Eggert <eggert@twinsun.com>
43
44 Get files from the gnulib and po repositories, instead of relying
45 on them being in our CVS. Upgrade to latest versions of gnulib
46 and Automake.
47
48 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
49 * bootstrap: Bootstrap from gnulib and po repositories.
50 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
51 * README-cvs: Document these changes. Remove version numbers from
52 mentions of build tools, since they change so often. Mention Flex.
53
54 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
55 (gl_USE_SYSTEM_EXTENSIONS): Add.
56 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
57 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
58 does this for us.
59 (AC_ISC_POSIX): Remove; we no longer support this
60 ancient OS, as it gets in the way of latest Autoconf & gnulib.
61 (AC_HEADER_STDC): Remove: we now assume C89 or better.
62 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
63 Do not check for C89 headers, except for locale.h which is used
64 by the Yacc library and must port to K&R hosts.
65 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
66 Do not check for C89 functions, except for setlocale which is
67 used by the Yacc library.
68 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
69 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
70 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
71 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
72 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
73 AM_GNU_GETTEXT): Remove; now done by:
74 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
75 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
76 for us.
77
78 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
79 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
80 Define to empty, as gnulib.mk will do the rest for us.
81 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
82 for us.
83 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
84 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
85
86 * src/files.c: Include gnulib's xstrndup.h.
87
88 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
89 (REALLOC): Use xnrealloc, for likewise.
90 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
91 (strnlen, memrchr): Remove decls; functions no longer used.
92 Include <stpcpy.h>.
93
94 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
95 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
96 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
97 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
98 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
99 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
100 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
101 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
102 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
103 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
104 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
105 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
106 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
107 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
108 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
109 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
110 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
111 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
112 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
113 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
114 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
115 Remove, as these files are now generated automatically
116 by bootstrap or automake.
117
118 * po/ChangeLog: Remove: all but one entry was a duplicate
119 of this file, and I moved that 2000-11-02 entry here.
120
121 * config/.cvsignore: Add Makefile, depcomp, install-sh.
122 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
123 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
124 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
125 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
126 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
127 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
128 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
129 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
130 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
131 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
132 xstrndup.h.
133 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
134 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
135 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
136 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
137 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
138 * src/.cvsignore: Remove *_.c.
139
140
141 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
142 support it. (The latest stable gzip doesn't.)
143
144 2004-04-27 Paul Eggert <eggert@twinsun.com>
145
146 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
147 case, as stos_ is now used by destructors due to the 2004-02-09
148 change.
149
150 Remove more K&R C support.
151 * lib/libiberty.y (PARAMS): Remove. All uses removed.
152 * lib/subpipe.c (errno): Remove decl.
153 Include <stdlib.h> unconditionally.
154 (EXIT_FAILURE): Remove macro.
155 * src/complain.c (vfprintf, strerror): Remove.
156 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
157 unconditionally.
158 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
159 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
160 (strchr, strspn, memchr): Remove decls.
161 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
162 unconditionally. Do not declare perror.
163 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
164 unconditionally.
165
166 * src/complain.c (_): Remove useless defn, as system.h defines this.
167
168 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
169 with latest obstack.h.
170 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
171 to procedure types, as obstack.h now does that for us.
172 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
173
174 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
175 so that this include file can stand alone.
176 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
177 does this now. Include subpipe.h first after config.h, to
178 test whether it can stand alone.
179
180 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
181 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
182 unused declaration.
183
184 * tests/synclines.at (%union synch line): Put a dummy member in
185 the union, because empty unions aren't allowed in C. Caught
186 by GCC 3.4.0.
187
188 2004-04-13 Jim Meyering <jim@meyering.net>
189
190 * src/conflicts.c (conflicts_print): Correct format string typo:
191 use `%%' to produce literal `%'. (trivial change)
192
193 2004-03-30 Paul Eggert <eggert@twinsun.com>
194
195 * src/getargs.c (version): Update copyright year to 2004.
196
197 * data/c.m4 (b4_int_type): Use 'short int' rather than
198 'short', and similarly for 'long', 'unsigned', etc.
199 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
200 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
201 yy_yypstack, yydumpstack): Likewise.
202 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
203 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
204 Likewise.
205 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
206 yy_stack_print, yyparse): Likewise.
207 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
208 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
209 * lib/bitset.c (bitset_print): Likewise.
210 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
211 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
212 * lib/bitsetv.c (bitsetv_dump): Likewise.
213 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
214 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
215 Likewise.
216 * src/LR0.c (allocate_itemsets): Likewise.
217 * src/gram.h (rule_number, rule): Likewise.
218 * src/lalr.h (goto_number): Likewise.
219 * src/nullable.c (nullable_compute): Likewise.
220 * src/output.c (prepare_rules): Likewise.
221 * src/relation.c (relation_print, relation_digraph): Likewise.
222 * src/relation.h (relation_node): Likewise.
223 * src/state.h (state_number, transitions, errs, reductions,
224 struct state): Likewise.
225 * src/symtab.h (symbol_number, struct symbol): Likewise.
226 * src/tables.c (vector_number, tally, action_number,
227 default_goto, goto_actions): Likewise.
228 * tests/existing.at (GNU Cim Grammar): Likewise.
229 * tests/regression.at (Web2c Actions): Likewise.
230
231 * src/output.c (muscle_insert_short_int_table): Renamed from
232 muscle_insert_short_table. All uses changed.
233
234 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
235
236 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
237 (declaration): Replace expected_conflicts with expected_sr_conflicts.
238 Add %expect-rr rule.
239
240 * src/scan-gram.l: Recognize %expect-rr.
241
242 * src/conflicts.h (expected_sr_conflicts): Rename from
243 expected_conflicts.
244 (expected_rr_conflicts): Declare.
245
246 * src/conflicts.c (expected_sr_conflicts): Rename from
247 expected_conflicts.
248 (expected_rr_conflicts): Define.
249 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
250 for GLR parsers.
251 Use expected_sr_conflicts in place of expected_conflicts.
252 Warn if expected_rr_conflicts used in non-GLR parser.
253
254 * doc/bison.texinfo: Add documentation for %expect-rr.
255
256 2004-03-08 Paul Eggert <eggert@gnu.org>
257
258 Add support for hex token numbers. Suggested by Odd Arild Olsen in
259 <http://mail.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
260
261 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
262 in lalr1.cc.
263 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
264 * src/scan-gram.l (scan_integer): New function.
265 ({int}): Use it.
266 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
267 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
268 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
269 Say "long int", not "long", for uniformity with GNU style.
270
271 2004-02-25 Paul Eggert <eggert@twinsun.com>
272
273 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
274 compilers. This fixes a problem with Intel's C++ compiler being
275 chatty, reported by Guido Trentalancia in
276 <http://mail.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
277
278 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
279
280 Support %destructor and merge error locations in lalr1.cc.
281
282 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
283 (Parser::stos_): Define unconditionally.
284 (Parser::destruct_): New method. Generate its body with
285 b4_yydestruct_generate.
286 (Parser::error_start_): New attribute.
287 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
288 token which are discarded.
289 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
290 error_start_ when erroneous token are discarded.
291 (Parser::parse) <yyerrlab1>: Compute the location of the error
292 token so that it covers all the discarded tokens.
293 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
294 it can be called with `%skeleton "lalr1.cc"', and do that.
295
296 2004-02-02 Paul Eggert <eggert@twinsun.com>
297
298 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
299 $(top_srcdir)/lib and ../lib. This fixes a bug reported
300 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
301 There's no need to mention top_builddir since Automake does that
302 for us.
303 (INCLUDES): Remove, as Automake says it's obsolescent.
304 Contents migrated into AM_CPPFLAGS as described above.
305 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
306
307 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
308
309 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
310 (yyreportSyntaxError): Handle case where lookahead token is
311 YYEMPTY.
312
313 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
314
315 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
316 resulting parsers are compilable with C++.
317
318 2003-12-23 Paul Eggert <eggert@twinsun.com>
319
320 * config/depcomp, config/install-sh: Sync with Automake 1.8.
321 * src/output.c (output_skeleton): Rename local var.
322 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
323 Bison tokens, as this runs afoul of the 2003-10-07 change that
324 disallowed NUL bytes in character constants or string literals.
325
326 * tests/local.at: Require Autoconf 2.59's Autotest.
327 * tests/testsuite.at: Don't include local.at, since we now assume
328 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
329 including it.
330 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
331 multiple inclusion warnings.
332
333 2003-12-02 Akim Demaille <akim@epita.fr>
334
335 * doc/bison.texinfo (How Can I Reset the Parser): More about start
336 conditions.
337 From Bruno Haible.
338
339 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
340
341 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
342
343 2003-10-07 Paul Eggert <eggert@twinsun.com>
344
345 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
346 if testsuite doesn't exist.
347
348 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
349 literals, unfortunately.
350 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
351 Complain about NUL bytes in character constants or string literals.
352
353 2003-10-05 Paul Eggert <eggert@twinsun.com>
354
355 * NEWS: Don't document %no-default-prec, as it's still
356 too experimental.
357 * doc/bison.texinfo: Document %no-default-prec only if
358 the defaultprec flag is set. Normally it's not.
359
360 2003-10-04 Paul Eggert <eggert@twinsun.com>
361
362 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
363 non-modifiable lvalue, instead of a modifiable one.
364 * doc/bison.texinfo (Actions): Document that $$ can
365 be assigned to. Do not claim that $$ and $N are
366 array element references: user code should not rely on this.
367
368 2003-10-01 Paul Eggert <eggert@twinsun.com>
369
370 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
371 (grammar_declaration): Use it.
372 * src/scan-gram.l: New token %no-default-prec.
373 * tests/conflicts.at: Revamp tests to use %no-default-prec.
374 * NEWS, doc/bison.texinfo: Document the above.
375
376 2003-10-01 Akim Demaille <akim@epita.fr>
377
378 VCG no longer supports long_straight_phase.
379
380 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
381 * src/print_graph.c (print_graph): Adjust.
382
383 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
384 and Paul Eggert <eggert@twinsun.com>
385
386 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
387 Table of Symbols): Document %default-prec.
388 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
389 (grammar_declaration): Set default_prec on %default-prec.
390 * src/scan-gram.l (%default-prec): New token.
391 * src/reader.h (default_prec): New flag.
392 * src/reader.c: Likewise.
393 (packgram): Handle it.
394 * tests/conflicts.at (%default-prec without %prec,
395 %default-prec with %prec, %default-prec 1): New tests.
396
397 2003-09-30 Paul Eggert <eggert@twinsun.com>
398
399 * tests/testsuite.at: Include local.at, not input.at, fixing
400 a typo in the 2003-08-25 patch.
401
402 2003-08-27 Akim Demaille <akim@epita.fr>
403
404 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
405 GCC warnings.
406
407 2003-08-26 Akim Demaille <akim@epita.fr>
408
409 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
410 "<\#" to avoid magic from Gnus when posting parts of this script.
411
412 2003-08-26 Akim Demaille <akim@epita.fr>
413
414 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
415 (Parser::parse): here.
416 Adjust: nerrs and errstatus is now replaced by...
417 (Parser::nerrs_, Parser::errstatus_): New.
418
419 2003-08-25 Akim Demaille <akim@epita.fr>
420
421 * config/announce-gen, Makefile.cfg: New.
422 * Makefile.am: Adjust.
423 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
424 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
425
426 2003-08-25 Akim Demaille <akim@epita.fr>
427
428 When reducing initial empty rules, Bison parser read an initial
429 location that is not defined. This results in garbage, and that
430 affects Bison's own parser. Therefore we need (i) to extend Bison
431 to support a means to initialize this location, and (ii) to use
432 this CVS Bison to fix CVS Bison's parser.
433
434 * src/reader.h, reader.c (epilogue_augment): Remove, replace
435 with...
436 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
437 * src/parse-gram.y: Adjust.
438 (%initial-action): New.
439 (%error-verbose): Since we require CVS Bison, there is no reason
440 not to use it.
441 * src/scan-gram.l: Adjust.
442 * src/Makefile.am (YACC): New, to make sure we use our own parser.
443 * data/yacc.c (yyparse): Use b4_initial_action.
444
445 2003-08-25 Akim Demaille <akim@epita.fr>
446
447 * doc/bison.texinfo: Don't promote stdout for error messages.
448
449 2003-08-25 Akim Demaille <akim@epita.fr>
450
451 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
452 From Alexandre Duret-Lutz.
453
454 2003-08-25 Akim Demaille <akim@epita.fr>
455
456 Version 1.875c.
457
458 2003-08-25 Akim Demaille <akim@epita.fr>
459
460 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
461 Use them.
462
463 2003-08-25 Akim Demaille <akim@epita.fr>
464
465 * data/lalr1.cc (Parser::reduce_print_): New.
466 Use it.
467
468 2003-08-25 Akim Demaille <akim@epita.fr>
469
470 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
471 error recovery loops. This patch is based on
472 <http://mail.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
473 Also, augment the similarity between lalr1.cc and yacc.c.
474 Note: the locations of error recovery rules are not correct yet.
475
476 * data/lalr1.cc: Comment changes to augment the similarity between
477 lalr1.cc and yacc.c.
478 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
479 (yyerrlab1): Remove, but where it used to be (now the bottom part of
480 yyerrlab), when hitting EOF, pop the whole stack here instead of
481 merely falling thru the default error handling mechanism.
482 (yyerrorlab): New label, with the old contents of YYERROR,
483 plus the following change: pop the stack of rhs corresponding
484 to the production that invoked YYERROR. That is how Yacc
485 behaves (required by POSIX).
486 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
487 fail.
488
489 2003-08-25 Akim Demaille <akim@epita.fr>
490
491 Tune local.at so that people can "autom4te -l autotest calc.at -o
492 calc" for instance, to extract a sub test suite.
493
494 * tests/testsuite.at: Move the initialization, Autotest version
495 requirement, and AT_TESTED invocation into...
496 * tests/local.at: here.
497 * tests/testsuite.at: Include it for compatibility with Autoconf
498 2.57.
499 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
500 be ignore.
501
502 2003-08-04 Paul Eggert <eggert@twinsun.com>
503
504 Rework code slightly to avoid gcc -Wtraditional warnings.
505 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
506 The returned value is now stored in *YY0. All callers changed.
507 * src/output.c (merge_output): Adjust to the above change.
508
509 2003-07-26 Paul Eggert <eggert@twinsun.com>
510
511 * data/glr.c (YYASSERT): New macro.
512 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
513 yyresolveStates, yyprocessOneStack):
514 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
515 Derived from a suggestion by Frank Heckenbach.
516
517 2003-07-25 Paul Eggert <eggert@twinsun.com>
518
519 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
520 for portability to K&R C (after ansi2knr, presumably). See
521 <http://mail.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
522 by Frank Heckenbach, though I have omitted the structure-initialization
523 part of his glr-knr.diff patch since I recall that the Portable
524 C Compiler didn't require that change.
525
526 Let the user specify how to allocate and free memory.
527 Derived from a suggestion by Frank Heckenbach in
528 <http://mail.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
529 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
530 All uses of free, malloc, realloc changed to use these macros,
531 and unnecessary casts removed.
532 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
533
534 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
535
536 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
537 use s.empty() rather than s == "" to test for empty string; see
538 <http://mail.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
539 (trivial change)
540
541 2003-06-25 Akim Demaille <akim@epita.fr>
542
543 * config/depcomp, config/install-sh: Update from masters.
544
545 2003-06-20 Paul Eggert <eggert@twinsun.com>
546
547 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
548 and return properly parenthesized result.
549 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
550 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
551 Remove unnecessary parentheses from uses.
552 * doc/bison.texinfo (Location Default Action): Describe the
553 conventions for parentheses.
554
555 2003-06-19 Paul Eggert <eggert@twinsun.com>
556
557 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
558 yyreportTree): Do not assume that size_t is the same width as int,
559 when printing sizes. Print sizes using an unsigned format.
560 Problem reported by Frank Heckenbach in
561 <http://mail.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
562
563 Port to Forte Developer 7 C compiler.
564 * data/glr.c (struct YYLTYPE): If locations are not being used,
565 declare a single dummy member, as empty structs do not conform
566 to the C standard.
567 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
568 the Forte Developer 7 C compiler complains that end-of-loop
569 code is not reached.
570
571 2003-06-17 Paul Eggert <eggert@twinsun.com>
572
573 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
574 avoid warnings from picky compilers about redefinition of PARAMS.
575
576 2003-06-17 Paul Eggert <eggert@twinsun.com>
577
578 Version 1.875b.
579
580 * NEWS: Document 1.875b.
581
582 * lib/bbitset.h: Do not include config.h; that's the includer's job.
583 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
584 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
585 Don't use 'index' in comments, as it's a builtin fn on some hosts.
586 * lib/bitset_stats.c: Include gettext.h unconditionally, as
587 per recent gettext manual's suggestion.
588 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
589 Use prototypes, not old-style definitions.
590 * lib/lbitset.c (lbitset_unused_clear): Likewise.
591 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
592 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
593 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
594 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
595 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
596 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
597 vbitset_or_and_cmp, vbitset_copy): Likewise.
598
599 * lib/libiberty.h: Do not include config.h; that's the includer's job.
600 Do not include <stdlib.h>.
601 (PARAMS): Define unconditionally for C89.
602 (ATTRIBUTE_NORETURN): Remove.
603 (ATTRIBUTE_UNUSED): Define unconditionally.
604
605 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
606 <http://mail.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
607 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
608 * lib/vbitset.c, lib/vbitset.h: New files.
609 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
610 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
611 from libbitset.
612
613 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
614 `How Can I Reset @code{yyparse}', since texinfo does not allow
615 arbitrary @ in node names.
616
617 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
618 shouldn't be needed according to the gettext 0.12.1 documentation
619 but which seem to be needed anyway: codeset.m4 glibc21.m4
620 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
621 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
622 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
623
624 * lib/.cvsignore: Add stdbool.h.
625 * m4/.cvsignore: Add nls.m4, po.m4.
626
627 Upgrade to CVS gnulib.
628 * stdbool_.h: File renamed from stdbool.h.in.
629 * configure.ac (AM_STDBOOL_H): Invoke this instead of
630 AC_HEADER_STDBOOL.
631 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
632 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
633 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
634 (MOSTLYCLEANFILES): New var.
635 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
636 (stdbool.h): New rule.
637 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
638 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
639 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
640 m4/quote.m4: Upgrade to today's gnulib.
641
642 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
643 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
644 the tests right now.
645 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
646 yyerror are declared before use; C99 requires this.
647
648 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
649
650 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
651 first.
652 (yyrecoverSyntaxError): Correct the logic for setting and testing
653 yyerrState.
654 Correct comment on handling EOF.
655 Allow states with only a default reduction, rather than failing
656 (I can't quite reconstruct why these were not allowed before).
657
658 Fixes to avoid problem that $-N rules in GLR parsers can cause
659 buffer overruns, corrupting state.
660
661 * src/output.c (prepare_rules): Output max_left_semantic_context
662 definition.
663 * src/reader.h (max_left_semantic_context): New variable declaration.
664 * src/scan-gram.l (max_left_semantic_context): Define.
665 (handle_action_dollar): Update max_left_semantic_context.
666 * data/glr.c (YYMAXLEFT): New definition.
667 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
668 (yyresolveAction): Ditto.
669
670 Fixes to problems with location handling in GLR parsers reported by
671 Frank Heckenbach (2003/06/05).
672
673 * data/glr.c (YYLTYPE): Make trivial if locations not used.
674 (YYRHSLOC): Add parentheses, and define only if locations used.
675 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
676 locations not used.
677 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
678 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
679
680 * tests/cxx-type.at: Exercise location information; update tests
681 to differentiate output with and without locations.
682 Remove forward declarations of yylex and yyerror---caused errors
683 because default YYLTYPE not yet defined.
684 Change semantic actions to compute strings, rather than printing
685 them directly (to test proper passing of semantics values). Change
686 output to prefix notation and update test data and expected results.
687 (yylex): Track locations.
688 (stmtMerge): Return value rather than printing, and include arguments
689 in value.
690
691 2003-06-03 Paul Eggert <eggert@twinsun.com>
692
693 Avoid warnings generated by GCC 2.95.4 when Bison is
694 configured with --enable-gcc-warnings.
695 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
696 yy::]b4_parser_class_name[::translate_,
697 yy::Stack::operator[] (unsigned),
698 yy::Stack::operator[] (unsigned) const,
699 yy::Slice::operator[] (unsigned),
700 yy::Slice::operator[] (unsigned) const):
701 Rename local vars to avoid warnings.
702 * tests/glr-regression.at (Improper handling of embedded actions
703 and $-N in GLR parsers): Remove unused local variable from yylex.
704 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
705 (void) as arg when not pure, since we now assume C89 when building
706 Bison. Pacify GCC by using parameter.
707
708 2003-06-02 Paul Eggert <eggert@twinsun.com>
709
710 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
711 yy::Location::lines, yy::Location::columns): Rename arguments
712 to avoid shadowing; this removes a warning generated by GCC 3.3.
713
714 2003-06-01 Paul Eggert <eggert@twinsun.com>
715
716 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
717 to g++, as GCC 3.3 complains if you do it.
718 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
719 everything that WARNING_CFLAGS has, except omit warnings
720 not suitable for C++.
721 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
722 * tests/atlocal.in (CXXFLAGS): New var.
723 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
724
725 Fix a GLR parser bug I reported in February; see
726 <http://mail.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
727 The problem was that GLR parsers did not conform to the C standard,
728 because actions like { $1 = $2 + $3; } expanded to expressions
729 that invoked YYFILL in separate subexpressions, and YYFILL assigned
730 to a local variable. The C standard says that expressions
731 like (var = f ()) + (var = f ()) have undefined behavior.
732 Another problem was that GCC sometimes issues warnings that
733 yyfill and its parameters are unused.
734
735 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
736 as possibly unused.
737 (yyfill): New function.
738 (YYFILL): Use it.
739 (yyuserAction): Change type of yynormal to bool, so that it matches
740 the new yyfill signature. Mark it as possibly unused.
741
742
743 Follow up on a bug I reported in February, where a Bison-generated
744 parser can loop. Provide a test case and a fix for yacc.c. I
745 don't have a fix for lalr1.cc or for glr.c, unfortunately.
746 The original bug report is in:
747 <http://mail.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
748
749 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
750 macro's size was becoming unwieldy.
751 (yyerrlab): Do not discard an empty lookahead symbol, as this
752 might destroy garbage.
753 (yyerrorlab): New label, with the old contents of YYERROR,
754 plus the following change: pop the stack of rhs corresponding
755 to the production that invoked YYERROR. That is how Yacc
756 behaves, and POSIX requires this behavior.
757 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
758 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
759 Define 'alarm' to do nothing if unistd.h is not available.
760 Add a new rule "exp: '-' error;" to test the above change to
761 data/yacc.c. Use 'alarm' to abort any test taking longer than
762 10 seconds, as it's probably looping.
763 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
764 Also, the new yacc.c generates two fewer diagnostics for an
765 existing test.
766
767 2003-05-24 Paul Eggert <eggert@twinsun.com>
768
769 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
770 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
771 This fixes a problem reported by John Bowman when the Compaq/HP
772 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
773 -ansi -Wall -gall).
774 * data/yacc.c (union yyalloc): Likewise.
775 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
776
777 Switch from 'int' to 'bool' where that makes sense.
778
779 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
780 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
781 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
782 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
783 Return or accept bool, not int. All callers changed.
784 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
785 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
786 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
787 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
788 bitset_or_and_cmp_): Likewise.
789 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
790 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
791 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
792 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
793 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
794 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
795 bitset_stats_or_and_cmp): Likewise.
796 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
797 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
798 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
799 ebitset_xor_cmp): Likewise.
800 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
801 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
802 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
803 lbitset_xor_cmp): Likewise.
804 * lib/bbitset.h: Include <stdbool.h>.
805 (struct bitset_vtable): The following members now return bool, not
806 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
807 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
808 or_and_cmp).
809 * src/conflicts.c (count_rr_conflicts): Likewise.
810 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
811 All uses changed.
812 * lib/ebitset.c (ebitset_obstack_init): Likewise.
813 * lib/lbitset.c (lbitset_obstack_init): Likewise.
814 * src/getargs.c (debug_flag, defines_flag, locations_flag,
815 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
816 graph_flag): Likewise.
817 * src/getargs.h (debug_flag, defines_flag, locations_flag,
818 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
819 graph_flag): Likewise.
820 * src/output.c (error_verbose): Likewise.
821 * src/output.h (error_verbose): Likewise.
822 * src/reader.c (start_flag, typed): Likewise.
823 * src/reader.h (typed): Likewise.
824 * src/getargs.c (LOCATIONS_OPTION): New constant.
825 (long_options, getargs): Use it.
826 * src/lalr.c (build_relations): Use bool, not int.
827 * src/nullable.c (nullable_compute): Likewise.
828 * src/print.c (print_reductions): Likewise.
829 * src/tables.c (action_row, pack_vector): Likewise.
830 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
831 * src/output.c (prepare): Use it.
832 * src/output.c (token_definitions_output,
833 symbol_destructors_output, symbol_destructors_output): Use string,
834 not boolean integer, to keep track of whether to output separator.
835 * src/print_graph.c (print_core): Likewise.
836 * src/state.c (state_rule_lookaheads_print): Likewise.
837
838 * config/install-sh: Sync from automake 1.7.5.
839
840 2003-05-14 Paul Eggert <eggert@twinsun.com>
841
842 * src/parse-gram.y (rules_or_grammar_declaration): Require a
843 semicolon after a grammar declaration, in the interest of possible
844 future changes to the Bison input language.
845 Do not allow a stray semicolon at the start of the grammar.
846 (rhses.1): Allow one or more semicolons after any rule, including
847 just before "|" as required by POSIX.
848 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
849 grammar.
850
851 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
852
853 %parse-param support for lalr1.cc.
854
855 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
856 b4_cc_constructor_calls, b4_cc_constructor_call,
857 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
858 definitions.
859 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
860 parse-param arguments.
861 (yy::b4_parser_class_name): Declare instance variables to
862 hold parse-param arguments.
863 * tests/calc.at: s/value/semantic_value/ because value clashes
864 with a member of yy::b4_parser_class_name. Adjust C++ code
865 to handle %parse-param. Enable %parse-param test in C++.
866
867 2003-05-12 Paul Eggert <eggert@twinsun.com>
868
869 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
870 English a bit. Fix fclose typo. Change "const char" to "char
871 const", and use ANSI C rather than K&R for "main". Suggest
872 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
873 and suggest yy_switch_to_buffer.
874
875 2003-05-05 Paul Eggert <eggert@twinsun.com>
876
877 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
878 C89. This avoids a diagnostic on compilers that define __STDC__
879 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
880 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
881
882 2003-05-03 Paul Eggert <eggert@twinsun.com>
883
884 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
885 Do not overrun array bounds.
886 This should fix a bug reported today by Olatunji Oluwabukunmi in
887 <http://mail.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
888
889 2003-04-29 Akim Demaille <akim@epita.fr>
890
891 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
892 * src/getargs.c, src/getargs.h: here, as bool, not int.
893 (nondeterministic_parser): New.
894 * src/parse-gram.y, src/scan-gram.l: Support
895 %nondeterministic-parser.
896 * src/output.c (prepare): Use nondeterministic_parser instead
897 of glr_parser where appropriate.
898 * src/tables.c (conflict_row, action_row, save_row)
899 (token_actions, token_actions, pack_vector): Ditto.
900
901 2003-04-29 Akim Demaille <akim@epita.fr>
902
903 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
904
905 2003-04-29 Akim Demaille <akim@epita.fr>
906
907 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
908 with %pure-parser and %locations to exercise the patch from Yakov
909 Markovitch below.
910
911 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
912
913 * data/yacc.c: (b4_lex_param): Corrected for the case where
914 %lex-param is provided and %pure-parser isn't.
915
916 2003-04-27 Paul Eggert <eggert@twinsun.com>
917
918 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
919 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
920 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
921 if it is not defined.
922 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
923
924 2003-04-26 Paul Eggert <eggert@twinsun.com>
925
926 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
927 Declare to be of type suitable for the ninf value itself, not of
928 type suitable for the corresponding table, since the latter might
929 be unsigned but the ninf value might be negative. This fixes a
930 bug reported by Alexandre Duret-Lutz in
931 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
932
933 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
934 invokes it. We shouldn't invoke it twice because it will attempt
935 to put error.o in the archive twice. This fixes a glitch reported
936 by Martin Mokrejs in
937 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
938
939 2003-04-21 Paul Eggert <eggert@twinsun.com>
940
941 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
942 to gnulib.
943
944 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
945
946 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
947 Fix obvious typo that results in uncompilable GLR parsers
948 when both %pure-parser and %locations are used. (trivial change)
949
950 2003-04-17 Paul Eggert <eggert@twinsun.com>
951
952 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
953 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
954 Do not insert the expected token via unput, as this runs afoul
955 of a POSIX-compatibility bug in flex 2.5.31.
956 All uses changed to BEGIN the parent state,
957 since we no longer insert the expected token via unput.
958 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
959 that is no longer emitted after the above change.
960
961 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
962 the first one. This change is from Paul Hilfinger, and it fixes
963 regression reported by Werner Lemberg in
964 <http://mail.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
965
966 (resolve_sr_conflict): Don't invoke state_errs_set
967 unless one or more tokens have been explicitly made errors.
968 Otherwise, the above change causes Bison to abort.
969
970 * tests/existing.at (GNU pic Grammar): New test case, taken from
971 Lemberg's email.
972
973 2003-03-31 Akim Demaille <akim@epita.fr>
974
975 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
976
977 2003-03-31 Akim Demaille <akim@epita.fr>
978
979 * src/output.c (prepare_symbols): Avoid trailing spaces in the
980 output.
981
982 2003-03-31 Akim Demaille <akim@epita.fr>
983
984 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
985 From Paul Hilfinger.
986
987 2003-03-29 Akim Demaille <akim@epita.fr>
988
989 * m4/error.m4: Do not put under dynamic conditions some code which
990 expansion is under static control.
991
992 2003-03-29 Akim Demaille <akim@epita.fr>
993
994 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
995
996 2003-03-29 Akim Demaille <akim@epita.fr>
997
998 * doc/bison.texinfo (Strings are Destroyed): New.
999
1000 2003-03-13 Paul Eggert <eggert@twinsun.com>
1001
1002 * .cvsignore: Add configure.lineno.
1003 * src/.cvsignore: Add yacc.
1004 * tests/.cvsignore: Add testsuite.log.
1005 * doc/fdl.texi: Sync with latest FSF version.
1006
1007 2003-03-12 Paul Eggert <eggert@twinsun.com>
1008
1009 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
1010 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
1011 cursor, instead of leaving it undefined. This fixes a bug
1012 reported by Tim Van Holder in
1013 <http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
1014 * tests/input.at (Torturing the Scanner): Test the scanner on
1015 an empty input file, which was Tim Van Holder's test case.
1016
1017 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
1018 <sys/resource.h> can be included, include sys/time.h and
1019 sys/times.h first, if available. This works around the SunOS
1020 4.1.4 porting bug reported by Bruce Becker in
1021 <http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
1022
1023 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
1024 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
1025 AC_HEADER_SYS_WAIT.
1026
1027 Merge changes from gnulib. This was prompted because the CVS
1028 snapshot didn't build on Solaris 7 due to strnlen problems.
1029
1030 These changes need to be merged back into gnulib:
1031 * lib/hash.c: Include <stdbool.h> unconditionally.
1032 * m4/onceonly.m4 (m4_quote): New macro.
1033 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
1034 Quote AC_FOREACH variable-expansions properly.
1035 The 2003-01-03 obstack.h change also needs merging.
1036 {end of changes requiring merging}
1037
1038 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
1039 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
1040 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
1041 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
1042 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
1043 New files, imported from gnulib.
1044 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
1045 above.
1046
1047 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
1048 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
1049 gnulib sources.
1050
1051 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
1052 Add.
1053 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
1054 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
1055 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
1056 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
1057 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
1058 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
1059 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
1060 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
1061 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
1062 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
1063 (jm_PREREQ_ARGMATCH): Remove.
1064 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
1065 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
1066
1067 * src/system.h: Include <stdbool.h> unconditionally.
1068
1069 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
1070 assuming at least C89 in the bitset code for some time now.
1071
1072 2003-03-03 Akim Demaille <akim@epita.fr>
1073
1074 * ro.po: New.
1075
1076 2003-03-02 Akim Demaille <akim@epita.fr>
1077
1078 * doc/bison.texinfo (Table of Symbols): Reactivate the
1079 documentation for %lex-param, and %parse-param.
1080
1081 2003-03-02 Akim Demaille <akim@epita.fr>
1082
1083 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
1084 generate verbose error messages.
1085 Use the number of tokens as an upper bound in yytname, as it
1086 cannot be a non terminal.
1087
1088 2003-03-02 Akim Demaille <akim@epita.fr>
1089
1090 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
1091 message.
1092
1093 2003-03-02 Akim Demaille <akim@epita.fr>
1094
1095 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
1096 Use them to exercise yycheck overrun.
1097 Based on Andrew Suffield's grammar.
1098
1099 2003-03-02 Akim Demaille <akim@epita.fr>
1100
1101 Create tests/local.at for Bison generic testing macros.
1102
1103 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
1104 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
1105 This new file.
1106 * tests/calc.at (AT_CHECK_CALC): Adjust.
1107 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
1108 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
1109 * tests/local.at: here.
1110 (AT_COMPILE_CXX): Tags the tests using it as c++.
1111 Ignore the test if CXX is not functional.
1112
1113 2003-03-01 Paul Eggert <eggert@twinsun.com>
1114
1115 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
1116 not loc->end, since loc->end might contain garbage and this leads
1117 to undefined behavior on some platforms.
1118 (id_loc, token_start): Use (IF_LINTed) initial values that do not
1119 depend on *loc, so that the reader doesn't give the the false
1120 impression that *loc is initialized.
1121 (<INITIAL>"%%"): Do not bother setting code_start, since its value
1122 does not survive the return.
1123
1124 2003-03-01 Akim Demaille <akim@epita.fr>
1125
1126 * src/scan-gram.l (code_start): Always initialize it when entering
1127 into yylex, as SC_EPILOGUE is activated *before* the corresponding
1128 yylex invocation. An alternative would be making it static, but
1129 then it starts with the second %%'s beginning, instead of its end.
1130
1131 2003-02-28 Paul Eggert <eggert@twinsun.com>
1132
1133 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
1134 around a UnixWare 7.1.1 porting bug reported by John Hughes in
1135 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
1136
1137 2003-02-26 Paul Eggert <eggert@twinsun.com>
1138
1139 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
1140 Remove Sequent/Pyramid discussion (nobody uses them any more).
1141 Merge VMS and MS-DOS discussion; these ports may well be dead
1142 but let's keep mentioning them for now. Put <> around email
1143 addresses. Add copyright notice.
1144
1145 2003-02-24 Paul Eggert <eggert@twinsun.com>
1146
1147 * data/glr.c (yy_reduce_print): yylineno -> yylno,
1148 to avoid collision with flex use of yylineno.
1149 Problem reported by Bruce Lilly in
1150 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
1151 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
1152 * data/yacc.c (yy_reduce_print): Likewise.
1153
1154 * config/depcomp: Sync with Automake 1.7.3.
1155
1156 2003-02-21 Akim Demaille <akim@epita.fr>
1157
1158 * data/lalr1.cc: Use temporary variables instead of casts to
1159 change integer types.
1160 Suggested by Paul Eggert.
1161
1162 2003-02-21 Akim Demaille <akim@epita.fr>
1163
1164 * doc/bison.texinfo: Use "location" consistently to refer to @n,
1165 to avoid confusions with lalr1.cc's notion of Position.
1166 Suggested by Paul Eggert.
1167
1168 2003-02-20 Akim Demaille <akim@epita.fr>
1169
1170 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
1171 before initial_columns.
1172 (location.hh): Use consistent variable names when defining the
1173 operator<<.
1174 Use "last" so that we subtract from Positions, not from unsigned.
1175
1176 2003-02-20 Akim Demaille <akim@epita.fr>
1177
1178 * data/lalr1.cc (position.hh): New subfile, including the extended
1179 and Doxygen'ed documentation of class Position.
1180 (location.hh): Use it.
1181 Document a` la Doxygen.
1182 With the help of Benoit Perrot.
1183
1184 2003-02-20 Akim Demaille <akim@epita.fr>
1185
1186 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
1187 AT_YACC_IF.
1188 Redefine AT_YYERROR_SEES_LOC_IF using it.
1189 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
1190 not defined.
1191 Don't use the location in yy::Parser::error_ and
1192 yy::Parser::print_ when not %locations.
1193 Activate more lalr1.cc tests.
1194
1195 2003-02-19 Akim Demaille <akim@epita.fr>
1196
1197 * data/lalr1.cc: When displaying a line number, be sure to make it
1198 an int.
1199
1200 2003-02-19 Akim Demaille <akim@epita.fr>
1201
1202 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
1203 Remove, useless.
1204 (YYABORT, YYACCEPT, YYERROR): New.
1205 * tests/calc.at: Renable the lalr1.cc test.
1206
1207 2003-02-19 Akim Demaille <akim@epita.fr>
1208
1209 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
1210 error recovery, mixing with/without pops and discarding of the
1211 lookahead.
1212 Exercise YYERROR.
1213 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
1214
1215 2003-02-17 Paul Eggert <eggert@twinsun.com>
1216
1217 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
1218 * tests/testsuite.at (AT_COMPILE): Use them.
1219 This fixes the testsuite problem reported by Robert Lentz in
1220 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
1221
1222 2003-02-12 Paul Eggert <eggert@twinsun.com>
1223
1224 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
1225 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
1226 <http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
1227 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
1228 Check for malloc failure, for consistency with yacc.c.
1229 (yytname_size): Remove, for consistency with yacc.c.
1230
1231 The bug still remains in data/lalr1.cc, as I didn't have time
1232 to fix it there.
1233
1234 2003-02-06 Akim Demaille <akim@epita.fr>
1235
1236 * configure.ac (GXX): Rename as...
1237 (CXX): this, to keep the original Autoconf semantics.
1238 Require 2.57.
1239 * data/lalr1.cc: Fix b4_copyright invocations.
1240 If YYDEBUG is not defined, don't depend upon name_ being defined.
1241 (location.hh): Include string and iostream.
1242 (Position::filename): New member.
1243 (Position::Position ()): New.
1244 (operator<< (Position)): New.
1245 (operator- (Position, int)): New.
1246 (Location::first, Location::last): Rename as...
1247 (Location::begin, Location::end): these, to mock the conventional
1248 iterator names.
1249 (operator<< (Location)): New.
1250 * tests/atlocal.in (CXX): New.
1251 * tests/testsuite.at (AT_COMPILE_CXX): New.
1252 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
1253 locations in a more synthetic way.
1254 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
1255 lalr1.cc is used.
1256 Adjust the C locations to match those from Emacs: first column is
1257 column 0.
1258 Change all the expected results.
1259 Conform to the GCS: simplify the locations when applicable.
1260 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
1261 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
1262 these CPP macros with the m4 macros new defined by...
1263 (AT_CHECK_PUSHDEFS): this, i.e.:
1264 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
1265 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
1266 New macros.
1267 (AT_CHECK_POPDEFS): Undefine them.
1268 (AT_CHECK_CALC_LALR1_CC): New.
1269 Use it for the first lalr1.cc test.
1270
1271 2003-02-04 Akim Demaille <akim@epita.fr>
1272
1273 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
1274 Location as is defined.
1275
1276 2003-02-04 Akim Demaille <akim@epita.fr>
1277
1278 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
1279 name_ being defined.
1280
1281 2003-02-03 Paul Eggert <eggert@twinsun.com>
1282
1283 * src/gram.h (start_symbol): Remove unused decl.
1284
1285 Use more-consistent naming conventions for local vars.
1286
1287 * src/derives.c (derives_compute): Change type of local var from
1288 int to rule_number.
1289 * src/gram.c (grammar_rules_partial_print): Likewise.
1290 * src/print.c (print_core): Likewise.
1291 * src/reduce.c (reduce_grammar_tables): Likewise.
1292
1293 * src/gram.c (grammar_dump): Change name of item_number *
1294 local var from r to rp.
1295 * src/nullable.c (nullable_compute): Likewise.
1296
1297 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
1298
1299 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
1300 for symbol or symbol_number var.
1301 * src/reader.c (grammar_start_symbol_set): Likewise.
1302 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
1303 Likewise.
1304 * src/state.c (transitions_to): Likewise.
1305 * src/state.h: Likewise.
1306 * src/tables.c (symbol_number_to_vector_number): Likewise.
1307
1308 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
1309 char * var.
1310
1311 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
1312 var.
1313
1314 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
1315 var.
1316
1317 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
1318 Use str, not s, for char * var. Use ch, not c, for character var.
1319 Use size for size var.
1320
1321 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
1322 char * var.
1323 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
1324 uniqstr var.
1325 * src/uniqstr.h: Likewise.
1326
1327 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
1328 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
1329 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
1330 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
1331 param to have same name as that of enum, so that we don't use
1332 "s" to stand for a non-state.
1333
1334 2003-02-02 Akim Demaille <akim@epita.fr>
1335
1336 * src/scan-skel.l: Scan more than one inert character per yylex
1337 invocation.
1338
1339 2003-02-01 Paul Eggert <eggert@twinsun.com>
1340
1341 Version 1.875a.
1342
1343 * po/LINGUAS: Add ms.
1344
1345 2003-01-30 Akim Demaille <akim@epita.fr>
1346
1347 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
1348
1349 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1350
1351 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
1352 of $1.
1353
1354 Changes in response to error report by S. Eken: GLR mode does not
1355 handle negative $ indices or $ indices in embedded rules correctly.
1356 See <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
1357
1358 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
1359 (b4_rhs_location): Ditto.
1360 (yyfill): New function to copy from stack tree into array
1361 incrementally.
1362 (yyuserAction): Modify to allow incremental move of semantic values
1363 to rhs array when in GLR mode.
1364 Define YYFILL to use in user-defined actions to fill semantic array
1365 as needed.
1366 Remove dummy use of yystack, as there is now a guaranteed use.
1367 (yydoAction): Modify to allow incremental move of semantic values
1368 to rhs array when in GLR mode.
1369 (yyresolveAction): Ditto.
1370 (yyglrShiftDefer): Update comment.
1371 (yyresolveStates): Use X == NULL for pointers, not !X.
1372 (yyglrReduce): Ditto.
1373 (yydoAction): Ditto
1374
1375 * tests/glr-regr1.at: Rename to ...
1376 * tests/glr-regression.at: Add new regression test for the problems
1377 described above (adapted from S. Eken).
1378 Update copyright notice.
1379 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
1380 * tests/Makefile.am: Ditto.
1381
1382 2003-01-28 Paul Eggert <eggert@twinsun.com>
1383
1384 * data/lalr1.cc: Do not use @output_header_name@ unless
1385 b4_defines_flag is set. This fixes two bugs reported by
1386 Tim Van Holder in
1387 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
1388 and <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
1389
1390 2003-01-21 Paul Eggert <eggert@twinsun.com>
1391
1392 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
1393 we don't need to worry about yyerrlab1 being reported as an
1394 "unused label" by non-GCC C compilers. The downside is that if
1395 locations are used then a couple of statements are duplicated each
1396 time YYERROR is invoked, but the upside is that the warnings
1397 should vanish.
1398 (yyerrlab1): Move code to YERROR.
1399 (yyerrlab2): Remove. Change uses back to yyerrlab1.
1400 This reverts some of the 2002-12-27 change.
1401
1402 2003-01-17 Paul Eggert <eggert@twinsun.com>
1403
1404 * src/output.c (symbol_printers_output): Fix typo that led
1405 to core dump. Problem reported by Antonio Rus in
1406 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
1407
1408 2003-01-13 Akim Demaille <akim@epita.fr>,
1409 Quoc Peyrot <chojin@lrde.epita.fr>,
1410 Robert Anisko <anisko_r@lrde.epita.fr>
1411
1412 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
1413 when the stacks contain one element, as the loop would otherwise
1414 free the last state, and then use the top state (the one we just
1415 popped). This means that the initial elements will not be freed
1416 explicitly, as is the case in yacc.c; it is not a problem, as
1417 these elements have fake values.
1418
1419 2003-01-11 Paul Eggert <eggert@twinsun.com>
1420
1421 * NEWS: %expect-violations are now just warnings, reverting
1422 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
1423 bootstrapping problem reported by Matthias Klose; see
1424 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
1425 * src/conflicts.c (conflicts_print): Likewise.
1426 * tests/conflicts.at (%expect not enough, %expect too much,
1427 %expect with reduce conflicts): Likewise.
1428 * doc/bison.texinfo (Expect Decl): Document this. Also mention
1429 that the warning is enabled if the number of conflicts changes
1430 (not necessarily increases).
1431
1432 * src/getargs.c (version): Update copyright year.
1433
1434 2003-01-09 Akim Demaille <akim@epita.fr>
1435
1436 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
1437
1438 2003-01-08 Paul Eggert <eggert@twinsun.com>
1439
1440 * Makefile.maint (WGETFLAGS):
1441 New macro, containing "-C off" to disable proxy caches.
1442 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
1443 (rel-check): Use $(WGET) instead of wget.
1444
1445 2003-01-06 Paul Eggert <eggert@twinsun.com>
1446
1447 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
1448 the GLR paper of Scott, Johnstone and Hussain.
1449
1450 2003-01-04 Paul Eggert <eggert@twinsun.com>
1451
1452 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
1453 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
1454 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
1455 (EXTRA_LIBRARIES): New var, for liby.a.
1456 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
1457 (EXTRA_SCRIPTS): New var, for yacc.
1458
1459 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
1460 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
1461 Problem reported by Nelson H. F. Beebe.
1462
1463 2003-01-03 Paul Eggert <eggert@twinsun.com>
1464
1465 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
1466 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
1467 when compiling Bison 1.875's `bitset bset = obstack_alloc
1468 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
1469
1470 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
1471 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
1472 grow to a huge size with typical invocation.
1473
1474 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
1475 Use the pattern recommended by Autoconf 2.57, except also protect
1476 against double-definition.
1477 * src/system.h: Likewise.
1478 Portability issues reported by Nelson H. F. Beebe.
1479
1480 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
1481 All uses changed. Provide a definition in both C and C++.
1482 (yytrue, yyfalse): Define even if defined (__cplusplus).
1483
1484 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
1485 Reported by Nelson H. F. Beebe.
1486
1487 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
1488
1489 2003-01-02 Paul Eggert <eggert@twinsun.com>
1490
1491 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
1492 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
1493 Bug reported by Nelson H. F. Beebe.
1494
1495 2003-01-01 Paul Eggert <eggert@twinsun.com>
1496
1497 * Version 1.875.
1498
1499 2002-12-30 Paul Eggert <eggert@twinsun.com>
1500
1501 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
1502 Moved here from...
1503 (<INITIAL>","): Here. This causes stray "," to be treated
1504 more uniformly.
1505
1506 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
1507 last brace in braced code when not in Yacc mode, for compatibility
1508 with Bison 1.35. This resurrects the 2001-12-15 patch to
1509 src/reader.c.
1510
1511 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
1512 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
1513
1514 2002-12-28 Paul Eggert <eggert@twinsun.com>
1515
1516 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
1517 that of SYM's type. This fixes Debian bug 168069, reported by
1518 Thomas Olsson.
1519
1520 2002-12-28 Paul Eggert <eggert@twinsun.com>
1521
1522 Version 1.75f.
1523
1524 Switch back to the Yacc style of conflict reports, undoing some
1525 of the 2002-07-30 change.
1526 * doc/bison.texinfo (Understanding): Use Yacc style for
1527 conflict reports. Also, use new way of locating rules.
1528 * src/conflicts.c (conflict_report):
1529 Renamed from conflict_report_yacc, removing the old
1530 'conflict_report'. Translate the entire conflict report at once,
1531 so that we don't assume that "," has the same interpretation in
1532 all languages.
1533 (conflicts_output): Use Yacc-style conflict report for each state,
1534 instead of our more-complicated style.
1535 (conflicts_print): Use Yacc-style conflict report, except print
1536 the input file name when not emulating Yacc.
1537 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
1538 Conflicted Reduction, %expect not enough, %expect too much,
1539 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
1540 * tests/existing.at (GNU Cim Grammar): Likewise.
1541 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
1542
1543 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
1544 fatal): Don't invoke fflush; it's not needed and it might even be
1545 harmful for stdout, as stdout might not be open.
1546 * src/reduce.c (reduce_print): Likewise.
1547
1548 2002-12-27 Paul Eggert <eggert@twinsun.com>
1549
1550 Fix a bug where error locations were not being recorded correctly.
1551 This problem was originally reported by Paul Hilfinger in
1552 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
1553
1554 * data/yacc.c (yyparse): New local var yylerrsp, to record the
1555 top of the location stack's error locations.
1556 (yyerrlab): Set it. When discarding a token, push its location
1557 onto yylerrsp so that we don't lose track of the error's end.
1558 (yyerrlab1): Now is only the target of YYERROR, so that we can
1559 properly record the location of the action that failed. For GCC
1560 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
1561 GCC warning about yyerrlab1 being unused if YYERROR is unused.
1562 (yyerrlab2): New label, which yyerrlab now falls through to.
1563 Compute the error's location by applying YYLLOC_DEFAULT to
1564 the locations of all the symbols that went into the error.
1565 * doc/bison.texinfo (Location Default Action): Mention that
1566 YYLLOC_DEFAULT is also invoked for syntax errors.
1567 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
1568 Error locations include the locations of all the tokens that were
1569 discarded, not just the last token.
1570
1571 2002-12-26 Paul Eggert <eggert@twinsun.com>
1572
1573 * src/files.c: Include quote.h.
1574 (compute_output_file_names): Warn if we detect conflicting
1575 outputs to the same file. This should catch the misunderstanding
1576 exemplified by Debian Bug 165349, reported by Bruce Stephens..
1577
1578 * src/conflicts.c (conflicts_print): If the user specifies
1579 "%expect N", report an error if there are any reduce/reduce
1580 conflicts. This is what the manual says should happen.
1581 This fixes Debian bug 130890, reported by Anthony DeRobertis.
1582 * tests/conflicts.at (%expect with reduce conflicts): New test.
1583
1584 Don't use m4_include on relative file names, as it doesn't work as
1585 desired if there happens to be a file with that name under ".".
1586
1587 * m4sugar/version.m4: Remove; it was included but it wasn't used.
1588 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
1589 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
1590 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
1591 * src/output.c (output_skeleton): Use full path names when
1592 specifying a file to include; don't rely on include path, as
1593 it's unreliable when the working file contains a file with
1594 that name.
1595
1596 2002-12-25 Paul Eggert <eggert@twinsun.com>
1597
1598 Remove obsolete references to bison.simple and bison.hairy.
1599 Problem mentioned by Aubin Mahe in
1600 <http://mail.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
1601 * data/glr.c: Comment fix.
1602 * doc/bison.1: Remove references. Also, mention "yacc".
1603
1604 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
1605 with -g option.
1606
1607 * src/parse-gram.y (declaration): Use enum "report_states" rather
1608 than its numeric value 1.
1609
1610 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
1611 opening a new one. This fixes Debian bug 165349, reported by
1612 Bruce Stephens.
1613
1614 2002-12-24 Paul Eggert <eggert@twinsun.com>
1615
1616 Version 1.75e.
1617
1618 * Makefile.maint (cvs-update): Don't assume that the shell
1619 supports $(...), as Solaris sh doesn't.
1620
1621 * src/parse-gram.y (lloc_default): Remove test for empty
1622 nonterminals at the end, since it didn't change the result.
1623
1624 2002-12-24 Paul Eggert <eggert@twinsun.com>
1625
1626 If the user does not define YYSTYPE as a macro, Bison now declares it
1627 using typedef instead of defining it as a macro. POSIX requires this.
1628 For consistency, YYLTYPE is also declared instead of defined.
1629
1630 %union directives can now have a tag before the `{', e.g., the
1631 directive `%union foo {...}' now generates the C code
1632 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
1633 The default union tag is `YYSTYPE', for compatibility with Solaris 9
1634 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
1635 instead of `yyltype'.
1636
1637 `yystype' and `yyltype' are now obsolescent macros instead of being
1638 typedefs or tags; they are no longer documented and will be
1639 withdrawn in a future release.
1640
1641 * data/glr.c (b4_location_type): Remove.
1642 (YYSTYPE): Renamed from yystype.
1643 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
1644 (struct YYLTYPE): Renamed from struct yyltype.
1645 (YYLTYPE): Renamed from yyltype.
1646 (yyltype, yystype): New (and obsolescent) macros,
1647 for backward compatibility.
1648 * data/yacc.c: Likewise.
1649
1650 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
1651 does not specify a union tag. This is for compatibility with
1652 Solaris 9 yacc.
1653
1654 * src/parse-gram.y (add_param): 2nd arg is now char * not char
1655 const *, since it is now modified by stripping surrounding { }.
1656 (current_braced_code): Remove.
1657 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
1658 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
1659 trailing " {...}". Now of type <chars>.
1660 (grammar_declaration): Adjust to bundled tokens.
1661 (code_content): Remove; stripping is now done by add_param.
1662 (print_token_value): Print contents of bundled tokens.
1663 (token_name): New function.
1664
1665 * src/reader.h (braced_code, current_braced_code): Remove.
1666 (token_name): New decl.
1667
1668 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
1669 token_type, not braced_code code_kind. All uses changed.
1670 (SC_PRE_CODE): New state, for scanning after a keyword that
1671 has (or usually has) an immediately-following braced code.
1672 (token_type): New local var, to keep track of which token type
1673 to return when scanning braced code.
1674 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
1675 <INITIAL>"%parse-param", <INITIAL>"%printer",
1676 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
1677 instead of returning a token type immediately.
1678 (<INITIAL>"{"): Set token type.
1679 (<SC_BRACED_CODE>"}"): Use it.
1680 (handle_action_dollar, handle_action_at): Now returns bool
1681 indicating success. Fail if ! current_rule; this prevents a core dump.
1682 (handle_symbol_code_dollar, handle_symbol_code_at):
1683 Remove; merge body into caller.
1684 (handle_dollar, handle_at): Complain in invalid contexts.
1685
1686 * NEWS, doc/bison.texinfo: Document the above.
1687 * NEWS: Fix years and program names in copyright notice.
1688
1689 2002-12-17 Paul Eggert <eggert@twinsun.com>
1690
1691 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
1692 Reporting, Table of Symbols): Omit mentions of %lex-param and
1693 %parse-param from the documentation for now.
1694
1695 2002-12-15 Paul Eggert <eggert@twinsun.com>
1696
1697 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
1698 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
1699 lookahead symbol, and which sets yychar in parser actions) and it
1700 disagreed with the Bison documentation. Bug
1701 reported by Andrew Walrond.
1702
1703 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
1704 as the caller now does that.
1705 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
1706 (YYEMPTY): Parenthesize right hand side, since others use it.
1707 (yyparse): Don't assume that our generated code is the only code
1708 that sets yychar.
1709
1710 2002-12-13 Paul Eggert <eggert@twinsun.com>
1711
1712 Version 1.75d.
1713
1714 POSIX requires a "yacc" command.
1715 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
1716 (MOSTLYCLEANFILES): Add yacc.
1717 (yacc): New rule.
1718 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
1719 as an alias for bison y.
1720
1721 * po/LINGUAS: Add da.
1722
1723 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
1724 problem with latest <getopt.h>.
1725 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
1726
1727 * doc/fdl.texi: Upgrade to 1.2.
1728 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
1729 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
1730 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
1731 gnulib.
1732 * config/install-sh: Sync with autotools.
1733
1734 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
1735 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
1736 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
1737 locations are requested.
1738 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
1739 locations are requested.
1740
1741 2002-12-12 Paul Eggert <eggert@twinsun.com>
1742
1743 Remove unportable casts and storage allocation tricks.
1744 While we're at it, remove almost all casts, since they
1745 usually aren't needed and are a sign of trouble.
1746
1747 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
1748
1749 * src/derives.c (derives_compute): Do not subtract NTOKENS from
1750 the pointer DSET returned by malloc; this isn't portable.
1751 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
1752 Similarly for DERIVES.
1753 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
1754 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
1755 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
1756
1757 * src/derives.c (derives_compute): Do not bother invoking
1758 int_of_rule_number, since rule numbers are integers.
1759
1760 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
1761 rather than XMALLOC (char, N).
1762
1763 * src/files.c (filename_split): Rewrite to avoid cast.
1764
1765 * src/gram.h (symbol_number_as_item_number,
1766 item_number_as_symbol_number, rule_number_as_item_number,
1767 item_number_as_rule_number):
1768 Now inline functions rather than macros, to avoid casts.
1769 * src/state.h (state_number_as_int): Likewise.
1770 * src/tables.c (state_number_to_vector_number,
1771 symbol_number_to_vector_number): Likewise.
1772
1773 * src/gram.h (int_of_rule_number): Remove; no longer used.
1774
1775 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
1776 since the resulting storage is always stored into.
1777
1778 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
1779 where it's needed.
1780
1781 * src/muscle_tab.c (muscle_m4_output):
1782 Now inline. Return bool, not int.
1783 * src/state.c (state_compare): Likewise.
1784 * src/symtab.c (symbol_check_defined,
1785 symbol_check_alias_consistency, symbol_pack, symbol_translation,
1786 hash_compare_symbol, hash_symbol):
1787 Likewise.
1788 * src/uniqstr.c (uniqstr_print): Likewise.
1789 * src/muscle_tab.c (muscle_m4_output_processor):
1790 New function, to avoid casts.
1791 * src/state.c (state_comparator, stage_hasher): Likewise.
1792 * src/symtab.c (symbol_check_defined_processor,
1793 symbol_check_alias_consistency_processor, symbol_pack_processor,
1794 symbol_translation_processor, hash_symbol_comparator,
1795 hash_symbol_hasher): Likewise.
1796 * src/uniqstr.c (uniqstr_print_processor): Likewise.
1797 * src/muscle_tab.c (muscles_m4_output):
1798 Use new functions instead of casting old functions unportably.
1799 * src/state.c (state_hash_new): Likewise.
1800 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
1801 symbols_token_translations_init):
1802 Likewise.
1803 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
1804
1805 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
1806 var instead of casting to long, to avoid casts.
1807 (prepare_states): Use MALLOC rather than alloca, so that we don't
1808 have to worry about alloca.
1809 * src/state.c (state_hash_lookup): Likewise.
1810
1811 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
1812 local var instead of casting to unsigned char, to avoid casts.
1813
1814 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
1815 STATE_ALLOC): Remove.
1816 (transitions_new, errs_new, reductions_new, state_new): Use malloc
1817 rather than calloc, and use offsetof to avoid allocating slightly
1818 too much storage.
1819 (state_new): Initialize all members.
1820
1821 * src/state.c (state_hash): Use unsigned accumulator, not signed.
1822
1823 * src/symtab.c (symbol_free): Remove; unused.
1824 (symbol_get): Remove cast in lhs of assignment.
1825 (symbols_do): Now static. Accept generic arguments, not
1826 hashing-related ones.
1827
1828 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
1829 (symbol_processor): Remove.
1830 (symbols_do): Remove decl; now static.
1831
1832 * src/system.h (alloca): Remove; decl no longer needed.
1833 (<stddef.h>): Include, for offsetof.
1834 (<inttypes.>, <stdint.h>): Include if available.
1835 (uintptr_t): New type, if system lacks it.
1836 (CALLOC, MALLOC, REALLOC): New macros.
1837 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
1838 new macros.
1839
1840 * src/tables.c (table_size): Now int, to pacify GCC.
1841 (table_grow, table_ninf_remap): Use signed table size.
1842 (save_row): Don't bother initializing locals when not needed.
1843 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
1844 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
1845
1846 * src/vcg.h: Correct misspellings.
1847
1848 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
1849
1850
1851 * src/getargs.c (getargs): Don't assume EOF == -1.
1852
1853 2002-12-09 Paul Eggert <eggert@twinsun.com>
1854
1855 Change identifier spellings to avoid collisions with names
1856 that are reserved by POSIX.
1857
1858 Don't use names ending in _t, since POSIX reserves them.
1859 For consistency, remove _e and _s endings -- they're weren't
1860 needed to remove ambiguity. All uses changed.
1861 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
1862 turn was just renamed from struniq_t.
1863 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
1864 which in turn was just renamed from struniq_processor_t.
1865 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
1866 in turn was renamed from hash_compare_struniq_t.
1867 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
1868 (state_list): Renamed from state_list_t.
1869 * src/assoc.h (assoc): Renamed from assoc_t.
1870 * src/conflicts.c (enum conflict_resolution): Renamed from
1871 enum conflict_resolution_e.
1872 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
1873 (rule_list): Renamed from rule_list_t.
1874 * src/getargs.h (enum trace): Renamed from enum trace_e.
1875 (enum report): Renamed from enum report_e.
1876 * src/gram.h (item_number): Renamed from item_number_t.
1877 (rule_number): Renamed from rule_number_t.
1878 (struct rule_s): Remove the "rule_s" part; not used.
1879 (rule): Renamed from rule_t.
1880 (rule_filter): Renamed from rule_filter_t.
1881 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
1882 (goto_list): Renamed from goto_list_t.
1883 * src/lalr.h (goto_number): Renamed from goto_number_t.
1884 * src/location.h (location): Renamed from location_t.
1885 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
1886 and moved here from:
1887 * src/muscle_tab.h (muscle_entry_t): here.
1888 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
1889 (rule_list): Renamed from rule_list_t.
1890 * src/print_graph.c (static_graph): Renamed from graph.
1891 * src/reader.h (braced_code): Renamed from braced_code_t.
1892 Remove brace_code_e tag.
1893 * src/relation.h (relation_node): Renamed from relation_node_t.
1894 (relation_nodes): Renamed from relation_nodes_t.
1895 (relation): Renamed from relation_t.
1896 * src/state.h (state_number): Renamed from state_number_t.
1897 (struct state): Renamed from struct state_s.
1898 (state): Renamed from state_t.
1899 (transitions): Renamed from transitions_t. Unused (and
1900 misspelled) transtion_s tag removed.
1901 (errs): Renamed from errs_t. Unused errs_s tag removed.
1902 (reductions): Renamed from reductions_t. Unused tag
1903 reductions_s removed.
1904 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
1905 (struct symbol_list): Renamed from struct symbol_list_s.
1906 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
1907 (struct symbol): Renamed from struct symbol_s.
1908 (symbol): Renamed from symbol_t.
1909 * src/tables.c (vector_number): Renamed from vector_number_t.
1910 (action_number): Renamed from action_t.
1911 * src/tables.h (base_number): Renamed from base_t.
1912 * src/vcg.h (enum color): Renamed from enum color_e.
1913 (enum textmode): Renamed from enum textmode_e.
1914 (enum shape): Renamed from enum shape_e.
1915 (struct colorentry): Renamed from struct colorentry_s.
1916 (struct classname): Renamed from struct classname_s.
1917 (struct infoname): Renamed from struct infoname_s.
1918 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
1919 (enum decision): Renamed from enum decision_e.
1920 (enum orientation): Renamed from enum orientation_e.
1921 (enum alignment): Renamed from enum alignment_e.
1922 (enum arrow_mode): Renamed from enum arrow_mode_e.
1923 (enum crossing_type): Renamed from enum crossing_type_e.
1924 (enum view): Renamed from enum view_e.
1925 (struct node): Renamed from struct node_s.
1926 (node): Renamed from node_t.
1927 (enum linestyle): Renamed from enum linestyle_e.
1928 (enum arrowstyle): Renamed from enum arrowstyle_e.
1929 (struct edge): Renamed from struct edge.
1930 (edge): Renamed from edge_t.
1931 (struct graph): Renamed from struct graph_s.
1932 (graph): Renamed from graph_t.
1933 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
1934 Rename value_t -> value.
1935 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
1936 value_t_as_yystype -> value_as_yystype.
1937
1938 Don't include <errno.h> in the mainstream code, since it
1939 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
1940 * lib/get-errno.c, lib/get-errno.h: New files.
1941 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
1942 get-errno.c.
1943 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
1944 * src/output.c (output_skeleton): Likewise.
1945 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
1946 instead of errno.
1947 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
1948 Likewise.
1949 (handle_action_dollar, handle_action_at): Likewise.
1950 * src/system.h: Do not include <errno.h>.
1951 (TAB_EXT): Renamed from EXT_TAB.
1952 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
1953
1954 Avoid str[a-z]*, since <string.h> reserves that name space.
1955 Change all instances of "struniq" in names to "uniqstr", and
1956 likewise for "STRUNIQ" and "UNIQSTR".
1957 * src/uniqstr.c: Renamed from src/struniq.c.
1958 * src/uniqstr.h: Renamed from src/struniq.h.
1959 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
1960 * src/files.c (strsuffix): Remove; unused.
1961 (concat2): Renamed from stringappend. Now static.
1962 * src/files.h (strsuffix, stringappend): Remove; unused.
1963 * src/parse-gram.y (<chars>): Renamed from <string>.
1964 (<uniqstr>): Renamed from <struniq>.
1965 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
1966 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
1967 (struct graph_s.expand): Renamed from struct graph_s.stretch.
1968 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
1969 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
1970 (N_EXPAND): Renamed from N_STRETCH.
1971
1972 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
1973 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
1974 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
1975 Remove; unused.
1976 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
1977 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
1978 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
1979 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
1980 (BASE_MAXIMUM): Renamed from BASE_MAX.
1981 (BASE_MINIMUM): Renamed from BASE_MIN.
1982 (ACTION_MAX): Remove; unused.
1983 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
1984 Unnecessary casts removed from above defines.
1985
1986
1987 Fix misspelling in names.
1988 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
1989 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
1990 G_NODE_ALIGNEMENT.
1991
1992
1993 * lib/timevar.c (timevar_report): Renamed from time_report,
1994 for consistency with other names.
1995 * lib/timevar.h (timevar_report): New decl.
1996 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
1997
1998
1999 Sort include-file uses.
2000
2001 Reorder all include files under src to be in the order "system.h".
2002 then the ../lib include files in angle brackets (alphabetized),
2003 then the . include files in double-quotes (alphabetized). Fix
2004 dependency breakages encountered in this process, as follows:
2005 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
2006 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
2007 * src/state.h: Include "symtab.h".
2008
2009 2002-12-08 Paul Eggert <eggert@twinsun.com>
2010
2011 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
2012 since this causes problems when __file__ contains character
2013 sequences like "@" that are treated specially by src/scan-skel.l.
2014 Instead, just use the file's basename. This fixes the bug
2015 reported by Martin Mokrejs in
2016 <http://mail.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
2017
2018 2002-12-06 Paul Eggert <eggert@twinsun.com>
2019
2020 Add support for rules that do not have trailing semicolons, as
2021 POSIX requires. Improve the quality of locations in Bison
2022 diagnostics.
2023
2024 * src/location.c: Include <quotearg.h>.
2025 (empty_location): Now const.
2026 (location_print): New function. Follow the recommendation of the
2027 GNU Coding Standards for locations that span file boundaries.
2028 * src/location.h: Do not include <quotearg.h>; no longer needed.
2029 (boundary): New type.
2030 (location_t): Use it. This allows locations to span file boundaries.
2031 All member uses changed: file -> start.file or end.file (as needed),
2032 first_line -> start.line, first_column -> start.column,
2033 last_line -> end.line, last_column -> end.column.
2034 (equal_boundaries): New function.
2035 (LOCATION_RESET, LOCATION_STEP): Remove.
2036 (LOCATION_PRINT): Remove. All callers changed to use location_print.
2037 (empty_location): Now const.
2038 (location_print): New decl.
2039 * src/parse-gram.y (lloc_default): New function, which handles
2040 empty locations more accurately.
2041 (YYLLOC_DEFAULT): Use it.
2042 (%token COLON): Remove.
2043 (%token ID_COLON): New token.
2044 (rules): Use it.
2045 (declarations, rules): Remove trailing semicolon.
2046 (declaration, rules_or_grammar_declaration):
2047 Allow empty (";") declaration.
2048 (symbol_def): Remove empty actions; no longer needed.
2049 (rules_or_grammar_declaration): Remove trailing semicolon.
2050 (semi_colon.opt): Remove.
2051 * src/reader.h: Include location.h.
2052 (scanner_cursor): New decl.
2053 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
2054 rolling our own.
2055 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
2056 of *loc.
2057 (STEP): Remove. No longer needed, now that adjust_location does
2058 the work. All uses removed.
2059 (scanner_cursor): New var.
2060 (adjust_location): Renamed from extend_location. It now sets
2061 *loc and adjusts the scanner cursor. All uses changed.
2062 Don't bother testing for CR.
2063 (handle_syncline): Remove location arg; now updates scanner cursor.
2064 All callers changed.
2065 (unexpected_end_of_file): Now accepts start boundary of token or
2066 comment, not location. All callers changed. Update scanner cursor,
2067 not the location.
2068 (SC_AFTER_IDENTIFIER): New state.
2069 (context_state): Renamed from c_context. All uses changed.
2070 (id_loc, code_start, token_start): New local vars.
2071 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
2072 processing of Yacc white space and equivalents here.
2073 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
2074 instead of returning ID immediately, since we need to search for
2075 a subsequent colon.
2076 (<INITIAL>"'", "\""): Save token_start.
2077 (<INITIAL>"%{", "{", "%%"): Save code_start.
2078 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
2079 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
2080 BEGIN context_state at end, not INITIAL.
2081 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
2082 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
2083 Return correct token start.
2084 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
2085 the start of a character, string or multiline comment is found.
2086 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
2087 Reduction): Adjust reported locations to match the more-precise
2088 results now expected.
2089 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
2090 * tests/reduce.at (Useless Rules, Reduced Automaton,
2091 Underivable Rules): Likewise.
2092 * tests/regression.at (Invalid inputs): No longer `expecting ";"
2093 or "|"' now that so many other tokens are allowed by the new grammar.
2094
2095 * src/complain.h (current_file): Remove duplicate decl;
2096 current_file is now owned by files.h.
2097 * src/complain.c, src/scan-gram.l: Include files.h.
2098
2099 2002-12-06 Paul Eggert <eggert@twinsun.com>
2100
2101 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
2102 promotes to int; it might be unsigned int.
2103 * data/yacc.c (yy_reduce_print): Likewise.
2104
2105 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
2106 be #defined in the prologue, not in the Bison declarations.
2107 This fixes Debian Bug 102878, reported by Shaul Karl.
2108
2109 2002-12-02 Paul Eggert <eggert@twinsun.com>
2110
2111 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
2112 * lib/strtoul.c: New file, from gnulib.
2113 This fixes a porting bug reported by Peter Klein in
2114 <http://mail.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
2115
2116 2002-11-30 Paul Eggert <eggert@twinsun.com>
2117
2118 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
2119 and put only a forward declaration in the prologue. This is for
2120 consistency with the other scanner helper functions.
2121
2122 Type clashes now generate warnings, not errors, since it
2123 appears that POSIX may allow some grammars with type clashes.
2124 * src/reader.c (grammar_current_rule_check): Warn about
2125 type clashes instead of complaining.
2126 * tests/input.at (Type Clashes): Expect warnings, not complaints.
2127
2128 Add Yacc library, since POSIX requires it.
2129 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
2130 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
2131 * lib/main.c, lib/yyerror.c: New files.
2132
2133 gram_error can be static; it need not be extern.
2134 * src/reader.h (gram_error): Remove decl.
2135 * src/parse-gram.y (gram_error): Now static. Add static decl.
2136 (print_token_value): Omit parameter names from forward decl,
2137 for consistency.
2138
2139 2002-11-29 Paul Eggert <eggert@twinsun.com>
2140
2141 * doc/bison.texinfo: Emphasize that yylex and yyerror must
2142 be declared before being used. E.g., one should typically
2143 declare them in the prologue. Use GNU coding style in examples.
2144 Put "const" consistently after the type it modifies. Mention
2145 that C99 supports "inline". Mention that yyerror traditionally
2146 returns "int".
2147
2148 %parse-param and %lex-param now take just one argument, the
2149 declaration; the argument name is deduced from the declaration.
2150
2151 * doc/bison.texinfo (Parser Function, Pure Calling, Error
2152 Reporting, Table of Symbols): Document this.
2153 * src/parse-gram.y (add_param): New function.
2154 (COMMA): Remove.
2155 (declaration): Implement new rule for %parse-param and %lex-param.
2156 * src/scan-gram.l: "," now elicits a warning, rather than being
2157 a token; this is more compatible with byacc.
2158 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
2159
2160 2002-11-27 Paul Eggert <eggert@twinsun.com>
2161
2162 Rename identifiers to avoid real and potential collisions.
2163
2164 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
2165 to avoid collision with lex macro described by Bruce Lilly in
2166 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
2167 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
2168 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
2169 * src/parse-gram.y (print_token_value): Renamed from yyprint.
2170 All uses changed.
2171 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
2172 The name "yycontrol" violates the name space rules, and this stuff
2173 wasn't being used anyway.
2174 (input): Remove action; this stuff wasn't being used.
2175 (gram_error): Rename local variable yylloc -> loc.
2176 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
2177 (YY_DECL): Don't use "yy" at start of local variables.
2178 All uses changed, e.g., yylloc -> loc.
2179 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
2180 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
2181 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
2182 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
2183
2184 * src/parse-gram.y (gram_error): loc is now const *.
2185 * src/reader.h (gram_error): Likewise.
2186
2187 2002-11-24 Paul Eggert <eggert@twinsun.com>
2188
2189 Version 1.75c.
2190
2191 * tests/actions.at (Actions after errors): Use an output format
2192 more similar to that of the Printers and Destructors test.
2193 Test the position of the ';' token too.
2194 (Printers and Destructors): Likewise.
2195 (Printers and Destructors: %glr-parser): Remove for now, to avoid
2196 unnecessarily alarming people when the test fails.
2197
2198 * data/yacc.c (yyerrlab1): Move this label down, so that the
2199 parser does not discard the lookahead token if the user code
2200 invokes YYERROR. This change is required for POSIX conformance.
2201
2202 * lib/error.c: Sync with gnulib.
2203
2204 2002-11-22 Paul Eggert <eggert@twinsun.com>
2205
2206 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
2207 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
2208 * lib/xmalloc.c: Likewise.
2209
2210 2002-11-20 Paul Eggert <eggert@twinsun.com>
2211
2212 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
2213
2214 2002-11-20 Paul Eggert <eggert@twinsun.com>
2215
2216 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
2217 should use `if (! x) abort ();' rather than `assert (x);', and
2218 anyway it's one less thing to worry about configuring.
2219
2220 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
2221 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
2222 and replace all instances of assert with abort.
2223 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
2224 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
2225
2226 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
2227 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
2228 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
2229 hash_find_entry, hash_rehash, hash_insert): Likewise.
2230 * src/conflicts.c (resolve_sr_conflict): Likewise.
2231 * src/lalr.c (set_goto_map, map_goto): Likewise.
2232 * src/nullable.c (nullable_compute): Likewise.
2233 * src/output.c (prepare_rules, token_definitions_output): Likewise.
2234 * src/reader.c (packgram, reader): Likewise.
2235 * src/state.c (state_new, state_free, state_transitions_set,
2236 state_reduction_find): Likewise.
2237 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
2238 symbol_pack): Likewise.
2239 * src/tables.c (conflict_row, pack_vector): Likewise.
2240 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
2241 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
2242 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
2243 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
2244
2245 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
2246 (ARGMATCH_CONSTRAINT): New macro.
2247 (ARGMATCH_ASSERT): Use it.
2248
2249 * src/system.h (verify): New macro.
2250 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
2251 rather than assert.
2252 * src/tables.c (tables_generate): Likewise.
2253
2254 * src/struniq.c (struniq_assert): Now returns void, and aborts
2255 if the assertion is false.
2256 (struniq_assert_p): Remove.
2257 * src/struniq.h: Likewise.
2258
2259 2002-11-18 Paul Eggert <eggert@twinsun.com>
2260
2261 * data/glr.c (yygetLRActions): Replace `yyindex' with
2262 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
2263 This fixes the regression with Sun ONE Studio 7 cc that I reported in
2264 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
2265
2266 2002-11-18 Akim Demaille <akim@epita.fr>
2267
2268 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
2269 space.
2270 From Tim Van Holder.
2271
2272 2002-11-17 Paul Eggert <eggert@twinsun.com>
2273
2274 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
2275 to "SyntaxError" for consistency with my 2002-11-15 change.
2276
2277 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
2278 not define to {}, since this breaks the common use of `YYDPRINTF
2279 ((...));' if a single statement is desired (e.g. before `else').
2280 Work around GCC warnings by surrounding corresponding calls with
2281 {} if needed.
2282 (yyhasResolvedValue): Remove unused function.
2283 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
2284 loop body.
2285 (yyreportSyntaxError): Renamed from yyreportParseError.
2286 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
2287 All uses changed.
2288 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
2289 extern when possible. Remove unused initializations.
2290
2291 2002-11-16 Akim Demaille <akim@epita.fr>
2292
2293 Augment the similarity between GLR and LALR traces.
2294
2295 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
2296 (YY_REDUCE_PRINT): New.
2297 (yyparse): Use them.
2298 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
2299 YYDPRINT here.
2300 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
2301 state reached after the reduction/recovery, since...
2302 (yyparse, yyprocessOneStack): Report the state we are entering in.
2303
2304 2002-11-16 Akim Demaille <akim@epita.fr>
2305
2306 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
2307 Add support for --trace=skeleton.
2308 * src/scan-skel.l: %option debug.
2309 Scan strings of non-@ or \n instead of character by character.
2310 (scan_skel): Handle trace_skeleton.
2311 (QPUTS): New.
2312 (@output_parser_name@, @output_header_name@): ``Restore'' their
2313 support (used to be M4 macros).
2314 * data/yacc.c: Quote larger chunks, a la glr.c.
2315 * data/lalr1.cc: Likewise.
2316 The header guards are no longer available, so use some other
2317 string than `YYLSP_NEEDED'.
2318
2319 2002-11-16 Akim Demaille <akim@epita.fr>
2320
2321 Make the ``Printers and Destructors'' test more verbose, taking
2322 `yacc.c''s behavior as (possibly wrong) reference.
2323
2324 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
2325 instead of fprint on stdout.
2326 Set and report the last_line of the symbols.
2327 Consistently display values and locations.
2328
2329 2002-11-16 Paul Eggert <eggert@twinsun.com>
2330
2331 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
2332
2333 2002-11-15 Paul Eggert <eggert@twinsun.com>
2334
2335 * tests/actions.at (Actions after errors): New test case.
2336
2337 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
2338 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
2339 tests/action.at, tests/calc.at, tests/conflicts.at,
2340 tests/cxx-type.at, tests/regression.at:
2341 "parse error" -> "syntax error" for POSIX compatibility.
2342 "parsing stack overflow..." -> "parser stack overflow" so
2343 that code matches Bison documentation.
2344
2345 2002-11-15 Akim Demaille <akim@epita.fr>
2346
2347 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
2348 take two BRACED_CODE, not two string_content.
2349 Free the scanner's obstack when we are done.
2350 (code_content): New.
2351 * tests/calc.at: Adjust.
2352 * doc/bison.texinfo: Adjust.
2353 Also, make sure to include the `,' for these declarations.
2354
2355 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
2356
2357 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
2358 definition; avoids potential autoreconf problems.
2359
2360 2002-11-15 Akim Demaille <akim@epita.fr>
2361
2362 Always check the value returned by yyparse.
2363
2364 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
2365 returned by yyparse.
2366 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
2367 Adjust calls.
2368 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
2369 returned by yyparse.
2370
2371 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2372
2373 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
2374 on input.at test.
2375
2376 2002-11-14 Paul Eggert <eggert@twinsun.com>
2377
2378 * src/output.c (output_skeleton): Call xfopen instead of
2379 duplicating xfopen's body.
2380
2381 Fix bugs reported by Nelson H. F. Beebe in
2382 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
2383
2384 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
2385 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
2386 Group compiler. Instead, use "$CC -E bar.c". Include the .h
2387 file twice in the grammar, as an extra check.
2388
2389 * tests/input.at (Torturing the Scanner): Surround the
2390 backslash-newline tests with "#if 0", to make it less likely that
2391 we'll run into compiler bugs. Bring back solitary \ inside
2392 comment, but add a closing comment to work around HP C bug. Don't
2393 test backslash-newline in C character constant.
2394
2395 2002-11-14 Akim Demaille <akim@epita.fr>
2396
2397 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
2398 status of the compiler.
2399 Calling `exit 1' is no longer needed.
2400 Reported by Nelson H. F. Beebe.
2401
2402 2002-11-14 Akim Demaille <akim@epita.fr>
2403
2404 * tests/atlocal.in (CPPFLAGS): We have config.h.
2405 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
2406 New.
2407 * tests/actions.at, tests/calc.at, tests/conflicts.at,
2408 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
2409 * tests/regression.at, tests/torture.at: Use them for all the
2410 grammars that are to be compiled.
2411 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
2412 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
2413 * doc/bison.texinfo (GLR Parsers): Document `inline'.
2414
2415 2002-11-14 Akim Demaille <akim@epita.fr>
2416
2417 * doc/bison.texinfo: Various formatting changes (alignments in
2418 samples, additional @group/@end group, GCS in samples.
2419 Use @deffn instead of simple @table to define the directives,
2420 macros, variables etc.
2421
2422 2002-11-13 Paul Eggert <eggert@twinsun.com>
2423
2424 Fix some bugs reported by Albert Chin-A-Young in
2425 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
2426
2427 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
2428 -o c"; the HP C compiler chatters during compilation.
2429 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
2430 * tests/headers.at (export YYLTYPE): Likewise.
2431
2432 * tests/input.at (Torturing the Scanner): Remove lines containing
2433 solitary backslashes, as they tickle a bug in the HP C compiler.
2434
2435 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
2436 comments, since they're not portable. Use GNU coding style.
2437
2438 2002-11-13 Akim Demaille <akim@epita.fr>
2439
2440 * data/yacc.c: Leave bigger chunks of quoted text.
2441 (YYDSYMPRINTF): New.
2442 Use it to report symbol activities.
2443 * data/glr.c (YYDSYMPRINTF): New.
2444 Use it.
2445
2446 2002-11-12 Paul Eggert <eggert@twinsun.com>
2447
2448 Version 1.75b.
2449
2450 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
2451 (yyglrReduce): Return yyok, not 0.
2452 This should avoid the enumerated-type warnings reported
2453 by Nelson H. F. Beebe in
2454 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
2455
2456 * lib/bbitset.h (BITSET_INLINE): Remove.
2457 * lib/bitset.h [! BITSET_INLINE]: Remove.
2458 (bitset_set, bitset_reset, bitset_test): Rename local vars
2459 to avoid shadowing warnings by GCC.
2460
2461 * data/glr.c (inline): Remove #define. It's the user's
2462 responsibility to #define it away, just like 'const'.
2463 This fixes one of the bugs reported by Nelson H. F. Beebe in
2464 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
2465
2466 * Makefile.maint (po-check): Scan .l and .y files instead of the
2467 .c and the .h files that they generate. This fixes the bug
2468 reported by Tim Van Holder in:
2469 <http://mail.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
2470 Look for N_ as well as for _. Try to avoid matching #define for
2471 N_ and _.
2472 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
2473 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
2474 * src/scan-gram.l: Revamp regular expressions so that " and '
2475 do not confuse xgettext.
2476
2477 * src/struniq.h (struniq_new): Do not declare the return type
2478 to be 'const'; this violates the C standard.
2479 * src/struniq.c (struniq_new): Likewise.
2480
2481 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
2482
2483 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
2484 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
2485 linker.
2486
2487 2002-11-12 Akim Demaille <akim@epita.fr>
2488
2489 * Makefile.maint: Sync with Autoconf:
2490 (local_updates): New.
2491
2492 2002-11-12 Akim Demaille <akim@epita.fr>
2493
2494 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
2495
2496 2002-11-12 Akim Demaille <akim@epita.fr>
2497
2498 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
2499 locations.
2500
2501 2002-11-12 Akim Demaille <akim@epita.fr>
2502
2503 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
2504 not yyvalue.
2505
2506 2002-11-12 Akim Demaille <akim@epita.fr>
2507
2508 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
2509 Use it to test the GLR parser.
2510
2511 2002-11-12 Akim Demaille <akim@epita.fr>
2512
2513 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
2514 defines it.
2515 * data/glr.c (yystos): New.
2516 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
2517 (YYDSYMPRINT): New.
2518 (yyval): Don't define it, it is handled via M4.
2519 (yyrecoverParseError): Free verbosely the discarded symbols.
2520 * data/yacc.c (yysymprint): Remove, rather...
2521 (b4_yysymprint_generate): invoke.
2522 * data/c.m4 (b4_yysymprint_generate): New.
2523 Accept pointers as arguments, as opposed to the version from
2524 yacc.c.
2525 (b4_yydestruct_generate): Likewise.
2526 * tests/cations.at (Printers and Destructors): Use Bison directives
2527 instead of CPP macros.
2528 Don't rely on internal details.
2529
2530 2002-11-12 Akim Demaille <akim@epita.fr>
2531
2532 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
2533 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
2534 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
2535 it against YYEMPTY and so forth), work on yytoken (i.e., set
2536 it to YYEMPTY etc.).
2537 (yydestruct): Replace with a b4_yydestruct_generate invocation.
2538 (b4_symbol_actions): Remove.
2539 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
2540 for 0, end-of-input.
2541
2542 2002-11-12 Akim Demaille <akim@epita.fr>
2543
2544 * doc/bison.texinfo (Destructor Decl): New.
2545
2546 2002-11-12 Akim Demaille <akim@epita.fr>
2547
2548 * src/tables.c (tables_generate): Use free for pointers that
2549 cannot be NULL, not XFREE.
2550 (pack_vector): Use assert, not fatal, for bound violations.
2551 * src/state.c (state_new): Likewise.
2552 * src/reader.c (reader): Likewise.
2553 * src/lalr.c (set_goto_map): Likewise.
2554 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
2555 the file name.
2556
2557 2002-11-12 Akim Demaille <akim@epita.fr>
2558
2559 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
2560 Restore.
2561 * src/scan-gram.l (last_string): Is global to the file, not to
2562 yylex.
2563 * src/parse-gram.y (input): Don't append the epilogue here,
2564 (epilogue.opt): do it here, and free the scanner's obstack.
2565 * src/reader.c (epilogue_set): Rename as...
2566 (epilogue_augment): this.
2567 * data/c.m4 (b4_epilogue): Defaults to empty.
2568
2569 2002-11-12 Akim Demaille <akim@epita.fr>
2570
2571 * src/getargs.c (long_options): Remove duplicates.
2572 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
2573 Remove.
2574 * doc/bison.rnh: Remove.
2575 * doc/bison.texinfo (VMS Invocation): Remove.
2576
2577 2002-11-12 Akim Demaille <akim@epita.fr>
2578
2579 * src/struniq.h, src/struniq.c (struniq_t): Is const.
2580 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
2581
2582 Use struniq for symbols.
2583
2584 * src/symtab.h (symbol_t): The tag member is a struniq.
2585 (symbol_type_set): Adjust.
2586 * src/symtab.c (symbol_new): Takes a struniq.
2587 (symbol_free): Don't free the tag member.
2588 (hash_compare_symbol_t, hash_symbol_t): Rename as...
2589 (hash_compare_symbol, hash_symbol): these.
2590 Use the fact that tags as struniqs.
2591 (symbol_get): Use struniq_new.
2592 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
2593 Returns a strniq.
2594 * src/reader.h (merger_list, grammar_currentmerge_set): The name
2595 and type members are struniqs.
2596 * src/reader.c (get_merge_function)
2597 (grammar_current_rule_merge_set): Adjust.
2598 (TYPE, current_type): Are struniq.
2599
2600 Use struniq for file names.
2601
2602 * src/files.h, src/files.c (infile): Split into...
2603 (grammar_file, current_file): these.
2604 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
2605 * src/reduce.c (reduce_print): Likewise.
2606 * src/getargs.c (getargs): Likewise.
2607 * src/complain.h, src/complain.c: Likewise.
2608 * src/main.c (main): Call struniqs_new early enough to use it for
2609 file names.
2610 Don't free the input file name.
2611
2612 2002-11-12 Akim Demaille <akim@epita.fr>
2613
2614 * src/symtab.c (symbol_free): Remove dead deactivated code:
2615 type_name are properly removed.
2616 Don't use XFREE to free items that cannot be NULL.
2617 * src/struniq.h, src/struniq.c: New.
2618 * src/main.c (main): Initialize/free struniqs.
2619 * src/parse-gram.y (%union): Add astruniq member.
2620 (yyprint): Adjust.
2621 * src/scan-gram.l (<{tag}>): Return a struniq.
2622 Free the obstack bit that used to store it.
2623 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
2624
2625 2002-11-11 Paul Eggert <eggert@twinsun.com>
2626
2627 Revamp to fix many (but not all) of the C- and M4-related quoting
2628 problems. Among other things, this fixes the Bison bug reported
2629 by Jan Hubicka when processing the Bash grammar; see:
2630 <http://mail.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
2631
2632 Use new @ escapes consistently. Represent brackets with @{ and @}
2633 rather than @<:@ and @:>@, since this works a bit better with dumb
2634 editors like vi. Represent @ with @@, since @ is now consistently
2635 an escape. Use @oline@ and @ofile@ rather than __oline__ and
2636 __ofile__, to avoid unexpected expansions. Similarly, use @output
2637 rather than #output.
2638
2639 * data/c.m4 (b4_copyright): Omit file name from comment, since
2640 the file name could contain "*/".
2641 (b4_synclines_flag): Don't quote the 2nd argument; it should already
2642 be quoted. All uses changed.
2643
2644 * data/glr.c: Use new @ escapes consistently.
2645 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
2646 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
2647 Remove, since they couldn't handle arbitrary characters in file
2648 names.
2649 * data/lalr1.cc: Likewise.
2650 * data/yacc.c: Likewise.
2651
2652 * src/files.c (output_infix): Remove; all uses removed.
2653 * src/files.h: Likewise.
2654
2655 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
2656 mishandled funny characters in file names, and anyway it isn't
2657 needed any more.
2658 * data/yacc.c: Likewise.
2659 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
2660
2661 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
2662 * data/yacc.c: Likewise.
2663
2664 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
2665 strings now.
2666 (muscle_init): Quote filename as a C string.
2667 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
2668 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
2669 * src/output.c (escaped_file_name_output): New function.
2670 (prepare_symbols): Quote tokens for M4.
2671 (prepare): Don't insert output_infix, output_prefix,
2672 output_parser_name, output_header_name; this is now down by scan-skel.
2673 Insert skeleton as a C string.
2674
2675 * src/output.c (user_actions_output, symbol_destructors_output,
2676 symbol_printers_output): Quote filenames for C and M4.
2677 * src/reader.c (prologue_augment, epilogue_set): Likewise.
2678
2679 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
2680 escapes other than \\ and \'; this simplifies the code.
2681 (<SC_STRING>): Likewise, for \\ and \".
2682 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
2683 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
2684 Use new escapes @{ and @} for [ and ].
2685
2686 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
2687 them with auto vars.
2688 Switch to new escape scheme, where @ is the escape character uniformly.
2689 Abort if a stray escape character is found. Avoid unbounded input
2690 buffer when parsing non-escaped text.
2691
2692 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
2693 __oline__, #output, $@, and @{ do not have unintended meanings.
2694
2695 2002-11-09 Paul Eggert <eggert@twinsun.com>
2696
2697 Fix the test failure due to GCC warnings described in
2698 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
2699 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
2700 evaluate to 0 if it's impossible for NINF to be in the respective
2701 table.
2702 (yygetLRActions, yyrecoverParseError): Use them.
2703
2704 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
2705 counted in the token inserted at end of file. Now takes
2706 location_t *, not location_t, so that the location can be
2707 adjusted. All uses changed.
2708
2709 * tests/regression.at (Invalid inputs): Adjust wording in
2710 diagnostic to match the new behavior.
2711
2712 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
2713 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
2714 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
2715 abort ();'. This reduces the runtime of the "Many lookaheads"
2716 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
2717 GCC 3.2.
2718
2719 2002-11-07 Paul Eggert <eggert@twinsun.com>
2720
2721 * src/parse-gram.y (CHARACTER): Remove unused token.
2722 All uses removed.
2723
2724 * src/scan-gram.l: Remove stack option. We no longer use the
2725 stack, since the stack was never deeper than 1; instead, use the
2726 new auto var c_context to record the stacked value.
2727
2728 Remove nounput option. At an unexpected end of file, we now unput
2729 the minimal input necessary to end cleanly; this simplifies the
2730 code.
2731
2732 Avoid unbounded token sizes where this is easy.
2733
2734 (unexpected_end_of_file): New function.
2735 Use it to systematize the error message on unexpected EOF.
2736 (last-string): Now auto, not static.
2737 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
2738 (scanner_last_string_free): Remove; not used.
2739 (percent_percent_count): Move decl to just before use.
2740 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
2741 not the (never otherwised-used) CHARACTER.
2742
2743 2002-11-07 Akim Demaille <akim@epita.fr>
2744
2745 Let yyerror always receive the msg as last argument, so that
2746 yyerror can be variadic.
2747
2748 * data/yacc.c (b4_yyerror_args): New.
2749 Use it when calling yyerror.
2750 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
2751 Use it when calling yyerror.
2752 * doc/bison.texinfo (Error Reporting): Adjust.
2753 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
2754 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
2755
2756 2002-11-06 Akim Demaille <akim@epita.fr>
2757
2758 #line should have quoted strings.
2759 Ideally, this should be done by m4_quotearg.
2760
2761 * src/scan-skel.l: Include quotearg.h.
2762 Quote __ofile__.
2763 * src/output.c (symbol_printers_output)
2764 (symbol_destructors_output): Quote the file name.
2765
2766 2002-11-06 Akim Demaille <akim@epita.fr>
2767
2768 * tests/regression.at (Invalid inputs): Adjust to the recent
2769 messages.
2770
2771 2002-11-06 Akim Demaille <akim@epita.fr>
2772
2773 Restore --no-lines.
2774 Reported by Jim Kent.
2775
2776 * data/c.m4 (b4_syncline): New.
2777 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
2778 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
2779 * src/output.c (user_actions_output): Likewise.
2780 (prepare): Define 'b4_synclines_flag'.
2781 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
2782
2783 2002-11-06 Akim Demaille <akim@epita.fr>
2784
2785 * src/main.c (main): Free `infile'.
2786 * src/scan-gram.l (handle_syncline): New.
2787 Recognize `#line'.
2788 * src/output.c (user_actions_output, symbol_destructors_output)
2789 (symbol_printers_output): Use the location's file name, not
2790 infile.
2791 * src/reader.c (prologue_augment, epilogue_set): Likewise.
2792
2793 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2794
2795 * src/tables.c (matching_state): Don't allow states to match if
2796 either has GLR conflict entries.
2797
2798 2002-11-05 Paul Eggert <eggert@twinsun.com>
2799
2800 * src/scan-gram.l: Use more accurate diagnostics, e.g.
2801 "integer out of range" rather than "invalid value".
2802 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
2803 accordingly.
2804
2805 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
2806 Also, remove one static variable in the scanner.
2807
2808 * src/scan-gram.l (braces_level): Now auto, not static.
2809 Initialize to zero if the compiler is being picky.
2810 (INITIAL): Clear braces_level instead of incrementing it.
2811 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
2812 as POSIX 1003.1-2001 requires.
2813 * src/system.h (IF_LINT): New macro, taken from coreutils.
2814 * configure.ac: Define "lint" if --enable-gcc-warnings.
2815
2816 2002-11-05 Akim Demaille <akim@epita.fr>
2817
2818 * src/scan-gram.l: When it starts with `%', complain about the
2819 whole directive, not just that `invalid character: %'.
2820
2821 2002-11-04 Akim Demaille <akim@epita.fr>
2822
2823 * Makefile.maint: Update from Autoconf.
2824 (update, cvs-update, po-update, do-po-update): New.
2825
2826 2002-11-04 Akim Demaille <akim@epita.fr>
2827
2828 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
2829 and yyerror.
2830 Have yyerror `use' its arguments.
2831 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
2832 returns true when location & yacc & pure & parse-param.
2833 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
2834
2835 2002-11-04 Akim Demaille <akim@epita.fr>
2836
2837 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
2838 clashes.
2839 * src/scan-gram.l: Use [\'] instead of ['] to pacify
2840 font-lock-mode.
2841 Use complain_at.
2842 Use quote, not quote_n since LOCATION_PRINT no longer uses the
2843 slot 0.
2844
2845 2002-11-03 Paul Eggert <eggert@twinsun.com>
2846
2847 * src/reader.c (get_merge_function, grammar_current_rule_check):
2848 Use consistent diagnostics for reporting type name clashes.
2849 Quote the types with <>, for consistency with Yacc.
2850 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
2851
2852 2002-11-03 Akim Demaille <akim@epita.fr>
2853
2854 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
2855 New.
2856 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
2857 (b4_parse_param): Remove.
2858 Use b4_identification.
2859 Propagate b4_pure_args where needed to pass them to yyerror.
2860 * data/glr.m4 (b4_parse_param): Remove.
2861 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
2862 (b4_lpure_formals): New.
2863 Use b4_identification.
2864 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
2865 b4_user_formals and b4_user_args.
2866 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
2867 (yyreportAmbiguity): When using a pure parser, also need
2868 the location, and the parse-params.
2869 Adjust callers.
2870 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
2871 When using a pure parser, also need the parse-params.
2872 Adjust callers.
2873 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
2874 (%pure-parser + %parse-param) LALR and GLR parsers.
2875 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
2876 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
2877 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
2878 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
2879 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
2880 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
2881 * doc/bison.texinfo: Untabify the whole file.
2882 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
2883 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
2884 (Error Reporting): Adjust to these new directives.
2885 Document %error-verbose, deprecate YYERROR_VERBOSE.
2886
2887 2002-11-03 Akim Demaille <akim@epita.fr>
2888
2889 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
2890 AT_CHECK_CALC_GLR invocations to use % directives, instead of
2891 command line options.
2892 * tests/cxx-type.at: Formatting changes.
2893
2894 2002-11-03 Paul Eggert <eggert@twinsun.com>
2895
2896 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
2897 to count columns correctly, and to check for invalid inputs.
2898
2899 Use mbsnwidth to count columns correctly. Account for tabs, too.
2900 Include mbswidth.h.
2901 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
2902 (extend_location): New function.
2903 (YY_LINES): Remove.
2904
2905 Handle CRLF in C code rather than in Lex code.
2906 (YY_INPUT): New macro.
2907 (no_cr_read): New function.
2908
2909 Scan UCNs, even though we don't fully handle them yet.
2910 (convert_ucn_to_byte): New function.
2911
2912 Handle backslash-newline correctly in C code.
2913 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
2914 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
2915 all uses changed.
2916 (tag, splice): New EREs. Do not allow NUL or newline in tags.
2917 Use {splice} wherever C allows backslash-newline.
2918 YY_STEP after space, newline, vertical-tab.
2919 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
2920
2921 (letter, id): Don't assume ASCII; e.g., spell out a-z.
2922
2923 ({int}, handle_action_dollar, handle_action_at): Check for integer
2924 overflow.
2925
2926 (YY_STEP): Omit trailing semicolon, so that it's more like C.
2927
2928 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
2929 as well as \000. Check for UCHAR_MAX, not 255.
2930 Allow \x with an arbitrary positive number of digits, as in C.
2931 Check for overflow here.
2932 Allow \? and UCNs, for compatibility with C.
2933
2934 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
2935 with quote slot used by complain_at.
2936
2937 * tests/input.at: Add tests for backslash-newline, m4 quotes
2938 in symbols, long literals, and funny escapes in strings.
2939
2940 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
2941 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
2942 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
2943 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
2944 * m4/mbswidth.m4: New file, from GNU coreutils.
2945
2946 * doc/bison.texinfo (Grammar Outline): Document // comments.
2947 (Symbols): Document that trigraphs have no special meaning in Bison,
2948 nor is backslash-newline allowed.
2949 (Actions): Document that trigraphs have no special meaning.
2950
2951 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
2952 no longer used.
2953
2954 2002-11-02 Paul Eggert <eggert@twinsun.com>
2955
2956 * src/reader.c: Don't include quote.h; not needed.
2957 (get_merge_function): Reword warning to be consistent with
2958 type clash diagnostic in grammar_current_rule_check.
2959
2960 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
2961 bug in trigraph handling.
2962
2963 * src/output.c (prepare_symbols): When printing token names,
2964 escape "[" as "@<:@" and likewise for "]".
2965
2966 * src/system.h (errno): Remove declaration, as we are now
2967 assuming C89 or better, and C89 guarantees errno.
2968
2969 2002-10-30 Paul Eggert <eggert@twinsun.com>
2970
2971 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
2972 Check for close failures.
2973 * src/files.h (xfclose): Return void, not int, since it always
2974 returned zero.
2975 * src/files.c (xfclose): Likewise. Report I/O error if ferror
2976 indicates one.
2977 * src/output.c (output_skeleton): Use xfclose rather than fclose
2978 and ferror. xfclose now checks ferror.
2979
2980 * data/glr.c (YYLEFTMOST_STATE): Remove.
2981 (yyreportTree): Use a stack-based leftmost state. This avoids
2982 our continuing battles with bogus warnings about initializers.
2983
2984 2002-10-30 Akim Demaille <akim@epita.fr>
2985
2986 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
2987 #if.
2988
2989 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
2990
2991 * tests/glr-regr1.at: New test for reported regressions.
2992 * tests/testsuite.at: Add glr-regr1.at test.
2993 * tests/Makefile.am: Add glr-regr1.at test.
2994
2995 2002-10-24 Paul Eggert <eggert@twinsun.com>
2996
2997 Version 1.75a.
2998
2999 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
3000 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
3001 we use malloc. Don't assume 'A' through 'Z' are contiguous.
3002 Don't assume strdup exists; POSIX says its an XSI extension.
3003 Check for buffer overflow on input.
3004
3005 2002-10-24 Akim Demaille <akim@epita.fr>
3006
3007 * src/output.c (output_skeleton): Don't disable M4sugar comments
3008 too soon: it results in comments being expanded.
3009 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
3010 first output.
3011
3012 2002-10-24 Akim Demaille <akim@epita.fr>
3013
3014 * data/yacc.c (m4_int_type): New.
3015 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
3016 char' as only yacc.c wants K&R portability.
3017 * data/glr.c (yysigned_char): Remove.
3018 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
3019 Reported by Quoc Peyrot.
3020
3021 2002-10-23 Paul Eggert <eggert@twinsun.com>
3022
3023 * src/main.c (main): With --trace=time, report times even if a
3024 non-fatal error occurs. Formerly, the times were reported in some
3025 such cases but not in others.
3026 * src/reader.c (reader): Just return if a complaint has been issued,
3027 instead of exiting, so that 'main' can report times.
3028
3029 2002-10-22 Akim Demaille <akim@epita.fr>
3030
3031 * src/system.h: Include sys/types.
3032 Reported by Bert Deknuydt.
3033
3034 2002-10-23 Paul Eggert <eggert@twinsun.com>
3035
3036 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
3037 Suggested by Art Haas.
3038
3039 2002-10-22 Paul Eggert <eggert@twinsun.com>
3040
3041 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
3042 decl; not needed any more.
3043 * src/main.c (main): Use return to exit, undoing yesterday's change.
3044 The last OS that we could find where this wouldn't work is
3045 SunOS 3.5, and that's too old to worry about now.
3046
3047 * data/glr.c (struct yyltype): Define members even when not
3048 doing locations. This is more consistent with yacc.c, and it
3049 works around the following bug reports:
3050 http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
3051 http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
3052
3053 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
3054 @acronym consistently. Standardize on "Yacc" instead of "YACC",
3055 "Algol" instead of "ALGOL". Give a bit more history about BNF.
3056
3057 2002-10-22 Akim Demaille <akim@epita.fr>
3058
3059 * data/README: New.
3060
3061 2002-10-21 Paul Eggert <eggert@twinsun.com>
3062
3063 Be consistent about 'bool'; the old code used an enum in one
3064 module and an int in another, and this violates the C standard.
3065 * m4/stdbool.m4: New file, from coreutils 4.5.3.
3066 * configure.ac (AC_HEADER_STDBOOL): Add.
3067 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
3068 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
3069 * src/symtab.c (hash_compare_symbol_t): Likewise.
3070 * src/system.h (bool, false, true): Use a definition consistent
3071 with ../lib/hash.c. All uses changed.
3072
3073 * src/complain.c (warning_issued): Renamed from warn_message_count,
3074 so that we needn't worry about integer overflow (!).
3075 Now of type bool. All uses changed.
3076 (complaint_issued): Renamed from complain_message_count; likewise.
3077
3078 * src/main.c (main): Use exit to exit with failure.
3079
3080 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
3081 rather than 1 and 0.
3082 * src/main.c (main): Likewise.
3083 * src/getargs.c (getargs): Likewise.
3084 * src/reader.c (reader): Likewise.
3085
3086 * src/getarg.c (getargs): Remove duplicate code for
3087 "Try `bison --help'".
3088
3089 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
3090 What was that "2" for?
3091
3092 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
3093 * src/getargs.c (usage): Likewise.
3094
3095 * src/getargs.c (getargs): When there are too few operands, report
3096 the last one. When there are too many, report the first extra
3097 one. This is how diffutils does it.
3098
3099 2002-10-20 Paul Eggert <eggert@twinsun.com>
3100
3101 Remove K&R vestiges.
3102 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
3103 * src/complain.c (VA_START): Remove. Assume prototypes.
3104 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
3105 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
3106 fatal): Assume prototypes.
3107 * src/complain.h: Assume prototypes.
3108 * src/system.h (PARAMS): Remove.
3109 Include <limits.h> unconditionally, since it's guaranteeed even
3110 for a freestanding C89 compiler.
3111 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
3112 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
3113
3114 2002-10-20 Akim Demaille <akim@epita.fr>
3115
3116 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
3117 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
3118 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
3119 (yyresolveStates, yyresolveAction, yyresolveStack)
3120 (yyprocessOneStack): Use them.
3121 (yy_reduce_print): New.
3122 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
3123
3124 2002-10-20 Akim Demaille <akim@epita.fr>
3125
3126 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
3127 arguments and output `void'.
3128 (b4_c_function): Rename as...
3129 (b4_c_function_def): this.
3130 (b4_c_function_decl, b4_c_ansi_function_def)
3131 (b4_c_ansi_function_decl): New.
3132 Change the interpretation of the arguments: before `int, foo', now
3133 `int foo, foo'.
3134 * data/yacc.c (yyparse): Prototype and define thanks to these.
3135 Adjust b4_c_function_def uses.
3136 * data/glr.c (yyparse): Likewise, but ANSI only.
3137
3138 2002-10-20 Akim Demaille <akim@epita.fr>
3139
3140 * src/output.c (prepare): Move the definition of `tokens_number',
3141 `nterms_number', `undef_token_number', `user_token_number_max'
3142 to...
3143 (prepare_tokens): Here.
3144 (prepare_tokens): Rename as...
3145 (prepare_symbols): this.
3146 (prepare): Move the definition of `rules_number' to...
3147 (prepare_rules): here.
3148 (prepare): Move the definition of `last', `final_state_number',
3149 `states_number' to...
3150 (prepare_states): here.
3151 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
3152
3153 2002-10-20 Akim Demaille <akim@epita.fr>
3154
3155 * src/tables.h, src/tables.c, src/output.c: Comment changes.
3156
3157 2002-10-20 Akim Demaille <akim@epita.fr>
3158
3159 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
3160 * data/c.m4: here.
3161
3162 2002-10-20 Akim Demaille <akim@epita.fr>
3163
3164 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
3165 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
3166 `pair'.
3167 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
3168 `name' to...
3169 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
3170 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
3171 These.
3172
3173 2002-10-19 Paul Eggert <eggert@twinsun.com>
3174
3175 Do not create a temporary file, as that involves security and
3176 cleanup headaches. Instead, use a pair of pipes.
3177 Derived from a suggestion by Florian Krohm.
3178 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
3179 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
3180 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
3181 (BISON_PREREQ_SUBPIPE): Add.
3182 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
3183 Add subpipe.h, subpipe.c.
3184 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
3185 * po/POTFILES.in: Add lib/subpipe.c.
3186 * src/output.c: Include "subpipe.h".
3187 (m4_invoke): Remove decl.
3188 (scan_skel): New decl.
3189 (output_skeleton): Use pipe rather than temporary file for m4 input.
3190 Check that m4sugar.m4 is readable, to avoid deadlock.
3191 Check for pipe I/O error.
3192 * src/scan-skel.l (readpipe): Remove decl.
3193 (scan_skel): New function, to be used in place of m4_invoke.
3194 Read from stream rather than file.
3195
3196 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
3197 float, as this generates a warning on Solaris 8 + GCC 3.2 with
3198 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
3199 this generates a more-accurate value anyway.
3200
3201 * lib/timevar.c (timervar_accumulate): Rename locals to
3202 avoid confusion with similarly-named more-global.
3203 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
3204
3205 * src/output.c (prepare): Use xstrdup to convert char const *
3206 to char *, to avoid GCC warning.
3207
3208 2002-10-19 Akim Demaille <akim@epita.fr>
3209
3210 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
3211 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
3212 Use them to have `calc.y' ready for %pure-parser.
3213 * data/yacc.c (YYLEX): Pass a yylex return type to
3214 b4_c_function_call.
3215
3216 2002-10-19 Akim Demaille <akim@epita.fr>
3217
3218 Prototype support of %lex-param and %parse-param.
3219
3220 * src/parse-gram.y: Add the definition of the %lex-param and
3221 %parse-param tokens, plus their rules.
3222 Drop the `_' version of %glr-parser.
3223 Add the "," token.
3224 * src/scan-gram.l (INITIAL): Scan them.
3225 * src/muscle_tab.c: Comment changes.
3226 (muscle_insert, muscle_find): Rename `pair' as `probe'.
3227 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
3228 (muscle_entry_s): The `value' member is no longer const.
3229 Adjust all dependencies.
3230 * src/muscle_tab.c (muscle_init): Adjust: use
3231 MUSCLE_INSERT_STRING.
3232 Initialize the obstack earlier.
3233 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
3234 (muscle_pair_list_grow): New.
3235 * data/c.m4 (b4_c_function_call, b4_c_args): New.
3236 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
3237 * tests/calc.at: Use %locations, not --locations.
3238 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
3239
3240 2002-10-19 Akim Demaille <akim@epita.fr>
3241
3242 * src/getargs.c (usage): Take status as argument and exit
3243 accordingly.
3244 Report the traditional `Try ... --help' message when status != 0.
3245 (usage, version): Don't take a FILE * as arg, it is pointless.
3246 (getargs): When there is an incorrect number of arguments, make it
3247 an error, and report it GNUlically thanks to `usage ()'.
3248
3249 2002-10-18 Paul Eggert <eggert@twinsun.com>
3250
3251 * data/glr.c (yyreportParseError): Don't assume that sprintf
3252 yields the length of the printed string, as this is not true
3253 on SunOS 4.1.4. Reported by Peter Klein.
3254
3255 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
3256 * tests/conflicts.at (%nonassoc and eof): Likewise.
3257 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
3258
3259 2002-10-17 Akim Demaille <akim@epita.fr>
3260
3261 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
3262 * src/getargs.c (trace_types, trace_args): Adjust.
3263 * src/reader.c (grammar_current_rule_prec_set)
3264 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
3265 Standardize error messages.
3266 And s/@prec/%prec/!
3267 (reader): Use trace_flag to enable scanner/parser debugging,
3268 instead of an adhoc scheme.
3269 * src/scan-gram.l: Remove trailing debugging code.
3270
3271 2002-10-16 Paul Eggert <eggert@twinsun.com>
3272
3273 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
3274 MUSCLE_TAB_H.
3275
3276 * NEWS: Officially drop support for building Bison with K&R C,
3277 since it didn't work anyway and it's not worth worrying about.
3278 * Makefile.maint (wget_files): Remove ansi2knr.c.
3279 (ansi2knr.c-url_prefix): Remove.
3280 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
3281 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
3282 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
3283
3284 2002-10-15 Paul Eggert <eggert@twinsun.com>
3285
3286 Stop using the "enum_" trick for K&R-style function definitions;
3287 it confused me, and I was the author! Instead, assume that people
3288 who want to use K&R C compilers (when using these modules in GCC,
3289 perhaps?) will run ansi2knr.
3290
3291 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
3292 All uses of "enum_" changed to "enum ".
3293 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
3294 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
3295
3296 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
3297 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
3298 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
3299 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
3300 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
3301 abitset_not, abitset_ones, abitset_or, abitset_or_and,
3302 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
3303 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
3304 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
3305 Use function prototypes; this removes the need for declaring
3306 static functions simply to provide their prototypes.
3307 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
3308 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
3309 bitset_count_, bitset_create, bitset_dump, bitset_first,
3310 bitset_free, bitset_init, bitset_last, bitset_next,
3311 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
3312 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
3313 bitset_print, bitset_release_memory, bitset_toggle_,
3314 bitset_type_choose, bitset_type_get, bitset_type_name_get,
3315 debug_bitset): Likewise.
3316 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
3317 * lib/bitset_stats.c (bitset_log_histogram_print,
3318 bitset_percent_histogram_print, bitset_stats_and,
3319 bitset_stats_and_cmp, bitset_stats_and_or,
3320 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
3321 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
3322 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
3323 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
3324 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
3325 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
3326 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
3327 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
3328 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
3329 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
3330 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
3331 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
3332 bitset_stats_zero): Likewise.
3333 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
3334 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
3335 bitsetv_dump, debug_bitsetv): Likewise.
3336 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
3337 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
3338 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
3339 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
3340 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
3341 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
3342 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
3343 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
3344 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
3345 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
3346 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
3347 Likewise.
3348 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
3349 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
3350 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
3351 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
3352 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
3353 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
3354 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
3355 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
3356 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
3357 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
3358 lbitset_xor_cmp, lbitset_zero): Likewise.
3359
3360 2002-10-14 Akim Demaille <akim@epita.fr>
3361
3362 Version 1.75.
3363
3364 2002-10-14 Akim Demaille <akim@epita.fr>
3365
3366 * tests/Makefile.am (maintainer-check-posix): New.
3367
3368 2002-10-14 Akim Demaille <akim@epita.fr>
3369
3370 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
3371 member.
3372
3373 2002-10-14 Akim Demaille <akim@epita.fr>
3374
3375 * src/tables.c (table_ninf_remap): base -> tab.
3376 Reported by Matt Rosing.
3377
3378 2002-10-14 Paul Eggert <eggert@twinsun.com>
3379
3380 * tests/action.at, tests/calc.at, tests/conflicts.at,
3381 tests/cxx-type.at, tests/headers.at, tests/input.at,
3382 tests/regression.at, tests/synclines.at, tests/torture.at:
3383 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
3384 so that the tests still work even if POSIXLY_CORRECT is set.
3385 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
3386
3387 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
3388 for portability to K&R hosts. Fix typo: signed char is guaranteed
3389 only to 127, not to 128.
3390 * data/glr.c (yysigned_char): New type.
3391 * data/yacc.c (yysigned_char): Likewise.
3392 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
3393
3394 2002-10-13 Paul Eggert <eggert@twinsun.com>
3395
3396 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
3397 true due to limited range of data type" warning from GCC.
3398
3399 * data/c.m4 (b4_token_defines): Protect against double-inclusion
3400 by wrapping enum yytokentype's definition inside #ifndef
3401 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
3402
3403 2002-10-13 Akim Demaille <akim@epita.fr>
3404
3405 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
3406 Un yy- yyrhs to avoid the name clash with the global YYRHS.
3407
3408 2002-10-13 Akim Demaille <akim@epita.fr>
3409
3410 * Makefile.maint: Update from Autoconf 2.54.
3411 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
3412
3413 2002-10-13 Akim Demaille <akim@epita.fr>
3414
3415 * src/print.c (print_state): Separate the list of solved conflicts
3416 from the other items.
3417 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
3418
3419 2002-10-13 Akim Demaille <akim@epita.fr>
3420
3421 Let nondeterministic skeletons be usable with deterministic
3422 tables.
3423
3424 With the patch, GAWK compiled by GCC without -O2 passes its test
3425 suite using a GLR parser driven by LALR tables. It fails with -O2
3426 because `struct stat' gives two different answers on my machine:
3427 88 (definition of an auto var) and later 96 (memset on this var).
3428 Hence the stack is badly corrumpted. The headers inclusion is to
3429 blame: if I move the awk.h inclusion before GLR's system header
3430 inclusion, the two struct stat have the same size.
3431
3432 * src/tables.c (pack_table): Always create conflict_table.
3433 (token_actions): Always create conflict_list.
3434 * data/glr.c (YYFLAG): Remove, unused.
3435
3436 2002-10-13 Akim Demaille <akim@epita.fr>
3437
3438 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
3439 (O0FLAGS): New.
3440 (VALGRIND, GXX): New.
3441 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
3442 * tests/bison.in: Run $PREBISON a pre-command.
3443 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
3444 (maintainer-check-g++): New.
3445 * Makefile.am (maintainer-check): New.
3446
3447 2002-10-13 Akim Demaille <akim@epita.fr>
3448
3449 * data/glr.c: Formatting changes.
3450 Tweak some trace messages to match yacc.c's.
3451
3452 2002-10-13 Akim Demaille <akim@epita.fr>
3453
3454 GLR parsers sometimes raise parse errors instead of performing the
3455 default reduction.
3456 Reported by Charles-Henry de Boysson.
3457
3458 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
3459 check the length of the traces when %glr.
3460 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
3461 GLR's traces.
3462 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
3463 Test GLR parsers.
3464 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
3465 (yyltype): Remove the yy prefix from the member names.
3466 (yytable): Complete its comment.
3467 (yygetLRActions): Map error action number from YYTABLE from
3468 YYTABLE_NINF to 0.
3469 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
3470 (which was a bug: it should have been YYTABEL_NINF, and yet it was
3471 not satisfying as we could compare an YYACTION computed from
3472 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
3473 only value for error actions.
3474 (yyreportParseError): In verbose parse error messages, don't issue
3475 `error' in the list of expected tokens.
3476 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
3477 next action to perform to match glr.c's decoding.
3478 (yytable): Complete its comment.
3479
3480 2002-10-13 Paul Eggert <eggert@twinsun.com>
3481
3482 Fix problem reported by Henrik Grubbstroem in
3483 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
3484 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
3485 because the Bison parser reads the second action before reducing
3486 the first one.
3487 * src/scan-gram.l (rule_length): New static var.
3488 Use it to keep track of the rule length in the scanner, since
3489 we can't expect the parser to be in lock-step sync with the scanner.
3490 (handle_action_dollar, handle_action_at): Use this var.
3491 * tests/actions.at (Exotic Dollars): Test for the problem.
3492
3493 2002-10-12 Paul Eggert <eggert@twinsun.com>
3494
3495 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
3496 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
3497 Include <sys/time.h> when checking for clock_t and struct tms.
3498 Use same include order as source.
3499 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
3500 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
3501
3502 * lib/timevar.c: Update copyright date and clarify comments.
3503 (get_time) [IN_GCC]: Keep the GCC version for reference.
3504
3505 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
3506 GCC version as of today, then merge Bison's changes.
3507 Change "GCC" to "Bison" in copyright notice. timevar.def's
3508 author is Akim, so change that too.
3509
3510 * src/reader.c (grammar_current_rule_check):
3511 Don't worry about the default action if $$ is untyped.
3512 Prevents bogus warnings reported by Jim Gifford in
3513 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
3514
3515 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
3516 * data/glr.c, data/lalr1.cc, data/yacc.c:
3517 Output token definitions before the first part of user declarations.
3518 Fixes compatibility problem reported by Jim Gifford for kbd in
3519 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
3520
3521 2002-10-11 Paul Eggert <eggert@twinsun.com>
3522
3523 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
3524 (yyparse): here. This undoes some of the 2002-07-25 change.
3525 Compatibility problem reported by Ralf S. Engelschall with
3526 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
3527
3528 2002-10-11 Akim Demaille <akim@epita.fr>
3529
3530 * tests/regression.at Characters Escapes): New.
3531 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
3532 characters.
3533 Reported by Jan Nieuwenhuizen.
3534
3535 2002-10-11 Akim Demaille <akim@epita.fr>
3536
3537 * po/id.po: New.
3538
3539 2002-10-10 Paul Eggert <eggert@twinsun.com>
3540
3541 Portability fixes for bitsets; this also avoids several GCC
3542 warnings.
3543
3544 * lib/abitset.c: Include <stddef.h>, for offsetof.
3545 * lib/lbitset.c: Likewise.
3546
3547 * lib/abitset.c (abitset_bytes): Return a size that is aligned
3548 properly for vectors of objects. Do not assume that adding a
3549 header size to a multiple of a word size yields a value that is
3550 properly aligned for the whole union.
3551 * lib/bitsetv.c (bitsetv_alloc): Likewise.
3552
3553 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
3554 unique names for structures.
3555 * lib/ebitset.c (ebitset_bytes): Likewise.
3556 * lib/lbitset.c (lbitset_bytes): Likewise.
3557
3558 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
3559 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
3560 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
3561 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
3562 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
3563 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
3564 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
3565 to improve the type-checking that GCC can do.
3566 * lib/bitset.c (bitset_op4_cmp): Likewise.
3567 * lib/bitset_stats.c (bitset_stats_count,
3568 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
3569 bitset_stats_copy, bitset_stats_disjoint_p,
3570 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
3571 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
3572 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
3573 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
3574 bitset_stats_and_or_cmp, bitset_stats_andn_or,
3575 bitset_stats_andn_or_cmp, bitset_stats_or_and,
3576 bitset_stats_or_and_cmp): Likewise.
3577 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
3578 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
3579 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
3580 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
3581
3582 * lib/abitset.h: Include bitset.h, not bbitset.h.
3583 * lib/ebitset.h: Likewise.
3584 * lib/lbitset.h: Likewise.
3585
3586 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
3587 All instances of parameters of type enum bitset_opts are now of
3588 type enum_bitset_opts, to conform to the C Standard, and similarly
3589 for enum_bitset_type.
3590 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
3591 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
3592
3593 Do not use "struct bitset_struct" to mean different things in
3594 different modules. Not only is this confusing, it violates
3595 the C Standard, which requires that structure types in different
3596 modules must be compatible if one is to be passed to the other.
3597 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
3598 All instances of "struct bitset_struct *" replaced with "bitset".
3599 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
3600 (union bitset_union, struct abitset_struct, struct ebitset_struct,
3601 struct lbitset_struct, struct bitset_stats_struct): New types.
3602 All uses of struct bitset_struct changed to union bitset_union,
3603 etc.
3604 * lib/abitset.c (struct abitset_struct, abitset,
3605 struct bitset_struct): Remove.
3606 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
3607 struct bitset_struct): Remove.
3608 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
3609 bitset_struct): Remove.
3610 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
3611 Likewise.
3612
3613 Do not call a function of type T using a call that assumes the
3614 function is of a different type U. Standard C requires that a
3615 function must be called with a type that is compatible with its
3616 definition.
3617 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
3618 New decls.
3619 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
3620 New functions.
3621 * lib/ebitset.c (PFV): Remove.
3622 * lib/lbitset.c (PFV): Likewise.
3623 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
3624 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
3625 decls.
3626 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
3627 (ebitset_vtable): Use them.
3628 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
3629 lbitset_xor): New functions.
3630 (lbitset_vtable): Use them.
3631
3632 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
3633 Declare.
3634
3635 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
3636 GCC warning.
3637 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
3638 Use offsetof, for simplicity.
3639
3640 2002-10-06 Paul Eggert <eggert@twinsun.com>
3641
3642 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
3643 the same width as int. This reapplies a hunk of the 2002-08-12 patch
3644 <http://mail.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
3645 which was inadvertently undone by the 2002-09-30 patch.
3646 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
3647 the same width as int.
3648
3649 2002-10-04 Paul Eggert <eggert@twinsun.com>
3650
3651 Version 1.50.
3652
3653 * configure.ac (AC_INIT), NEWS: Increment version number.
3654
3655 * doc/bison.texinfo: Minor spelling, grammar, and white space
3656 fixes.
3657 (Symbols): Mention that any negative value returned from yylex
3658 signifies end-of-input. Warn about negative chars. Mention
3659 the portable Standard C character set.
3660
3661 The GNU coding standard says CFLAGS and YFLAGS are reserved
3662 for the installer to set.
3663 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
3664 * src/Makefile.am (AM_CFLAGS): Likewise.
3665 (AM_YFLAGS): Renamed from YFLAGS.
3666
3667 Fix some MAX and MIN problems.
3668 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
3669 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
3670 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
3671 * src/reader.c (reader): Use it.
3672
3673 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
3674 POSIX 1003.1-2001 has removed fgrep.
3675
3676 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
3677
3678 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
3679 interpreted as signed.
3680 * lib/ebitset.c (ebitset_list): Fix bug.
3681
3682 2002-10-01 Paul Eggert <eggert@twinsun.com>
3683
3684 More fixes for 64-bit hosts and large bitsets.
3685
3686 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
3687 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
3688 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
3689 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
3690 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
3691 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
3692 bitset_count_): Likewise.
3693 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
3694 bitset_first, bitset_last): Likewise.
3695 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
3696 bitset_stats_list_reverse, bitset_stats_size,
3697 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
3698 Likewise.
3699 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
3700 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
3701 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
3702 bitsetv_reflexive_transitive_closure): Likewise.
3703 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
3704 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
3705 Likewise.
3706 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
3707 Likewise.
3708
3709 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
3710 Use size_t, not unsigned int, to count bytes.
3711 * lib/abitset.h (abitset_bytes): Likewise.
3712 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
3713 Likewise.
3714 * lib/bitset.h (bitset_bytes): Likewise.
3715 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
3716 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
3717 * lib/bitsetv.c (bitsetv_alloc): Likewise.
3718 * lib/ebitset.c (ebitset_bytes): Likewise.
3719 * lib/ebitset.h (ebitset_bytes): Likewise.
3720 * lib/lbitset.c (lbitset_bytes): Likewise.
3721 * lib/lbitset.h (lbitset_bytes): Likewise.
3722
3723 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
3724 abitset_subset_p, abitset_disjoint_p, abitset_and,
3725 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
3726 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
3727 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
3728 abitset_or_and, abitset_or_and_cmp):
3729 Use bitset_windex instead of unsigned int.
3730 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
3731 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
3732 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
3733 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
3734 Likewise.
3735 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
3736
3737 * lib/bitset.c (bitset_print):
3738 Use proper printf formats for widths of integer types.
3739 * lib/bitset_stats.c (bitset_percent_histogram_print,
3740 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
3741 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
3742 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
3743 * lib/lbitset.c (lbitset_bytes): Likewise.
3744
3745 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
3746 BITSET_SIZE_MAX): New macros.
3747 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
3748 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
3749 to BITSET_WINDEX_MAX.
3750
3751 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
3752 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
3753 since we now return the bitset_bindex type (not int).
3754
3755 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
3756 when computing sizes.
3757 * lib/ebitset.c (ebitset_elts_grow): Likewise.
3758
3759 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
3760 and avoid cast to unsigned.
3761
3762 2002-09-30 Akim Demaille <akim@epita.fr>
3763
3764 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
3765 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
3766 Updates from Michael Hayes.
3767
3768 2002-09-30 Art Haas <ahaas@neosoft.com>
3769
3770 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
3771 invocations.
3772 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
3773 defined.
3774
3775 2002-09-27 Akim Demaille <akim@epita.fr>
3776
3777 Version 1.49c.
3778
3779 2002-09-27 Akim Demaille <akim@epita.fr>
3780
3781 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
3782 (Because of AC_LIBSOURCE).
3783
3784 2002-09-27 Akim Demaille <akim@epita.fr>
3785
3786 Playing with Autoscan.
3787
3788 * configure.ac: Remove the old LIBOBJ tweaks.
3789 (AC_REPLACE_FUNCS): Add strrchr and strtol.
3790 * lib/strrchr.c: New.
3791 * lib/strtol.c: New, from the Coreutils 4.5.1.
3792
3793 2002-09-27 Akim Demaille <akim@epita.fr>
3794
3795 Playing with Autoscan.
3796
3797 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
3798 * lib/Makefile.am (libbison_a_SOURCES): No longer include
3799 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
3800 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
3801 Coreutils 4.5.1.
3802
3803 2002-09-24 Akim Demaille <akim@epita.fr>
3804
3805 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
3806 (Frequently Asked Questions, Parser Stack Overflow): New.
3807
3808 2002-09-13 Akim Demaille <akim@epita.fr>
3809
3810 Playing with autoscan.
3811
3812 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
3813 * src/files.c (skeleton_find): Remove, unused.
3814 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
3815 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
3816
3817 2002-09-13 Akim Demaille <akim@epita.fr>
3818
3819 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
3820 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
3821
3822 2002-09-13 Akim Demaille <akim@epita.fr>
3823
3824 * configure.ac: Require 2.54.
3825 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
3826 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
3827 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
3828 Remove, provided by Autoconf macros.
3829
3830 2002-09-12 Akim Demaille <akim@epita.fr>
3831
3832 * m4/prereq.m4: Update, from Coreutils 4.5.1.
3833
3834 2002-09-12 Akim Demaille <akim@epita.fr>
3835
3836 * m4/prereq.m4: Update, from Fileutils 4.1.5.
3837 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
3838 Reported by Martin Mokrejs.
3839
3840 2002-09-10 Akim Demaille <akim@epita.fr>
3841
3842 * src/parse-gram.y: Associate a human readable string to each
3843 token type.
3844 * tests/regression.at (Invalid inputs): Adjust.
3845
3846 2002-09-10 Gary V. Vaughan <gary@gnu.org>
3847
3848 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
3849 with an Autoconf-2.5x style configure.ac.
3850
3851 2002-09-06 Paul Eggert <eggert@twinsun.com>
3852
3853 * doc/bison.texinfo (Conditions): Make explicit that the GPL
3854 exception applies only to yacc.c. This is a modification of a
3855 patch originally suggested by Akim Demaille.
3856
3857 2002-09-06 Akim Demaille <akim@epita.fr>
3858
3859 * data/c.m4 (b4_copyright): Move the GPL exception comment from
3860 here to...
3861 * data/yacc.c: here.
3862
3863 * data/lalr1.cc (struct yyltype): Don't define it, since we use
3864 LocationType.
3865 (b4_ltype): Default to yy::Location from location.hh.
3866
3867 2002-09-04 Jim Meyering <jim@meyering.net>
3868
3869 * data/yacc.c: Guard the declaration of yytoknum also with
3870 `#ifdef YYPRINT', so it is declared only when used.
3871
3872 2002-09-04 Akim Demaille <akim@epita.fr>
3873
3874 * configure.in: Rename as...
3875 * configure.ac: this.
3876 Bump to 1.49c.
3877
3878 2002-09-04 Akim Demaille <akim@epita.fr>
3879
3880 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
3881 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
3882 translate maintainer only messages.
3883
3884 2002-08-12 Paul Eggert <eggert@twinsun.com>
3885
3886 Version 1.49b.
3887
3888 * Makefile.am (SUBDIRS): Remove intl.
3889 (DISTCLEANFILES): Remove.
3890 * NEWS: Mention that GNU M4 is now required. Clarify what is
3891 meant by "larger grammars". Mention the pt_BR translation.
3892 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
3893 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
3894 Bump version from 0.11.2 to 0.11.5.
3895 (BISON_PREREQ_STAGE): Remove.
3896 (AM_GNU_GETTEXT): Use external gettext.
3897 (AC_OUTPUT): Remove intl/Makefile.
3898
3899 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
3900
3901 * data/glr.c: Include string.h, for strlen.
3902 (yyreportParseError): Use size_t for yysize.
3903 (yy_yypstack): No longer nested inside yypstates, as nested
3904 functions are not portable. Do not assume size_t is the
3905 same width as int.
3906 (yypstates): Do not assume that ptrdiff_t is the same width
3907 as int, and similarly for yyposn and YYINDEX.
3908
3909 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
3910
3911 * lib/Makefile.am (INCLUDES): Do not include from the intl
3912 directory, which has been removed.
3913 * src/Makefile.am (INCLUDES): Likewise.
3914
3915 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
3916 (bitsets_sources, additional_bitsets_sources, timevars_sources):
3917 New vars.
3918
3919 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
3920 * tests/Makefile.am (EXTRA_DIST): Likewise.
3921
3922 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
3923 Do not assume that bitset_windex is the same width as unsigned.
3924
3925 * lib/abitset.c (abitset_unused_clear): Do not assume that
3926 bitset_word is the same width as int.
3927 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
3928 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
3929 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
3930 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
3931 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
3932
3933 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
3934 portability to one's complement hosts!).
3935 * lib/ebitset.c (ebitset_op1): Likewise.
3936 * lib/lbitset.c (lbitset_op1): Likewise.
3937
3938 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
3939 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
3940 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
3941 Sync with fileutils.
3942 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
3943 lib/gettext.h: Sync with diffutils.
3944
3945 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
3946 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
3947
3948 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
3949 PROTOTYPES to check for prototypes, and "defined __STDC__" to
3950 check for void *.
3951
3952 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
3953 size_t; the old version tried to do this but casted improperly.
3954 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
3955 (bitset_test): Now returns int, not unsigned long.
3956
3957 * lib/bitset_stats.c: Include "gettext.h".
3958 (_): New macro.
3959 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
3960 name locals "index", as it generates unnecessary warnings on some
3961 hosts that have an "index" function.
3962
3963 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
3964 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
3965 they need translation.
3966 * src/LR0.c (state_list_append, new_itemsets, get_state,
3967 append_states, generate_states): Likewise.
3968 * src/assoc.c (assoc_to_string): Likewise.
3969 * src/closure.c (print_closure, set_firsts, closure): Likewise.
3970 * src/gram.c (grammar_dump): Likewise.
3971 * src/injections.c (injections_compute): Likewise.
3972 * src/lalr.c (lookaheads_print): Likewise.
3973 * src/relation.c (relation_transpose): Likewise.
3974 * src/scan-gram.l: Likewise.
3975 * src/tables.c (table_grow, pack_vector): Likewise.
3976
3977 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
3978 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
3979 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
3980 * m4/mbstate_t.m4: Sync with fileutils.
3981 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
3982
3983 * po/LINGUAS: Add pt_BR.
3984 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
3985 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
3986 lib/timevar.c.
3987 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
3988 manual recommends.
3989 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
3990
3991 * src/complain.c (strerror_r): Remove decl; not needed.
3992 (strerror): Use same pattern as ../lib/error.c.
3993
3994 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
3995
3996 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
3997
3998 * src/main.c (main): Cast result of bindtextdomain and textdomain
3999 to void, to avoid a GCC warning when --disable-nls is in effect.
4000
4001 * src/scan-gram.l: Use strings rather than escapes when possible,
4002 to minimize the number of warnings from xgettext.
4003 (handle_action_dollar, handle_action_at): Don't use isdigit,
4004 as it mishandles negative chars and it may not work as expected
4005 outside the C locale.
4006
4007 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
4008 this is a GCC extension and is not portable to other compilers.
4009
4010 * src/system.h (alloca): Use same pattern as ../lib/error.c.
4011 Do not include <ctype.h>; no longer needed.
4012 Do not include <malloc.h>; no longer needed (and generates
4013 warnings on OpenBSD 3.0).
4014
4015 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
4016 it's not portable.
4017
4018 * tests/regression.at: Do not use 'cc -c input.c -o input';
4019 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
4020
4021 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
4022 exit status as failure, not just exit status 1. Sun C exits
4023 with status 2 sometimes.
4024
4025 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
4026 Use it for the two large tests.
4027
4028 2002-08-02 Akim Demaille <akim@epita.fr>
4029
4030 * src/conflicts.c (conflicts_output): Don't output rules never
4031 reduced here, since anyway that computation doesn't work.
4032 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
4033 (rule_useless_p, rule_never_reduced_p): New.
4034 (grammar_rules_partial_print): Use a filter instead of a range.
4035 Display the title only if needed.
4036 (grammar_rules_print): Adjust.
4037 (grammar_rules_never_reduced_report): New.
4038 * src/tables.c (action_row): Move the computation of rules never
4039 reduced to...
4040 (token_actions): here.
4041 * src/main.c (main): Make the parser before making the report, so
4042 that rules never reduced are computed.
4043 Call grammar_rules_never_reduced_report.
4044 * src/print.c (print_results): Report rules never reduced.
4045 * tests/conflicts.at, tests/reduce.at: Adjust.
4046
4047 2002-08-01 Akim Demaille <akim@epita.fr>
4048
4049 Instead of attaching lookaheads and duplicating the rules being
4050 reduced by a state, attach the lookaheads to the reductions.
4051
4052 * src/state.h (state_t): Remove the `lookaheads',
4053 `lookaheads_rule' member.
4054 (reductions_t): Add a `lookaheads' member.
4055 Use a regular array for the `rules'.
4056 * src/state.c (reductions_new): Initialize the lookaheads member
4057 to 0.
4058 (state_rule_lookaheads_print): Adjust.
4059 * src/state.h, src/state.c (state_reductions_find): New.
4060 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
4061 (count_rr_conflicts): Adjust.
4062 * src/lalr.c (LArule): Remove.
4063 (add_lookback_edge): Adjust.
4064 (state_lookaheads_count): New.
4065 (states_lookaheads_initialize): Merge into...
4066 (initialize_LA): this.
4067 (lalr_free): Adjust.
4068 * src/main.c (main): Don't free nullable and derives too early: it
4069 is used by --verbose.
4070 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
4071
4072 2002-08-01 Akim Demaille <akim@epita.fr>
4073
4074 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
4075 `rule_number_t**'.
4076 (set_derives, free_derives): Rename as...
4077 (derives_compute, derives_free): this.
4078 Adjust all dependencies.
4079 * src/nullable.c (set_nullable, free_nullable): Rename as...
4080 (nullable_compute, nullable_free): these.
4081 (rule_list_t): Store rule_t *, not rule_number_t.
4082 * src/state.c (state_rule_lookaheads_print): Directly compare rule
4083 pointers, instead of their numbers.
4084 * src/main.c (main): Call nullable_free, and derives_free earlier,
4085 as they were lo longer used.
4086
4087 2002-08-01 Akim Demaille <akim@epita.fr>
4088
4089 * lib/timevar.c (get_time): Include children time.
4090 * src/lalr.h (LA, LArule): Don't export them: used with the
4091 state_t.
4092 * src/lalr.c (LA, LArule): Static.
4093 * src/lalr.h, src/lalr.c (lalr_free): New.
4094 * src/main.c (main): Call it.
4095 * src/tables.c (pack_vector): Check whether loc is >= to the
4096 table_size, not >.
4097 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
4098 (tables_generate): do it, since that's also it which allocates
4099 them.
4100 Don't free LA and LArule, main does.
4101
4102 2002-07-31 Akim Demaille <akim@epita.fr>
4103
4104 Separate parser tables computation and output.
4105
4106 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
4107 (conflict_list, conflict_list_cnt, table, check, table_ninf)
4108 (yydefgoto, yydefact, high): Move to...
4109 * src/tables.h, src/tables.c: here.
4110 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
4111 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
4112 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
4113 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
4114 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
4115 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
4116 (action_row, save_row, token_actions, save_column, default_goto)
4117 (goto_actions, sort_actions, matching_state, pack_vector)
4118 (table_ninf_remap, pack_table, prepare_actions): Move to...
4119 * src/tables.c: here.
4120 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
4121 * src/output.c (token_actions, output_base, output_conflicts)
4122 (output_check): Merge into...
4123 (prepare_actions): this.
4124 (actions_output): Rename as...
4125 (user_actions_output): this.
4126 * src/main.c (main): Call tables_generate and tables_free.
4127
4128 2002-07-31 Akim Demaille <akim@epita.fr>
4129
4130 Steal GCC's --time-report support.
4131
4132 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
4133 stolen/adjusted from GCC.
4134 * m4/stage.m4: Remove time related checks.
4135 * m4/timevar.m4: New.
4136 * configure.in: Adjust.
4137 * src/system.h: Adjust to using timevar.h.
4138 * src/getargs.h, src/getargs.c: Support trace_time for
4139 --trace=time.
4140 * src/main.c (stage): Remove.
4141 (main): Replace `stage' invocations with timevar calls.
4142 * src/output.c: Insert pertinent timevar calls.
4143
4144 2002-07-31 Akim Demaille <akim@epita.fr>
4145
4146 Let --trace have arguments.
4147
4148 * src/getargs.h (enum trace_e): New.
4149 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
4150 (long_options, short_options): --trace/-T takes an optional
4151 argument.
4152 Change all the uses of trace_flag to reflect the new flags.
4153 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
4154
4155 Strengthen `stage' portability.
4156
4157 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
4158 * configure.in: Use it.
4159 Don't check for malloc.h and sys/times.h.
4160 * src/system.h: Include them when appropriate.
4161 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
4162 times and struct tms are available.
4163
4164 2002-07-30 Akim Demaille <akim@epita.fr>
4165
4166 In verbose parse error message, don't report `error' as an
4167 expected token.
4168 * tests/actions.at (Printers and Destructors): Adjust.
4169 * tests/calc.at (Calculator $1): Adjust.
4170 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
4171 error message, do not report the parser accepts the error token in
4172 that state.
4173
4174 2002-07-30 Akim Demaille <akim@epita.fr>
4175
4176 Normalize conflict related messages.
4177
4178 * src/complain.h, src/complain.c (warn, complain): New.
4179 * src/conflicts.c (conflicts_print): Use them.
4180 (conflict_report_yacc): New, extracted from...
4181 (conflicts_print): here.
4182 * tests/conflicts.at, tests/existing.at: Adjust.
4183
4184 2002-07-30 Akim Demaille <akim@epita.fr>
4185
4186 Report rules which are never reduced by the parser: those hidden
4187 by conflicts.
4188
4189 * src/LR0.c (save_reductions): Don't make the final state too
4190 different: save its reduction (accept) instead of having a state
4191 without any action (no shift or goto, no reduce).
4192 Note: the final state is now a ``regular'' state, i.e., the
4193 parsers now contain `reduce 0' as default reduction.
4194 Nevertheless, since they decide to `accept' when yystate =
4195 final_state, they still will not reduce rule 0.
4196 * src/print.c (print_actions, print_reduction): Adjust.
4197 * src/output.c (action_row): Track reduced rules.
4198 (token_actions): Report rules never reduced.
4199 * tests/conflicts.at, tests/regression.at: Adjust.
4200
4201 2002-07-30 Akim Demaille <akim@epita.fr>
4202
4203 `stage' was accidently included in a previous patch.
4204 Initiate its autoconfiscation.
4205
4206 * configure.in: Look for malloc.h and sys/times.h.
4207 * src/main.c (stage): Adjust.
4208 Report only when trace_flag.
4209
4210 2002-07-29 Akim Demaille <akim@epita.fr>
4211
4212 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
4213 state_number_t.
4214 (errs_t): symbol_t*, not symbol_number_t.
4215 (reductions_t): rule_t*, not rule_number_t.
4216 (FOR_EACH_SHIFT): New.
4217 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
4218 * src/print.c, src/print_graph.c: Adjust.
4219
4220 2002-07-29 Akim Demaille <akim@epita.fr>
4221
4222 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
4223
4224 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
4225 (endtoken, accept): these.
4226 * src/reader.c (reader): Set endtoken's default tag to "$end".
4227 Set undeftoken's tag to "$undefined" instead of "$undefined.".
4228 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
4229 Adjust.
4230
4231 2002-07-29 Akim Demaille <akim@epita.fr>
4232
4233 * src/reduce.c (reduce_grammar): When the language is empty,
4234 complain about the start symbol, not the axiom.
4235 Use its location.
4236 * tests/reduce.at (Empty Language): New.
4237
4238 2002-07-26 Akim Demaille <akim@epita.fr>
4239
4240 * src/reader.h, src/reader.c (gram_error): ... can't get
4241 yycontrol without making too strong assumptions on the parser
4242 itself.
4243 * src/output.c (prepare_tokens): Use the real 0th value of
4244 token_translations instead of `0'.
4245 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
4246 visible here.
4247 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
4248 for the time being: %locations ought to provide it to yyerror.
4249
4250 2002-07-25 Akim Demaille <akim@epita.fr>
4251
4252 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
4253 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
4254 * tests/regression.at (Web2c Actions): Adjust.
4255
4256 2002-07-25 Akim Demaille <akim@epita.fr>
4257
4258 Stop storing rules from 1 to nrules + 1.
4259
4260 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
4261 * src/nullable.c, src/output.c, src/print.c, src/reader.c
4262 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
4263 Iterate from 0 to nrules.
4264 Use rule_number_as_item_number and item_number_as_rule_number.
4265 Adjust to `derive' now containing possibly 0.
4266 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
4267 Handle the `- 1' part in rule numbers from/to item numbers.
4268 * src/conflicts.c (log_resolution): Fix the message which reversed
4269 shift and reduce.
4270 * src/output.c (action_row): Initialize default_rule to -1.
4271 (token_actions): Adjust.
4272 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
4273 expected output.
4274 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
4275
4276 2002-07-25 Akim Demaille <akim@epita.fr>
4277
4278 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
4279 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
4280 (b4_c_knr_arg_decl): New.
4281 * data/yacc.c: Use it to define yysymprint, yydestruct, and
4282 yyreport_parse_error.
4283
4284 2002-07-25 Akim Demaille <akim@epita.fr>
4285
4286 * data/yacc.c (yyreport_parse_error): New, extracted from...
4287 (yyparse): here.
4288 (yydestruct, yysymprint): Move above yyparse.
4289 Be K&R compliant.
4290
4291 2002-07-25 Akim Demaille <akim@epita.fr>
4292
4293 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
4294 replace...
4295 (b4_sint_type, b4_uint_type): these.
4296 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
4297 * tests/regression.at (Web2c Actions): Adjust.
4298
4299 2002-07-25 Akim Demaille <akim@epita.fr>
4300
4301 * src/gram.h (TIEM_NUMBER_MAX): New.
4302 (item_number_of_rule_number, rule_number_of_item_number): Rename
4303 as...
4304 (rule_number_as_item_number, item_number_as_rule_number): these.
4305 Adjust dependencies.
4306 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
4307 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
4308 (symbol_number_to_vector_number): New.
4309 (order): Of vector_number_t* type.
4310 (base_t, BASE_MAX, BASE_MIN): New.
4311 (froms, tos, width, pos, check): Of base_t type.
4312 (action_number_t, ACTION_MIN, ACTION_MAX): New.
4313 (actrow): Of action_number_t type.
4314 (conflrow): Of unsigned int type.
4315 (table_ninf, base_ninf): New.
4316 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
4317 (muscle_insert_int_table, muscle_insert_base_table)
4318 (muscle_insert_rule_number_table): New.
4319 (prepare_tokens): Output `toknum' as int_table.
4320 (action_row): Returns a rule_number_t.
4321 Use ACTION_MIN, not SHRT_MIN.
4322 (token_actions): yydefact is rule_number_t*.
4323 (table_ninf_remap): New.
4324 (pack_table): Use it for `base' and `table'.
4325 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
4326 replaced with...
4327 (YYPACT_NINF, YYTABLE_NINF): these.
4328 (yypact, yytable): Compute their types instead of hard-coded
4329 `short'.
4330 * tests/regression.at (Web2c Actions): Adjust.
4331
4332 2002-07-19 Akim Demaille <akim@epita.fr>
4333
4334 * src/scan-gram.l (id): Can start with an underscore.
4335
4336 2002-07-16 Akim Demaille <akim@epita.fr>
4337
4338 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
4339 Adjust all former `associativity' dependencies.
4340 * src/symtab.c (symbol_new): Default associativity is `undef', not
4341 `right'.
4342 (symbol_check_alias_consistence): Adjust.
4343
4344 2002-07-09 Akim Demaille <akim@epita.fr>
4345
4346 * doc/bison.texinfo: Properly set the ``header'' part.
4347 Use @dircategory ``GNU programming tools'' as per Texinfo's
4348 documentation.
4349 Use @copying.
4350
4351 2002-07-09 Akim Demaille <akim@epita.fr>
4352
4353 * lib/quotearg.h: Protect against multiple inclusions.
4354 * src/location.h (location_t): Add a `file' member.
4355 (LOCATION_RESET, LOCATION_PRINT): Adjust.
4356 * src/complain.c (warn_at, complain_at, fatal_at): Drop
4357 `error_one_per_line' support.
4358
4359 2002-07-09 Akim Demaille <akim@epita.fr>
4360
4361 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
4362 * src/reader.c (lineno): Remove.
4363 Adjust all dependencies.
4364 (get_merge_function): Take a location and use complain_at.
4365 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
4366 * tests/regression.at (Invalid inputs, Mixing %token styles):
4367 Adjust.
4368
4369 2002-07-09 Akim Demaille <akim@epita.fr>
4370
4371 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
4372 recovery rule, and forbid extensions when --yacc.
4373 (gram_error): Use complain_at.
4374 * src/reader.c (reader): Exit if there were parse errors.
4375
4376 2002-07-09 Akim Demaille <akim@epita.fr>
4377
4378 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
4379 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
4380 Reported by R Blake <blakers@mac.com>.
4381
4382 2002-07-09 Akim Demaille <akim@epita.fr>
4383
4384 * data/yacc.c: Output the copyright notive in the header.
4385
4386 2002-07-03 Akim Demaille <akim@epita.fr>
4387
4388 * src/output.c (froms, tos): Are state_number_t.
4389 (save_column): sp, sp1, and sp2 are state_number_t.
4390 (prepare): Rename `final' as `final_state_number', `nnts' as
4391 `nterms_number', `nrules' as `rules_number', `nstates' as
4392 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
4393 unused.
4394 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
4395 * data/lalr1.cc (nsym_): Remove, unused.
4396
4397 2002-07-03 Akim Demaille <akim@epita.fr>
4398
4399 * src/lalr.h, src/lalr.c (goto_number_t): New.
4400 * src/lalr.c (goto_list_t): New.
4401 Propagate them.
4402 * src/nullable.c (rule_list_t): New.
4403 Propagate.
4404 * src/types.h: Remove.
4405
4406 2002-07-03 Akim Demaille <akim@epita.fr>
4407
4408 * src/closure.c (print_fderives): Use rule_rhs_print.
4409 * src/derives.c (print_derives): Use rule_rhs_print.
4410 (rule_list_t): New, replaces `shorts'.
4411 (set_derives): Add comments.
4412 * tests/sets.at (Nullable, Firsts): Adjust.
4413
4414 2002-07-03 Akim Demaille <akim@epita.fr>
4415
4416 * src/output.c (prepare_actions): Free `tally' and `width'.
4417 (prepare_actions): Allocate and free `order'.
4418 * src/symtab.c (symbols_free): Free `symbols'.
4419 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
4420 * src/output.c (m4_invoke): Move to...
4421 * src/scan-skel.l: here.
4422 (<<EOF>>): Close yyout, and free its name.
4423
4424 2002-07-03 Akim Demaille <akim@epita.fr>
4425
4426 Fix some memory leaks, and fix a bug: state 0 was examined twice.
4427
4428 * src/LR0.c (new_state): Merge into...
4429 (state_list_append): this.
4430 (new_states): Merge into...
4431 (generate_states): here.
4432 (set_states): Don't ensure a proper `errs' state member here, do it...
4433 * src/conflicts.c (conflicts_solve): here.
4434 * src/state.h, src/state.c: Comment changes.
4435 (state_t): Rename member `shifts' as `transitions'.
4436 Adjust all dependencies.
4437 (errs_new): For consistency, also take the values as argument.
4438 (errs_dup): Remove.
4439 (state_errs_set): New.
4440 (state_reductions_set, state_transitions_set): Assert that no
4441 previous value was assigned.
4442 (state_free): New.
4443 (states_free): Use it.
4444 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
4445 temporary storage: use `errs' and `nerrs' as elsewhere.
4446 (set_conflicts): Allocate and free this `errs'.
4447
4448 2002-07-02 Akim Demaille <akim@epita.fr>
4449
4450 * lib/libiberty.h: New.
4451 * lib: Update the bitset implementation from upstream.
4452 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
4453 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
4454 * src/main.c: Adjust bitset stats calls.
4455
4456 2002-07-01 Paul Eggert <eggert@twinsun.com>
4457
4458 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
4459 char, so that negative chars don't collide with $.
4460
4461 2002-06-30 Akim Demaille <akim@epita.fr>
4462
4463 Have the GLR tests be `warning' checked, and fix the warnings.
4464
4465 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
4466 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
4467 (yyremoveDeletes): `yyi' and `yyj' are size_t.
4468 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
4469 (yyaddDeferredAction): static.
4470 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
4471 (yyreportParseError): yyprefix is const.
4472 yytokenp is used only when verbose.
4473 (yy__GNUC__): Replace with __GNUC__.
4474 (yypdumpstack): yyi is size_t.
4475 (yypreference): Un-yy local variables and arguments, to avoid
4476 clashes with `yyr1'. Anyway, we are not in the user name space.
4477 (yytname_size): be an int, as is compared with ints.
4478 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
4479 Use them.
4480 * tests/cxx-gram.at: Use quotation to protect $1.
4481 Use AT_COMPILE to enable warnings hunts.
4482 Prototype yylex and yyerror.
4483 `Use' argc.
4484 Include `string.h', not `strings.h'.
4485 Produce and prototype stmtMerge only when used.
4486 yylex takes a location.
4487
4488 2002-06-30 Akim Demaille <akim@epita.fr>
4489
4490 We spend a lot of time in quotearg, in particular when --verbose.
4491
4492 * src/symtab.c (symbol_get): Store a quoted version of the key.
4493 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
4494 Adjust all callers.
4495
4496 2002-06-30 Akim Demaille <akim@epita.fr>
4497
4498 * src/state.h (reductions_t): Rename member `nreds' as num.
4499 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
4500 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
4501
4502 2002-06-30 Akim Demaille <akim@epita.fr>
4503
4504 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
4505 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
4506 (shifts_to): Rename as...
4507 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
4508 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
4509 (TRANSITION_IS_DISABLED, transitions_to): these.
4510
4511 2002-06-30 Akim Demaille <akim@epita.fr>
4512
4513 * src/print.c (print_shifts, print_gotos): Merge into...
4514 (print_transitions): this.
4515 (print_transitions, print_errs, print_reductions): Align the
4516 lookaheads columns.
4517 (print_core, print_transitions, print_errs, print_state,
4518 print_grammar): Output empty lines separator before, not after.
4519 (state_default_rule_compute): Rename as...
4520 (state_default_rule): this.
4521 * tests/conflicts.at (Defaulted Conflicted Reduction),
4522 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
4523 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
4524
4525 2002-06-30 Akim Demaille <akim@epita.fr>
4526
4527 Display items as we display rules.
4528
4529 * src/gram.h, src/gram.c (rule_lhs_print): New.
4530 * src/gram.c (grammar_rules_partial_print): Use it.
4531 * src/print.c (print_core): Likewise.
4532 * tests/conflicts.at (Defaulted Conflicted Reduction),
4533 (Unresolved SR Conflicts): Adjust.
4534 (Unresolved SR Conflicts): Adjust and rename as...
4535 (Resolved SR Conflicts): this, as was meant.
4536 * tests/regression.at (Web2c Report): Adjust.
4537
4538 2002-06-30 Akim Demaille <akim@epita.fr>
4539
4540 * src/print.c (state_default_rule_compute): New, extracted from...
4541 (print_reductions): here.
4542 Pessimize, but clarify the code.
4543 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
4544
4545 2002-06-30 Akim Demaille <akim@epita.fr>
4546
4547 * src/output.c (action_row): Let default_rule be always a rule
4548 number.
4549
4550 2002-06-30 Akim Demaille <akim@epita.fr>
4551
4552 * src/closure.c (print_firsts, print_fderives, closure):
4553 Use BITSET_EXECUTE.
4554 * src/lalr.c (lookaheads_print): Likewise.
4555 * src/state.c (state_rule_lookaheads_print): Likewise.
4556 * src/print_graph.c (print_core): Likewise.
4557 * src/print.c (print_reductions): Likewise.
4558 * src/output.c (action_row): Likewise.
4559 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
4560
4561 2002-06-30 Akim Demaille <akim@epita.fr>
4562
4563 * src/print_graph.c: Use report_flag.
4564
4565 2002-06-30 Akim Demaille <akim@epita.fr>
4566
4567 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
4568 to...
4569 * src/relation.h, src/relation.c (traverse, relation_digraph)
4570 (relation_print, relation_transpose): New.
4571
4572 2002-06-30 Akim Demaille <akim@epita.fr>
4573
4574 * src/state.h, src/state.c (shifts_to): New.
4575 * src/lalr.c (build_relations): Use it.
4576
4577 2002-06-30 Akim Demaille <akim@epita.fr>
4578
4579 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
4580 (item_number_of_rule_number, rule_number_of_item_number): New.
4581 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
4582 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
4583 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
4584 Propagate their use.
4585 Much remains to be done, in particular wrt `shorts' from types.h.
4586
4587 2002-06-30 Akim Demaille <akim@epita.fr>
4588
4589 * src/symtab.c (symbol_new): Initialize the `printer' member.
4590
4591 2002-06-30 Akim Demaille <akim@epita.fr>
4592
4593 * src/LR0.c (save_reductions): Remove, replaced by...
4594 * src/state.h, src/state.c (state_reductions_set): New.
4595 (reductions, errs): Rename as...
4596 (reductions_t, errs_t): these.
4597 Adjust all dependencies.
4598
4599 2002-06-30 Akim Demaille <akim@epita.fr>
4600
4601 * src/LR0.c (state_list_t, state_list_append): New.
4602 (first_state, last_state): Now symbol_list_t.
4603 (this_state): Remove.
4604 (new_itemsets, append_states, save_reductions): Take a state_t as
4605 argument.
4606 (set_states, generate_states): Adjust.
4607 (save_shifts): Remove, replaced by...
4608 * src/state.h, src/state.c (state_shifts_set): New.
4609 (shifts): Rename as...
4610 (shifts_t): this.
4611 Adjust all dependencies.
4612 * src/state.h (state_t): Remove the `next' member.
4613
4614 2002-06-30 Akim Demaille <akim@epita.fr>
4615
4616 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
4617 escaped in slot 0.
4618
4619 2002-06-30 Akim Demaille <akim@epita.fr>
4620
4621 Use hash.h for the state hash table.
4622
4623 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
4624 (allocate_storage): Use state_hash_new.
4625 (free_storage): Use state_hash_free.
4626 (new_state, get_state): Adjust.
4627 * src/lalr.h, src/lalr.c (states): Move to...
4628 * src/states.h (state_t): Remove the `link' member, no longer
4629 used.
4630 * src/states.h, src/states.c: here.
4631 (state_hash_new, state_hash_free, state_hash_lookup)
4632 (state_hash_insert, states_free): New.
4633 * src/states.c (state_table, state_compare, state_hash): New.
4634 * src/output.c (output_actions): Do not free states now, since we
4635 still need to know the final_state number in `prepare', called
4636 afterwards. Do it...
4637 * src/main.c (main): here: call states_free after `output'.
4638
4639 2002-06-30 Akim Demaille <akim@epita.fr>
4640
4641 * src/state.h, src/state.c (state_new): New, extracted from...
4642 * src/LR0.c (new_state): here.
4643 * src/state.h (STATE_ALLOC): Move to...
4644 * src/state.c: here.
4645 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
4646 * src/state.h, src/state.c: here.
4647
4648 2002-06-30 Akim Demaille <akim@epita.fr>
4649
4650 * src/reader.c (gensym): Rename as...
4651 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
4652 (getsym): Rename as...
4653 (symbol_get): this.
4654
4655 2002-06-30 Akim Demaille <akim@epita.fr>
4656
4657 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
4658 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
4659 * src/output.c, src/print.c, src/print_graph.c: Propagate.
4660 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
4661
4662 2002-06-30 Akim Demaille <akim@epita.fr>
4663
4664 Make the test suite pass with warnings checked.
4665
4666 * tests/actions.at (Printers and Destructors): Improve.
4667 Avoid unsigned vs. signed issues.
4668 * tests/calc.at: Don't exercise the scanner here, do it...
4669 * tests/input.at (Torturing the Scanner): here.
4670
4671 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4672
4673 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
4674 reorganize first lines parallel to yacc.c.
4675
4676 2002-06-28 Akim Demaille <akim@epita.fr>
4677
4678 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
4679 (b4_token_enum, b4_token_defines): New, factored from...
4680 * data/lalr1.cc, data/yacc.c, glr.c: here.
4681
4682 2002-06-28 Akim Demaille <akim@epita.fr>
4683
4684 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
4685 unused variables.
4686 * src/output.c (merger_output): static.
4687
4688 2002-06-28 Akim Demaille <akim@epita.fr>
4689
4690 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
4691 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
4692 pacify GCC.
4693 * src/output.c (save_row): Initialize all the variables to pacify GCC.
4694
4695 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4696
4697 Accumulated changelog for new GLR parsing features.
4698
4699 * src/conflicts.c (count_total_conflicts): Change name to
4700 conflicts_total_count.
4701 * src/conflicts.h: Ditto.
4702 * src/output.c (token_actions): Use the new name.
4703 (output_conflicts): Change conflp => conflict_list_heads, and
4704 confl => conflict_list for better readability.
4705 * data/glr.c: Use the new names.
4706 * NEWS: Add self to GLR announcement.
4707
4708 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
4709
4710 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
4711 Akim Demaille.
4712
4713 * data/bison.glr: Change name to glr.c
4714 * data/glr.c: Renamed from bison.glr.
4715 * data/Makefile.am: Add glr.c
4716
4717 * src/getargs.c:
4718
4719 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
4720 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
4721
4722 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4723
4724 * data/bison.glr: Be sure to restore the
4725 current #line when returning to the skeleton contents after having
4726 exposed the input file's #line.
4727
4728 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4729
4730 * data/bison.glr: Bring up to date with changes to bison.simple.
4731
4732 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4733
4734 * data/bison.glr: Correct definitions that use b4_prefix.
4735 Various reformatting.
4736 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
4737 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
4738 yytokenp argument; now part of stack.
4739 (yychar): Define to behave as documented.
4740 (yyclearin): Ditto.
4741
4742 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4743
4744 * src/reader.h: Add declaration for free_merger_functions.
4745
4746 * src/reader.c (merge_functions): New variable.
4747 (get_merge_function): New function.
4748 (free_merger_functions): New function.
4749 (readgram): Check for %prec that is not followed by a symbol.
4750 Handle %dprec and %merge declarations.
4751 (packgram): Initialize dprec and merger fields in rules array.
4752
4753 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
4754 conflict_list_cnt, conflict_list_free): New variables.
4755 (table_grow): Also grow conflict_table.
4756 (prepare_rules): Output dprec and merger tables.
4757 (conflict_row): New function.
4758 (action_row): Output conflict lists for GLR parser. Don't use
4759 default reduction in conflicted states for GLR parser so that there
4760 are spaces for the conflict lists.
4761 (save_row): Also save conflict information.
4762 (token_actions): Allocate conflict list.
4763 (merger_output): New function.
4764 (pack_vector): Pack conflict table, too.
4765 (output_conflicts): New function to output yyconflp and yyconfl.
4766 (output_check): Allocate conflict_tos.
4767 (output_actions): Output conflict tables, also.
4768 (output_skeleton): Output b4_mergers definition.
4769 (prepare): Output b4_max_rhs_length definition.
4770 Use 'bison.glr' as default skeleton for GLR parsers.
4771
4772 * src/gram.c (glr_parser): New flag.
4773 (grammar_free): Call free_merger_functions.
4774
4775 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
4776 all pairs of conflicting reductions, rather than just all tokens
4777 causing conflicts. Needed to size conflict tables.
4778 (conflicts_output): Modify call to count_rr_conflicts for new
4779 interface.
4780 (conflicts_print): Ditto.
4781 (count_total_conflicts): New function.
4782
4783 * src/reader.h (merger_list): New type.
4784 (merge_functions): New variable.
4785
4786 * src/lex.h (tok_dprec, tok_merge): New token types.
4787
4788 * src/gram.h (rule_s): Add dprec and merger fields.
4789 (glr_parser): New flag.
4790
4791 * src/conflicts.h (count_total_conflicts): New function.
4792
4793 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
4794
4795 * doc/bison.texinfo (Generalized LR Parsing): New section.
4796 (GLR Parsers): New section.
4797 (Language and Grammar): Mention GLR parsing.
4798 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
4799 Correct typo ("tge" -> "the").
4800
4801 * data/bison.glr: New skeleton for GLR parsing.
4802
4803 * tests/cxx-gram.at: New tests for GLR parsing.
4804
4805 * tests/testsuite.at: Include cxx-gram.at.
4806
4807 * tests/Makefile.am: Add cxx-gram.at.
4808
4809 * src/parse-gram.y:
4810
4811 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
4812
4813 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
4814
4815 2002-06-27 Akim Demaille <akim@epita.fr>
4816
4817 * src/options.h, src/options.c: Remove.
4818 * src/getargs.c (short_options, long_options): New.
4819
4820 2002-06-27 Akim Demaille <akim@epita.fr>
4821
4822 * data/bison.simple, data/bison.c++: Rename as...
4823 * data/yacc.c, data/lalr1.cc: these.
4824 * doc/bison.texinfo (Environment Variables): Remove.
4825
4826 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
4827
4828 * src/getargs.c (report_argmatch): Initialize strtok().
4829
4830 2002-06-20 Akim Demaille <akim@epita.fr>
4831
4832 * data/bison.simple (b4_symbol_actions): New, replaces...
4833 (b4_symbol_destructor, b4_symbol_printer): these.
4834 (yysymprint): Be sure to call YYPRINT only for tokens, and using
4835 user token numbers.
4836
4837 2002-06-20 Akim Demaille <akim@epita.fr>
4838
4839 * data/bison.simple (yydestructor): Rename as...
4840 (yydestruct): this.
4841
4842 2002-06-20 Akim Demaille <akim@epita.fr>
4843
4844 * src/symtab.h, src/symtab.c (symbol_type_set)
4845 (symbol_destructor_set, symbol_precedence_set): The location is
4846 the last argument.
4847 Adjust all callers.
4848
4849 2002-06-20 Akim Demaille <akim@epita.fr>
4850
4851 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
4852 internals.
4853 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
4854 Takes a location.
4855 * src/symtab.h, src/symtab.c (symbol_class_set)
4856 (symbol_user_token_number_set): Likewise.
4857 Adjust all callers.
4858 Promote complain_at.
4859 * tests/input.at (Type Clashes): Adjust.
4860
4861 2002-06-20 Akim Demaille <akim@epita.fr>
4862
4863 * data/bison.simple (YYLEX): Fix the declaration when
4864 %pure-parser.
4865
4866 2002-06-20 Akim Demaille <akim@epita.fr>
4867
4868 * data/bison.simple (yysymprint): Don't print the token number,
4869 just its name.
4870 * tests/actions.at (Destructors): Rename as...
4871 (Printers and Destructors): this.
4872 Also exercise %printer.
4873
4874 2002-06-20 Akim Demaille <akim@epita.fr>
4875
4876 * data/bison.simple (YYDSYMPRINT): New.
4877 Use it to remove many of the #if YYDEBUG/if (yydebug).
4878
4879 2002-06-20 Akim Demaille <akim@epita.fr>
4880
4881 * src/symtab.h, src/symtab.c (symbol_t): printer and
4882 printer_location are new members.
4883 (symbol_printer_set): New.
4884 * src/parse-gram.y (PERCENT_PRINTER): New token.
4885 Handle its associated rule.
4886 * src/scan-gram.l: Adjust.
4887 (handle_destructor_at, handle_destructor_dollar): Rename as...
4888 (handle_symbol_code_at, handle_symbol_code_dollar): these.
4889 * src/output.c (symbol_printers_output): New.
4890 (output_skeleton): Call it.
4891 * data/bison.simple (yysymprint): New. Cannot be named yyprint
4892 since there are already many grammar files with a user `yyprint'.
4893 Replace the calls to YYPRINT to calls to yysymprint.
4894 * tests/calc.at: Adjust.
4895 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
4896 taking advantage of parser very internal details (stack size!).
4897
4898 2002-06-20 Akim Demaille <akim@epita.fr>
4899
4900 * src/scan-gram.l: Complete the scanner with the missing patterns
4901 to pacify Flex.
4902 Use `quote' and `symbol_tag_get' where appropriate.
4903
4904 2002-06-19 Akim Demaille <akim@epita.fr>
4905
4906 * tests/actions.at (Destructors): Augment to test locations.
4907 * data/bison.simple (yydestructor): Pass it the current location
4908 if locations are enabled.
4909 Prototype only when __STDC__ or C++.
4910 Change the argument names to move into the yy name space: there is
4911 user code here.
4912
4913 2002-06-19 Akim Demaille <akim@epita.fr>
4914
4915 * data/bison.simple (b4_pure_if): New.
4916 Use it instead of #ifdef YYPURE.
4917
4918 2002-06-19 Akim Demaille <akim@epita.fr>
4919
4920 * data/bison.simple (b4_location_if): New.
4921 Use it instead of #ifdef YYLSP_NEEDED.
4922
4923 2002-06-19 Akim Demaille <akim@epita.fr>
4924
4925 Prepare @$ in %destructor, but currently don't bind it in the
4926 skeleton, as %location use is not cleaned up yet.
4927
4928 * src/scan-gram.l (handle_dollar, handle_destructor_at)
4929 (handle_action_at): New.
4930 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
4931 a braced_code_t and a location as additional arguments.
4932 (handle_destructor_dollar): Instead of requiring `b4_eval', just
4933 unquote one when outputting `b4_dollar_dollar'.
4934 Adjust callers.
4935 * data/bison.simple (b4_eval): Remove.
4936 (b4_symbol_destructor): Adjust.
4937 * tests/input.at (Invalid @n): Adjust.
4938
4939 2002-06-19 Zack Weinberg <zack@codesourcery.com>
4940
4941 * doc/bison.texinfo: Document ability to have multiple
4942 prologue sections.
4943
4944 2002-06-18 Akim Demaille <akim@epita.fr>
4945
4946 * src/files.c (compute_base_names): When computing the output file
4947 names from the input file name, strip the directory part.
4948
4949 2002-06-18 Akim Demaille <akim@epita.fr>
4950
4951 * data/bison.simple.new: Comment changes.
4952 Reported by Andreas Schwab.
4953
4954 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
4955
4956 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
4957 there are no `label `yyoverflowlab' defined but not used' warnings
4958 when yyoverflow is defined.
4959
4960 2002-06-18 Akim Demaille <akim@epita.fr>
4961
4962 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
4963 new member.
4964 (symbol_destructor_set): Adjust.
4965 * src/output.c (symbol_destructors_output): Output the destructor
4966 locations.
4967 Output the symbol name.
4968 * data/bison.simple (b4_symbol_destructor): Adjust.
4969
4970 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
4971 and Akim Demaille <akim@epita.fr>
4972
4973 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
4974 what's left on the stack when the error recovery hits EOF.
4975 * tests/actions.at (Destructors): Complete to exercise this case.
4976
4977 2002-06-17 Akim Demaille <akim@epita.fr>
4978
4979 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
4980 arguments is really empty, not only equal to `[]'.
4981 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
4982 member.
4983 (symbol_destructor_set): New.
4984 * src/output.c (symbol_destructors_output): New.
4985 * src/reader.h (brace_code_t, current_braced_code): New.
4986 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
4987 (handle_dollar): Rename as...
4988 (handle_action_dollar): this.
4989 (handle_destructor_dollar): New.
4990 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
4991 (grammar_declaration): Use it.
4992 * data/bison.simple (yystos): Is always defined.
4993 (yydestructor): New.
4994 * tests/actions.at (Destructors): New.
4995 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
4996
4997 2002-06-17 Akim Demaille <akim@epita.fr>
4998
4999 * src/symlist.h, src/symlist.c (symbol_list_length): New.
5000 * src/scan-gram.l (handle_dollar, handle_at): Compute the
5001 rule_length only when needed.
5002 * src/output.c (actions_output, token_definitions_output): Output
5003 the full M4 block.
5004 * src/symtab.c: Don't access directly to the symbol tag, use
5005 symbol_tag_get.
5006 * src/parse-gram.y: Use symbol_list_free.
5007
5008 2002-06-17 Akim Demaille <akim@epita.fr>
5009
5010 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
5011 (symbol_list_prepend, get_type_name): Move to...
5012 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
5013 (symbol_list_prepend, symbol_list_n_type_name_get): here.
5014 Adjust all callers.
5015 (symbol_list_free): New.
5016 * src/scan-gram.l (handle_dollar): Takes a location.
5017 * tests/input.at (Invalid $n): Adjust.
5018
5019 2002-06-17 Akim Demaille <akim@epita.fr>
5020
5021 * src/reader.h, src/reader.c (symbol_list_new): Export it.
5022 (symbol_list_prepend): New.
5023 * src/parse-gram.y (%union): `list' is a new member.
5024 (symbols.1): New, replaces...
5025 (terms_to_prec.1, nterms_to_type.1): these.
5026 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
5027 Take a location as additional argument.
5028 Adjust all callers.
5029
5030 2002-06-15 Akim Demaille <akim@epita.fr>
5031
5032 * src/parse-gram.y: Move %token in the declaration section so that
5033 we don't depend upon CVS Bison.
5034
5035 2002-06-15 Akim Demaille <akim@epita.fr>
5036
5037 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
5038 * src/print.c (print_core): Use it.
5039
5040 2002-06-15 Akim Demaille <akim@epita.fr>
5041
5042 * src/conflicts.c (log_resolution): Accept the rule involved in
5043 the sr conflicts instead of the lookahead number that points to
5044 that rule.
5045 (flush_reduce): Accept the current lookahead vector as argument,
5046 instead of the index in LA.
5047 (resolve_sr_conflict): Accept the current number of lookahead
5048 bitset to consider for the STATE, instead of the index in LA.
5049 (set_conflicts): Adjust.
5050 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
5051
5052 2002-06-15 Akim Demaille <akim@epita.fr>
5053
5054 * src/state.h (state_t): Replace the `lookaheadsp' member, a
5055 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
5056 Adjust all dependencies.
5057 * src/lalr.c (initialize_lookaheads): Split into...
5058 (states_lookaheads_count, states_lookaheads_initialize): these.
5059 (lalr): Adjust.
5060
5061 2002-06-15 Akim Demaille <akim@epita.fr>
5062
5063 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
5064 out of...
5065 (grammar_rules_print): here.
5066 * src/reduce.c (reduce_output): Use it.
5067 * tests/reduce.at (Useless Rules, Reduced Automaton)
5068 (Underivable Rules): Adjust.
5069
5070 2002-06-15 Akim Demaille <akim@epita.fr>
5071
5072 Copy BYacc's nice way to report the grammar.
5073
5074 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
5075 New.
5076 Don't print the rules' location, it is confusing and useless.
5077 (rule_print): Use grammar_rhs_print.
5078 * src/print.c (print_grammar): Use grammar_rules_print.
5079
5080 2002-06-15 Akim Demaille <akim@epita.fr>
5081
5082 Complete and rationalize `useless thing' warnings.
5083
5084 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
5085 (symbol_tag_print): New.
5086 Use them everywhere in place of accessing directly the tag member.
5087 * src/gram.h, src/gram.c (rule_print): New.
5088 Use it where a rule used to be printed `by hand'.
5089 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
5090 (reduce_grammar_tables): Report the useless rules.
5091 (reduce_print): Useless things are a warning, not an error.
5092 Report it as such.
5093 * tests/reduce.at (Useless Nonterminals, Useless Rules):
5094 (Reduced Automaton, Underivable Rules): Adjust.
5095 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
5096 * tests/conflicts.at (Unresolved SR Conflicts)
5097 (Solved SR Conflicts): Adjust.
5098
5099 2002-06-15 Akim Demaille <akim@epita.fr>
5100
5101 Let symbols have a location.
5102
5103 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
5104 (getsym): Adjust.
5105 Adjust all callers.
5106 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
5107 Use location_t, not int.
5108 * src/symtab.c (symbol_check_defined): Take advantage of the
5109 location.
5110 * tests/regression.at (Invalid inputs): Adjust.
5111
5112 2002-06-15 Akim Demaille <akim@epita.fr>
5113
5114 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
5115 (input): Don't try to initialize yylloc here, do it in the
5116 scanner.
5117 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
5118 * src/gram.h (rule_t): Change line and action_line into location
5119 and action_location, of location_t type.
5120 Adjust all dependencies.
5121 * src/location.h, src/location.c (empty_location): New.
5122 * src/reader.h, src/reader.c (grammar_start_symbol_set)
5123 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
5124 (grammar_current_rule_symbol_append)
5125 (grammar_current_rule_action_append): Expect a location as argument.
5126 * src/reader.c (grammar_midrule_action): Adjust to attach an
5127 action's location as dummy symbol location.
5128 * src/symtab.h, src/symtab.c (startsymbol_location): New.
5129 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
5130 the line numbers.
5131
5132 2002-06-14 Akim Demaille <akim@epita.fr>
5133
5134 Grammar declarations may be found in the grammar section.
5135
5136 * src/parse-gram.y (rules_or_grammar_declaration): New.
5137 (declarations): Each declaration may end with a semicolon, not
5138 just...
5139 (grammar_declaration): `"%union"'.
5140 (grammar): Branch to rules_or_grammar_declaration.
5141
5142 2002-06-14 Akim Demaille <akim@epita.fr>
5143
5144 * src/main.c (main): Invoke scanner_free.
5145
5146 2002-06-14 Akim Demaille <akim@epita.fr>
5147
5148 * src/output.c (m4_invoke): Extracted from...
5149 (output_skeleton): here.
5150 Free tempfile.
5151
5152 2002-06-14 Akim Demaille <akim@epita.fr>
5153
5154 * src/parse-gram.y (directives, directive, gram)
5155 (grammar_directives, precedence_directives, precedence_directive):
5156 Rename as...
5157 (declarations, declaration, grammar, grammar_declaration)
5158 (precedence_declaration, precedence_declarator): these.
5159 (symbol_declaration): New.
5160
5161 2002-06-14 Akim Demaille <akim@epita.fr>
5162
5163 * src/files.c (action_obstack): Remove, unused.
5164 (output_obstack): Remove it, and all its dependencies, as it is no
5165 longer needed.
5166 * src/reader.c (epilogue_set): Build the epilogue in the
5167 muscle_obstack.
5168 * src/output.h, src/output.c (muscle_obstack): Move to...
5169 * src/muscle_tab.h, src/muscle_tab.h: here.
5170 (muscle_init): Initialize muscle_obstack.
5171 (muscle_free): New.
5172 * src/main.c (main): Call it.
5173
5174 2002-06-14 Akim Demaille <akim@epita.fr>
5175
5176 * src/location.h: New, extracted from...
5177 * src/reader.h: here.
5178 * src/Makefile.am (noinst_HEADERS): Merge into
5179 (bison_SOURCES): this.
5180 Add location.h.
5181 * src/parse-gram.y: Use location_t instead of Bison's.
5182 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
5183 Use location_t instead of ints.
5184
5185 2002-06-14 Akim Demaille <akim@epita.fr>
5186
5187 * data/bison.simple, data/bison.c++: Be sure to restore the
5188 current #line when returning to the skeleton contents after having
5189 exposed the input file's #line.
5190
5191 2002-06-12 Akim Demaille <akim@epita.fr>
5192
5193 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
5194 eager.
5195 * tests/actions.at (Exotic Dollars): New.
5196
5197 2002-06-12 Akim Demaille <akim@epita.fr>
5198
5199 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
5200 ['"/] too eagerly.
5201 * tests/input.at (Torturing the Scanner): New.
5202
5203 2002-06-11 Akim Demaille <akim@epita.fr>
5204
5205 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
5206 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
5207 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
5208 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
5209 * src/reader.c (reader): Use it.
5210
5211 2002-06-11 Akim Demaille <akim@epita.fr>
5212
5213 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
5214 Adjust all callers.
5215 (scanner_last_string_free): New.
5216
5217 2002-06-11 Akim Demaille <akim@epita.fr>
5218
5219 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
5220 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
5221 (last_string, YY_OBS_FREE): New.
5222 Use them when returning an ID.
5223
5224 2002-06-11 Akim Demaille <akim@epita.fr>
5225
5226 Have Bison grammars parsed by a Bison grammar.
5227
5228 * src/reader.c, src/reader.h (prologue_augment): New.
5229 * src/reader.c (copy_definition): Remove.
5230
5231 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
5232 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
5233 (grammar_current_rule_prec_set, grammar_current_rule_check)
5234 (grammar_current_rule_symbol_append)
5235 (grammar_current_rule_action_append): Export.
5236 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
5237 (symbol_list_action_append): Remove.
5238 Hook the routines from reader.
5239 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
5240 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
5241
5242 * src/reader.c (read_declarations): Remove, unused.
5243
5244 * src/parse-gram.y: Handle the epilogue.
5245 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
5246 (grammar_start_symbol_set): this.
5247 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
5248 * src/reader.c (readgram): Remove, unused.
5249 (reader): Adjust to insert eoftoken and axiom where appropriate.
5250
5251 * src/reader.c (copy_dollar): Replace with...
5252 * src/scan-gram.h (handle_dollar): this.
5253 * src/parse-gram.y: Remove `%thong'.
5254
5255 * src/reader.c (copy_at): Replace with...
5256 * src/scan-gram.h (handle_at): this.
5257
5258 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
5259 New.
5260
5261 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
5262 time being.
5263
5264 * src/reader.h, src/reader.c (grammar_rule_end): New.
5265
5266 * src/parse.y (current_type, current_class): New.
5267 Implement `%nterm', `%token' support.
5268 Merge `%term' into `%token'.
5269 (string_as_id): New.
5270 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
5271 type name.
5272
5273 * src/parse-gram.y: Be sure to handle properly the beginning of
5274 rules.
5275
5276 * src/parse-gram.y: Handle %type.
5277 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
5278
5279 * src/parse-gram.y: More directives support.
5280 * src/options.c: No longer handle source directives.
5281
5282 * src/parse-gram.y: Fix %output.
5283
5284 * src/parse-gram.y: Handle %union.
5285 Use the prologue locations.
5286 * src/reader.c (parse_union_decl): Remove.
5287
5288 * src/reader.h, src/reader.c (epilogue_set): New.
5289 * src/parse-gram.y: Use it.
5290
5291 * data/bison.simple, data/bison.c++: b4_stype is now either not
5292 defined, then default to int, or to the contents of %union,
5293 without `union' itself.
5294 Adjust.
5295 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
5296
5297 * src/output.c (actions_output): Don't output braces, as they are
5298 already handled by the scanner.
5299
5300 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
5301 characters to themselves.
5302
5303 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
5304 that the epilogue has a proper #line.
5305
5306 * src/parse-gram.y: Handle precedence/associativity.
5307
5308 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
5309 a terminal.
5310 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
5311 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
5312 at all to define terminals that cannot be emitted.
5313
5314 * src/scan-gram.l: Escape M4 characters.
5315
5316 * src/scan-gram.l: Working properly with escapes in user
5317 strings/characters.
5318
5319 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
5320 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
5321 grammar.
5322 Use more modest sizes, as for the time being the parser does not
5323 release memory, and therefore the process swallows a huge amount
5324 of memory.
5325
5326 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
5327 stricter %token grammar.
5328
5329 * src/symtab.h (associativity): Add `undef_assoc'.
5330 (symbol_precedence_set): Do nothing when passed an undef_assoc.
5331 * src/symtab.c (symbol_check_alias_consistence): Adjust.
5332
5333 * tests/regression.at (Invalid %directive): Remove, as it is now
5334 meaningless.
5335 (Invalid inputs): Adjust to the new error messages.
5336 (Token definitions): The new grammar doesn't allow too many
5337 eccentricities.
5338
5339 * src/lex.h, src/lex.c: Remove.
5340 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
5341 (copy_character, copy_string2, copy_string, copy_identifier)
5342 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
5343 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
5344 (parse_action): Remove.
5345 * po/POTFILES.in: Adjust.
5346
5347 2002-06-11 Akim Demaille <akim@epita.fr>
5348
5349 * src/reader.c (parse_action): Don't store directly into the
5350 rule's action member: return the action as a string.
5351 Don't require `rule_length' as an argument: compute it.
5352 (grammar_current_rule_symbol_append)
5353 (grammar_current_rule_action_append): New, eved out from
5354 (readgram): here.
5355 Remove `action_flag', `rulelength', unused now.
5356
5357 2002-06-11 Akim Demaille <akim@epita.fr>
5358
5359 * src/reader.c (grammar_current_rule_prec_set).
5360 (grammar_current_rule_check): New, eved out from...
5361 (readgram): here.
5362 Remove `xaction', `first_rhs': useless.
5363 * tests/input.at (Type clashes): New.
5364 * tests/existing.at (GNU Cim Grammar): Adjust.
5365
5366 2002-06-11 Akim Demaille <akim@epita.fr>
5367
5368 * src/reader.c (grammar_midrule_action): New, Eved out from
5369 (readgram): here.
5370
5371 2002-06-11 Akim Demaille <akim@epita.fr>
5372
5373 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
5374 New.
5375 (readgram): Use them as replacement of inlined code, crule and
5376 crule1.
5377
5378 2002-06-11 Akim Demaille <akim@epita.fr>
5379
5380 * src/reader.c (grammar_end, grammar_symbol_append): New.
5381 (readgram): Use them.
5382 Make the use of `p' as local as possible.
5383
5384 2002-06-10 Akim Demaille <akim@epita.fr>
5385
5386 GCJ's parser requires the tokens to be defined before the prologue.
5387
5388 * data/bison.simple: Output the token definition before the user's
5389 prologue.
5390 * tests/regression.at (Braces parsing, Duplicate string)
5391 (Mixing %token styles): Check the output from bison.
5392 (Early token definitions): New.
5393
5394 2002-06-10 Akim Demaille <akim@epita.fr>
5395
5396 * src/symtab.c (symbol_user_token_number_set): Don't complain when
5397 assigning twice the same user number to a token, so that we can
5398 use it in...
5399 * src/lex.c (lex): here.
5400 Also use `symbol_class_set' instead of hand written code.
5401 * src/reader.c (parse_assoc_decl): Likewise.
5402
5403 2002-06-10 Akim Demaille <akim@epita.fr>
5404
5405 * src/symtab.c, src/symtab.c (symbol_class_set)
5406 (symbol_user_token_number_set): New.
5407 * src/reader.c (parse_token_decl): Use them.
5408 Use a switch instead of ifs.
5409 Use a single argument.
5410
5411 2002-06-10 Akim Demaille <akim@epita.fr>
5412
5413 Remove `%thong' support as it is undocumented, unused, duplicates
5414 `%token's job, and creates useless e-mail traffic with people who
5415 want to know what it is, why it is undocumented, unused, and
5416 duplicates `%token's job.
5417
5418 * src/reader.c (parse_thong_decl): Remove.
5419 * src/options.c (option_table): Remove "thong".
5420 * src/lex.h (tok_thong): Remove.
5421
5422 2002-06-10 Akim Demaille <akim@epita.fr>
5423
5424 * src/symtab.c, src/symtab.c (symbol_type_set)
5425 (symbol_precedence_set): New.
5426 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
5427 (value_components_used): Remove, unused.
5428
5429 2002-06-09 Akim Demaille <akim@epita.fr>
5430
5431 Move symbols handling code out of the reader.
5432
5433 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
5434 (axiom): Move to...
5435 * src/symtab.h, src/symtab.c: here.
5436
5437 * src/gram.c (start_symbol): Remove: use startsymbol->number.
5438 * src/reader.c (startval): Rename as...
5439 * src/symtab.h, src/symtab.c (startsymbol): this.
5440 * src/reader.c: Adjust.
5441
5442 * src/reader.c (symbol_check_defined, symbol_make_alias)
5443 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
5444 (token_translations_init)
5445 Move to...
5446 * src/symtab.c: here.
5447 * src/reader.c (packsymbols): Move to...
5448 * src/symtab.h, src/symtab.c (symbols_pack): here.
5449 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
5450 argument.
5451
5452 2002-06-03 Akim Demaille <akim@epita.fr>
5453
5454 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
5455 then statements.
5456
5457 2002-06-03 Akim Demaille <akim@epita.fr>
5458
5459 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
5460 structs with non literals.
5461 * src/scan-skel.l: never-interactive.
5462 * src/conflicts.c (enum conflict_resolution_e): No trailing
5463 comma.
5464 * src/getargs.c (usage): Split long literal strings.
5465 Reported by Hans Aberg.
5466
5467 2002-05-28 Akim Demaille <akim@epita.fr>
5468
5469 * data/bison.c++: Use C++ ostreams.
5470 (cdebug_): New member.
5471
5472 2002-05-28 Akim Demaille <akim@epita.fr>
5473
5474 * src/output.c (output_skeleton): Be sure to allocate enough room
5475 for `/' _and_ for `\0' in full_skeleton.
5476
5477 2002-05-28 Akim Demaille <akim@epita.fr>
5478
5479 * data/bison.c++: Catch up with bison.simple:
5480 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5481 and Paul Eggert <eggert@twinsun.com>: `error' handing.
5482 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
5483 and popping traces.
5484
5485 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5486
5487 * src/output.c (output_skeleton): Put an explicit path in front of
5488 the skeleton file name, rather than relying on the -I directory,
5489 to partially alleviate effects of having a skeleton file lying around
5490 in the current directory.
5491
5492 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5493
5494 * src/conflicts.c (log_resolution): Correct typo:
5495 obstack_printf should be obstack_fgrow1.
5496
5497 2002-05-26 Akim Demaille <akim@epita.fr>
5498
5499 * src/state.h (state_t): `solved_conflicts' is a new member.
5500 * src/LR0.c (new_state): Set it to 0.
5501 * src/conflicts.h, src/conflicts.c (print_conflicts)
5502 (free_conflicts, solve_conflicts): Rename as...
5503 (conflicts_print, conflicts_free, conflicts_solve): these.
5504 Adjust callers.
5505 * src/conflicts.c (enum conflict_resolution_e)
5506 (solved_conflicts_obstack): New, used by...
5507 (log_resolution): this.
5508 Adjust to attach the conflict resolution to each state.
5509 Complete the description with the precedence/associativity
5510 information.
5511 (resolve_sr_conflict): Adjust.
5512 * src/print.c (print_state): Output its solved_conflicts.
5513 * tests/conflicts.at (Unresolved SR Conflicts)
5514 (Solved SR Conflicts): Exercise --report=all.
5515
5516 2002-05-26 Akim Demaille <akim@epita.fr>
5517
5518 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
5519 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
5520 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
5521 (token_number_t, item_number_as_token_number)
5522 (token_number_as_item_number, muscle_insert_token_number_table):
5523 Rename as...
5524 (symbol_number_t, item_number_as_symbol_number)
5525 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
5526 these, since it is more appropriate.
5527
5528 2002-05-26 Akim Demaille <akim@epita.fr>
5529
5530 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
5531 `Error:' lines.
5532 * data/bison.simple (yystos) [YYDEBUG]: New.
5533 (yyparse) [YYDEBUG]: Display the symbols which are popped during
5534 error recovery.
5535 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
5536
5537 2002-05-25 Akim Demaille <akim@epita.fr>
5538
5539 * doc/bison.texinfo (Debugging): Split into...
5540 (Tracing): this new section, its former contents, and...
5541 (Understanding): this new section.
5542 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
5543 by...
5544 (report_flag): this.
5545 Adjust all dependencies.
5546 (report_args, report_types, report_argmatch): New.
5547 (usage, getargs): Report/support -r, --report.
5548 * src/options.h
5549 (struct option_table_struct): Rename as..,
5550 (struct option_table_s): this.
5551 Rename the `set_flag' member to `flag' to match with getopt_long's
5552 struct.
5553 * src/options.c (option_table): Split verbose into an entry for
5554 %verbose, and another for --verbose.
5555 Support --report/-r, so remove -r from the obsolete --raw.
5556 * src/print.c: Attach full item sets and lookaheads reports to
5557 report_flag instead of trace_flag.
5558 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
5559
5560 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5561 and Paul Eggert <eggert@twinsun.com>
5562
5563 * data/bison.simple (yyparse): Correct error handling to conform to
5564 POSIX and yacc. Specifically, after syntax error is discovered,
5565 do not reduce further before shifting the error token.
5566 Clean up the code a bit by removing the labels yyerrdefault,
5567 yyerrhandle, yyerrpop.
5568 * NEWS: Document the above.
5569
5570 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5571
5572 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
5573 type; it isn't always big enough, since it doesn't necessarily
5574 include non-terminals.
5575 (yytranslate): Expand definition of yy_token_number_type, so that
5576 the latter can be removed.
5577 (yy_token_number_type): Remove, only one use.
5578 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
5579 don't use TokenNumberType as element type.
5580
5581 * tests/regression.at: Modify expected output to agree with change
5582 to yyr1 and yytranslate.
5583
5584 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
5585
5586 * src/reader.c (parse_action): Use copy_character instead of
5587 obstack_1grow.
5588
5589 2002-05-13 Akim Demaille <akim@epita.fr>
5590
5591 * tests/regression.at (Token definitions): Prototype yylex and
5592 yyerror.
5593
5594 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
5595
5596 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
5597 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
5598 32-bit arithmetic.
5599 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
5600
5601 2002-05-07 Akim Demaille <akim@epita.fr>
5602
5603 * tests/synclines.at: Be sure to prototype yylex and yyerror to
5604 avoid GCC warnings.
5605
5606 2002-05-07 Akim Demaille <akim@epita.fr>
5607
5608 Kill GCC warnings.
5609
5610 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
5611 over the RHS of each rule.
5612 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
5613 * src/state.h (state_t): Member `nitems' is unsigned short.
5614 * src/LR0.c (get_state): Adjust.
5615 * src/reader.c (packgram): Likewise.
5616 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
5617 `Type'.
5618 (muscle_insert_int_table): Remove, unused.
5619 (prepare_rules): Remove `max'.
5620
5621 2002-05-06 Akim Demaille <akim@epita.fr>
5622
5623 * src/closure.c (print_firsts): Display of the symbol tags.
5624 (bitmatrix_print): Move to...
5625 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
5626 here.
5627 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
5628
5629 2002-05-06 Akim Demaille <akim@epita.fr>
5630
5631 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
5632 hash_do_for_each.
5633
5634 2002-05-06 Akim Demaille <akim@epita.fr>
5635
5636 * src/LR0.c (new_state, get_state): Instead of using the global
5637 `kernel_size' and `kernel_base', have two new arguments:
5638 `core_size' and `core'.
5639 Adjust callers.
5640
5641 2002-05-06 Akim Demaille <akim@epita.fr>
5642
5643 * src/reader.c (packgram): No longer end `ritem' with a 0
5644 sentinel: it is not used.
5645
5646 2002-05-05 Akim Demaille <akim@epita.fr>
5647
5648 New experimental feature: display the lookaheads in the report and
5649 graph.
5650
5651 * src/print (print_core): When --trace-flag, display the rules
5652 lookaheads.
5653 * src/print_graph.c (print_core): Likewise.
5654 Swap the arguments.
5655 Adjust caller.
5656
5657 2002-05-05 Akim Demaille <akim@epita.fr>
5658
5659 * tests/torture.at (Many lookaheads): New test.
5660
5661 2002-05-05 Akim Demaille <akim@epita.fr>
5662
5663 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
5664 (GENERATE_MUSCLE_INSERT_TABLE): this.
5665 (output_int_table, output_unsigned_int_table, output_short_table)
5666 (output_token_number_table, output_item_number_table): Replace with...
5667 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
5668 (muscle_insert_short_table, muscle_insert_token_number_table)
5669 (muscle_insert_item_number_table): these.
5670 Adjust all callers.
5671 (prepare_tokens): Don't free `translations', since...
5672 * src/reader.h, src/reader.c (grammar_free): do it.
5673 Move to...
5674 * src/gram.h, src/gram.c (grammar_free): here.
5675 * data/bison.simple, data/bison.c++: b4_token_number_max is now
5676 b4_translate_max.
5677
5678 2002-05-05 Akim Demaille <akim@epita.fr>
5679
5680 * src/output.c (output_unsigned_int_table): New.
5681 (prepare_rules): `i' is unsigned.
5682 `prhs', `rline', `r2' are unsigned int.
5683 Rename muscle `rhs_number_max' as `rhs_max'.
5684 Output muscles `prhs_max', `rline_max', and `r2_max'.
5685 Free rline and r1.
5686 * data/bison.simple, data/bison.c++: Adjust to use these muscles
5687 to compute types instead of constant types.
5688 * tests/regression.at (Web2c Actions): Adjust.
5689
5690 2002-05-04 Akim Demaille <akim@epita.fr>
5691
5692 * src/symtab.h (SALIAS, SUNDEF): Rename as...
5693 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
5694 Adjust dependencies.
5695 * src/output.c (token_definitions_output): Be sure not to output a
5696 `#define 'a'' when fed with `%token 'a' "a"'.
5697 * tests/regression.at (Token definitions): New.
5698
5699 2002-05-03 Paul Eggert <eggert@twinsun.com>
5700
5701 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
5702 for K&R C.
5703
5704 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
5705
5706 * Makefile.am (SUBDIRS): Remove intl.
5707 (EXTRA_DIST): Add config/config.rpath.
5708
5709 2002-05-03 Akim Demaille <akim@epita.fr>
5710
5711 * data/bison.simple (m4_if): Don't output empty enums.
5712 And actually, output valid enum definitions :(.
5713
5714 2002-05-03 Akim Demaille <akim@epita.fr>
5715
5716 * configure.bat: Remove, completely obsolete.
5717 * Makefile.am (EXTRA_DIST): Adjust.
5718 Don't distribute config.rpath...
5719 * config/Makefile.am (EXTRA_DIST): Do it.
5720
5721 2002-05-03 Akim Demaille <akim@epita.fr>
5722
5723 * configure.in (GETTEXT_VERSION): New.
5724 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
5725
5726 2002-05-03 Akim Demaille <akim@epita.fr>
5727
5728 * data/bison.simple (b4_token_enum): New.
5729 (b4_token_defines): Use it to output tokens both as #define and
5730 enums.
5731 Suggested by Paul Eggert.
5732 * src/output.c (token_definitions_output): Don't output spurious
5733 white spaces.
5734
5735 2002-05-03 Akim Demaille <akim@epita.fr>
5736
5737 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
5738
5739 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
5740
5741 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
5742 Update the stack class, give a try to deque as the default container.
5743
5744 2002-05-02 Akim Demaille <akim@epita.fr>
5745
5746 * data/bison.simple (yyparse): Do not implement @$ = @1.
5747 (YYLLOC_DEFAULT): Adjust to do it.
5748 * doc/bison.texinfo (Location Default Action): Fix.
5749
5750 2002-05-02 Akim Demaille <akim@epita.fr>
5751
5752 * src/reader.c (parse_braces): Merge into...
5753 (parse_action): this.
5754
5755 2002-05-02 Akim Demaille <akim@epita.fr>
5756
5757 * configure.in (ALL_LINGUAS): Remove.
5758 * po/LINGUAS, hr.po: New.
5759
5760 2002-05-02 Akim Demaille <akim@epita.fr>
5761
5762 Remove the so called hairy (semantic) parsers.
5763
5764 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
5765 * src/gram.h, src/gram.c (semantic_parser): Remove.
5766 (rule_t): Remove the guard and guard_line members.
5767 * src/lex.h (token_t): remove tok_guard.
5768 * src/options.c (option_table): Remove %guard and %semantic_parser
5769 support.
5770 * src/output.c, src/output.h (guards_output): Remove.
5771 (prepare): Adjust.
5772 (token_definitions_output): Don't output the `T'
5773 tokens (???).
5774 (output_skeleton): Don't output the guards.
5775 * src/files.c, src/files.c (attrsfile): Remove.
5776 * src/reader.c (symbol_list): Remove the guard and guard_line
5777 members.
5778 Adjust dependencies.
5779 (parse_guard): Remove.
5780 * data/bison.hairy: Remove.
5781 * doc/bison.texinfo (Environment Variables): Remove occurrences of
5782 BISON_HAIRY.
5783
5784 2002-05-02 Akim Demaille <akim@epita.fr>
5785
5786 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
5787 (parse_guard): Rename the formal argument `stack_offset' as
5788 `rule_length', which is more readable.
5789 Adjust callers.
5790 (copy_at, copy_dollar): Instead of outputting the hard coded
5791 values of $$, $n and so forth, output invocation to b4_lhs_value,
5792 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
5793 Note: this patch partially drops `semantic-parser' support: it
5794 always does `rule_length - n', where semantic parsers ought to
5795 always use `-n'.
5796 * data/bison.simple, data/bison.c++ (b4_lhs_value)
5797 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
5798
5799 2002-05-02 Akim Demaille <akim@epita.fr>
5800
5801 * configure.in (AC_INIT): Bump to 1.49b.
5802 (AM_INIT_AUTOMAKE): Short invocation.
5803
5804 2002-05-02 Akim Demaille <akim@epita.fr>
5805
5806 Version 1.49a.
5807
5808 2002-05-01 Akim Demaille <akim@epita.fr>
5809
5810 * src/skeleton.h: Remove.
5811
5812 2002-05-01 Akim Demaille <akim@epita.fr>
5813
5814 * src/skeleton.h: Fix the #endif.
5815 Reported by Magnus Fromreide.
5816
5817 2002-04-26 Paul Eggert <eggert@twinsun.com>
5818
5819 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
5820 Define if we define YYSTYPE and YYLTYPE, respectively.
5821 (YYCOPY): Fix [] quoting problem in the non-GCC case.
5822
5823 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
5824
5825 * src/scan-skel.l: Postprocess quadrigraphs.
5826
5827 * src/reader.c (copy_character): New function, used to output
5828 single characters while replacing `[' and `]' with quadrigraphs, to
5829 avoid troubles with M4 quotes.
5830 (copy_comment): Output characters with copy_character.
5831 (read_additionnal_code): Likewise.
5832 (copy_string2): Likewise.
5833 (copy_definition): Likewise.
5834
5835 * tests/calc.at: Exercise M4 quoting.
5836
5837 2002-04-25 Akim Demaille <akim@epita.fr>
5838
5839 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
5840 between `!' and the command.
5841 Reported by Paul Eggert.
5842
5843 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
5844
5845 * tests/calc.at: Exercise prologue splitting.
5846
5847 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
5848 `b4_post_prologue' instead of `b4_prologue'.
5849
5850 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
5851 muscles.
5852 (output): Free pre_prologue_obstack and post_prologue_obstack.
5853 * src/files.h, src/files.c (attrs_obstack): Remove.
5854 (pre_prologue_obstack, post_prologue_obstack): New.
5855 * src/reader.c (copy_definition): Add a parameter to specify the
5856 obstack to fill, instead of using attrs_obstack unconditionally.
5857 (read_declarations): Pass pre_prologue_obstack to copy_definition if
5858 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
5859
5860 2002-04-23 Paul Eggert <eggert@twinsun.com>
5861
5862 * data/bison.simple: Remove unnecessary commentary and white
5863 space differences from 1_29-branch.
5864 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
5865
5866 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
5867 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
5868 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
5869 constructors or destructors.
5870
5871 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
5872
5873 2002-04-23 Akim Demaille <akim@epita.fr>
5874
5875 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
5876 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
5877 location with columns.
5878 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
5879 All reported by Paul Eggert.
5880
5881 2002-04-22 Akim Demaille <akim@epita.fr>
5882
5883 * src/reduce.c (dump_grammar): Move to...
5884 * src/gram.h, src/gram.c (grammar_dump): here.
5885 Be sure to separate long item numbers.
5886 Don't read the members of a rule's prec if its nil.
5887
5888 2002-04-22 Akim Demaille <akim@epita.fr>
5889
5890 * src/output.c (table_size, table_grow): New.
5891 (MAXTABLE): Remove, replace uses with table_size.
5892 (pack_vector): Instead of dying when the table is too big, grow it.
5893
5894 2002-04-22 Akim Demaille <akim@epita.fr>
5895
5896 * data/bison.simple (yyr1): Its type is that of a token number.
5897 * data/bison.c++ (r1_): Likewise.
5898 * tests/regression.at (Web2c Actions): Adjust.
5899
5900 2002-04-22 Akim Demaille <akim@epita.fr>
5901
5902 * src/reader.c (token_translations_init): 256 is now the default
5903 value for the error token, i.e., it will be assigned another
5904 number if the user assigned 256 to one of her tokens.
5905 (reader): Don't force 256 to error.
5906 * doc/bison.texinfo (Symbols): Adjust.
5907 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
5908 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
5909 etc. instead of 10, 20, 30 (which was used to `jump' over error
5910 (256) and undefined (2)).
5911
5912 2002-04-22 Akim Demaille <akim@epita.fr>
5913
5914 Propagate more token_number_t.
5915
5916 * src/gram.h (token_number_as_item_number)
5917 (item_number_as_token_number): New.
5918 * src/output.c (GENERATE_OUTPUT_TABLE): New.
5919 Use it to create output_item_number_table and
5920 output_token_number_table.
5921 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
5922 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
5923 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
5924 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
5925
5926 2002-04-22 Akim Demaille <akim@epita.fr>
5927
5928 * src/output.h, src/output.c (get_lines_number): Remove.
5929
5930 2002-04-19 Akim Demaille <akim@epita.fr>
5931
5932 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
5933 as Lex/Flex'.
5934 (Debugging): More details about enabling the debugging features.
5935 (Table of Symbols): Describe $$, $n, @$, and @n.
5936 Suggested by Tim Josling.
5937
5938 2002-04-19 Akim Demaille <akim@epita.fr>
5939
5940 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
5941
5942 2002-04-10 Akim Demaille <akim@epita.fr>
5943
5944 * src/system.h: Rely on HAVE_LIMITS_H.
5945 Suggested by Paul Eggert.
5946
5947 2002-04-09 Akim Demaille <akim@epita.fr>
5948
5949 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
5950 full stderr, and strip it according to the bison options, instead
5951 of composing the error message from different bits.
5952 This makes it easier to check for several error messages.
5953 Adjust all the invocations.
5954 Add an invocation exercising the error token.
5955 Add an invocation demonstrating a stupid error message.
5956 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
5957 Adjust the tests.
5958 Error message are for stderr, not stdout.
5959
5960 2002-04-09 Akim Demaille <akim@epita.fr>
5961
5962 * src/gram.h, src/gram.c (error_token_number): Remove, use
5963 errtoken->number.
5964 * src/reader.c (reader): Don't specify the user token number (2)
5965 for $undefined, as it uselessly prevents using it.
5966 * src/gram.h (token_number_t): Move to...
5967 * src/symtab.h: here.
5968 (state_t.number): Is a token_number_t.
5969 * src/print.c, src/reader.c: Use undeftoken->number instead of
5970 hard coded 2.
5971 (Even though this 2 is not the same as above: the number of the
5972 undeftoken remains being 2, it is its user token number which
5973 might not be 2).
5974 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
5975 `user_token_number_max'.
5976 Output `undef_token_number'.
5977 * data/bison.simple, data/bison.c++: Use them.
5978 Be sure to map invalid yylex return values to
5979 `undef_token_number'. This saves us from gratuitous SEGV.
5980
5981 * tests/conflicts.at (Solved SR Conflicts)
5982 (Unresolved SR Conflicts): Adjust.
5983 * tests/regression.at (Web2c Actions): Adjust.
5984
5985 2002-04-08 Akim Demaille <akim@epita.fr>
5986
5987 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
5988 Adding #line.
5989 Remove the duplicate `typedefs'.
5990 (RhsNumberType): Fix the declaration and various other typos.
5991 Use __ofile__.
5992 * data/bison.simple: Use __ofile__.
5993 * src/scan-skel.l: Handle __ofile__.
5994
5995 2002-04-08 Akim Demaille <akim@epita.fr>
5996
5997 * src/gram.h (item_number_t): New, the type of item numbers in
5998 RITEM. Note that it must be able to code symbol numbers as
5999 positive number, and the negation of rule numbers as negative
6000 numbers.
6001 Adjust all dependencies (pretty many).
6002 * src/reduce.c (rule): Remove this `short *' pointer: use
6003 item_number_t.
6004 * src/system.h (MINSHORT, MAXSHORT): Remove.
6005 Include `limits.h'.
6006 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
6007 (shortcpy): Remove.
6008 (MAXTABLE): Move to...
6009 * src/output.c (MAXTABLE): here.
6010 (prepare_rules): Use output_int_table to output rhs.
6011 * data/bison.simple, data/bison.c++: Adjust.
6012 * tests/torture.at (Big triangle): Move the limit from 254 to
6013 500.
6014 * tests/regression.at (Web2c Actions): Ajust.
6015
6016 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
6017 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
6018 passes, but produces negative #line number, once fixed, GCC is
6019 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
6020 C), it passes.
6021 * src/state.h (state_h): Code input lines on ints, not shorts.
6022
6023 2002-04-08 Akim Demaille <akim@epita.fr>
6024
6025 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
6026 and then the grammar.
6027
6028 2002-04-08 Akim Demaille <akim@epita.fr>
6029
6030 * src/system.h: No longer using strndup.
6031
6032 2002-04-07 Akim Demaille <akim@epita.fr>
6033
6034 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
6035 * src/output.c (output_table_data): Return the longest number.
6036 (prepare_tokens): Output `token_number_max').
6037 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
6038 New.
6039 Use them to define yy_token_number_type/TokenNumberType.
6040 Use this type for yytranslate.
6041 * tests/torture.at (Big triangle): Push the limit from 124 to
6042 253.
6043 * tests/regression.at (Web2c Actions): Adjust.
6044
6045 2002-04-07 Akim Demaille <akim@epita.fr>
6046
6047 * tests/torture.at (Big triangle): New.
6048 (GNU AWK Grammar, GNU Cim Grammar): Move to...
6049 * tests/existing.at: here.
6050
6051 2002-04-07 Akim Demaille <akim@epita.fr>
6052
6053 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
6054 nritems.
6055 Adjust dependencies.
6056
6057 2002-04-07 Akim Demaille <akim@epita.fr>
6058
6059 * src/reader.c: Normalize increments to prefix form.
6060
6061 2002-04-07 Akim Demaille <akim@epita.fr>
6062
6063 * src/reader.c, symtab.c: Remove debugging code.
6064
6065 2002-04-07 Akim Demaille <akim@epita.fr>
6066
6067 Rename all the `bucket's as `symbol_t'.
6068
6069 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
6070 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
6071 * src/symtab.c, src/symtab.h (bucket): Rename as...
6072 (symbol_t): this.
6073 (symbol_list_new, bucket_check_defined, bucket_make_alias)
6074 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
6075 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
6076 (buckets_new, buckets_free, buckets_do): Rename as...
6077 (symbol_list_new, symbol_check_defined, symbol_make_alias)
6078 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
6079 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
6080 (symbols_new, symbols_free, symbols_do): these.
6081
6082 2002-04-07 Akim Demaille <akim@epita.fr>
6083
6084 Use lib/hash for the symbol table.
6085
6086 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
6087 EOF.
6088 * src/lex.c (lex): Set the `number' member of new terminals.
6089 * src/reader.c (bucket_check_defined, bucket_make_alias)
6090 (bucket_check_alias_consistence, bucket_translation): New.
6091 (reader, grammar_free, readgram, token_translations_init)
6092 (packsymbols): Adjust.
6093 (reader): Number the predefined tokens.
6094 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
6095 for predefined tokens.
6096 * src/symtab.h (bucket): Remove all the hash table related
6097 members.
6098 * src/symtab.c (symtab): Replace by...
6099 (bucket_table): this.
6100 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
6101 (buckets_new, buckets_do): New.
6102
6103 2002-04-07 Akim Demaille <akim@epita.fr>
6104
6105 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
6106 (start_symbol, max_user_token_number, semantic_parser)
6107 (error_token_number): Initialize.
6108 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
6109 Initialize.
6110 (reader): Don't.
6111 (errtoken, eoftoken, undeftoken, axiom): Extern.
6112
6113 2002-04-07 Akim Demaille <akim@epita.fr>
6114
6115 * src/gram.h (rule_s): prec and precsym are now pointers
6116 to the bucket giving the priority/associativity.
6117 Member `associativity' removed: useless.
6118 * src/reduce.c, src/conflicts.c: Adjust.
6119
6120 2002-04-07 Akim Demaille <akim@epita.fr>
6121
6122 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
6123 Properly escape the symbols' TAG when outputting them.
6124
6125 2002-04-07 Akim Demaille <akim@epita.fr>
6126
6127 * src/lalr.h (LA): Is a bitsetv, not bitset*.
6128
6129 2002-04-07 Akim Demaille <akim@epita.fr>
6130
6131 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
6132 (LArule): this, which is an array to rule_t*.
6133 * src/print.c, src/conflicts.c: Adjust.
6134
6135 2002-04-07 Akim Demaille <akim@epita.fr>
6136
6137 * src/gram.h (rule_t): Rename `number' as `user_number'.
6138 `number' is a new member.
6139 Adjust dependencies.
6140 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
6141
6142 2002-04-07 Akim Demaille <akim@epita.fr>
6143
6144 As a result of the previous patch, it is no longer needed
6145 to reorder ritem itself.
6146
6147 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
6148
6149 2002-04-07 Akim Demaille <akim@epita.fr>
6150
6151 Be sure never to walk through RITEMS, but use only data related to
6152 the rules themselves. RITEMS should be banished.
6153
6154 * src/output.c (output_token_translations): Rename as...
6155 (prepare_tokens): this.
6156 In addition to `translate', prepare the muscles `tname' and
6157 `toknum', which were handled by...
6158 (output_rule_data): this.
6159 Remove, and move the remainder of its outputs into...
6160 (prepare_rules): this new routines, which also merges content from
6161 (output_gram): this.
6162 (prepare_rules): Be sure never to walk through RITEMS.
6163 (output_stos): Rename as...
6164 (prepare_stos): this.
6165 (output): Always invoke prepare_states, after all, just don't use it
6166 in the output if you don't need it.
6167
6168 2002-04-07 Akim Demaille <akim@epita.fr>
6169
6170 * src/LR0.c (new_state): Display `nstates' as the name of the
6171 newly created state.
6172 Adjust to initialize first_state and last_state if needed.
6173 Be sure to distinguish the initial from the final state.
6174 (new_states): Create the itemset of the initial state, and use
6175 new_state.
6176 * src/closure.c (closure): Now that the initial state has its
6177 items properly set, there is no need for a special case when
6178 creating `ruleset'.
6179
6180 As a result, now the rule 0, reducing to $axiom, is visible in the
6181 outputs. Adjust the test suite.
6182
6183 * tests/conflicts.at (Solved SR Conflicts)
6184 (Unresolved SR Conflicts): Adjust.
6185 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
6186 * tests/conflicts.at (S/R in initial): New.
6187
6188 2002-04-07 Akim Demaille <akim@epita.fr>
6189
6190 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
6191 the RHS of the rules.
6192 * src/output.c (output_gram): Likewise.
6193
6194 2002-04-07 Akim Demaille <akim@epita.fr>
6195
6196 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
6197 bucket.
6198 Adjust all dependencies.
6199 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
6200 `number' of the buckets too.
6201 * src/gram.h: Include `symtab.h'.
6202 (associativity): Move to...
6203 * src/symtab.h: here.
6204 No longer include `gram.h'.
6205
6206 2002-04-07 Akim Demaille <akim@epita.fr>
6207
6208 * src/gram.h, src/gram.c (rules_rhs_length): New.
6209 (ritem_longest_rhs): Use it.
6210 * src/gram.h (rule_t): `number' is a new member.
6211 * src/reader.c (packgram): Set it.
6212 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
6213 the end of `rules', and count them out of `nrules'.
6214 (reduce_output, dump_grammar): Adjust.
6215 * src/print.c (print_grammar): It is no longer needed to check for
6216 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
6217 * tests/reduce.at (Reduced Automaton): New test.
6218
6219 2002-04-07 Akim Demaille <akim@epita.fr>
6220
6221 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
6222 lacking `+ 1' to nrules, Bison reported as useless a token if it
6223 was used solely to set the precedence of the last rule...
6224
6225 2002-04-07 Akim Demaille <akim@epita.fr>
6226
6227 * data/bison.c++, data/bison.simple: Don't output the current file
6228 name in #line, to avoid useless diffs between two identical
6229 outputs under different names.
6230
6231 2002-04-07 Akim Demaille <akim@epita.fr>
6232
6233 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
6234 Normalize loops to using `< nrules + 1', not `<= nrules'.
6235
6236 2002-04-07 Akim Demaille <akim@epita.fr>
6237
6238 * TODO: Update.
6239
6240 2002-04-07 Akim Demaille <akim@epita.fr>
6241
6242 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
6243 bucket.value as bucket.number.
6244
6245 2002-04-07 Akim Demaille <akim@epita.fr>
6246
6247 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
6248 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
6249 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
6250 RHS, instead of being an index in RITEMS.
6251
6252 2002-04-04 Paul Eggert <eggert@twinsun.com>
6253
6254 * doc/bison.texinfo: Update copyright date.
6255 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
6256 (Symbols): Warn about running Bison in one character set,
6257 but compiling and/or running in an incompatible one.
6258 Warn about character code 256, too.
6259
6260 2002-04-03 Paul Eggert <eggert@twinsun.com>
6261
6262 * src/bison.data (YYSTACK_ALLOC): Depend on whether
6263 YYERROR_VERBOSE is nonzero, not whether it is defined.
6264
6265 Merge changes from bison-1_29-branch.
6266
6267 2002-03-20 Paul Eggert <eggert@twinsun.com>
6268
6269 Merge fixes from Debian bison_1.34-1.diff.
6270
6271 * configure.in (AC_PREREQ): 2.53.
6272
6273 2002-03-20 Akim Demaille <akim@epita.fr>
6274
6275 * src/conflicts.c (log_resolution): Argument `resolution' is const.
6276
6277 2002-03-19 Paul Eggert <eggert@twinsun.com>
6278
6279 * src/bison.simple (YYCOPY): New macro.
6280 (YYSTACK_RELOCATE): Use it.
6281 Remove Type arg; no longer needed. All callers changed.
6282 (yymemcpy): Remove; no longer needed.
6283
6284 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
6285 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
6286
6287 2002-03-19 Akim Demaille <akim@epita.fr>
6288
6289 Test and fix the #line outputs.
6290
6291 * tests/atlocal.at (GCC): New.
6292 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
6293 (Prologue synch line, ,%union synch line, Postprologue synch line)
6294 (Action synch line, Epilogue synch line): New tests.
6295 * src/reader.c (parse_union_decl): Define the muscle stype_line.
6296 * data/bison.simple, data/bison.c++: Use it.
6297
6298 2002-03-19 Akim Demaille <akim@epita.fr>
6299
6300 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
6301 (Solved SR Conflicts, %expect not enough, %expect right)
6302 (%expect too much): Move to...
6303 * tests/conflicts.at: this new file.
6304
6305 2002-03-19 Akim Demaille <akim@epita.fr>
6306
6307 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
6308 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
6309 that we can move to enums for instance.
6310 * src/output.c (token_definitions_output): Output a list of
6311 `token-name, token-number' instead of the #define.
6312 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
6313
6314 2002-03-14 Akim Demaille <akim@epita.fr>
6315
6316 Use Gettext 0.11.1.
6317
6318 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
6319
6320 * data/bison.c++: Make the user able to add members to the generated
6321 parser by subclassing.
6322
6323 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
6324
6325 * src/reader.c (read_additionnal_code): `c' should be an integer, not
6326 a character.
6327 Reported by Nicolas Tisserand and Nicolas Burrus.
6328
6329 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
6330
6331 * src/reader.c: Warn about lacking semi-colons, do not complain.
6332
6333 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
6334
6335 * data/bison.c++: Remove a debug line.
6336
6337 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
6338
6339 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
6340 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
6341 provide a default implementation.
6342
6343 2002-03-04 Akim Demaille <akim@epita.fr>
6344
6345 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
6346 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
6347 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
6348 * tests/semantic.at (Parsing Guards): Similarly.
6349 * src/reader.at (readgram): Complain if the last rule is not ended
6350 with a semi-colon.
6351
6352 2002-03-04 Akim Demaille <akim@epita.fr>
6353
6354 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
6355 * src/closure.c: here.
6356 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
6357 RTC.
6358 * src/warshall.h, src/warshall.c: Remove.
6359 * tests/sets.at (Broken Closure): Adjust.
6360
6361 2002-03-04 Akim Demaille <akim@epita.fr>
6362
6363 * src/output.c (output_skeleton): tempdir is const.
6364 bytes_read is unused.
6365
6366 2002-03-04 Akim Demaille <akim@epita.fr>
6367
6368 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
6369 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
6370 Update.
6371 From Michael Hayes.
6372
6373 2002-03-04 Akim Demaille <akim@epita.fr>
6374
6375 * src/closure.c (closure): `r' is unused.
6376
6377 2002-03-04 Akim Demaille <akim@epita.fr>
6378
6379 * tests/sets.at (Broken Closure): Add the ending `;'.
6380 * src/reader.at (readgram): Complain if a rule is not ended with a
6381 semi-colon.
6382
6383 2002-03-04 Akim Demaille <akim@epita.fr>
6384
6385 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
6386 (count_sr_conflicts): Use bitset_count.
6387 * src/reduce.c (inaccessable_symbols): Ditto.
6388 (bits_size): Remove.
6389 * src/warshall.h, src/warshall.c: Convert to bitsetv.
6390
6391 2002-03-04 Akim Demaille <akim@epita.fr>
6392
6393 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
6394 * src/reduce.c: Remove the `bitset_zero's following the
6395 `bitset_create's, as now it is performed by the latter.
6396
6397 2002-03-04 Akim Demaille <akim@epita.fr>
6398
6399 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
6400 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
6401 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
6402 latest sources from Michael.
6403
6404 2002-03-04 Akim Demaille <akim@epita.fr>
6405
6406 * src/output.c (output): Don't free the grammar.
6407 * src/reader.c (grammar_free): New.
6408 * src/main.c (main): Call it and don't free symtab here.
6409
6410 2002-03-04 Akim Demaille <akim@epita.fr>
6411
6412 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
6413 before returning.
6414 Reported by Benoit Perrot.
6415
6416 2002-03-04 Akim Demaille <akim@epita.fr>
6417
6418 Use bitset operations when possible, not loops over bits.
6419
6420 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
6421 bitset_or.
6422 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
6423 * src/reduce.c (useless_nonterminals): Formatting changes.
6424 * src/warshall.c (TC): Use bitset_or.
6425
6426 2002-03-04 Akim Demaille <akim@epita.fr>
6427
6428 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
6429 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
6430 Ditto.
6431
6432 2002-03-04 Akim Demaille <akim@epita.fr>
6433
6434 * src/lalr.c (F): Now a bitset*.
6435 Adjust all dependencies.
6436
6437 2002-03-04 Akim Demaille <akim@epita.fr>
6438
6439 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
6440 Adjust all dependencies.
6441
6442 2002-03-04 Akim Demaille <akim@epita.fr>
6443
6444 * src/L0.c, src/LR0.h (nstates): Be size_t.
6445 Adjust comparisons (signed vs unsigned).
6446 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
6447 bitset*.
6448 Adjust all dependencies.
6449
6450 2002-03-04 Akim Demaille <akim@epita.fr>
6451
6452 * src/closure.c (firsts): Now, also a bitset.
6453 Adjust all dependencies.
6454 (varsetsize): Remove, now unused.
6455 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
6456
6457 2002-03-04 Akim Demaille <akim@epita.fr>
6458
6459 * src/print.c: Convert to use bitset.h, not hand coded iterations
6460 over ints.
6461
6462 2002-03-04 Akim Demaille <akim@epita.fr>
6463
6464 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
6465
6466 2002-03-04 Akim Demaille <akim@epita.fr>
6467
6468 * src/closure.c (ruleset): Be a bitset.
6469 (rulesetsize): Remove.
6470
6471 2002-03-04 Akim Demaille <akim@epita.fr>
6472
6473 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
6474 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
6475 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
6476 * src/closure.c (fderives): Be an array of bitsets.
6477
6478 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
6479
6480 * data/bison.c++: Merge the two generated headers. Insert a copyright
6481 notice in each output file.
6482
6483 2002-02-28 Akim Demaille <akim@epita.fr>
6484
6485 * data/bison.c++: Copy the prologue of bison.simple to fetch
6486 useful M4 definitions, such as b4_header_guard.
6487
6488 2002-02-25 Akim Demaille <akim@epita.fr>
6489
6490 * src/getargs.c (version): Give the name of the authors, and use a
6491 translator friendly scheme for the bgr
6492 copyright notice.
6493
6494 2002-02-25 Akim Demaille <akim@epita.fr>
6495
6496 * src/output.c (header_output): Remove, now handled completely via
6497 M4.
6498
6499 2002-02-25 Akim Demaille <akim@epita.fr>
6500
6501 * m4/m4.m4: New, from CVS Autoconf.
6502 * configure.in: Invoke it.
6503 * src/output.c (output_skeleton): Use its result instead of the
6504 hard coded name.
6505
6506 2002-02-25 Akim Demaille <akim@epita.fr>
6507
6508 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
6509 Fileutils 4.1.5.
6510 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
6511 * src/output.c (output_skeleton): Use mkstemp to create a real
6512 temporary file.
6513 Move the filling of `skeleton' and its muscle to...
6514 (prepare): here.
6515 (output): Move the definition of the prologue muscle to...
6516 (prepare): here.
6517 * src/system.h (DEFAULT_TMPDIR): New.
6518
6519 2002-02-14 Paul Eggert <eggert@twinsun.com>
6520
6521 Remove the support for C++ namespace cleanliness; it was
6522 causing more problems than it was curing, since it didn't work
6523 properly on some nonstandard C++ compilers. This can wait
6524 for a proper C++ parser.
6525
6526 * NEWS: Document this.
6527 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
6528 of C++, as it's treated like C now.
6529 * src/bison.simple (YYSTD): Remove.
6530 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
6531 Treat C++ just like Standard C instead of trying to support
6532 namespace cleanliness.
6533
6534 2002-02-14 Akim Demaille <akim@epita.fr>
6535
6536 * tests/regression.at (else): Adjust to Andreas' change.
6537
6538 2002-02-14 Akim Demaille <akim@epita.fr>
6539
6540 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
6541
6542 2002-02-13 Andreas Schwab <schwab@suse.de>
6543
6544 * src/output.c (output_rule_data): Don't output NULL, it might
6545 not be defined yet.
6546
6547 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
6548
6549 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
6550 (Copyright notice): Update.
6551
6552 2002-02-11 Akim Demaille <akim@epita.fr>
6553
6554 * tests/regression.at (%nonassoc and eof): Don't include
6555 nonportable headers.
6556
6557 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
6558
6559 * data/bison.c++: Correct error recovery. Make the user able to
6560 initialize the starting location.
6561
6562 2002-02-07 Akim Demaille <akim@epita.fr>
6563
6564 * tests/input.at: New.
6565
6566 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
6567
6568 * data/bison.c++: Replace some direct m4 expansions by constants. Be
6569 more consistent when naming methods and variables. Put preprocessor
6570 directives around tables only needed for debugging.
6571
6572 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
6573
6574 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
6575 C++ parsers.
6576 (yy::b4_name::parse): Use print_.
6577
6578 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
6579
6580 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
6581
6582 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
6583
6584 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
6585 C++ parsers.
6586 (yy::b4_name::parse): Build verbose error messages, and use error_.
6587
6588 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
6589
6590 * data/bison.c++: Fix m4 quoting in comments.
6591
6592 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
6593
6594 * data/bison.c++: Adjust the parser code. Fix some muscles that were
6595 not expanded by m4.
6596
6597 2002-02-05 Akim Demaille <akim@epita.fr>
6598
6599 * data/bison.c++: Adjust to the M4 back end.
6600 More is certainly needed.
6601
6602 2002-02-05 Akim Demaille <akim@epita.fr>
6603
6604 Give a try to M4 as a back end.
6605
6606 * lib/readpipe.c: New, from wdiff.
6607 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
6608 BISON_HAIRY.
6609 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
6610 specific values. Now it is m4 that performs the lookup.
6611 * src/parse-skel.y: Remove.
6612 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
6613 * src/output.c (actions_output, guards_output)
6614 (token_definitions_output): No longer keeps track of the output
6615 line number, hence remove the second argument.
6616 (guards_output): Check against the guard member of a rule, not the
6617 action member.
6618 Adjust callers.
6619 (output_skeleton): Don't look for the skeleton location, let m4 do
6620 that.
6621 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
6622 file will be used.
6623 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
6624 (prepare): Given that for the time being changesyntax is not
6625 usable in M4, rename the muscles using `-' to `_'.
6626 Define `defines_flag', `output_parser_name' and `output_header_name'.
6627 * src/output.h (actions_output, guards_output)
6628 (token_definitions_output): Adjust prototypes.
6629 * src/scan-skel.l: Instead of scanning the skeletons, it now
6630 processes the output of m4: `__oline__' and `#output'.
6631 * data/bison.simple: Adjust to be used by M4(sugar).
6632 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
6633 to date.
6634 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
6635 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
6636 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
6637 shamelessly stolen from CVS Autoconf.
6638
6639 2002-02-05 Akim Demaille <akim@epita.fr>
6640
6641 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
6642 * configure.in: Check for the declarations of free and malloc.
6643 * src/muscle_tab.c: Adjust.
6644
6645 2002-02-05 Akim Demaille <akim@epita.fr>
6646
6647 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
6648 which have no values.
6649
6650 2002-02-05 Akim Demaille <akim@epita.fr>
6651
6652 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
6653 * data/: here.
6654
6655 2002-01-29 Paul Eggert <eggert@twinsun.com>
6656
6657 * src/bison.simple (YYSIZE_T): Do not define merely because
6658 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
6659 On some platforms, <alloca.h> does not declare YYSTD (size_t).
6660
6661 2002-01-27 Akim Demaille <akim@epita.fr>
6662
6663 Fix `%nonassoc and eof'.
6664
6665 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
6666 which were not properly copied! Replace
6667 memcpy (res->errs, src->errs, src->nerrs);
6668 with
6669 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
6670 !!!
6671 * tests/regression.at (%nonassoc and eof): Adjust to newest
6672 Autotest: `.' is not in the PATH.
6673
6674 2002-01-27 Akim Demaille <akim@epita.fr>
6675
6676 * tests/sets.at (AT_EXTRACT_SETS): New.
6677 (Nullable): Use it.
6678 (Firsts): New.
6679
6680 2002-01-26 Akim Demaille <akim@epita.fr>
6681
6682 * tests/actions.at, tests/calc.at, tests/headers.at,
6683 * tests/torture.at: Adjust to the newest Autotest which no longer
6684 forces `.' in the PATH.
6685
6686 2002-01-25 Akim Demaille <akim@epita.fr>
6687
6688 * tests/regression.at (%nonassoc and eof): New.
6689 Suggested by Robert Anisko.
6690
6691 2002-01-24 Akim Demaille <akim@epita.fr>
6692
6693 Bison dumps core when trying to complain about broken input files.
6694 Reported by Cris van Pelt.
6695
6696 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
6697 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
6698 into...
6699 (Invalid inputs): Strengthen: exercise parse_percent_token.
6700
6701 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
6702
6703 * src/Makefile.am: Add bison.c++.
6704 * src/bison.c++: New skeleton.
6705
6706 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
6707
6708 * po/it.po: New.
6709
6710 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
6711
6712 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
6713
6714 2002-01-20 Marc Autret <marc@gnu.org>
6715
6716 * src/files.c (compute_output_file_names): Fix
6717
6718 2002-01-20 Marc Autret <marc@gnu.org>
6719
6720 * tests/output.at: New test.
6721 * src/files.c (compute_base_names): Don't map extensions when
6722 the YACC flag is set, use defaults.
6723 Reported by Evgeny Stambulchik.
6724
6725 2002-01-20 Marc Autret <marc@gnu.org>
6726
6727 * src/system.h: Need to define __attribute__ away for non-GCC
6728 compilers as well (i.e. the vendor C compiler).
6729 Suggested by Albert Chin-A-Young.
6730
6731 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
6732
6733 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
6734 canonical definition.
6735 * src/system.h: Use the canonical definition for PARAMS (avoids
6736 a conflict with the macro from lib/hash.h).
6737
6738 2002-01-11 Akim Demaille <akim@epita.fr>
6739
6740 * configure.in: Use AC_FUNC_STRNLEN.
6741 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
6742
6743 2002-01-09 Akim Demaille <akim@epita.fr>
6744
6745 * src/files.c, src/files.h (output_infix): New.
6746 (tab_extension): Remove.
6747 (compute_base_names): Compute the former, drop the latter.
6748 * src/output.c (prepare): Insert the muscles `output-infix', and
6749 `output-suffix'.
6750 * src/parse-skel.y (string, string.1): New.
6751 (section.header): Use it.
6752 (section.yacc): Remove.
6753 (prefix): Remove too.
6754 * src/scan-skel.l: Adjust.
6755 * src/bison.simple, src/bison.hairy: Adjust.
6756
6757 2002-01-09 Akim Demaille <akim@epita.fr>
6758
6759 * configure.in (WERROR_CFLAGS): Compute it.
6760 * src/Makefile.am (CFLAGS): Pass it.
6761 * tests/atlocal.in (CFLAGS): Idem.
6762 * src/files.c: Fix a few warnings.
6763 (get_extension_index): Remove, unused.
6764
6765 2002-01-08 Akim Demaille <akim@epita.fr>
6766
6767 * src/getargs.c (AS_FILE_NAME): New.
6768 (getargs): Use it to convert DOSish file names.
6769 * src/files.c (base_name): Rename as full_base_name to avoid
6770 clashes with `base_name ()'.
6771 (filename_split): New.
6772 (compute_base_names): N-th rewrite, using filename_split.
6773
6774 2002-01-08 Akim Demaille <akim@epita.fr>
6775
6776 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
6777 New, stolen from the Fileutils 4.1.
6778 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
6779 * configure.in: Check for the presence of memrchr, and of its
6780 prototype.
6781
6782 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
6783
6784 * lib/hash.h (__P): Added definition for this macro.
6785 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
6786 BUILT_SOURCES, to ensure they are generated first.
6787 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
6788 %error-verbose to allow bootstrapping with bison 1.30x.
6789
6790 2002-01-06 Akim Demaille <akim@epita.fr>
6791
6792 * src/reader.c (parse_braces): Don't fetch the next char, the
6793 convention is to fetch on entry.
6794 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
6795 'switch' without a following semicolon.
6796 * tests/regression.at (braces parsing): New.
6797
6798 2002-01-06 Akim Demaille <akim@epita.fr>
6799
6800 Bison is dead wrong in its RR conflict reports.
6801
6802 * tests/torture.at (GNU Cim Grammar): New.
6803 * src/conflicts.c (count_rr_conflicts): Fix.
6804
6805 2002-01-06 Akim Demaille <akim@epita.fr>
6806
6807 Creating package.m4 from configure.ac causes too many problems.
6808
6809 * tests/Makefile.am (package.m4): Create it by hand,
6810 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
6811
6812 2002-01-06 Akim Demaille <akim@epita.fr>
6813
6814 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
6815 skeleton.h.
6816
6817 2002-01-04 Paul Eggert <eggert@twinsun.com>
6818
6819 * doc/bison.texinfo (Debugging):
6820 Remove YYSTDERR; it's no longer defined or used.
6821 Also, s/cstdio.h/cstdio/.
6822
6823 2002-01-03 Akim Demaille <akim@epita.fr>
6824
6825 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
6826
6827 2002-01-03 Akim Demaille <akim@epita.fr>
6828
6829 * src/parse-skel.y (process_skeleton): Don't bind the parser's
6830 tracing code to --trace, wait for a better --trace option, with
6831 args.
6832
6833 2002-01-03 Akim Demaille <akim@epita.fr>
6834
6835 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
6836 The ISO C++ standard is extremely clear about it: stderr is
6837 considered a macro, not a regular symbol (see table 94 `Header
6838 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
6839 Therefore std:: does not apply to it. It still does with fprintf.
6840 Also, s/cstdio.h/cstdio/.
6841
6842 2002-01-03 Akim Demaille <akim@epita.fr>
6843
6844 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
6845 for non system headers.
6846
6847 2002-01-02 Akim Demaille <akim@epita.fr>
6848
6849 Equip the skeleton chain with location tracking, runtime trace,
6850 pure parser and scanner.
6851
6852 * src/parse-skel.y: Request a pure parser, locations, and prefix
6853 renaming.
6854 (%union): Having several members with the same type does not help
6855 type mismatches, simplify.
6856 (YYPRINT, yyprint): New.
6857 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
6858 (skel_error): this.
6859 Handle locations.
6860 * src/scan-skel.l: Adjust to these changes.
6861 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
6862 (LOCATION_PRINT, skel_control_t): New.
6863
6864 2001-12-30 Akim Demaille <akim@epita.fr>
6865
6866 * src/parse-skel.y: Get rid of the shift/reduce conflict:
6867 replace `gb' with BLANKS.
6868 * src/scan-skel.l: Adjust.
6869
6870 2001-12-30 Akim Demaille <akim@epita.fr>
6871
6872 * src/system.h: We don't need nor want bcopy.
6873 Throw away MS-DOS crap: we don't need getpid.
6874 * configure.in: We don't need strndup. It was even causing
6875 problems: because Flex includes the headers *before* us,
6876 _GNU_SOURCE is not defined by config.h, and therefore strndup was
6877 not visible.
6878 * lib/xstrndup.c: New.
6879 * src/scan-skel.l: Use it.
6880 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
6881 * src/parse-skel.y: Use %directives instead of #defines.
6882
6883 2001-12-30 Akim Demaille <akim@epita.fr>
6884
6885 * src/skeleton.h: New.
6886 * src/output.c (output_parser, output_master_parser): Remove, dead
6887 code.
6888 * src/output.h (get_lines_number, actions_output, guards_output)
6889 (token_definitions_output): Prototype them.
6890 * src/parse-skel.y: Add the license notice.
6891 Include output.h and skeleton.h.
6892 (process_skeleton): Returns void, and takes a single parameter.
6893 * src/scan-skel.l: Add the license notice.
6894 Include skeleton.h.
6895 Don't use %option yylineno: it seems that then Flex imagines
6896 REJECT has been used, and therefore it won't reallocate its
6897 buffers (which makes no other sense to me than a bug). It results
6898 in warnings for `unused: yy_flex_realloc'.
6899
6900 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
6901
6902 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
6903 (MUSCLE_INSERT_PREFIX): ...to there.
6904 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
6905 (MUSCLE_INSERT_PREFIX): Move from here...
6906
6907 * src/bison.hairy: Add a section directive. Put braces around muscle
6908 names. This parser skeleton is still broken, but Bison should not
6909 choke on a bad muscle 'syntax'.
6910 * src/bison.simple: Add a section directive. Put braces around muscle
6911 names.
6912
6913 * src/files.h (strsuffix, stringappend): Add declarations.
6914 (tab_extension): Add declaration.
6915 (short_base_name): Add declaration.
6916
6917 * src/files.c (strsuffix, stringappend): No longer static. These
6918 functions are used in the skeleton parser.
6919 (tab_extension): New.
6920 (compute_base_names): Use the computations done in this function
6921 to guess if the generated parsers should have '.tab' in their
6922 names.
6923 (short_base_name): No longer static.
6924
6925 * src/output.c (output_skeleton): New.
6926 (output): Disable call to output_master_parser, and give a try to
6927 a new skeleton handling system.
6928 (guards_output, actions_output): No longer static.
6929 (token_definitions_output, get_lines_number): No longer static.
6930
6931 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
6932
6933 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
6934 parse-skel.y.
6935
6936 * src/parse-skel.y: New file.
6937 * src/scan-skel.l: New file.
6938
6939 2001-12-29 Akim Demaille <akim@epita.fr>
6940
6941 %name-prefix is broken.
6942
6943 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
6944 Adjust all dependencies.
6945 * tests/headers.at (export YYLTYPE): Strengthen this test: use
6946 %name-prefix.
6947
6948 Renaming yylval but not yylloc is not consistent. Now we do.
6949
6950 * src/bison.simple: Prefix yylloc if used.
6951 * doc/bison.texinfo (Decl Summary): Document that.
6952
6953 2001-12-29 Akim Demaille <akim@epita.fr>
6954
6955 * doc/bison.texinfo: Promote `%long-directive' over
6956 `%long_directive'.
6957 Remove all references to fixed-output-files, yacc is enough.
6958
6959 2001-12-29 Akim Demaille <akim@epita.fr>
6960
6961 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
6962 user prologue. These are defaults.
6963 * tests/actions.at (Mid-rule actions): Make sure the user can
6964 define YYDEBUG and YYERROR_VERBOSE.
6965
6966 2001-12-29 Akim Demaille <akim@epita.fr>
6967
6968 * src/output.c (header_output): Don't forget to export YYLTYPE and
6969 yylloc.
6970 * tests/headers.at (export YYLTYPE): New, make sure it does.
6971 * tests/regression.at (%union and --defines, Invalid CPP headers):
6972 Move to...
6973 * tests/headers.at: here.
6974
6975 2001-12-29 Akim Demaille <akim@epita.fr>
6976
6977 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
6978
6979 2001-12-29 Akim Demaille <akim@epita.fr>
6980
6981 * tests/actions.at (Mid-rule actions): Output on a single line
6982 instead of several.
6983
6984 2001-12-29 Akim Demaille <akim@epita.fr>
6985
6986 * doc/bison.texinfo: Formatting changes.
6987
6988 2001-12-29 Akim Demaille <akim@epita.fr>
6989
6990 Don't store the token defs in a muscle, just be ready to output it
6991 on command. Now possible via `symbols'. Fixes a memory leak.
6992
6993 * src/output.c (token_definitions_output): New.
6994 (output_parser, header_output): Use it.
6995 * src/reader.c (symbols_save): Remove.
6996
6997 2001-12-29 Akim Demaille <akim@epita.fr>
6998
6999 * src/bison.simple: Do not provide a default for YYSTYPE and
7000 YYLTYPE before the user's prologue. Otherwise it's hardly... a
7001 default.
7002
7003 2001-12-29 Akim Demaille <akim@epita.fr>
7004
7005 Mid-rule actions are simply... ignored!
7006
7007 * src/reader.c (readgram): Be sure to attach mid-rule actions to
7008 the empty-rule associated to the dummy symbol, not to the host
7009 rule.
7010 * tests/actions.at (Mid-rule actions): New.
7011
7012 2001-12-29 Akim Demaille <akim@epita.fr>
7013
7014 Memory leak.
7015
7016 * src/reader.c (reader): Free grammar.
7017
7018 2001-12-29 Akim Demaille <akim@epita.fr>
7019
7020 Memory leak.
7021
7022 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
7023 since it allocates it for each state, although only one is needed.
7024 (allocate_storage): Do it here.
7025
7026 2001-12-29 Akim Demaille <akim@epita.fr>
7027
7028 * src/options.h, src/options.c (create_long_option_table): Rename
7029 as...
7030 (long_option_table_new): this, with a clearer prototype.
7031 (percent_table): Remove, unused,
7032 * src/getargs.c (getargs): Adjust.
7033
7034 2001-12-29 Akim Demaille <akim@epita.fr>
7035
7036 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
7037 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
7038 as states.
7039
7040 2001-12-29 Akim Demaille <akim@epita.fr>
7041
7042 * src/lalr.c (build_relations): Rename `states' as `states1'.
7043 Sorry, I don't understand exactly what it is, no better name...
7044
7045 2001-12-29 Akim Demaille <akim@epita.fr>
7046
7047 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
7048 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
7049 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
7050 as rules.
7051
7052 2001-12-29 Akim Demaille <akim@epita.fr>
7053
7054 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
7055 ago.
7056
7057 2001-12-29 Akim Demaille <akim@epita.fr>
7058
7059 * src/reader.c, src/reader.h (user_toknums): Remove.
7060 Adjust all users to use symbols[i]->user_token_number.
7061
7062 2001-12-29 Akim Demaille <akim@epita.fr>
7063
7064 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
7065 Adjust all users to use symbols[i]->prec or ->assoc.
7066
7067 2001-12-29 Akim Demaille <akim@epita.fr>
7068
7069 * src/reader.c, src/reader.h (tags): Remove.
7070 Adjust all users to use symbols[i]->tag.
7071
7072 2001-12-29 Akim Demaille <akim@epita.fr>
7073
7074 * src/gram.h, src/gram.c (symbols): New, similar to state_table
7075 and rule_table.
7076 * src/reader.c (packsymbols): Fill this table.
7077 Drop sprec.
7078 * src/conflicts.c (resolve_sr_conflict): Adjust.
7079 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
7080 single table.
7081 Use symbols[i]->tag instead of tags[i].
7082
7083 2001-12-29 Akim Demaille <akim@epita.fr>
7084
7085 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
7086 In addition, put a comment in there, to replace...
7087 * tests/regression.at (%union and C comments): Remove.
7088
7089 2001-12-29 Akim Demaille <akim@epita.fr>
7090
7091 * tests/regression.at (Web2c Actions): Blindly move the actual
7092 output as expected output. The contents *seem* right to me, but I
7093 can't pretend reading perfectly parser tables... Nonetheless, all
7094 the other tests pass correctly, the table look OK, even though the
7095 presence of `$axiom' is to be noted: AFAICS it is useless (but
7096 harmless).
7097
7098 2001-12-29 Akim Demaille <akim@epita.fr>
7099
7100 * src/reader.c (readgram): Don't add the rule 0 if there were no
7101 rules read. In other words, add it _after_ having performed
7102 grammar sanity checks.
7103 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
7104
7105 2001-12-29 Akim Demaille <akim@epita.fr>
7106
7107 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
7108 visible, and some states have now a different number.
7109
7110 2001-12-29 Akim Demaille <akim@epita.fr>
7111
7112 * src/reader.c (readgram): Bind the initial rule's lineno to that
7113 of the first rule.
7114 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
7115 (Solved SR Conflicts): Adjust rule 0's line number.
7116
7117 2001-12-29 Akim Demaille <akim@epita.fr>
7118
7119 Fix the `GAWK Grammar' failure.
7120
7121 * src/LR0.c (final_state): Initialize to -1 so that we do compute
7122 the reductions of the first state which was mistakenly confused
7123 with the final state because precisely final_state was initialized
7124 to 0.
7125 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
7126 now noticed by Bison.
7127 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
7128 have a reduction on $default.
7129
7130 2001-12-29 Akim Demaille <akim@epita.fr>
7131
7132 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
7133 rule line numbers.
7134 * src/closure.c (print_closure): Likewise.
7135 * src/derives.c (print_derives): Likewise.
7136 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
7137 now.
7138
7139 2001-12-29 Akim Demaille <akim@epita.fr>
7140
7141 * src/lalr.c (lookaheads_print): New.
7142 (lalr): Call it when --trace-flag.
7143 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
7144 are dumped.
7145
7146 2001-12-29 Akim Demaille <akim@epita.fr>
7147
7148 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
7149 when walking through ritem, even via rule->rhs.
7150 * src/reduce.c (dump_grammar, useful_production, reduce_output)
7151 (useful_production, useless_nonterminals): Likewise.
7152 (reduce_grammar_tables): Likewise, plus update nritems.
7153 * src/nullable.c (set_nullable): Likewise.
7154 * src/lalr.c (build_relations): Likewise.
7155 * tests/sets.at (Nullable): Adjust.
7156 Fortunately, now, the $axiom is no longer nullable.
7157
7158 2001-12-29 Akim Demaille <akim@epita.fr>
7159
7160 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
7161 the 0-sentinel.
7162 * src/gram.c (ritem_longest_rhs): Likewise.
7163 * src/reduce.c (nonterminals_reduce): Likewise.
7164 * src/print_graph.c (print_graph): Likewise.
7165 * src/output.c (output_rule_data): Likewise.
7166 * src/nullable.c (set_nullable): Likewise.
7167
7168 2001-12-29 Akim Demaille <akim@epita.fr>
7169
7170 * src/output.c: Comment changes.
7171
7172 2001-12-27 Paul Eggert <eggert@twinsun.com>
7173
7174 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
7175 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
7176 Sparc, as they were causing more porting problems than the
7177 (minor) performance improvement was worth.
7178
7179 Also, catch up with 1.31's YYSTD.
7180
7181 2001-12-27 Akim Demaille <akim@epita.fr>
7182
7183 * src/output.c (output_gram): Rely on nritems, not the
7184 0-sentinel. See below.
7185 Use -1 as separator, not 0.
7186 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
7187 Rely on -1 as separator in yyrhs, instead of 0.
7188 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
7189 twice `Now at end of input', therefore there are two lines less to
7190 expect.
7191
7192 2001-12-27 Akim Demaille <akim@epita.fr>
7193
7194 * tests/regression.at (Unresolved SR Conflicts):
7195 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
7196 below.
7197
7198 2001-12-27 Akim Demaille <akim@epita.fr>
7199
7200 * src/LR0.c (new_state): Recognize the final state by the fact it
7201 is reached by eoftoken.
7202 (insert_start_shifting_state, insert_eof_shifting_state)
7203 (insert_accepting_state, augment_automaton): Remove, since now
7204 these states are automatically computed from the initial state.
7205 (generate_states): Adjust.
7206 * src/print.c: When reporting a rule number to the user, substract
7207 1, so that the axiom rule is rule 0, and the first user rule is 1.
7208 * src/reduce.c: Likewise.
7209 * src/print_graph.c (print_core): For the time being, just as for
7210 the report, depend upon --trace-flags to dump the full set of
7211 items.
7212 * src/reader.c (readgram): Once the grammar read, insert the rule
7213 0: `$axiom: START-SYMBOL $'.
7214 * tests/set.at: Adjust: rule 0 is now displayed, and since the
7215 number of the states has changed (the final state is no longer
7216 necessarily the last), catch up.
7217
7218 2001-12-27 Akim Demaille <akim@epita.fr>
7219
7220 Try to make the use of the eoftoken valid. Given that its value
7221 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
7222 is used instead of > 0 where appropriate, (ii), depend upon nritems
7223 instead of the 0-sentinel.
7224
7225 * src/gram.h, src/gram.c (nritems): New.
7226 Expected to be duplication of nitems, but for the time being...
7227 * src/reader.c (packgram): Assert nritems and nitems are equal.
7228 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
7229 * src/closure.c (print_closure, print_fderives): Likewise.
7230 * src/gram.c (ritem_print): Likewise.
7231 * src/print.c (print_core, print_grammar): Likewise.
7232 * src/print_graph.c: Likewise.
7233
7234 2001-12-27 Akim Demaille <akim@epita.fr>
7235
7236 * src/main.c (main): If there are complains after grammar
7237 reductions, then output the report anyway if requested, then die.
7238 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
7239 * src/reader.c (eoftoken): New.
7240 (parse_token_decl): If the token being defined has value `0', it
7241 is the eoftoken.
7242 (packsymbols): No longer hack `tags' to insert `$' by hand.
7243 Be sure to preserve the value of the eoftoken.
7244 (reader): Make sure eoftoken is defined.
7245 Initialize nsyms to 0: now eoftoken is created just like the others.
7246 * src/print.c (print_grammar): Don't special case the eof token.
7247 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
7248 lie anyway, albeit pleasant.
7249 * tests/calc.at: Exercise error messages with eoftoken.
7250 Change the grammar so that empty input is invalid.
7251 Adjust expectations.
7252 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
7253
7254 2001-12-27 Akim Demaille <akim@epita.fr>
7255
7256 * configure.in: Check the protos of strchr ans strspn.
7257 Replace strchr if needed.
7258 * src/system.h: Provide the protos of strchr, strspn and memchr if
7259 missing.
7260 * lib/strchr.c: New.
7261 * src/reader.c (symbols_save): Use strchr.
7262
7263 2001-12-27 Akim Demaille <akim@epita.fr>
7264
7265 * src/print.c, src/print_graph.c (escape): New.
7266 Use it to quote the TAGS outputs.
7267 * src/print_graph.c (print_state): Now errors are in red, and
7268 reductions in green.
7269 Prefer high to wide: output the state number on a line of its own.
7270
7271 2001-12-27 Akim Demaille <akim@epita.fr>
7272
7273 * src/state.h, src/state.c (reductions_new): New.
7274 * src/LR0.c (set_state_table): Let all the states have a
7275 `reductions', even if reduced to 0.
7276 (save_reductions): Adjust.
7277 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
7278 * src/print.c (print_reductions, print_actions): Adjust.
7279 * src/output.c (action_row): Adjust.
7280
7281 2001-12-27 Akim Demaille <akim@epita.fr>
7282
7283 * src/state.h, src/state.c (errs_new, errs_dup): New.
7284 * src/LR0.c (set_state_table): Let all the states have an errs,
7285 even if reduced to 0.
7286 * src/print.c (print_errs, print_reductions): Adjust.
7287 * src/output.c (output_actions, action_row): Adjust.
7288 * src/conflicts.c (resolve_sr_conflict): Adjust.
7289
7290 2001-12-27 Akim Demaille <akim@epita.fr>
7291
7292 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
7293
7294 2001-12-27 Akim Demaille <akim@epita.fr>
7295
7296 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
7297 * src/print.c: here.
7298 (lookaheadset, shiftset): New, used as additional storage by
7299 print_reductions.
7300 (print_results): Adjust.
7301 (print_shifts, print_gotos, print_errs): New, extracted from...
7302 (print_actions): here.
7303 * src/print_graph.c (print_actions): Remove dead code.
7304
7305 2001-12-27 Akim Demaille <akim@epita.fr>
7306
7307 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
7308 `$n' and `@n'.
7309
7310 2001-12-27 Akim Demaille <akim@epita.fr>
7311
7312 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
7313 (build_relations): Adjust.
7314
7315 2001-12-27 Akim Demaille <akim@epita.fr>
7316
7317 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
7318 duplication.
7319
7320 2001-12-27 Akim Demaille <akim@epita.fr>
7321
7322 * src/reader.c (packgram): Catch nitems overflows.
7323
7324 2001-12-27 Akim Demaille <akim@epita.fr>
7325
7326 * src/files.c, src/files.h (guard_obstack): Remove.
7327 * src/output.c (output): Adjust.
7328 * src/reader.c (parse_braces): New, factoring...
7329 (copy_action, copy_guard): these two which are renamed as...
7330 (parse_action, parse_guard): these.
7331 As a voluntary consequence, using braces around guards is now
7332 mandatory.
7333
7334 2001-12-27 Akim Demaille <akim@epita.fr>
7335
7336 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
7337 * src/reader.c (symbol_list): `guard' and `guard_line' are new
7338 members.
7339 (symbol_list_new): Adjust.
7340 (copy_action): action_line is the first line, not the last.
7341 (copy_guard): Just as for actions, store the `action' only, not
7342 the switch/case/break flesh.
7343 Don't parse the user action that might follow the guard, let...
7344 (readgram): do it, i.e., now, there can be an action after a
7345 guard.
7346 In other words the guard is just explicitly optional.
7347 (packgram): Adjust.
7348 * src/output.c (guards_output): New.
7349 (output_parser): Call it when needed.
7350 (output): Also free the guard and attrs obstacks.
7351 * src/files.c, src/files.h (obstack_save): Remove.
7352 (output_files): Remove.
7353 As a result, if one needs the former `.act' file, using an
7354 appropriate skeleton which requires actions and guards is now
7355 required.
7356 * src/main.c (main): Adjust.
7357 * tests/semantic.at: New.
7358 * tests/regression.at: Use `input.y' as input file name.
7359 Avoid 8+3 problems by requiring input.c when the test needs the
7360 parser.
7361
7362 2001-12-27 Akim Demaille <akim@epita.fr>
7363
7364 * src/reader.c (symbol_list_new): Be sure to initialize all the
7365 fields.
7366
7367 2001-12-27 Akim Demaille <akim@epita.fr>
7368
7369 All the hacks using a final pseudo state are now useless.
7370
7371 * src/LR0.c (set_state_table): state_table holds exactly nstates.
7372 * src/lalr.c (nLA): New.
7373 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
7374 instead of lookaheadsp from the pseudo state (nstate + 1).
7375
7376 2001-12-27 Akim Demaille <akim@epita.fr>
7377
7378 * src/output.c (action_row, token_actions): Use a state_t instead
7379 of a integer, and nlookaheads instead of the following state's
7380 lookaheadsp.
7381
7382 2001-12-27 Akim Demaille <akim@epita.fr>
7383
7384 * src/conflicts.c (log_resolution, flush_shift)
7385 (resolve_sr_conflict, set_conflicts, solve_conflicts)
7386 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
7387 (conflicts_print, print_reductions): Use a state_t instead of an
7388 integer when referring to a state.
7389 As much as possible, depend upon nlookaheads, instead of the
7390 `lookaheadsp' member of the following state (since lookaheads of
7391 successive states are successive, the difference between state n + 1
7392 and n served as the number of lookaheads for state n).
7393 * src/lalr.c (add_lookback_edge): Likewise.
7394 * src/print.c (print_core, print_actions, print_state)
7395 (print_results): Likewise.
7396 * src/print_graph.c (print_core, print_actions, print_state)
7397 (print_graph): Likewise.
7398 * src/conflicts.h: Adjust.
7399
7400 2001-12-27 Akim Demaille <akim@epita.fr>
7401
7402 * src/bison.hairy: Formatting/comment changes.
7403 ANSIfy.
7404 Remove `register' indications.
7405 Add plenty of `static'.
7406
7407 2001-12-27 Akim Demaille <akim@epita.fr>
7408
7409 * src/output.c (prepare): Drop the muscle `ntbase' which
7410 duplicates ntokens.
7411 * src/bison.simple: Formatting/comment changes.
7412 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
7413 is an undocumented synonym.
7414
7415 2001-12-22 Akim Demaille <akim@epita.fr>
7416
7417 * src/output.c (output_table_data): Change the prototype to use
7418 `int' for array ranges: some invocations do pass an int, not a
7419 short.
7420 Reported by Wayne Green.
7421
7422 2001-12-22 Akim Demaille <akim@epita.fr>
7423
7424 Some actions of web2c.y are improperly triggered.
7425 Reported by Mike Castle.
7426
7427 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
7428 * tests/regression.at (Web2c): Rename as...
7429 (Web2c Report): this.
7430 (Web2c Actions): New.
7431
7432 2001-12-22 Akim Demaille <akim@epita.fr>
7433
7434 Reductions in web2c.y are improperly reported.
7435 Reported by Mike Castle.
7436
7437 * src/conflicts.c (print_reductions): Fix.
7438 * tests/regression.at (Web2c): New.
7439
7440 2001-12-18 Akim Demaille <akim@epita.fr>
7441
7442 Some host fail on `assert (!"foo")', which expands to
7443 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
7444 Reported by Nelson Beebee.
7445
7446 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
7447 `#define it_succeeded 0' and `assert (it_succeeded)'.
7448
7449 2001-12-17 Marc Autret <autret_m@epita.fr>
7450
7451 * src/bison.simple: Don't hard code the skeleton line and filename.
7452 * src/output.c (output_parser): Rename 'line' as 'output_line'.
7453 New line counter 'skeleton_line' (skeleton-line muscle).
7454
7455 2001-12-17 Paul Eggert <eggert@twinsun.com>
7456
7457 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
7458 YYDEBUG must be defined to a nonzero value.
7459
7460 * src/bison.simple (yytname): Do not assume that the user defines
7461 YYDEBUG to a properly parenthesized expression.
7462
7463 2001-12-17 Akim Demaille <akim@epita.fr>
7464
7465 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
7466 nlookaheads is a new member.
7467 Adjust all users.
7468 * src/lalr.h (nlookaheads): Remove this orphan declaration.
7469 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
7470 state.
7471
7472 2001-12-17 Akim Demaille <akim@epita.fr>
7473
7474 * src/files.h, src/files.c (open_files, close_files): Remove.
7475 * src/main.c (main): Don't open/close files, nor invoke lex_free,
7476 let...
7477 * src/reader.c (reader): Do it.
7478
7479 2001-12-17 Akim Demaille <akim@epita.fr>
7480
7481 * src/conflicts.c (print_reductions): Formatting changes.
7482
7483 2001-12-17 Akim Demaille <akim@epita.fr>
7484
7485 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
7486 (flush_reduce): New.
7487 (resolve_sr_conflict): Adjust.
7488
7489 2001-12-17 Akim Demaille <akim@epita.fr>
7490
7491 * src/output.c (output_obstack): Be static and rename as...
7492 (format_obstack): this, to avoid any confusion with files.c's
7493 output_obstack.
7494 * src/reader.h (muscle_obstack): Move to...
7495 * src/output.h: here, since it's defined in output.c.
7496
7497 2001-12-17 Akim Demaille <akim@epita.fr>
7498
7499 * src/output.c (action_row, save_column, default_goto)
7500 (sort_actions, matching_state, pack_vector): Better variable
7501 locality.
7502
7503 2001-12-17 Akim Demaille <akim@epita.fr>
7504
7505 * src/output.c: Various formatting changes.
7506
7507 2001-12-17 Akim Demaille <akim@epita.fr>
7508
7509 * src/files.c (output_files): Free the output_obstack.
7510 * src/main.c (main): Call print and print_graph conditionally.
7511 * src/print.c (print): Work unconditionally.
7512 * src/print_graph.c (print_graph): Work unconditionally.
7513 * src/conflicts.c (log_resolution): Output only if verbose_flag.
7514
7515 2001-12-16 Marc Autret <autret_m@epita.fr>
7516
7517 * src/output.c (actions_output): Fix. When we use %no-lines,
7518 there is one less line per action.
7519
7520 2001-12-16 Marc Autret <autret_m@epita.fr>
7521
7522 * src/bison.simple: Remove a useless #line directive.
7523 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
7524 * src/output.c (get_lines_number): New.
7525 (output_parser): Adjust, now takes care about the lines of a
7526 output muscles.
7527 Fix line numbering.
7528 (actions_output): Computes the number of lines taken by actions.
7529 (output_master_parser): Insert new skeleton which is the name of
7530 the output parser file name.
7531
7532 2001-12-15 Marc Autret <autret_m@epita.fr>
7533
7534 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
7535
7536 2001-12-15 Marc Autret <autret_m@epita.fr>
7537
7538 * src/output.c (output_gram): Keep track of the hairy one.
7539
7540 2001-12-15 Akim Demaille <akim@epita.fr>
7541
7542 Make `make distcheck' work.
7543
7544 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
7545 system.h which uses libgettext.h.
7546
7547 2001-12-15 Akim Demaille <akim@epita.fr>
7548
7549 * src/nullable.c (set_nullable): Useless rules must be skipped,
7550 otherwise, since we range over their symbols, we might look at a
7551 nonterminal which no longer ``exists'', i.e., it is not counted in
7552 `nvars', hence we overflow our arrays.
7553
7554 2001-12-15 Akim Demaille <akim@epita.fr>
7555
7556 The header can also be produced directly, without any obstack!
7557 Yahoo!
7558
7559 * src/files.c, src/files.h (defines_obstack): Remove.
7560 (compute_header_macro): Global.
7561 (defines_obstack_save): Remove.
7562 * src/reader.c (parse_union_decl): No longer output to
7563 defines_obstack: its content can be found in the `stype' muscle
7564 anyway.
7565 (output_token_translations): Merge into...
7566 (symbols_output): this.
7567 Rename as...
7568 (symbols_save): this.
7569 (reader): Adjust.
7570 * src/output.c (header_output): New.
7571 (output): Call it.
7572
7573 2001-12-15 Akim Demaille <akim@epita.fr>
7574
7575 * src/reader.c (parse_union_decl): Instead of handling two obstack
7576 simultaneously, use one to define the `stype' muscle, and use the
7577 value of the latter to fill defines_obstack.
7578 (copy_comment): Remove.
7579 (copy_comment2): Work for a single obstack.
7580 Rename as...
7581 (copy_comment): this.
7582
7583 2001-12-15 Akim Demaille <akim@epita.fr>
7584
7585 * src/lex.c, src/lex.h (xgetc): No longer static.
7586 * src/reader.c (parse_union_decl): Revamp.
7587
7588 2001-12-15 Akim Demaille <akim@epita.fr>
7589
7590 Still making progress in separating Bison into (i) input, (ii)
7591 process, (iii) output: now we can directly output the parser file
7592 without using table_obstack at all.
7593
7594 * src/files.c, src/files.h (table_obstack): Bye bye.
7595 (parser_file_name): New.
7596 * src/files.c (compute_output_file_names): Compute it.
7597 * src/output.c (actions_output, output_parser)
7598 (output_master_parser): To a file instead of an obstack.
7599
7600 2001-12-15 Akim Demaille <akim@epita.fr>
7601
7602 Attach actions to rules, instead of pre-outputting them to
7603 actions_obstack.
7604
7605 * src/gram.h (rule_t): action and action_line are new members.
7606 * src/reader.c (symbol_list): Likewise.
7607 (copy_action): Save the actions within the rule.
7608 (packgram): Save them in rule_table.
7609 * src/output.c (actions_output): New.
7610 (output_parser): Use it on `%%actions'.
7611 (output_rule_data): Don't free rule_table.
7612 (output): Do it.
7613 (prepare): Don't save the `action' muscle.
7614 * src/bison.simple: s/%%action/%%actions/.
7615
7616 2001-12-15 Akim Demaille <akim@epita.fr>
7617
7618 * src/reader.c (copy_action): When --yacc, don't append a `;'
7619 to the user action: let it fail if lacking.
7620 Suggested by Arnold Robbins and Tom Tromey.
7621
7622 2001-12-14 Akim Demaille <akim@epita.fr>
7623
7624 * src/lex.c (literalchar): Simply return the char you decoded, non
7625 longer mess around with obstacks and int pointers.
7626 Adjust all callers.
7627
7628 2001-12-14 Akim Demaille <akim@epita.fr>
7629
7630 * src/lex.c (literalchar): Don't escape the special characters,
7631 just decode them, and keep them as char (before, eol was output as
7632 the 2 char string `\n' etc.).
7633 * src/output.c (output_rule_data): Use quotearg to output the
7634 token strings.
7635
7636 2001-12-13 Paul Eggert <eggert@twinsun.com>
7637
7638 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
7639 Do not infringe on the global user namespace when using C++.
7640 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
7641 All uses of `fprintf' and `stderr' changed.
7642
7643 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
7644
7645 2001-12-13 Akim Demaille <akim@epita.fr>
7646
7647 The computation of nullable is broken: it doesn't handle empty
7648 RHS's properly.
7649
7650 * tests/torture.at (GNU AWK Grammar): New.
7651 * tests/sets.at (Nullable): New.
7652 * src/nullable.c (set_nullable): Instead of blindly looping over
7653 `ritems', loop over the rules, and then over their rhs's.
7654
7655 Work around Autotest bugs.
7656
7657 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
7658 frame, because Autotest understand lines starting with a `+' as
7659 traces from the shell. Then, they are not processed properly.
7660 Admittedly an Autotest bug, but we don't have time to wait for
7661 Autotest to catch up.
7662 * tests/regression.at (Broken Closure): Adjust to the new table
7663 frames.
7664 Move to...
7665 * tests/sets.at: here.
7666
7667 2001-12-13 Akim Demaille <akim@epita.fr>
7668
7669 * src/closure.c (closure): Use nrules instead of playing tricks
7670 with BITS_PER_WORD.
7671
7672 2001-12-13 Akim Demaille <akim@epita.fr>
7673
7674 * src/print.c (print_actions): Output the handling of `$' as the
7675 traces do: shifting the token EOF. Before EOF was treated as a
7676 nonterminal.
7677 * tests/regression.at: Adjust some tests.
7678 * src/print_graph.c (print_core): Complete the set of items via
7679 closure. The next-to-final and final states are still unsatisfying,
7680 but that's to be addressed elsewhere.
7681 No longer output the rule numbers, but do output the state number.
7682 A single loop for the shifts + gotos is enough, but picked a
7683 distinct color for each.
7684 (print_graph): Initialize and finalize closure.
7685
7686 2001-12-13 Akim Demaille <akim@epita.fr>
7687
7688 * src/reader.c (readgram): Remove dead code, an strip useless
7689 braces.
7690 (get_type): Remove, unused.
7691
7692 2001-12-12 Akim Demaille <akim@epita.fr>
7693
7694 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
7695 on that of lib/error.c.
7696
7697 2001-12-12 Akim Demaille <akim@epita.fr>
7698
7699 Some hosts don't like `/' in includes.
7700
7701 * src/system.h: Include libgettext.h without qualifying the path.
7702 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
7703 $(top_srcdir).
7704
7705 2001-12-11 Marc Autret <autret_m@epita.fr>
7706
7707 * src/output.c (output_parser): Remove useless muscle.
7708
7709 2001-12-11 Marc Autret <autret_m@epita.fr>
7710
7711 * src/bison.simple: Remove #line just before %%epilogue. It
7712 is now handled in ...
7713 * src/reader.c (read_additionnal_code): Add the output of a
7714 #line for the epilogue.
7715
7716 2001-12-10 Marc Autret <autret_m@epita.fr>
7717
7718 * src/reader.c (copy_definition): Re-use CPP-outed code which
7719 replace precedent remove.
7720 * src/bison.simple: Remove #line before %%prologue because
7721 %%input-line is wrong at this time.
7722
7723 2001-12-10 Marc Autret <autret_m@epita.fr>
7724
7725 * src/reader.c (symbols_output): Clean up.
7726 * src/output.c (output_gram, output): Clean up.
7727
7728 2001-12-10 Akim Demaille <akim@epita.fr>
7729
7730 * src/lalr.c (initialize_lookaheads): New. Extracted from...
7731 * src/LR0.c (set_state_table): here.
7732 * src/lalr.c (lalr): Call it.
7733
7734 2001-12-10 Akim Demaille <akim@epita.fr>
7735
7736 * src/state.h (shifts): Remove the `number' member: shifts are
7737 attached to state, hence no longer need to be labelled with a
7738 state number.
7739
7740 2001-12-10 Akim Demaille <akim@epita.fr>
7741
7742 Now that states have a complete set of members, the linked list of
7743 shifts is useless: just fill directly the state's shifts member.
7744
7745 * src/state.h (shifts): Remove the `next' member.
7746 * src/LR0.c (first_state, last_state): Remove.
7747 Adjust the callers.
7748 (augment_automaton): Don't look for the shifts that must be added
7749 a shift on EOF: it is those of the state we looked for! But now,
7750 since shifts are attached, it is no longer needed to looking
7751 merely by its id: its number.
7752
7753 2001-12-10 Akim Demaille <akim@epita.fr>
7754
7755 * src/LR0.c (augment_automaton): Better variable locality.
7756 Remove an impossible branch: if there is a state corresponding to
7757 the start symbol being shifted, then there is shift for the start
7758 symbol from the initial state.
7759
7760 2001-12-10 Akim Demaille <akim@epita.fr>
7761
7762 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
7763 only when appropriate: when insert_start_shifting_state' is not
7764 invoked.
7765 * tests/regression.at (Rule Line Numbers): Adjust.
7766
7767 2001-12-10 Akim Demaille <akim@epita.fr>
7768
7769 * src/LR0.c (augment_automaton): Now that all states have shifts,
7770 merge the two cases addition shifts to the initial state.
7771
7772 2001-12-10 Akim Demaille <akim@epita.fr>
7773
7774 * src/lalr.c (set_state_table): Move to...
7775 * src/LR0.c: here.
7776 * src/lalr.c (lalr): Don't call it...
7777 * src/LR0.c (generate_states): do it.
7778 * src/LR0.h (first_state): Remove, only the table is used.
7779
7780 2001-12-10 Akim Demaille <akim@epita.fr>
7781
7782 * src/LR0.h (first_shift, first_reduction): Remove.
7783 * src/lalr.c: Don't use first_shift: find shifts through the
7784 states.
7785
7786 2001-12-10 Akim Demaille <akim@epita.fr>
7787
7788 * src/LR0.c: Attach shifts to states as soon as they are
7789 computed.
7790 * src/lalr.c (set_state_table): Instead of assigning shifts to
7791 state, just assert that the mapping was properly done.
7792
7793 2001-12-10 Akim Demaille <akim@epita.fr>
7794
7795 * src/LR0.c (insert_start_shift): Rename as...
7796 (insert_start_shifting_state): this.
7797 (insert_eof_shifting_state, insert_accepting_state): New.
7798 (augment_automaton): Adjust.
7799 Better locality of the variables.
7800 When looking if the start_symbol is shifted from the initial
7801 state, using `while (... symbol != start_symbol ...)' sounds
7802 better than `while (... symbol < start_symbol ...)': If fail
7803 to see how the order between symbols could be relevant!
7804
7805 2001-12-10 Akim Demaille <akim@epita.fr>
7806
7807 * src/getargs.h: Don't declare `spec_name_prefix' and
7808 `spec_file_prefix', declared by src/files.h.
7809 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
7810 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
7811 * src/output.c (prepare): Adjust.
7812 * src/reader.c (symbols_output): Likewise.
7813 * src/vmsgetargs.c: Vaguely adjust, but who cares?
7814
7815 2001-12-10 Akim Demaille <akim@epita.fr>
7816
7817 * src/muscle_tab.c (muscle_init): NULL is a better default than
7818 `"0"'.
7819
7820 2001-12-10 Akim Demaille <akim@epita.fr>
7821
7822 * src/reader.c (reader): Calling symbols_output once is enough.
7823
7824 2001-12-10 Akim Demaille <akim@epita.fr>
7825
7826 Now that states have a complete set of members, the linked list of
7827 reductions is useless: just fill directly the state's reductions
7828 member.
7829
7830 * src/state.h (struct reductions): Remove member `number' and
7831 `next'.
7832 * src/LR0.c (first_reduction, last_reduction): Remove.
7833 (save_reductions): Don't link the new reductions, store them in
7834 this_state.
7835 * src/lalr.c (set_state_table): No need to attach reductions to
7836 states, it's already done.
7837 * src/output.c (output_actions): No longer free the shifts, then
7838 the reductions, then the states: free all the states and their
7839 members.
7840
7841 2001-12-10 Akim Demaille <akim@epita.fr>
7842
7843 * src/options.c (OPTN, DRTV, BOTH): New.
7844 (option_table): Use them.
7845
7846 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
7847 the job of system.h.
7848 * src/options.c: Don't include stdio.h and xalloc.h for the same
7849 reasons.
7850
7851 2001-12-10 Akim Demaille <akim@epita.fr>
7852
7853 * src/output.c (output, prepare): Make sure the values of the
7854 muscles `action' and `prologue' are 0-terminated.
7855
7856 2001-12-10 Akim Demaille <akim@epita.fr>
7857
7858 Clean up GCC warnings.
7859
7860 * src/reader.c (copy_action): `buf' is not used.
7861 (parse_skel_decl): Be static.
7862 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
7863 * src/options.h (create_long_option_table): Have a real prototype.
7864 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
7865 (hash_delete_at): Return const void *.
7866 Adjust casts to preserve the const.
7867
7868 2001-12-10 Akim Demaille <akim@epita.fr>
7869
7870 * configure.in: Require 2.52g.
7871 M4 is not needed, but AUTOM4TE is.
7872 * m4/m4.m4: Remove.
7873 * tests/Makefile.am: Adjust.
7874
7875 2001-12-10 Akim Demaille <akim@epita.fr>
7876
7877 One structure for states is enough, even though theoretically
7878 there are LR(0) states and LALR(1) states.
7879
7880 * src/lalr.h (state_t): Remove.
7881 (state_table): Be state_t **, not state_t *.
7882 * src/state.h (core, CORE_ALLOC): Rename as...
7883 (state_t, STATE_ALLOC): this.
7884 Add the LALR(1) members: shifts, reductions, errs.
7885 * src/LR0.c (state_table): Rename as...
7886 (state_hash): this, to avoid name clashes with the global
7887 `state_table'.
7888 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
7889 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
7890
7891 2001-12-10 Akim Demaille <akim@epita.fr>
7892
7893 Bison dumps core on bash.y.
7894 Reported by Pascal Bart.
7895
7896 * src/warshall.c (bitmatrix_print): New.
7897 (TC): Use it.
7898 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
7899 j must be the outer loop.
7900 * tests/regression.at (Broken Closure): New.
7901
7902 2001-12-05 Akim Demaille <akim@epita.fr>
7903
7904 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
7905 its argument.
7906 Reported by Peter Hamorsky.
7907
7908 2001-12-05 Akim Demaille <akim@epita.fr>
7909
7910 * src/conflicts.c (err_table): Remove.
7911 (resolve_sr_conflict): Adjust.
7912 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
7913 Rename as...
7914 (state_t.reductions, state_t.shifts): this.
7915
7916 2001-12-05 Akim Demaille <akim@epita.fr>
7917
7918 * src/reduce.c (reduce_grammar_tables): No longer disable the
7919 removal of useless rules via CPP but via `if (0)', so that the
7920 compiler still check the code is valid.
7921 For instance, it should have noticed `rline' no longer exists: use
7922 the `line' member of rule_t.
7923 * src/gram.c (dummy, rline): Remove, unused.
7924
7925 2001-12-05 Akim Demaille <akim@epita.fr>
7926
7927 * src/output.c (pack_vector): Use assert, not berror.
7928 * src/main.c (berror): Remove, unused.
7929
7930 2001-12-05 Akim Demaille <akim@epita.fr>
7931
7932 New experimental feature: if --verbose --trace output all the
7933 items of a state, not only its kernel.
7934
7935 * src/print.c (print_core): If `trace_flag', then invoke closure
7936 before outputting the items of the state (print_core is no longer
7937 a correct name them).
7938 (print_results): Invoke new_closure/free_closure if needed.
7939
7940 2001-12-05 Akim Demaille <akim@epita.fr>
7941
7942 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
7943 * src/closure.c, src/closure.h (itemsetsize): Rename as...
7944 (nitemset): for consistency with the rest of the project.
7945
7946 2001-12-05 Akim Demaille <akim@epita.fr>
7947
7948 * src/closure.c (print_closure): Improve.
7949 (closure): Use it for printing input and output.
7950
7951 2001-12-05 Akim Demaille <akim@epita.fr>
7952
7953 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
7954 indexed by nonterminals.
7955
7956 2001-12-05 Akim Demaille <akim@epita.fr>
7957
7958 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
7959 what it was!).
7960 * src/warshall.h: Remove accidental duplication of the content.
7961
7962 2001-12-05 Akim Demaille <akim@epita.fr>
7963
7964 * src/closure.c (set_fderives): De-obfuscate.
7965
7966 2001-12-05 Akim Demaille <akim@epita.fr>
7967
7968 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
7969
7970 2001-12-05 Akim Demaille <akim@epita.fr>
7971
7972 * src/closure.c (set_firsts): De-obfuscate.
7973
7974 2001-12-05 Akim Demaille <akim@epita.fr>
7975
7976 * src/output.c (action_row): De-obfuscate
7977 using the good o' techniques: arrays not pointers, variable
7978 locality, BITISSET, RESETBIT etc.
7979
7980 2001-12-05 Akim Demaille <akim@epita.fr>
7981
7982 Pessimize the code to simplify it: from now on, all the states
7983 have a valid SHIFTS, which NSHIFTS is possibly 0.
7984
7985 * src/LR0.c (shifts_new): Be global and move to..
7986 * src/state.c, src/state.h: here.
7987 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
7988 * src/print_graph: Adjust.
7989
7990 2001-12-05 Akim Demaille <akim@epita.fr>
7991
7992 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
7993 * src/conflicts.c: Use it.
7994 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
7995 incorrectly ``simplified''.
7996
7997 2001-12-05 Akim Demaille <akim@epita.fr>
7998
7999 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
8000 using the good o' techniques: arrays not pointers, variable
8001 locality, BITISSET, RESETBIT etc.
8002
8003 2001-12-05 Akim Demaille <akim@epita.fr>
8004
8005 * src/state.h (SHIFT_SYMBOL): New.
8006 * src/conflicts.c: Use it to deobfuscate.
8007
8008 2001-12-05 Akim Demaille <akim@epita.fr>
8009
8010 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
8011 (print_reductions): De-obfuscate using the good o' techniques:
8012 arrays not pointers, variable locality, BITISSET.
8013
8014 2001-12-05 Akim Demaille <akim@epita.fr>
8015
8016 * src/conflicts.c (print_reductions): Arrays, not pointers.
8017 Use BITISSET.
8018
8019 2001-12-05 Akim Demaille <akim@epita.fr>
8020
8021 * src/conflicts.c (print_reductions): Pessimize, but clarify.
8022
8023 2001-12-05 Akim Demaille <akim@epita.fr>
8024
8025 * src/conflicts.c (print_reductions): Improve variable locality.
8026
8027 2001-12-05 Akim Demaille <akim@epita.fr>
8028
8029 * src/conflicts.c (print_reductions): Pessimize, but clarify.
8030
8031 2001-12-05 Akim Demaille <akim@epita.fr>
8032
8033 * src/conflicts.c (print_reductions): Improve variable locality.
8034
8035 2001-12-05 Akim Demaille <akim@epita.fr>
8036
8037 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
8038 * src/lalr.c: Use them.
8039
8040 2001-12-05 Akim Demaille <akim@epita.fr>
8041
8042 * src/LR0.c (augment_automaton): Formatting changes.
8043 Better variable locality.
8044
8045 2001-12-05 Akim Demaille <akim@epita.fr>
8046
8047 * src/lalr.c (matrix_print): New.
8048 (transpose): Use it.
8049 Use arrays instead of pointers.
8050
8051 2001-12-05 Akim Demaille <akim@epita.fr>
8052
8053 * src/lalr.c (maxrhs): Move to...
8054 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
8055 * src/lalr.c (build_relations): Adjust.
8056
8057 2001-12-05 Akim Demaille <akim@epita.fr>
8058
8059 * src/lalr.c (transpose): Free the memory allocated to the
8060 argument, as it is replaced by the results by the unique caller.
8061 (build_relations): Merely invoke transpose: it handles the memory
8062 deallocation.
8063 Improve variable locality.
8064 Avoid variables used as mere abbreviations.
8065 (compute_lookaheads): Use arrays instead of pointers.
8066
8067 2001-12-05 Akim Demaille <akim@epita.fr>
8068
8069 * src/lalr.c (initialize_F): Improve variable locality.
8070 Avoid variables used as mere abbreviations.
8071
8072 2001-12-05 Akim Demaille <akim@epita.fr>
8073
8074 * src/derives.c (print_derives): Display the ruleno.
8075 * src/lalr.c (initialize_F, transpose): Better variable locality
8076 to improve readability.
8077 Avoid variables used as mere abbreviations.
8078
8079 2001-12-05 Akim Demaille <akim@epita.fr>
8080
8081 * src/lalr.c (traverse): Use arrays instead of pointers.
8082
8083 2001-12-05 Akim Demaille <akim@epita.fr>
8084
8085 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
8086 the handling of squeue.
8087 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
8088
8089 2001-12-05 Akim Demaille <akim@epita.fr>
8090
8091 Because useless nonterminals are now kept alive (instead of being
8092 `destroyed'), we now sometimes examine them, and store information
8093 related to them. Hence we need to know their number, and adjust
8094 memory allocations.
8095
8096 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
8097 static.
8098 * src/LR0.c (allocate_itemsets): The memory allocated to
8099 `symbol_count' was used for two different purpose: once to count
8100 the number of occurrences of each symbol, and later reassigned to
8101 `shift_symbol', containing the symbol that can be shifted from a
8102 given state.
8103 Deobfuscate, i.e., allocate, use and free `symbol_count' here
8104 only, and...
8105 (new_itemsets): Allocate `shift_symbol' here.
8106 (allocate_itemsets): symbol_count includes useless nonterminals.
8107 Make room for them.
8108 (free_storage): Use `free', not `XFREE', for pointers that cannot
8109 be null.
8110
8111 2001-12-05 Akim Demaille <akim@epita.fr>
8112
8113 * src/nullable.c (set_nullable): Deobfuscate the handling of
8114 ritem.
8115 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
8116
8117 2001-12-05 Akim Demaille <akim@epita.fr>
8118
8119 * src/gram.c, src/gram.h (ritem_print): New.
8120 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
8121 (This useless function was defined only to work around VMS linkers
8122 that can't handle compilation units with variables only).
8123 * src/reduce.c (dump_grammar): Use it to trace the construction of
8124 ritem.
8125
8126 2001-12-04 Paul Eggert <eggert@twinsun.com>
8127
8128 * src/bison.simple (union yyalloc): Change member names
8129 to be the same as the stack names.
8130 (yyparse): yyptr is now union yyalloc *, not char *.
8131 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
8132 and may generate better code on some machines.
8133 (yystpcpy): Use prototype if __STDC__ is defined, not just
8134 if __cplusplus is defined.
8135
8136 2001-11-30 Akim Demaille <akim@epita.fr>
8137
8138 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
8139 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
8140 Gettext doesn't compile cleanly, and dies with -Werror.
8141 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
8142 Include WARNING_CFLAGS here.
8143 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
8144 before being defined.
8145
8146 2001-11-27 Paul Eggert <eggert@twinsun.com>
8147
8148 * lib/quotearg.h (quotearg_n, quotearg_n_style):
8149 First arg is int, not unsigned.
8150 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
8151 (SIZE_MAX, UINT_MAX): New macros.
8152 (quotearg_n_options): Abort if N is negative.
8153 Avoid overflow check on hosts where size_t is 64 bits and int
8154 is 32 bits, as overflow is impossible there.
8155 Fix off-by-one typo that caused unnecessary reallocation.
8156
8157 2001-11-29 Paul Eggert <eggert@twinsun.com>
8158
8159 Name space cleanup in generated parser.
8160
8161 * doc/bison.texinfo (Bison Parser): Discuss system headers
8162 and their effect on the user name space.
8163
8164 * src/bison.simple:
8165 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
8166 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
8167 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
8168
8169 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
8170 on user names when possible.
8171
8172 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
8173 Simplify test for whather <alloca.h> exists.
8174
8175 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
8176
8177 (<stdio.h>): Include if YYDEBUG.
8178
8179 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
8180 ! defined (yyoverflow) && ! defined (yymemcpy).
8181
8182 (yymemcpy, yyparse): Rename local variables as needed so that
8183 they all begin with 'yy'.
8184
8185 (yystrlen, yystpcpy): New functions.
8186
8187 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
8188 All uses changed.
8189
8190 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
8191 instead of relying on string.h functions. Use YYSTACK_ALLOC
8192 and YYSTACK_FREE instead of malloc and free.
8193
8194 2001-11-30 Akim Demaille <akim@epita.fr>
8195
8196 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
8197 before their first uses.
8198 (YYBISON, YYPURE): Move to the top of the output.
8199
8200 2001-11-30 Akim Demaille <akim@epita.fr>
8201
8202 * tests/reduce.at (Useless Nonterminals): Fix.
8203
8204 2001-11-30 Akim Demaille <akim@epita.fr>
8205
8206 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
8207 if body instead of `;' to pacify GCC's warnings.
8208
8209 2001-11-30 Akim Demaille <akim@epita.fr>
8210
8211 Instead of mapping the LHS of unused rules to -1, keep the LHS
8212 valid, but flag the rules as invalid.
8213
8214 * src/gram.h (rule_t): `useful' is a new member.
8215 * src/print.c (print_grammar): Adjust.
8216 * src/derives.c (set_derives): Likewise.
8217 * src/reader.c (packgram, reduce_output): Likewise.
8218 * src/reduce.c (reduce_grammar_tables): Likewise.
8219 * tests/reduce.at (Underivable Rules, Useless Rules): New.
8220
8221 2001-11-30 Akim Demaille <akim@epita.fr>
8222
8223 * src/reduce.c (reduce_output): Formatting changes.
8224 * src/print.c (print_results, print_grammar): Likewise.
8225 * tests/regression.at (Rule Line Numbers)
8226 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
8227
8228 2001-11-30 Akim Demaille <akim@epita.fr>
8229
8230 * src/reduce.c (nonterminals_reduce): Instead of throwing away
8231 useless nonterminals, move them at the end of the symbol arrays.
8232 (reduce_output): Adjust.
8233 * tests/reduce.at (Useless Nonterminals): Adjust.
8234
8235 2001-11-30 Akim Demaille <akim@epita.fr>
8236
8237 * src/reduce.c: Various comment/formatting changes.
8238 (nonterminals_reduce): New, extracted from...
8239 (reduce_grammar_tables): here.
8240 (reduce_grammar): Call nonterminals_reduce.
8241
8242 2001-11-29 Paul Eggert <eggert@twinsun.com>
8243
8244 * src/bison.simple (YYSTACK_REALLOC): Remove.
8245 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
8246 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
8247 New macros.
8248 (union yyalloc): New type.
8249 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
8250 an arbitrary restriction on hosts where size_t is wider than int.
8251
8252 (yyparse): Don't dump core if alloca or malloc fails; instead, report
8253 a parser stack overflow. Allocate just one block of memory for all
8254 three stacks, instead of allocating three blocks; this typically is
8255 faster and reduces fragmentation.
8256
8257 Do not limit the number of items in the stack to a value that fits
8258 in 'int', as this is an arbitrary limit on hosts with 64-bit
8259 size_t and 32-bit int.
8260
8261 2001-11-29 Marc Autret <autret_m@epita.fr>
8262
8263 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
8264 of defining YYERROR_VERBOSE.
8265 [AT_DATA]: $4 is now out of C declarations in the prologue.
8266
8267 2001-11-28 Marc Autret <autret_m@epita.fr>
8268
8269 * src/reader.c (parse_dquoted_param): New.
8270 (parse_skel_decl): Use it.
8271 * src/lex.h: Add its prototype.
8272 * src/lex.c (literalchar): Become not static.
8273
8274 2001-11-28 Marc Autret <autret_m@epita.fr>
8275
8276 * src/output.h: And put its extern declaration here.
8277 * src/output.c (error_verbose): Define here.
8278 (prepare): Echo name modification.
8279 * src/getargs.h: Clean its extern declaration.
8280 * src/getargs.c (error_verbose_flag): Remove.
8281 (getargs): Remove case 'e'.
8282 * src/options.c (option_table): 'error-verbose' is now seen as simple
8283 percent option.
8284 Include output.h.
8285
8286 * src/reader.c (read_declarations): Remove case tok_include.
8287 (parse_include_decl): Remove.
8288 * src/lex.h (token_t): Remove tok_include.
8289 * src/options.c (option_table): 'include' is now a simple command line
8290 option.
8291
8292 2001-11-28 Marc Autret <autret_m@epita.fr>
8293
8294 * src/bison.simple: Adjust muscle names.
8295 * src/muscle_tab.c (muscle_init): Also rename the muscles.
8296 * src/output.c (prepare): s/_/-/ for the muscles names.
8297 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
8298
8299 2001-11-28 Marc Autret <autret_m@epita.fr>
8300
8301 * src/bison.simple: Fix debug.
8302 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
8303
8304 2001-11-28 Akim Demaille <akim@epita.fr>
8305
8306 * src/LR0.c (shifts_new): New.
8307 (save_shifts, insert_start_shift, augment_automaton): Use it.
8308
8309 2001-11-28 Akim Demaille <akim@epita.fr>
8310
8311 * src/closure.c (closure): `b' and `ruleno' denote the same value:
8312 keep ruleno only.
8313
8314 2001-11-28 Akim Demaille <akim@epita.fr>
8315
8316 * src/closure.c (closure): Instead of looping over word in array
8317 then bits in words, loop over bits in array.
8318
8319 2001-11-28 Akim Demaille <akim@epita.fr>
8320
8321 * src/closure.c (closure): No longer optimize the special case
8322 where all the bits of `ruleset[r]' are set to 0, to make the code
8323 clearer.
8324
8325 2001-11-28 Akim Demaille <akim@epita.fr>
8326
8327 * src/closure.c (closure): `r' and `c' are new variables, used to
8328 de-obfuscate accesses to RULESET and CORE.
8329
8330 2001-11-28 Akim Demaille <akim@epita.fr>
8331
8332 * src/reduce.c (reduce_print): Use ngettext.
8333 (dump_grammar): Improve the trace accuracy.
8334
8335 2001-11-28 Akim Demaille <akim@epita.fr>
8336
8337 * src/reduce.c (dump_grammar): Don't translate trace messages.
8338
8339 2001-11-28 Akim Demaille <akim@epita.fr>
8340
8341 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
8342 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
8343 as all tags are free'ed afterwards.
8344 From Enrico Scholz.
8345
8346 2001-11-27 Paul Eggert <eggert@twinsun.com>
8347
8348 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
8349 use alloca when we didn't want to, and vice versa.
8350
8351 2001-11-27 Marc Autret <autret_m@epita.fr>
8352
8353 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
8354 initialization.
8355 * src/output.c (prepare): Remove its update.
8356
8357 2001-11-27 Marc Autret <autret_m@epita.fr>
8358
8359 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
8360 Use %error-verbose.
8361
8362 2001-11-27 Marc Autret <autret_m@epita.fr>
8363
8364 * src/bison.simple: Remove YYERROR_VERBOSE using.
8365 Use %%error_verbose.
8366 (yyparse): Likewise.
8367 * src/output.c (prepare): Give its final value.
8368 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
8369 * src/getargs.h: Add its extern declaration.
8370 * src/getargs.c (error_verbose_flag): New int.
8371 (getargs): Update to catch new case.
8372 * src/options.c (option_table): 'error-verbose' is a new option.
8373 (shortopts): Update.
8374
8375 2001-11-27 Akim Demaille <akim@epita.fr>
8376
8377 * src/system.h: Use intl/libgettext.h.
8378 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
8379
8380 2001-11-27 Akim Demaille <akim@epita.fr>
8381
8382 * tests/torture.at (Exploding the Stack Size with Malloc):
8383 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
8384
8385 2001-11-27 Akim Demaille <akim@epita.fr>
8386
8387 * src/files.c: Include error.h.
8388 Reported by Hans Aberg.
8389
8390 2001-11-26 Marc Autret <autret_m@epita.fr>
8391
8392 * src/reader.c (parse_include_decl): New, not yet implemented.
8393 (read_declarations): Add case tok_include.
8394 * src/getargs.h (include): Add its extern definition.
8395 * src/getargs.c (include): New const char *.
8396 (getargs): Add case '-I'.
8397 * src/options.c (option_table): Add include as command line and
8398 percent option.
8399 * src/lex.h (token_t): Add tok_include.
8400
8401 2001-11-26 Akim Demaille <akim@epita.fr>
8402
8403 * src/reader.c (readgram): Make sure rules for mid-rule actions
8404 have a lineno equal to that of their host rule.
8405 Reported by Hans Aberg.
8406 * tests/regression.at (Rule Line Numbers): New.
8407
8408 2001-11-26 Akim Demaille <akim@epita.fr>
8409
8410 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
8411 size_ts.
8412
8413 2001-11-26 Akim Demaille <akim@epita.fr>
8414
8415 * src/complain.c, src/complain.h (error): Remove, provided by
8416 lib/error.[ch].
8417
8418 2001-11-26 Akim Demaille <akim@epita.fr>
8419
8420 * src/reader.c (read_declarations): Don't abort on tok_illegal,
8421 issue an error message.
8422 * tests/regression.at (Invalid %directive): New.
8423 Reported by Hans Aberg.
8424
8425 2001-11-26 Akim Demaille <akim@epita.fr>
8426
8427 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
8428 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
8429
8430 2001-11-26 Akim Demaille <akim@epita.fr>
8431
8432 * src/conflicts.c (conflicts_print): Don't complain at all when
8433 there are no reduce/reduce conflicts, and as many shift/reduce
8434 conflicts as expected.
8435 * tests/regression.at (%expect right): Adjust.
8436
8437 2001-11-23 Akim Demaille <akim@epita.fr>
8438
8439 * lib/alloca.c: Update, from fileutils.
8440
8441 2001-11-23 Akim Demaille <akim@epita.fr>
8442
8443 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
8444
8445 2001-11-23 Akim Demaille <akim@epita.fr>
8446
8447 * src/system.h: Include alloca.h.
8448 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
8449
8450 2001-11-23 Akim Demaille <akim@epita.fr>
8451
8452 * src/print_graph.c (print_actions): Remove `rule', unused.
8453 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
8454 pacify GCC's signed < unsigned warnings.
8455 * src/closure.c (itemsetsize): Likewise.
8456 * src/reader.c (symbol_list_new): Static.
8457
8458 2001-11-23 Akim Demaille <akim@epita.fr>
8459
8460 Attaching lineno to buckets is stupid, since only one copy of each
8461 symbol is kept, only the line of the first occurrence is kept too.
8462
8463 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
8464 * src/reader.c (rline_allocated): Remove, unused.
8465 (symbol_list): Have a `line' member.
8466 (symbol_list_new): New.
8467 (readgram): Use it.
8468 * src/print.c (print_grammar): Output the rule line numbers.
8469 * tests/regression.at (Solved SR Conflicts)
8470 (Unresolved SR Conflicts): Adjust.
8471 Reported by Hans Aberg.
8472
8473 2001-11-22 Marc Autret <autret_m@epita.fr>
8474
8475 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
8476
8477 2001-11-22 Marc Autret <autret_m@epita.fr>
8478
8479 * src/muscle_tab.c (muscle_init): Remove initialization of
8480 skeleton muscle.
8481 * src/output.c (output_master_parser): Do it here.
8482
8483 2001-11-20 Akim Demaille <akim@epita.fr>
8484
8485 * po/sv.po: New.
8486 * configure.in (ALL_LINGUAS): Adjust.
8487 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
8488 longer contains strings to translate.
8489
8490 2001-11-19 Akim Demaille <akim@epita.fr>
8491
8492 * src/conflicts.c (conflicts_print): Add a missing \n.
8493
8494 2001-11-19 Akim Demaille <akim@epita.fr>
8495
8496 * src/nullable.c (nullable_print): New.
8497 (set_nullable): Call it when tracing.
8498 Better locality of variables.
8499
8500 2001-11-19 Akim Demaille <akim@epita.fr>
8501
8502 * src/print.c (print_actions): Better locality of variables.
8503
8504 2001-11-19 Akim Demaille <akim@epita.fr>
8505
8506 * src/derives.c (print_derives): Fix and enrich.
8507 * src/closure.c (print_fderives): Likewise.
8508
8509 2001-11-19 Akim Demaille <akim@epita.fr>
8510
8511 * src/closure.c (itemsetend): Remove, replaced with...
8512 (itemsetsize): new.
8513
8514 2001-11-19 Akim Demaille <akim@epita.fr>
8515
8516 * src/LR0.c (kernel_end): Remove, replaced with...
8517 (kernel_size): new.
8518
8519 2001-11-19 Akim Demaille <akim@epita.fr>
8520
8521 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
8522 to clarify.
8523
8524 2001-11-19 Akim Demaille <akim@epita.fr>
8525
8526 * src/closure.c (closure): Use arrays instead of pointers to clarify.
8527
8528 2001-11-19 Akim Demaille <akim@epita.fr>
8529
8530 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
8531 trace messages.
8532 * src/LR0.c: Likewise.
8533 (allocate_itemsets): Use arrays instead of pointers to clarify.
8534
8535 2001-11-19 Akim Demaille <akim@epita.fr>
8536
8537 * src/getargs.c (statistics_flag): Replace with...
8538 (trace_flag): New.
8539 (longopts): Accept --trace instead of --statistics.
8540 * src/getargs.h, src/options.c: Adjust.
8541 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
8542 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
8543
8544 2001-11-19 Akim Demaille <akim@epita.fr>
8545
8546 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
8547 pointers to clarify the code.
8548 (save_reductions, save_shifts): Factor common parts of alternatives.
8549
8550 2001-11-19 Akim Demaille <akim@epita.fr>
8551
8552 * src/LR0.c (new_state, get_state): Complete TRACE code.
8553 * src/closure.c: Include `reader.h' to get `tags', needed by the
8554 trace code.
8555 Rename the conditional DEBUG as TRACE.
8556 Output consistently TRACEs to stderr, not stdout.
8557 * src/derives.c: Likewise.
8558 * src/reduce.c: (inaccessable_symbols): Using if is better style
8559 than goto.
8560 Use `#if TRACE' instead of `#if 0' for tracing code.
8561
8562 2001-11-19 Akim Demaille <akim@epita.fr>
8563
8564 * src/system.h (LIST_FREE, shortcpy): New.
8565 * src/LR0.c: Use them.
8566 * src/output.c (free_itemsets, free_reductions, free_shifts):
8567 Remove, replaced by LIST_FREE.
8568
8569 2001-11-19 Akim Demaille <akim@epita.fr>
8570
8571 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
8572 (REDUCTIONS_ALLOC): New.
8573 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
8574 allocation.
8575
8576 2001-11-19 Akim Demaille <akim@epita.fr>
8577
8578 * src/LR0.c (new_state): Complete trace code.
8579 * src/nullable.c (set_nullable): Don't translate traces.
8580
8581 2001-11-19 Akim Demaille <akim@epita.fr>
8582
8583 * src/print_graph.c (print_core): Better locality of variables.
8584 * src/print.c (print_core): Likewise.
8585
8586 2001-11-19 Akim Demaille <akim@epita.fr>
8587
8588 * src/vcg.c: You do the output, so you are responsible of the
8589 handling of VCG syntax, in particular: use quotearg.
8590 * src/print_graph.c: Don't.
8591 (print_actions): Don't output the actions as part of the nodes,
8592 since that's the job of the edges.
8593 (print_state): Don't output by hand: fill the node description,
8594 and ask for its output.
8595
8596 2001-11-19 Akim Demaille <akim@epita.fr>
8597
8598 * src/bison.simple (yyparse): When verbosely reporting an error,
8599 no longer put additional quotes around token names.
8600 * tests/calc.at: Adjust.
8601
8602 2001-11-19 Akim Demaille <akim@epita.fr>
8603
8604 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
8605 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
8606 * src/output.c: Adjust.
8607
8608 2001-11-19 Akim Demaille <akim@epita.fr>
8609
8610 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
8611 (rule_t): this.
8612 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
8613
8614 2001-11-19 Akim Demaille <akim@epita.fr>
8615
8616 * src/gram.h (rule_t): New.
8617 (rule_table): New.
8618 (rrhs, rlhs): Remove, part of state_t.
8619 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
8620 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
8621 * src/reader.c, src/reduce.c: Adjust.
8622
8623 2001-11-19 Akim Demaille <akim@epita.fr>
8624
8625 * src/reader.c (symbols_output): New, extracted from...
8626 (packsymbols): Here.
8627 (reader): Call it.
8628
8629 2001-11-19 Akim Demaille <akim@epita.fr>
8630
8631 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
8632 (maxrhs): this new function.
8633
8634 2001-11-19 Akim Demaille <akim@epita.fr>
8635
8636 * src/lalr.c (F): New macro to access the variable F.
8637 Adjust.
8638
8639 2001-11-19 Akim Demaille <akim@epita.fr>
8640
8641 * src/lalr.h (LA): New macro to access the variable LA.
8642 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
8643 * src/lalr.c: Adjust.
8644
8645 2001-11-19 Akim Demaille <akim@epita.fr>
8646
8647 * src/lalr.c (initialize_LA): Only initialize LA. Let...
8648 (set_state_table): handle the `lookaheads' members.
8649
8650 2001-11-19 Akim Demaille <akim@epita.fr>
8651
8652 * src/lalr.h (lookaheads): Removed array, whose contents is now
8653 a member of...
8654 (state_t): this structure.
8655 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
8656 Adjust.
8657
8658 2001-11-19 Akim Demaille <akim@epita.fr>
8659
8660 * src/lalr.h (consistent): Removed array, whose contents is now
8661 a member of...
8662 (state_t): this structure.
8663 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
8664 Adjust.
8665
8666 2001-11-19 Akim Demaille <akim@epita.fr>
8667
8668 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
8669 contents are now members of...
8670 (state_t): this structure.
8671 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
8672 Adjust.
8673
8674 2001-11-19 Akim Demaille <akim@epita.fr>
8675
8676 * src/lalr.h (state_t): New.
8677 (state_table): Be a state_t * instead of a core **.
8678 (accessing_symbol): Remove, part of state_t.
8679 * src/lalr.c: Adjust.
8680 (set_accessing_symbol): Merge into...
8681 (set_state_table): this.
8682 * src/print_graph.c, src/conflicts.c: Adjust.
8683
8684 2001-11-14 Akim Demaille <akim@epita.fr>
8685
8686 * tests/calc.at, tests/output.at, tests/regression.at,
8687 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
8688 now the tests are run in private dirs, therefore AC_CLEANUP and
8689 family can be simplified to 0-ary.
8690 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
8691 use abs. path to find config.h.
8692 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
8693 stderr, there can be way too much random noise.
8694 Instead pass -Werror to GCC and rely on the exit status.
8695 Reported by Wolfram Wagner.
8696
8697 2001-11-14 Akim Demaille <akim@epita.fr>
8698
8699 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
8700 defined only if yyoverflow is defined, to avoid `warning: unused
8701 variable `yyvs1''.
8702 Reported by The Test Suite.
8703
8704 2001-11-14 Akim Demaille <akim@epita.fr>
8705
8706 * src/print.c: Include reduce.h.
8707 Reported by Hans Aberg.
8708
8709 2001-11-14 Akim Demaille <akim@epita.fr>
8710
8711 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
8712 Revert a previous patch: these are really const.
8713 * src/conflicts.c (conflict_report): Additional useless pair of
8714 braces to pacify GCC's warnings for `if () if () {} else {}'.
8715 * src/lex.c (parse_percent_token): Replace equal_offset with
8716 arg_offset.
8717 arg is const.
8718 Be sure to strdup `arg' when used, since there is no reason for
8719 token_buffer not to change.
8720
8721 2001-11-14 Akim Demaille <akim@epita.fr>
8722
8723 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
8724 definition.
8725 * src/main.c (main): Use them.
8726 Suggested by Hans Aberg.
8727
8728 2001-11-12 Akim Demaille <akim@epita.fr>
8729
8730 * src/system.h (ngettext): Now that we use ngettext, be sure to
8731 provide a default definition when NLS are not used.
8732
8733 2001-11-12 Akim Demaille <akim@epita.fr>
8734
8735 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
8736 Use @kbd to denote user input.
8737 (Language and Grammar): ANSIfy the example.
8738 Adjust its layout for info/notinfo.
8739 (Location Tracking Calc): Output error messages to stderr.
8740 Output locations in a more GNUtically correct way.
8741 Fix a couple of Englishos.
8742 Adjust @group/@end group pairs.
8743
8744 2001-11-12 Akim Demaille <akim@epita.fr>
8745
8746 %expect was not functioning at all.
8747
8748 * src/conflicts.c (expected_conflicts): Set to -1.
8749 (conflict_report): Use ngettext.
8750 (conflicts_print): Check %expect and make its violation an error.
8751 * doc/bison.texinfo (Expect Decl): Adjust.
8752 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
8753 * tests/regression.at (%expect not enough, %expect right)
8754 (%expect too much): New.
8755
8756 2001-11-12 Akim Demaille <akim@epita.fr>
8757
8758 * tests/regression.at (Conflicts): Rename as...
8759 (Unresolved SR Conflicts): this.
8760 (Solved SR Conflicts): New.
8761
8762 2001-11-12 Akim Demaille <akim@epita.fr>
8763
8764 * src/reduce.c (print_results): Rename as...
8765 (reduce_output): This.
8766 Output to OUT, passed as argument, instead of output_obstack.
8767 (dump_grammar): Likewise.
8768 (reduce_free): New.
8769 Also free V1.
8770 (reduce_grammar): No longer call reduce_output, since...
8771 * src/print.c (print_results): do it.
8772 * src/main.c (main): Call reduce_free;
8773
8774 2001-11-12 Akim Demaille <akim@epita.fr>
8775
8776 * src/conflicts.c (print_reductions): Accept OUT as argument.
8777 Output to it, not to output_obstack.
8778 * src/print.c (print_actions): Adjust.
8779
8780 2001-11-12 Akim Demaille <akim@epita.fr>
8781
8782 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
8783 the result instead of using...
8784 (src_total, rrc_total, src_count, rrc_count): Remove.
8785 (any_conflicts): Remove.
8786 (print_conflicts): Split into...
8787 (conflicts_print, conflicts_output): New.
8788 * src/conflicts.h: Adjust.
8789 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
8790 * src/print.c (print_grammar): Issue `\n' between two rules.
8791 * tests/regression.at (Conflicts): New.
8792 Reported by Tom Lane.
8793
8794 2001-11-12 Akim Demaille <akim@epita.fr>
8795
8796 * tests/regression.at (Invalid input): Remove, duplicate with
8797 ``Invalid input: 1''.
8798
8799 2001-11-12 Akim Demaille <akim@epita.fr>
8800
8801 * tests/torture.at (AT_DATA_STACK_TORTURE)
8802 (Exploding the Stack Size with Alloca)
8803 (Exploding the Stack Size with Malloc): New.
8804
8805 2001-11-12 Akim Demaille <akim@epita.fr>
8806
8807 * src/bison.simple (YYSTACK_REALLOC): New.
8808 (yyparse) [!yyoverflow]: Use it and free the old stack.
8809 Reported by Per Allansson.
8810
8811 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
8812
8813 * src/bison.simple: Define type yystype instead of YYSTYPE, and
8814 define CPP macro, which substitute YYSTYPE by yystype.
8815 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
8816 with yyltype/YYLTYPE. This allows inclusion of the generated
8817 header within the parser if the compiler, such as GGC, accepts
8818 multiple equivalent #defines.
8819 From Akim.
8820
8821 2001-11-05 Akim Demaille <akim@epita.fr>
8822
8823 * src/reader.c (symbols_output): New, extracted from...
8824 (packsymbols): here.
8825 (reader): Adjust.
8826
8827 2001-11-05 Akim Demaille <akim@epita.fr>
8828
8829 * src/lex.c (parse_percent_token): s/quotearg/quote/.
8830
8831 2001-11-05 Akim Demaille <akim@epita.fr>
8832
8833 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
8834 pattern.
8835
8836 2001-11-05 Akim Demaille <akim@epita.fr>
8837
8838 * src/options.h (struct option_table_struct): set_flags is void*.
8839 * src/options.c (longopts): Support `--output' and `%output'.
8840 (usage): Adjust.
8841 * src/lex.h (tok_setopt): Remove, replaced with...
8842 (tok_intopt, tok_stropt): these new guys.
8843 * src/lex.c (getopt.h): Not needed.
8844 (token_buffer, unlexed_token_buffer): Not const.
8845 (percent_table): Promote `-' over `_' in directive names.
8846 Active `%name-prefix', `file-prefix', and `output'.
8847 (parse_percent_token): Accept possible arguments to directives.
8848 Promote `-' over `_' in directive names.
8849
8850 2001-11-04 Akim Demaille <akim@epita.fr>
8851
8852 * doc/bison.texinfo (Decl Summary): Split the list into
8853 `directives for grammars' and `directives for bison'.
8854 Sort'em.
8855 Add description of `%name-prefix', `file-prefix', and `output'.
8856 Promote `-' over `_' in directive names.
8857 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
8858 Simplify the description of `--name-prefix'.
8859 Promote `-' over `_' in directive names.
8860 Promote `--output' over `--output-file'.
8861 Fix the description of `--defines'.
8862 * tests/output.at: Exercise %file-prefix and %output.
8863
8864 2001-11-02 Akim Demaille <akim@epita.fr>
8865
8866 * doc/refcard.tex: Update.
8867
8868 2001-11-02 Akim Demaille <akim@epita.fr>
8869
8870 * src/symtab.h (SUNDEF): New.
8871 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
8872 stand for `uninitialized', instead of 0.
8873 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
8874 * src/lex.c (lex): Adjust.
8875
8876 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
8877 Number it 0.
8878 Let yylex return it instead of a plain 0.
8879 Reported by Dick Streefland.
8880
8881 2001-11-02 Akim Demaille <akim@epita.fr>
8882
8883 * tests/regression.at (Mixing %token styles): New test.
8884
8885 2001-11-02 Akim Demaille <akim@epita.fr>
8886
8887 * src/reader.c (parse_thong_decl): Formatting changes.
8888 (token_translations_init): New, extracted from...
8889 (packsymbols): Here.
8890 Adjust.
8891
8892 2001-11-01 Akim Demaille <akim@epita.fr>
8893
8894 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
8895 Check that `9foo.y' produces correct cpp guards.
8896 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
8897 guards.
8898 Reported by Wwp.
8899
8900 2001-11-01 Akim Demaille <akim@epita.fr>
8901
8902 * tests/regression.at (Invalid input: 2): New.
8903 * src/lex.c (unlexed_token_buffer): New.
8904 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
8905 too.
8906 Reported by Wwp.
8907
8908 2001-11-01 Akim Demaille <akim@epita.fr>
8909
8910 * tests/calc.at: Catch up with 1.30.
8911 * configure.in: Bump to 1.49a.
8912 Adjust to newer Autotest.
8913
8914 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
8915
8916 * src/conflicts.c: Move global variables rrc_total and src_total ...
8917 (print_conflicts): here.
8918 * src/output.c (output): Free global variable user_toknums.
8919 * src/lex.c (token_obstack): Become static.
8920
8921 2001-10-18 Akim Demaille <akim@epita.fr>
8922
8923 * tests/atlocal.in (GCC): Add.
8924 * tests/calc.at: s/m4_match/m4_bmatch/.
8925 s/m4_patsubst/m4_bpatsubst/.
8926 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
8927 * configure.in: AC_SUBST(GCC).
8928
8929 2001-10-14 Marc Autret <autret_m@epita.fr>
8930
8931 * src/options.c (create_long_option_table): Fix.
8932
8933 2001-10-10 Akim Demaille <akim@epita.fr>
8934
8935 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
8936
8937 2001-10-04 Akim Demaille <akim@epita.fr>
8938
8939 * src/reader.c (parse_union_decl): Push the caracters in
8940 union_obstack, not attrs_obstack.
8941
8942 2001-10-04 Akim Demaille <akim@epita.fr>
8943
8944 Merge in the branch 1.29.
8945
8946 * src/reader.c (packsymbols): Use a temporary obstack for
8947 `%%tokendef', since output_stack is already used elsewhere.
8948
8949 2001-10-02 Akim Demaille <akim@epita.fr>
8950
8951 Bump 1.29d.
8952
8953 2001-10-02 Akim Demaille <akim@epita.fr>
8954
8955 Version 1.29c.
8956
8957 2001-10-02 Akim Demaille <akim@epita.fr>
8958
8959 * tests/regression.at (Invalid CPP headers): New.
8960 From Alexander Belopolsky.
8961 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
8962
8963 2001-10-02 Akim Demaille <akim@epita.fr>
8964
8965 * tests/regression.at (Invalid input): New.
8966 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
8967 Reported by Shura.
8968
8969 2001-10-02 Akim Demaille <akim@epita.fr>
8970
8971 * tests/calc.at: Now that --debug works, the tests must be adjusted.
8972
8973 2001-10-02 Akim Demaille <akim@epita.fr>
8974
8975 * src/output.c (output_parser): Assert `skeleton'.
8976 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
8977 systems.
8978 From Shura.
8979
8980 2001-10-01 Marc Autret <autret_m@epita.fr>
8981
8982 * src/lex.h: Echo modifications.
8983 * src/lex.c (unlex): Parameter is now token_t.
8984 From Hans Aberg.
8985
8986 2001-10-01 Marc Autret <autret_m@epita.fr>
8987
8988 * src/main.c: Include lex.h.
8989 From Hans Aberg.
8990
8991 2001-09-29 Akim Demaille <akim@epita.fr>
8992
8993 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
8994
8995 2001-09-28 Akim Demaille <akim@epita.fr>
8996
8997 * tests/testsuite.at: Update to newer Autotest.
8998 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
8999
9000 2001-09-27 Akim Demaille <akim@epita.fr>
9001
9002 Position independent wrapper.
9003
9004 * tests/bison: Remove.
9005 * tests/bison.in: New.
9006 * configure.in: Adjust.
9007
9008 2001-09-27 Paul Eggert <eggert@twinsun.com>
9009
9010 Port quotearg fixes from tar 1.13.24.
9011
9012 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
9013 tm to be declared.
9014 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
9015 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
9016
9017 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
9018 * m4/mbrtowc.m4: New file.
9019 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
9020 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
9021
9022 2001-09-27 Akim Demaille <akim@epita.fr>
9023
9024 Bump to 1.29c.
9025
9026 2001-09-27 Akim Demaille <akim@epita.fr>
9027
9028 Version 1.29b.
9029
9030 2001-09-25 Akim Demaille <akim@epita.fr>
9031
9032 * src/system.h: Include `xalloc.h'.
9033 Remove it from the C files.
9034 * src/files.c (output_files): Free the obstacks.
9035 * src/lex.c (init_lex): Rename as...
9036 (lex_init): this.
9037 (lex_free): New.
9038 * src/main.c (main): Use it.
9039
9040 2001-09-24 Marc Autret <autret_m@epita.fr>
9041
9042 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
9043 to output informations in fout (FILE*).
9044 (open_graph, close_graph): Likewise.
9045 (output_graph, output_edge, output_node): Likewise.
9046 * src/vcg.h: Update function prototypes.
9047 * src/print_graph.c (print_graph): Open output graph file.
9048 (print_actions): Adjust.
9049 * src/files.h: Remove extern declaration.
9050 * src/files.c: Remove graph_obstack declaration.
9051 (open_files): Remove graph_obstack initialization.
9052 (output_files): Remove graph_obstack saving.
9053
9054 2001-09-24 Marc Autret <autret_m@epita.fr>
9055
9056 * src/files.c (compute_output_file_names): Fix.
9057
9058 2001-09-24 Marc Autret <autret_m@epita.fr>,
9059 Akim Demaille <akim@epita.fr>
9060
9061 * src/reader.c (reader): Remove call to free_symtab ().
9062 * src/main.c (main): Call it here.
9063 Include symtab.h.
9064 * src/conflicts.c (initialize_conflicts): Rename as...
9065 (solve_conflicts): this.
9066 * src/print.c (print_core, print_actions, print_state)
9067 (print_grammar): Dump to a file instead a `output_obstack'.
9068 (print_results): Dump `output_obstack', and then proceed with the
9069 FILE *.
9070 * src/files.c (compute_output_file_names, close_files): New.
9071 (output_files): Adjust.
9072 * src/main.c (main): Adjust.
9073
9074 2001-09-23 Marc Autret <autret_m@epita.fr>
9075
9076 * src/files.c (compute_header_macro): Computes header macro name
9077 from spec_defines_file when given.
9078
9079 2001-09-23 Marc Autret <autret_m@epita.fr>
9080
9081 * src/files.c (output_files): Add default extensions.
9082
9083 2001-09-22 Akim Demaille <akim@epita.fr>
9084
9085 * src/conflicts.c (finalize_conflicts): Rename as...
9086 (free_conflicts): this.
9087
9088 2001-09-22 Akim Demaille <akim@epita.fr>
9089
9090 * src/gram.c (gram_free): Rename back as...
9091 (dummy): this.
9092 (output_token_translations): Free `token_translations'.
9093 * src/symtab.c (free_symtab): Free the tag field.
9094
9095 2001-09-22 Akim Demaille <akim@epita.fr>
9096
9097 Remove `translations' as it is always set to true.
9098
9099 * src/gram.h: Adjust.
9100 * src/reader.c (packsymbols, parse_token_decl): Adjust
9101 * src/print.c (print_grammar): Adjust.
9102 * src/output.c (output_token_translations): Adjust.
9103 * src/lex.c (lex): Adjust.
9104 * src/gram.c: Be sure the set pointers to NULL.
9105 (dummy): Rename as...
9106 (gram_free): this.
9107
9108 2001-09-22 Akim Demaille <akim@epita.fr>
9109
9110 * configure.in: Invoke AM_LIB_DMALLOC.
9111 * src/system.h: Use dmalloc.
9112 * src/LR0.c: Be sure to have pointers initialized to NULL.
9113 (allocate_itemsets): Allocate kernel_items only if needed.
9114
9115 2001-09-22 Akim Demaille <akim@epita.fr>
9116
9117 * configure.in: Bump to 1.29b.
9118 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
9119 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
9120 need xmalloc.c in calc.y.
9121 From Pascal Bart.
9122
9123 2001-09-21 Akim Demaille <akim@epita.fr>
9124
9125 Version 1.29a.
9126 * Makefile.maint, config/config.guess, config/config.sub,
9127 * config/missing: Update from masters.
9128 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
9129 upon package.m4.
9130 * configure.in (ALL_LINGUAS): Add `tr'.
9131
9132 2001-09-21 Akim Demaille <akim@epita.fr>
9133
9134 * tests/Makefile.am (package.m4): Move to...
9135 ($(srcdir)/$(TESTSUITE)): here.
9136
9137 2001-09-20 Akim Demaille <akim@epita.fr>
9138
9139 * src/complain.c: No longer try to be standalone: use system.h.
9140 Don't assume __STDC__ is defined to 1. Just test if it is defined.
9141 * src/complain.h: Likewise.
9142 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
9143 Remove the unused variable `n'.
9144 From Albert Chin-A-Young.
9145
9146 2001-09-18 Marc Autret <autret_m@epita.fr>
9147
9148 * doc/bison.1: Update.
9149 * doc/bison.texinfo (Bison Options): Update --defines and --graph
9150 descriptions.
9151 (Option Cross Key): Update.
9152 Add --graph.
9153
9154 2001-09-18 Marc Autret <autret_m@epita.fr>
9155
9156 * tests/regression.at: New test (comment in %union).
9157
9158 2001-09-18 Marc Autret <autret_m@epita.fr>
9159
9160 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
9161 do that.
9162 Reported by Keith Browne.
9163
9164 2001-09-18 Marc Autret <autret_m@epita.fr>
9165
9166 * tests/output.at: Add tests for --defines and --graph.
9167
9168 2001-09-18 Marc Autret <autret_m@epita.fr>
9169
9170 * tests/output.at: Removes tests of %{header,src}_extension features.
9171
9172 2001-09-18 Akim Demaille <akim@epita.fr>
9173
9174 * tests/Makefile.am (package.m4): New.
9175 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
9176 (_AT_CHECK_CALC_ERROR): Likewise.
9177 Factor the `, ' part of verbose error messages.
9178
9179 2001-09-18 Marc Autret <autret_m@epita.fr>
9180
9181 * src/getargs.c (longopts): Declare --defines and --graph as options
9182 with optional arguments.
9183 * src/files.h: Add extern declarations.
9184 * src/files.c (spec_graph_file, spec_defines_file): New.
9185 (output_files): Update.
9186 Remove CPP-outed code.
9187
9188 2001-09-18 Marc Autret <autret_m@epita.fr>
9189
9190 Turn off %{source,header}_extension feature.
9191
9192 * src/files.c (compute_exts_from_gf): Update.
9193 (compute_exts_from_src): Update.
9194 (output_files): CPP-out useless code.
9195 * src/files.h: Remove {header,source}_extension extern declarations.
9196 * src/reader.c (parse_dquoted_param): CPP-out.
9197 (parse_header_extension_decl): Remove.
9198 (parse_source_extension_decl): Remove.
9199 (read_declarations): Remove cases tok_{hdrext,srcext}.
9200 * src/lex.c (percent_table): Remove {header,source}_extension entries.
9201 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
9202
9203 2001-09-10 Akim Demaille <akim@epita.fr>
9204
9205 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
9206 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
9207 (AT_CHECK_OUTPUT): this.
9208 Merely check ls' exit status, its output is useless.
9209
9210 2001-09-10 Akim Demaille <akim@epita.fr>
9211
9212 * tests/calc.at: Use m4_match.
9213 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
9214
9215 2001-09-10 Marc Autret <autret_m@epita.fr>,
9216 Akim Demaille <akim@epita.fr>
9217
9218 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
9219 enum color_e.
9220 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
9221 to `normal'.
9222 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
9223 * src/lex.h: Adjust prototype.
9224 (token_t): Add `tok_undef'.
9225 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
9226 (parse_percent_token): Now returns token_t.
9227 Add default statement in switch.
9228 (lex): Separate `c' as an input variable, from the token_t result
9229 part.
9230 (unlexed): Is a token_t.
9231
9232 2001-09-10 Akim Demaille <akim@epita.fr>
9233
9234 * configure.in: Bump to 1.29a.
9235
9236 2001-09-07 Akim Demaille <akim@epita.fr>
9237
9238 Version 1.29.
9239
9240 2001-08-30 Akim Demaille <akim@epita.fr>
9241
9242 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
9243 * m4/atconfig.m4: Remove.
9244 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
9245 * tests/bison: New.
9246 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
9247 m4_if, m4_patsubst, and m4_regexp.
9248 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
9249 `input' file instead of echo.
9250
9251 2001-08-29 Akim Demaille <akim@epita.fr>
9252
9253 Bump to 1.28e.
9254
9255 2001-08-29 Akim Demaille <akim@epita.fr>
9256
9257 Version 1.28d.
9258
9259 2001-08-29 Paul Eggert <eggert@twinsun.com>
9260
9261 * src/bison.simple (yyparse): Don't take the address of an
9262 item before the start of an array, as that doesn't conform to
9263 the C Standard.
9264
9265 2001-08-29 Robert Anisko <anisko_r@epita.fr>
9266
9267 * doc/bison.texinfo (Location Tracking Calc): New node.
9268
9269 2001-08-29 Paul Eggert <eggert@twinsun.com>
9270
9271 * src/output.c (output): Do not define const, as this now
9272 causes more problems than it cures.
9273
9274 2001-08-29 Akim Demaille <akim@epita.fr>
9275
9276 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
9277 the nodes.
9278 Be sure to tag the `detailmenu'.
9279
9280 2001-08-29 Akim Demaille <akim@epita.fr>
9281
9282 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
9283 download in a tmp dir.
9284
9285 2001-08-28 Marc Autret <autret_m@epita.fr>
9286
9287 * config/depcomp: New file.
9288
9289 2001-08-28 Marc Autret <autret_m@epita.fr>
9290
9291 * doc/bison.1 (mandoc): Adjust.
9292 From Juan Manuel Guerrero.
9293
9294 2001-08-28 Marc Autret <autret_m@epita.fr>
9295
9296 * src/print_graph.c (print_state): Fix.
9297
9298 2001-08-27 Marc Autret <autret_m@epita.fr>
9299
9300 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
9301 char * members.
9302 Echo modifications to the functions prototypes.
9303 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
9304
9305 2001-08-27 Marc Autret <autret_m@epita.fr>
9306
9307 * src/vcg.c: Include `xalloc.h'.
9308 (add_colorentry): New.
9309 (add_classname): New.
9310 (add_infoname): New.
9311 * src/vcg.h: Add new prototypes.
9312
9313 2001-08-27 Akim Demaille <akim@epita.fr>
9314
9315 * Makefile.maint: Sync. again with CVS Autoconf.
9316
9317 2001-08-27 Akim Demaille <akim@epita.fr>
9318
9319 * Makefile.maint: Formatting changes.
9320 (po-update, cvs-update, update): New targets.
9321 (AMTAR): Remove.
9322
9323 2001-08-27 Akim Demaille <akim@epita.fr>
9324
9325 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
9326 * Makefile.maint: Sync. with CVS Autoconf.
9327
9328 2001-08-27 Marc Autret <autret_m@epita.fr>
9329
9330 * src/vcg.h (struct infoname_s): New.
9331 (struct colorentry_s): New.
9332 (graph_s): New fields {vertical,horizontal}_order in structure.
9333 Add `infoname' field.
9334 Add `colorentry' field;
9335 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
9336 (G_HORIZONTAL_ORDER): New.
9337 (G_INFONAME): New.
9338 (G_COLORENTRY): New.
9339 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
9340 Add output of `infoname'.
9341 Add output of `colorentry'.
9342
9343 2001-08-27 Marc Autret <autret_m@epita.fr>
9344
9345 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
9346 This one shadowed a global parameter.
9347
9348 2001-08-24 Marc Autret <autret_m@epita.fr>
9349
9350 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
9351 instead of `unsigned'.
9352 (print_state): Do not call obstack_object_size () in obstack_grow ()
9353 to avoid macro variables shadowing.
9354
9355 2001-08-23 Marc Autret <autret_m@epita.fr>
9356
9357 * src/lex.c (percent_table): Typo: s/naem/name/.
9358 Add graph option.
9359 Normalize new options declarations.
9360
9361 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
9362
9363 * tests/suite.at: Exercise %header_extension and %source_extension.
9364
9365 2001-08-16 Marc Autret <autret_m@epita.fr>
9366
9367 * src/reader.c (parse_dquoted_param): New.
9368 (parse_header_extension_decl): Use it.
9369 (parse_source_extension_decl): Likewise.
9370
9371 2001-08-16 Marc Autret <autret_m@epita.fr>
9372
9373 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
9374 (get_xxxx_str): Use assert () instead of complain ().
9375 Remove return invokations in default cases.
9376 (get_decision_str): Modify default behaviour. Remove second argument.
9377 Echo modifications on calls.
9378 (output_graph): Fix.
9379
9380 2001-08-16 Marc Autret <autret_m@epita.fr>
9381
9382 * src/getargs.c (usage): Update with ``-g, --graph''.
9383
9384 2001-08-16 Marc Autret <autret_m@epita.fr>
9385
9386 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
9387 (Option Cross Key): Likewise.
9388 * doc/bison.1: Update.
9389
9390 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
9391
9392 * src/output.c (output_master_parser): Don't finish action_obstack.
9393 (output_parser): Don't care about the muscle action, here.
9394 (prepare): Copy the action_obstack in the action muscle.
9395 (output): Free action_obstack.
9396
9397 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
9398
9399 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
9400 will contain `%union' declaration.
9401 (parse_union_decl): Delete #line directive output.
9402 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
9403 informations about %union.
9404 (parse_union_decl): Copy the union_obstack in the muscle stype.
9405 * src/bison.simple: Add new #line directive.
9406 Add typdef %%stype YYSTYPE.
9407
9408 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
9409
9410 * src/bison.simple: Add new `#line' directive.
9411
9412 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
9413
9414 * src/bison.simple: New `#line' directive.
9415 * src/output.c (output_parser): Support new dynamic muscle input_line.
9416
9417 2001-09-22 Marc Autret <autret_m@epita.fr>
9418
9419 * src/output.c (output_master_parser): New.
9420 (output_parser): Be more re-entrant.
9421
9422 2001-09-21 Marc Autret <autret_m@epita.fr>
9423
9424 * src/reader.c (copy_definition, parse_union_decl): Update and use
9425 `linef' muscle.
9426 (copy_action): Likewise.
9427 Use obstack_1grow ().
9428 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
9429
9430 2001-09-21 Marc Autret <autret_m@epita.fr>
9431
9432 * src/options.c (option_table): Adjust.
9433 * src/lex.c (parse_percent_token): Fix.
9434
9435 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
9436
9437 * src/options.c (symtab.h): Include it, need by lex.h.
9438
9439 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
9440
9441 * src/lex.c (parse_percent_token): Change type of variable `tx', which
9442 is now an option_table_struct*.
9443 (option_strcmp): New function option_strcmp.
9444 (parse_percent_token): Call option_strcmp.
9445 * src/getargs.c (xalloc.h, options.h): Include it.
9446 (getargs): Call create_long_option_table.
9447 (getargs): Free longopts at the end of the function.
9448 (shortopts): Move in options.c.
9449 * src/options.c (create_long_option_table): New function. Convert
9450 information from option_table to option structure.
9451 * src/reader.c (options.h): Include it.
9452
9453 * src/Makefile.am: Adjust.
9454 * src/options.c (option_table): Create from longopts and percent_table.
9455 * src/getargs.c (longopts): Delete.
9456 * src/lex.c (struct percent_table_struct): Delete.
9457 (percent_table): Delete.
9458 (options.h): Include it.
9459 * src/options.c: Create.
9460 * src/options.h: Create.
9461 Declare enum opt_access_e.
9462 Define struct option_table_struct.
9463
9464 2001-09-20 Marc Autret <autret_m@epita.fr>
9465
9466 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
9467 sections of Bison.
9468
9469 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
9470
9471 * src/bison.simple: s/%%filename/%%skeleton.
9472 * src/muscle_tab.c (getargs.h): Include it.
9473 (muscle_init): Insert new muscle skeleton.
9474
9475 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
9476
9477 * src/output.c (output_parser): Delete unused variable actions_dumped.
9478
9479 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
9480
9481 * src/output.c (output): Delete call to reader_output_yylsp.
9482 * src/reader.c (reader): Likewise.
9483 * src/reader.h: Delete declaration of reader_output_yylsp.
9484
9485 2001-09-02 Marc Autret <autret_m@epita.fr>
9486
9487 * src/reader.c: Include muscle_tab.h.
9488 (parse_union_decl): Update.
9489 (parse_macro_decl): Rename parse_muscle_decl.
9490 Update to use renamed functions and variable.
9491 (read_declarations, copy_action, read_additionnal_code, : Updated
9492 with correct variables and functions names.
9493 (packsymbols, reader): Likewise.
9494
9495 * src/reader.h (muscle_obstack): Extern declaration update.
9496
9497 * src/output.c: Include muscle_tab.h
9498 In all functions using macro_insert, change by using muscle_insert ().
9499 (macro_obstack): Rename muscle_obstack.
9500 Echo modifications in the whole file.
9501 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
9502 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
9503 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
9504
9505 * src/muscle_tab.h: Update double inclusion macros.
9506 (macro_entry_s): Rename muscle_entry_s.
9507 Update prototypes.
9508
9509 * src/muscle_tab.c: Include muscle_tab.h.
9510 Rename macro_tabble to muscle_table.
9511 (mhash1, mhash2, mcmp): Use muscle_entry.
9512 (macro_init): Rename muscle_init. Update.
9513 (macro_insert): Rename muscle_insert. Update.
9514 (macro_find): Rename muscle_find. Update.
9515
9516 * src/main.c: Include muscle_tab.h.
9517 (main): Call muscle_init ().
9518 * src/Makefile.am (bison_SOURCES): Echo modifications.
9519
9520 2001-09-02 Marc Autret <autret_m@epita.fr>
9521
9522 Now the files macro_tab.[ch] are named muscle_tab.[ch].
9523
9524 * src/muscle_tab.c, src/muscle_tab.h: Add files.
9525
9526 2001-09-02 Marc Autret <autret_m@epita.fr>
9527
9528 * src/macrotab.c, src/macrotab.h: Remove.
9529
9530 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
9531
9532 * src/reader.c (copy_guard): Use muscle to specify the `#line'
9533 filename.
9534
9535 2001-09-01 Marc Autret <autret_m@epita.fr>
9536
9537 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
9538 to an explicit value to activate the feature. We do it here.
9539
9540 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
9541
9542 * src/output.c (prepare): Delete the `filename' muscule insertion.
9543 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
9544 (parse_union_decl): Likewise.
9545 * src/macrotab.c (macro_init): Initialize filename by infile.
9546
9547 2001-08-31 Marc Autret <autret_m@epita.fr>
9548
9549 * src/bison.simple (YYLSP_NEEDED): New definition.
9550 * src/output.c (prepare): Add macro insertion of `locations_flag'
9551
9552 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
9553
9554 * src/output.c (prepare): Delete insertion of previous muscles,
9555 and insert the `prefix' muscles.
9556 * src/macrotab.c (macro_init): Likewise.
9557 (macro_init): Initialization prefix directive by `yy'.
9558 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
9559 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
9560 yylval, yydebug, yyerror, yynerrs and yyparse.
9561 New directive `#define' to substitute yydebug, ... with option
9562 name_prefix.
9563
9564 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
9565
9566 * src/main.c (main): Standardize.
9567 * src/output.c (output_table_data, output_parser): Likewise.
9568 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
9569
9570 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
9571
9572 * src/reader.c (read_additionnal_code): Rename %%user_code to
9573 %%epilogue.
9574 * src/output.c (output): Rename %%declarations to %%prologue.
9575 * src/bison.simple: Echo modifications.
9576
9577 2001-08-31 Marc Autret <autret_m@epita.fr>
9578
9579 * src/reader.c (readgram): CleanUp.
9580 (output_token_defines): Likewise.
9581 (packsymbols): Likewise.
9582 (reader): Likewise.
9583 * src/output.c (output): CPP-out useless code.
9584
9585 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
9586
9587 * src/reader.c (reader): Delete obsolete call to function
9588 output_trailers and output_headers.
9589 * src/output.h: Remove obsolete functions prototypes of output_headers
9590 and output_trailers.
9591
9592 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
9593
9594 * src/main.c: Include macrotab.h.
9595 * src/macrotab.h (macro_entry_s): Constify fields.
9596 Adjust functions prototypes.
9597 * src/macrotab.c (macro_insert): Constify key and value.
9598 (macro_find): Constify key.
9599 (macro_insert): Include 'xalloc.h'
9600 (macro_insert): Use XMALLOC.
9601 (macro_find): Constify return value.
9602 * src/output.c (output_table_data): Rename table to table_data.
9603 (output_parser): Constify macro_key, macro_value.
9604
9605 2001-08-30 Marc Autret <autret_m@epita.fr>
9606
9607 * src/reader.c (parse_skel_decl): New.
9608 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
9609 * src/lex.h (token_t): New token `tok_skel'.
9610 * src/lex.c (percent_table): Add skeleton option entry.
9611 Standardize.
9612
9613 2001-08-29 Marc Autret <autret_m@epita.fr>
9614
9615 * src/bison.simple: Add %%user_code directive at the end.
9616 * src/reader.c (read_additionnal_code): New.
9617 (reader): Use it.
9618 * src/output.c (output_program): Remove.
9619 (output): Update.
9620
9621 2001-08-28 Marc Autret <autret_m@epita.fr>
9622
9623 * src/output.c (output_actions): Clean up.
9624 (output_gram): CPP-out useless code.
9625 * src/reader.c (reader): Clean up, CPP-out useless code.
9626
9627 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
9628
9629 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
9630 directive.
9631 * src/bison.simple: Add `%%definitions'.
9632
9633 2001-08-28 Marc Autret <autret_m@epita.fr>
9634
9635 * config/depcomp: New file.
9636
9637 2001-08-27 Paul Eggert <eggert@twinsun.com>
9638
9639 * src/bison.simple (yyparse): Don't take the address of an
9640 item before the start of an array, as that doesn't conform to
9641 the C Standard.
9642
9643 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
9644
9645 * src/output.c (output): Remove the initialization of the macro
9646 obstack. It was done too late here.
9647
9648 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
9649 completely wrong.
9650 (reader): Initialize the macro obstack here, since we need it to grow
9651 '%define' directives.
9652
9653 * src/reader.h: Declare the macro obstack as extern.
9654
9655 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
9656
9657 * src/output.c (output_parser): Fix. Store single '%' characters in
9658 the output obstack instead of throwing them away.
9659
9660 2001-08-27 Akim Demaille <akim@epita.fr>
9661
9662 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
9663
9664 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9665
9666 * lib/Makefile.am: Adjust.
9667
9668 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9669
9670 * src/bison.simple: Update and add '%%' directives.
9671
9672 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9673
9674 * src/reader.c (reader): Remove calls to 'output_headers' and
9675 'output_trailers'. Remove some C output.
9676 (readgram): Disable a piece of code that was writing a default
9677 definition for 'YYSTYPE'.
9678 (reader_output_yylsp): Remove.
9679 (packsymbols): Output token defintions to a macro.
9680 (copy_definition): Disable C output.
9681
9682 * src/reader.c (parse_macro_decl): New function used to parse macro
9683 declarations.
9684 (copy_string2): Put the body of copy_string into this new function.
9685 Add a parameter to let the caller choose whether he wants to copy the
9686 string delimiters or not.
9687 (copy_string): Be a simple call to copy_string2 with the last argument
9688 bound to true.
9689 (read_declarations): Add case for macro definition.
9690 (copy_identifier): New.
9691 (parse_macro_decl): Read macro identifiers using copy_identifier
9692 rather than lex.
9693
9694 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9695
9696 * src/output.c (prepare): Add prefixed names.
9697 (output_parser): Output semantic actions.
9698 (output_parser): Fix bug on '%%line' directives.
9699
9700 * src/output.c (output_headers): Remove. The C code printed by this
9701 function should now be in the skeletons.
9702 (output_trailers): Remove.
9703 (output): Disable call to 'reader_output_yylsp'.
9704 (output_rule_data): Do not output tables to the table obstack.
9705
9706 * src/output.c: Remove some C dedicated output.
9707 Improve the use of macro and output obstacks.
9708 (output_defines): Remove.
9709
9710 * src/output.c (output_token_translations): Associate 'translate'
9711 table with a macro. No output to the table obstack.
9712 (output_gram): Same for 'rhs' and 'prhs'.
9713 (output_stos): Same for 'stos'.
9714 (output_rule_data): Same for 'r1' and 'r2'.
9715 (token_actions): Same for 'defact'.
9716 (goto_actions): Same for 'defgoto'.
9717 (output_base): Same for 'pact' and 'pgoto'.
9718 (output_table): Same for 'table'.
9719 (output_check): Same for 'check'.
9720
9721 * src/output.c (output_table_data): New function.
9722 (output_short_table): Remove.
9723 (output_short_or_char_table): Remove.
9724
9725 * src/output.c (output_parser): Replace most of the skeleton copy code
9726 with something new. Skeletons are now processed character by character
9727 rather than line by line, and Bison looks for '%%' macros. This is the
9728 first step in making Bison's output process (a lot) more flexible.
9729 (output_parser): Use the macro table.
9730
9731 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9732
9733 * src/main.c (main): Initialize the macro table.
9734
9735 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9736
9737 * src/lex.c (percent_table): Add tok_define.
9738 * src/lex.h: Add tok_define.
9739
9740 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9741
9742 * src/macrotab.c: New file.
9743 * src/macrotab.h: New file.
9744 * src/Makefile.am: Update.
9745
9746 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
9747
9748 * lib/hash.c: New file.
9749 * lib/hash.h: New file.
9750 * lib/Makefile.am: Update.
9751
9752 2001-08-15 Akim Demaille <akim@epita.fr>
9753
9754 Version 1.28c.
9755
9756 2001-08-15 Marc Autret <autret_m@epita.fr>
9757
9758 * src/reader.c (readgram): Indent output macro YYSTYPE.
9759 (packsymbols): Likewise.
9760 (output_token_defines): Likewise.
9761 * src/files.c: Standardize.
9762 (compute_header_macro): New.
9763 (defines_obstack_save): New. Use compute_header_macro.
9764 (output_files): Update. Use defines_obstack_save.
9765
9766 2001-08-15 Akim Demaille <akim@epita.fr>
9767
9768 * doc/bison.texinfo (Table of Symbols): Document
9769 YYSTACK_USE_ALLOCA.
9770
9771 2001-08-15 Akim Demaille <akim@epita.fr>
9772
9773 * missing: Update from CVS Automake.
9774 * config/config.guess, config/config.sub, config/texinfo.tex:
9775 Update from gnu.org.
9776
9777 2001-08-15 Akim Demaille <akim@epita.fr>
9778
9779 * Makefile.maint: Sync with CVS Autoconf.
9780
9781 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
9782
9783 * doc/bison.texinfo: Include GNU Free Documentation License from
9784 `fdl.texi'.
9785 * doc/fdl.texi: Add to package.
9786
9787 2001-08-14 Marc Autret <autret_m@epita.fr>
9788
9789 Turn on %{source,header}_extension features.
9790
9791 * src/lex.c (percent_table): Un-CPP out header_extension and
9792 source_extension.
9793 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
9794 (compute_exts_from_src): Remove conditions. It restores priorities
9795 between options.
9796
9797 2001-08-14 Marc Autret <autret_m@epita.fr>
9798
9799 * src/files.c (compute_base_names): Add extensions computing when
9800 `--file-prefix' used.
9801 Standardize function calls.
9802
9803 2001-08-13 Marc Autret <autret_m@epita.fr>
9804
9805 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
9806 defining it (defined but null disables alloca).
9807
9808 2001-08-13 Marc Autret <autret_m@epita.fr>
9809
9810 * src/bison.simple (_yy_memcpy): CPP reformat.
9811
9812 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
9813
9814 * tests/atconfig.in (CPPFLAGS): Fix.
9815
9816 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
9817
9818 * doc/bison.texinfo: Include GNU General Public License from
9819 `gpl.texi'.
9820 * doc/gpl.texi: Add to package.
9821
9822 2001-08-10 Marc Autret <autret_m@epita.fr>
9823
9824 * src/print_graph.h: Fix.
9825 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
9826
9827 2001-08-10 Akim Demaille <akim@epita.fr>
9828
9829 * src/system.h: Provide default declarations for stpcpy, strndup,
9830 and strnlen.
9831
9832 2001-08-10 Robert Anisko <anisko_r@epita.fr>
9833
9834 * doc/bison.texinfo (Locations): Update @$ stuff.
9835
9836 2001-08-09 Robert Anisko <anisko_r@epita.fr>
9837
9838 * src/bison.simple (YYLLOC_DEFAULT): Update.
9839 (yyparse): Adjust.
9840
9841 2001-08-08 Marc Autret <autret_m@epita.fr>
9842
9843 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
9844 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
9845 Reported by Fabrice Bauzac.
9846
9847 2001-08-08 Marc Autret <autret_m@epita.fr>
9848
9849 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
9850 * src/vcg.c (output_node): Fix.
9851 * src/vcg.h: Cleanup.
9852 * src/print_graph.c: Add comments.
9853 (node_output_size): New global variable. Simplify the formatting of
9854 the VCG graph output.
9855 (print_actions): Unused code is now used. It notifies the final state
9856 and no action states in the VCG graph. It also give the reduce actions.
9857 The `shift and goto' edges are red and the `go to state' edges are
9858 blue.
9859 Get the current node name and node_obstack by argument.
9860 (node_obstack): New variable.
9861 (print_state): Manage node_obstack.
9862 (print_core): Use node_obstack given by argument.
9863 A node is not only computed here but in print_actions also.
9864 (print_graph): CPP out useless code instead of commenting it.
9865
9866 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
9867
9868 * tests/atconfig.in (CPPFLAGS): Fix.
9869
9870 2001-08-07 Akim Demaille <akim@epita.fr>
9871
9872 * src/print_graph.c (quote): New.
9873 (print_core): Use it.
9874
9875 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
9876
9877 * src/vcg.c (complain.h): Include it.
9878 Unepitaize `return' invocations.
9879 [NDEBUG] (main): Remove.
9880 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
9881 * src/files.c (open_files): Initialize graph_obstack.
9882 * src/print_graph.c (print_actions): CPP out useless code.
9883 (print_core): Don't output the last `\n' in labels.
9884 Use `quote'.
9885 * src/files.c (output_files): Output the VCG file.
9886 * src/main.c (main): Invoke print_graph ();
9887
9888 2001-08-06 Marc Autret <autret_m@epita.fr>
9889
9890 Automaton VCG graph output.
9891 Using option ``-g'' or long option ``--graph'', you can generate
9892 a gram_filename.vcg file containing a VCG description of the LALR (1)
9893 automaton of your grammar.
9894
9895 * src/main.c: Call to print_graph() function.
9896 * src/getargs.h: Update.
9897 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
9898 (graph_flag): New flag.
9899 (longopts): Update.
9900 (getargs): Add case `g'.
9901 * src/files.c (graph_obstack): New obstack struct.
9902 (open_files): Initialize new obstack.
9903 (output_files): Saves graph_obstack if required.
9904 * src/files.h (graph_obstack): New extern declaration.
9905 * src/Makefile.am: Add new source files.
9906
9907 2001-08-06 Marc Autret <autret_m@epita.fr>
9908
9909 * src/print_graph.c, src/print_graph.h (graph): New.
9910 * src/vcg.h: New file.
9911 * src/vcg.c: New file, VCG graph handling.
9912
9913 2001-08-06 Marc Autret <autret_m@epita.fr>
9914
9915 Add of %source_extension and %header_extension which specify
9916 the source or/and the header output file extension.
9917
9918 * src/files.c (compute_base_names): Remove initialisation of
9919 src_extension and header_extension.
9920 (compute_exts_from_gf): Update.
9921 (compute_exts_from_src): Update.
9922 (output_files): Update.
9923 * src/reader.c (parse_header_extension_decl): New.
9924 (parse_source_extension_decl): New.
9925 (read_declarations): New case statements for the new tokens.
9926 * src/lex.c (percent_table): Add entries for %source_extension
9927 and %header_extension.
9928 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
9929
9930 2001-08-06 Marc Autret <autret_m@epita.fr>
9931
9932 * configure.in: Bump to 1.28c.
9933 * doc/bison.texinfo: Texinfo thingies.
9934
9935 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
9936
9937 * tests/atconfig.in (CPPFLAGS): Add.
9938 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
9939
9940 2001-08-03 Akim Demaille <akim@epita.fr>
9941
9942 Version 1.28b.
9943
9944 2001-08-03 Akim Demaille <akim@epita.fr>
9945
9946 * tests/Makefile.am (check-local): Ship testsuite.
9947 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
9948 Include `string.h'.
9949
9950 2001-08-03 Akim Demaille <akim@epita.fr>
9951
9952 * configure.in: Try using -Wformat when compiling.
9953
9954 2001-08-03 Akim Demaille <akim@epita.fr>
9955
9956 * configure.in: Bump to 1.28b.
9957
9958 2001-08-03 Akim Demaille <akim@epita.fr>
9959
9960 * src/complain.c: Adjust strerror_r portability issues.
9961
9962 2001-08-03 Akim Demaille <akim@epita.fr>
9963
9964 Version 1.28a.
9965
9966 2001-08-03 Akim Demaille <akim@epita.fr>
9967
9968 * src/getargs.c, src/getarg.h (skeleton)): Constify.
9969 * src/lex.c (literalchar): Avoid name clashes on `buf'.
9970 * src/getargs.c: Include complain.h.
9971 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
9972 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
9973
9974 2001-08-03 Akim Demaille <akim@epita.fr>
9975
9976 * src/reader.c (readgram): Display hidden chars in error messages.
9977
9978 2001-08-03 Akim Demaille <akim@epita.fr>
9979
9980 Update to gettext 0.10.39.
9981
9982 2001-08-03 Akim Demaille <akim@epita.fr>
9983
9984 * lib/strspn.c: New.
9985
9986 2001-08-01 Marc Autret <autret_m@epita.fr>
9987
9988 * doc/bison.texinfo: Update.
9989 * doc/bison.1 (mandoc): Update.
9990 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
9991 * src/files.c: Support output files extensions computing.
9992 (src_extension): New static variable.
9993 (header_extension): New static variable.
9994 (tr): New function.
9995 (get_extension_index): New function, gets the index of an extension
9996 filename in a string.
9997 (compute_exts_from_gf): New function, computes extensions from the
9998 grammar file extension.
9999 (compute_exts_from_src): New functions, computes extensions from the
10000 C source file extension, file given by ``-o'' option.
10001 (compute_base_names): Update.
10002 (output_files): Update.
10003
10004 2001-08-01 Robert Anisko <anisko_r@epita.fr>
10005
10006 * doc/bison.texi: Document @$.
10007 (Locations): New section.
10008
10009 2001-07-18 Akim Demaille <akim@epita.fr>
10010
10011 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
10012 * config/prev-version.txt, config/move-if-change: New.
10013 * Makefile.am: Adjust.
10014
10015 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
10016
10017 * src/bison.simple (yyparse): Suppress warning `comparaison
10018 between signed and unsigned'.
10019
10020 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
10021
10022 * src/getargs.h (raw_flag): Remove.
10023 * src/getargs.c: Die on `-r'/`--raw'.
10024 * src/lex.c (parse_percent_token): Die on `%raw'.
10025 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
10026 * tests/calc.at: Suppress test with option `--raw'.
10027
10028 2001-07-14 Akim Demaille <akim@epita.fr>
10029
10030 * config/: New.
10031 * configure.in: Require Autoconf 2.50.
10032 Update to gettext 0.10.38.
10033
10034 2001-03-16 Akim Demaille <akim@epita.fr>
10035
10036 * doc/bison.texinfo: ANSIfy the examples.
10037
10038 2001-03-16 Akim Demaille <akim@epita.fr>
10039
10040 * getargs.c (skeleton): New variable.
10041 (longopts): --skeleton is a new option.
10042 (shortopts, getargs): -S is a new option.
10043 * getargs.h: Declare skeleton.
10044 * output.c (output_parser): Use it.
10045
10046 2001-03-16 Akim Demaille <akim@epita.fr>
10047
10048 * m4/strerror_r.m4: New.
10049 * m4/error.m4: Run AC_FUNC_STRERROR_R.
10050 * lib/error.h, lib/error.c: Update.
10051
10052 2001-03-16 Akim Demaille <akim@epita.fr>
10053
10054 * src/getargs.c (longopts): Clean up.
10055
10056 2001-02-21 Akim Demaille <akim@epita.fr>
10057
10058 * src/reader.c (gensym): `gensym_count' is your own.
10059 Use a static buf to create the symbol name, as token_buffer is no
10060 longer a buffer.
10061
10062 2001-02-08 Akim Demaille <akim@epita.fr>
10063
10064 * src/conflicts.c (conflict_report): Be sure not to append to res
10065 between two calls, which could happen if both first sprintf were
10066 skipped, but not the first cp += strlen.
10067
10068 2001-02-08 Akim Demaille <akim@epita.fr>
10069
10070 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
10071 New, from fileutils 4.0.37.
10072 * configure.in: Require Autoconf 2.49c. I took some time before
10073 making this decision. This is the only way out for portability
10074 issues in Bison, it would mean way too much duplicate effort to
10075 import in Bison features implemented in 2.49c since 2.13.
10076 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
10077
10078 2001-02-02 Akim Demaille <akim@epita.fr>
10079
10080 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
10081 * lib/xalloc.h, lib/xmalloc.c: Update.
10082
10083 2001-01-19 Akim Demaille <akim@epita.fr>
10084
10085 Get rid of the ad hoc handling of token_buffer in the scanner: use
10086 the obstacks.
10087
10088 * src/lex.c (token_obstack): New.
10089 (init_lex): Initialize it. No longer call...
10090 (grow_token_buffer): this. Remove it.
10091 Adjust all the places which used it to use the obstack.
10092
10093 2001-01-19 Akim Demaille <akim@epita.fr>
10094
10095 * src/lex.h: Rename all the tokens:
10096 s/\bENDFILE\b/tok_eof/g;
10097 s/\bIDENTIFIER\b/tok_identifier/g;
10098 etc.
10099 Let them be enums, not #define, to ease debugging.
10100 Adjust all the code.
10101
10102 2001-01-18 Akim Demaille <akim@epita.fr>
10103
10104 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
10105 * src/lex.c (maxtoken, grow_token_buffer): Static.
10106
10107 2001-01-18 Akim Demaille <akim@epita.fr>
10108
10109 Since we now use obstacks, more % directives can be enabled.
10110
10111 * src/lex.c (percent_table): Also accept `%yacc',
10112 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
10113 `%debug'.
10114 Handle the actions for `%semantic_parser' and `%pure_parser' here,
10115 instead of returning a token.
10116 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
10117 * src/reader.c (read_declarations): Adjust.
10118 * src/files.c (open_files): Don't call `compute_base_names', don't
10119 compute `attrsfile' since they depend upon data which might be
10120 *in* the input file now.
10121 (output_files): Do it here.
10122 * src/output.c (output_headers): Document the fact that this patch
10123 introduces a guaranteed SEGV for semantic parsers.
10124 * doc/bison.texinfo: Document them.
10125 * tests/suite.at: Exercise these %options.
10126
10127 2000-12-20 Akim Demaille <akim@epita.fr>
10128
10129 Also handle the output file (--verbose) with obstacks.
10130
10131 * files.c (foutput): Remove.
10132 (output_obstack): New.
10133 Adjust all dependencies.
10134 * src/conflicts.c: Return a string.
10135 * src/system.h (obstack_grow_string): Rename as...
10136 (obstack_sgrow): this. Be ready to work with non literals.
10137 (obstack_fgrow4): New.
10138
10139 2000-12-20 Akim Demaille <akim@epita.fr>
10140
10141 * src/files.c (open_files): Fix the computation of short_base_name
10142 in the case of `-o foo.tab.c'.
10143
10144 2000-12-20 Akim Demaille <akim@epita.fr>
10145
10146 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
10147 (copy_dollar): Now that everything uses obstacks, get rid of the
10148 FILE * parameters.
10149
10150 2000-12-20 Akim Demaille <akim@epita.fr>
10151
10152 * src/files.c (open_files): Actually the `.output' file is based
10153 on the short_base_name, not base_name.
10154 * tests/suite.at (Checking output file names): Adjust.
10155
10156 2000-12-20 Akim Demaille <akim@epita.fr>
10157
10158 * src/bison.s1: Remove, we now use directly...
10159 * src/bison.simple: this.
10160 * src/Makefile.am: Use pkgdata instead of data.
10161
10162 2000-12-20 Akim Demaille <akim@epita.fr>
10163
10164 * src/files.c (guard_obstack): New.
10165 (open_files): Initialize it.
10166 (output_files): Dump it...
10167 * src/files.h: Export it.
10168 * src/reader.c (copy_guard): Use it.
10169
10170 2000-12-19 Akim Demaille <akim@epita.fr>
10171
10172 * src/files.c (outfile, defsfile, actfile): Removed as global
10173 vars.
10174 (open_files): Don't compute them.
10175 (output_files): Adjust.
10176 (base_name, short_base_name): Be global.
10177 Adjust dependencies.
10178
10179 2000-12-19 Akim Demaille <akim@epita.fr>
10180
10181 * src/files.c (strsuffix): New.
10182 (stringappend): Be just like strcat but allocate.
10183 (base_names): Eve out from open_files.
10184 Try to simplify the rather hairy computation of base_name and
10185 short_base_name.
10186 (open_files): Use it.
10187 * tests/suite.at (Checking output file names): New test.
10188
10189 2000-12-19 Akim Demaille <akim@epita.fr>
10190
10191 * src/system.h (obstack_grow_literal_string): Rename as...
10192 (obstack_grow_string): this.
10193 * src/output.c (output_parser): Recognize `%% actions' instead of
10194 `$'.
10195 * src/bison.s1: s/$/%% actions/.
10196 * src/bison.hairy: Likewise.
10197
10198 2000-12-19 Akim Demaille <akim@epita.fr>
10199
10200 * src/output.c (output_parser): Compute the `#line' lines when
10201 there are.
10202 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
10203 Suggested by Hans Aberg.
10204
10205 2000-12-19 Akim Demaille <akim@epita.fr>
10206
10207 Let the handling of the skeleton files be local to the procedures
10208 that use it.
10209
10210 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
10211 longer static.
10212 (fparser, open_extra_files): Remove.
10213 (open_files, output_files): Don't take care of fparser.
10214 * src/files.h: Adjust.
10215 * src/output.c (output_parser): Open and close the file to the
10216 skeleton.
10217 * src/reader.c (read_declarations): When %semantic_parser, open
10218 fguard.
10219
10220 2000-12-19 Akim Demaille <akim@epita.fr>
10221
10222 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
10223 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
10224
10225 2000-12-19 Akim Demaille <akim@epita.fr>
10226
10227 * src/files.c (open_files): Yipee! We no longer need all the code
10228 looking for `/tmp' since we have no tmp file.
10229
10230 2000-12-19 Akim Demaille <akim@epita.fr>
10231
10232 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
10233 New macros.
10234 * src/files.c (open_files): Less dependency on MSDOS etc.
10235
10236 2000-12-14 Akim Demaille <akim@epita.fr>
10237
10238 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
10239 Provide a default definition.
10240 Use it when executing the default @ action.
10241 * src/reader.c (reader_output_yylsp): No longer include
10242 `timestamp' and `text' in the default YYLTYPE.
10243
10244 2000-12-12 Akim Demaille <akim@epita.fr>
10245
10246 * src/reader.c (copy_definition, parse_union_decl, copy_action)
10247 (copy_guard): Quote the file names.
10248 Reported by Laurent Mascherpa.
10249
10250 2000-12-12 Akim Demaille <akim@epita.fr>
10251
10252 * src/output.c (output_headers, output_program, output): Be sure
10253 to escape special characters when outputting filenames.
10254 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
10255 (output_headers): Don't depend on them, Use ACTSTR.
10256
10257 2000-11-17 Akim Demaille <akim@epita.fr>
10258
10259 * lib/obstack.h: Formatting changes.
10260 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
10261 prevents type checking.
10262 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
10263 cast the value to (void *): assigning a `foo *' to a `void *'
10264 variable is valid.
10265 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
10266 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
10267 append characters.
10268
10269 2000-11-17 Akim Demaille <akim@epita.fr>
10270
10271 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
10272 as...
10273 (suite.m4, regression.m4, calc.m4): these.
10274 * tests/atgeneral.m4: Update from CVS Autoconf.
10275
10276 2000-11-17 Akim Demaille <akim@epita.fr>
10277
10278 * tests/regression.m4 (%union and --defines): New test,
10279 demonstrating a current bug in the obstack implementation.
10280
10281 2000-11-17 Akim Demaille <akim@epita.fr>
10282
10283 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
10284 macros.
10285 Use them to declare the variables which are global or local to
10286 `yyparse'.
10287
10288 2000-11-17 Akim Demaille <akim@epita.fr>
10289
10290 * acconfig.h: Remove, no longer used.
10291
10292 2000-11-07 Akim Demaille <akim@epita.fr>
10293
10294 * src: s/Copyright (C)/Copyright/g.
10295
10296 2000-11-07 Akim Demaille <akim@epita.fr>
10297
10298 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
10299 defining.
10300 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
10301
10302 2000-11-07 Akim Demaille <akim@epita.fr>
10303
10304 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
10305 Merge in a single CPP if/else.
10306
10307 2000-11-07 Akim Demaille <akim@epita.fr>
10308
10309 * src/output.c (output): Remove useless variables.
10310 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
10311 argument `data' for consistency with the prototypes.
10312 Qualify it `const'.
10313 (obstack_copy, obstack_copy0): Rename the second argument as
10314 `address' for consistency. Qualify it `const'.
10315 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
10316 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
10317 `const' their input argument (`data' or `address').
10318 Adjust the corresponding macros to include `const' in casts.
10319
10320 2000-11-03 Akim Demaille <akim@epita.fr>
10321
10322 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
10323 s/PFILE1/BISON_HAIRY/.
10324 Adjust dependencies.
10325
10326 2000-11-03 Akim Demaille <akim@epita.fr>
10327
10328 For some reason, this was not applied.
10329
10330 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
10331 `unlink': it's no longer used.
10332
10333 2000-11-03 Akim Demaille <akim@epita.fr>
10334
10335 * src/files.c (skeleton_find): New function, eved out of...
10336 (open_files, open_extra_files): here.
10337
10338 2000-11-03 Akim Demaille <akim@epita.fr>
10339
10340 Don't use `atexit'.
10341
10342 * src/files.c (obstack_save): New function.
10343 (done): Rename as...
10344 (output_files): this.
10345 Use `obstack_save'.
10346 * src/main.c (main): Don't use `atexit' to register `done', since
10347 it no longer has to remove tmp files, just call `output_files'
10348 when there are no errors.
10349
10350 2000-11-02 Akim Demaille <akim@epita.fr>
10351
10352 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
10353 `unlink': it's no longer used.
10354 * src/files.h: Formatting changes.
10355
10356 2000-11-02 Akim Demaille <akim@epita.fr>
10357
10358 Remove the last uses of mktemp and unlink/delete.
10359
10360 * src/files.c (fdefines, ftable): Removed.
10361 (defines_ostack, table_obstack): New.
10362 Adjust dependencies of the former into uses of the latter.
10363 * src/output.c (output_short_or_char_table, output_short_table):
10364 Convert to using obstacks.
10365 * src/reader.c (copy_comment2): Accept one FILE * and two
10366 obstacks.
10367 (output_token_defines, reader_output_yylsp): Use obstacks.
10368 * src/system.h (obstack_fgrow3): New.
10369 * po/POTFILES.in: Adjust.
10370
10371 2000-11-01 Akim Demaille <akim@epita.fr>
10372
10373 Change each use of `fattrs' into a use of `attrs_obstack'.
10374
10375 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
10376 * src/files.c (fattrs): Remove.
10377 (attrs_obstack): New.
10378 Adjust all dependencies.
10379 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
10380
10381 2000-11-01 Akim Demaille <akim@epita.fr>
10382
10383 Introduce obstacks.
10384 Change each use of `faction' into a use of `action_obstack'.
10385
10386 * lib/obstack.h, lib/obstack.c: New files.
10387 * src/files.c (faction): Remove.
10388 (action_obstack): New.
10389 Adjust all dependencies.
10390
10391 2000-10-20 Akim Demaille <akim@epita.fr>
10392
10393 * lib/quote.h (PARAMS): New macro. Use it.
10394
10395 2000-10-16 Akim Demaille <akim@epita.fr>
10396
10397 * src/output.c (output_short_or_char_table): New function.
10398 (output_short_table, output_token_translations): Use it.
10399 (goto_actions): Use output_short_table.
10400
10401 2000-10-16 Akim Demaille <akim@epita.fr>
10402
10403 * src/symtab.c (bucket_new): New function.
10404 (getsym): Use it.
10405
10406 * src/output.c (output_short_table): New argument to display the
10407 comment associated with the table.
10408 Adjust dependencies.
10409 (output_gram): Use it.
10410 (output_rule_data): Nicer output layout for YYTNAME.
10411
10412 2000-10-16 Akim Demaille <akim@epita.fr>
10413
10414 * src/lex.c (read_typename): New function.
10415 (lex): Use it.
10416 * src/reader.c (copy_dollar): Likewise.
10417
10418 2000-10-16 Akim Demaille <akim@epita.fr>
10419
10420 * src/reader.c (copy_comment2): Expect the input stream to be on
10421 the `/' which is suspected to open a comment, instead of being
10422 called after `//' or `/*' was read.
10423 (copy_comment, copy_definition, parse_union_decl, copy_action)
10424 (copy_guard): Adjust.
10425
10426 2000-10-16 Akim Demaille <akim@epita.fr>
10427
10428 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
10429 `read_signed_integer'.
10430
10431 2000-10-16 Akim Demaille <akim@epita.fr>
10432
10433 * src/reader.c (copy_dollar): New function.
10434 (copy_guard, copy_action): Use it.
10435
10436 2000-10-16 Akim Demaille <akim@epita.fr>
10437
10438 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
10439 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
10440 New files, from Fileutils 4.0.27.
10441 * src/main.c (printable_version): Remove.
10442 * src/lex.c, src/reader.c: Use `quote'.
10443
10444 2000-10-04 Akim Demaille <akim@epita.fr>
10445
10446 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
10447
10448 2000-10-04 Akim Demaille <akim@epita.fr>
10449
10450 * doc/bison.texinfo: Various typos spotted by Neil Booth.
10451
10452 2000-10-04 Akim Demaille <akim@epita.fr>
10453
10454 When a literal string is used to define two different tokens,
10455 `bison -v' segfaults.
10456 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
10457
10458 * tests/regression.m4: New file.
10459 Include the core of the sample provided by Piotr Gackiewicz.
10460 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
10461 properly.
10462
10463 2000-10-04 Akim Demaille <akim@epita.fr>
10464
10465 * src/reader.c (parse_expect_decl): Keep `count' within the size
10466 of `buffer'.
10467 From Neil Booth.
10468
10469 2000-10-02 Paul Eggert <eggert@twinsun.com>
10470
10471 * bison.s1 (yyparse): Assign the default value
10472 unconditionally, to avoid a GCC warning and make the parser a
10473 tad smaller.
10474
10475 2000-10-02 Akim Demaille <akim@epita.fr>
10476
10477 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
10478 options.
10479
10480 2000-10-02 Akim Demaille <akim@epita.fr>
10481
10482 * src/derives.c, src/print.c, src/reduce.c: To ease the
10483 translation, move some `\n' out of the translated strings.
10484
10485 2000-10-02 Akim Demaille <akim@epita.fr>
10486
10487 The location tracking mechanism is precious for parse error
10488 messages. Nevertheless, it is enabled only when `@n' is used in
10489 the grammar, which is a different issue (you can use it in error
10490 message, but not in the grammar per se). Therefore, there should
10491 be another means to enable it.
10492
10493 * src/getargs.c (getargs): Support `--locations'.
10494 (usage): Report it.
10495 * src/getargs.h (locationsflag): Export it.
10496 * src/lex.c (percent_table): Support `%locations'.
10497 * src/reader.c (yylsp_needed): Remove this variable, now replaced
10498 with `locationsflag'.
10499 * doc/bison.texinfo: Document `--locations' and `%locations'.
10500 Sort the options.
10501 * tests/calc.m4: Test it.
10502
10503 For regularity of the names, replace each
10504 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
10505 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
10506 In addition replace each `flag' with `_flag'.
10507
10508 2000-10-02 Akim Demaille <akim@epita.fr>
10509
10510 Also test parse error messages, including with YYERROR_VERBOSE.
10511
10512 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
10513 associative).
10514 Use it to check the computations.
10515 Use it to check `nonassoc' is honored.
10516 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
10517 `--yyerror-verbose'.
10518 (_AT_CHECK_CALC): Adjust to this option.
10519 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
10520
10521 2000-10-02 Akim Demaille <akim@epita.fr>
10522
10523 Test also `--verbose', `--defines' and `--name-prefix'. Testing
10524 the latter demonstrates a flaw in the handling of non debugging
10525 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
10526 was used in order to simplify:
10527
10528 #if YYDEBUG
10529 if (yydebug)
10530 {
10531 ...
10532 }
10533 #endif
10534
10535 into
10536
10537 if (yydebug)
10538 {
10539 ...
10540 }
10541
10542 unfortunately this leads to a CPP conflict when
10543 `--name-prefix=foo' is used since it produces `#define yydebug
10544 foodebug'.
10545
10546 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
10547 (YYDPRINTF): New macro.
10548 Spread its use.
10549 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
10550 the bison options.
10551 Also test `--verbose', `--defines' and `--name-prefix'.
10552
10553 2000-10-02 Akim Demaille <akim@epita.fr>
10554
10555 Improve the readability of the produced parsers.
10556
10557 * src/bison.s1: Formatting changes.
10558 Improve the comment related to the `$' mark.
10559 (yydefault): Don't fall through to `yyresume': `goto' there.
10560 * src/output.c (output_parser): When the `$' is met, skip the end
10561 of its line.
10562 New variable, `number_of_dollar_signs', to check there's exactly
10563 one `$' in the parser skeleton.
10564
10565 2000-10-02 Akim Demaille <akim@epita.fr>
10566
10567 * lib/xstrdup.c: New file, from the fileutils.
10568 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
10569 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
10570 instead of strlen + xmalloc + strcpy.
10571 * src/symtab.c (copys): Remove, use xstrdup instead.
10572
10573 2000-10-02 Akim Demaille <akim@epita.fr>
10574
10575 * src/gram.h (associativity): New enum type which replaces the
10576 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
10577 `right_assoc', `left_assoc' and `non_assoc'.
10578 Adjust all dependencies.
10579 * src/reader.c: Formatting changes.
10580 (LTYPESTR): Don't define it, use it as a literal in
10581 `reader_output_yylsp'.
10582 * src/symtab.h (symbol_class): New enum type which replaces the
10583 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
10584 `sunknown', `stoken and `snterm'.
10585
10586 2000-10-02 Akim Demaille <akim@epita.fr>
10587
10588 * src/getargs.c (fixed_outfiles): Rename as...
10589 (yaccflag): for consistency and accuracy.
10590 Adjust dependencies.
10591
10592 2000-10-02 Akim Demaille <akim@epita.fr>
10593
10594 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
10595 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
10596 difficult and introduced a lot of core dump. It turns out that
10597 Bison used an implementation of `xmalloc' based on `calloc', and
10598 at various places it does depend upon the initialization to 0. I
10599 have not tried to isolate the pertinent places, and all the former
10600 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
10601 someone should address this issue.
10602
10603 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
10604 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
10605 files.
10606 Adjust dependencies.
10607 * src/warshall.h: New file.
10608 Propagate.
10609
10610 2000-10-02 Akim Demaille <akim@epita.fr>
10611
10612 Various anti-`extern in *.c' changes.
10613
10614 * src/system.h: Include `assert.h'.
10615
10616 2000-10-02 Akim Demaille <akim@epita.fr>
10617
10618 * src/state.h (nstates, final_state, first_state, first_shift)
10619 (first_reduction): Move their exportation from here...
10620 * src/LR0.h: to here.
10621 Adjust dependencies.
10622 * src/getargs.c (statisticsflag): New variable.
10623 Add support for `--statistics'.
10624 Adjust dependencies.
10625
10626 Remove a lot of now useless `extern' statements in most files.
10627
10628 2000-10-02 Akim Demaille <akim@epita.fr>
10629
10630 * src/LR0.h: New file.
10631 Propagate its use.
10632
10633 2000-10-02 Akim Demaille <akim@epita.fr>
10634
10635 * src/print.h: New file.
10636 Propagate its use.
10637 * src/print.c: Formatting and ordering changes.
10638 (verbose, terse): Replace with...
10639 (print_results): this new function.
10640 Adjust dependencies.
10641
10642 2000-10-02 Akim Demaille <akim@epita.fr>
10643
10644 * src/conflicts.c (conflict_report): New function.
10645 (conflict_log, verbose_conflict_log): Replace with...
10646 (print_conflicts): this function.
10647 Adjust dependencies.
10648 * src/conflicts.h: New file.
10649 Propagate its inclusion.
10650
10651 2000-10-02 Akim Demaille <akim@epita.fr>
10652
10653 * src/nullable.h: New file.
10654 Propagate its inclusion.
10655 * src/nullable.c: Formatting changes.
10656
10657 2000-10-02 Akim Demaille <akim@epita.fr>
10658
10659 * src/reduce.h: New file.
10660 Propagate its inclusion.
10661 * src/reduce.c: Topological sort and other formatting changes.
10662 (bool, TRUE, FALSE): Move their definition to...
10663 * src/system.h: here.
10664
10665 2000-10-02 Akim Demaille <akim@epita.fr>
10666
10667 * src/files.c: Formatting changes.
10668 (tryopen, tryclose, openfiles): Rename as...
10669 (xfopen, xfclose, open_files): this.
10670 (stringappend): static.
10671 * src/files.h: Complete the list of exported symbols.
10672 Propagate its use.
10673
10674 2000-10-02 Akim Demaille <akim@epita.fr>
10675
10676 * src/reader.h: New file.
10677 Propagate its use instead of tedious list of `extern' and
10678 prototypes.
10679 * src/reader.c: Formatting changes, topological sort,
10680 s/register//.
10681
10682 2000-10-02 Akim Demaille <akim@epita.fr>
10683
10684 * src/lex.h: Prototype `lex.c' exported functions.
10685 * src/reader.c: Adjust.
10686 * src/lex.c: Formatting changes.
10687 (safegetc): Rename as...
10688 (xgetc): this.
10689
10690 2000-10-02 Akim Demaille <akim@epita.fr>
10691
10692 * src/lalr.h: New file.
10693 Propagate its inclusion instead of prototypes and `extern'.
10694 * src/lalr.c: Formatting changes, topological sorting etc.
10695
10696 2000-10-02 Akim Demaille <akim@epita.fr>
10697
10698 * src/output.c (token_actions): Introduce a temporary array,
10699 YYDEFACT, that makes it possible for this function to use
10700 output_short_table.
10701
10702 2000-10-02 Akim Demaille <akim@epita.fr>
10703
10704 `user_toknums' is output as a `short[]' in `output.c', while it is
10705 defined as a `int[]' in `reader.c'. For consistency with the
10706 other output tables, `user_toknums' is now defined as a table of
10707 shorts.
10708
10709 * src/reader.c (user_toknums): Be a short table instead of an int
10710 table.
10711 Adjust dependencies.
10712
10713 Factor the short table outputs.
10714
10715 * src/output.c (output_short_table): New function.
10716 * src/output.c (output_gram, output_stos, output_rule_data)
10717 (output_base, output_table, output_check): Use it.
10718
10719 2000-10-02 Akim Demaille <akim@epita.fr>
10720
10721 * src/output.c (output): Topological sort of the functions, in
10722 order to get rid of the `static' prototypes.
10723 No longer use `register'.
10724 * src/output.h: New file.
10725 Propagate its inclusion in files explicitly prototyping functions
10726 from output.c.
10727
10728 2000-09-21 Akim Demaille <akim@epita.fr>
10729
10730 * src/atgeneral.m4: Update from Autoconf.
10731
10732 2000-09-21 Akim Demaille <akim@epita.fr>
10733
10734 * src/closure.h: New file.
10735 * src/closure.c: Formatting changes, topological sort over the
10736 functions, use of closure.h.
10737 (initialize_closure, finalize_closure): Rename as...
10738 (new_closure, free_closure): these. Adjust dependencies.
10739 * src/LR0.c: Formatting changes, topological sort, use of
10740 cloture.h.
10741 (initialize_states): Rename as...
10742 (new_states): this.
10743 * src/Makefile.am (noinst_HEADERS): Adjust.
10744
10745 2000-09-20 Akim Demaille <akim@epita.fr>
10746
10747 * src/acconfig.h: Don't protect config.h against multiple
10748 inclusion.
10749 Don't define PARAMS.
10750 * src/system.h: Define PARAMS.
10751 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
10752 purpose of config.h. system.h must not try to fix wrong
10753 definitions in config.h.
10754
10755 2000-09-20 Akim Demaille <akim@epita.fr>
10756
10757 * src/derives.h: New file.
10758 * src/main.c, src/derives.h: Use it.
10759 Formatting changes.
10760 * src/Makefile.am (noinst_HEADERS): Adjust.
10761
10762 2000-09-20 Akim Demaille <akim@epita.fr>
10763
10764 * tests/atgeneral.m4: Update from Autoconf.
10765 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
10766 (AT_CHECK_CALC): New macros.
10767 Use these macros to test bison with options `', `--raw',
10768 `--debug', `--yacc', `--yacc --debug'.
10769
10770 2000-09-19 Akim Demaille <akim@epita.fr>
10771
10772 * src/output.c: Formatting changes.
10773 * src/machine.h: Remove, leaving its contents in...
10774 * src/system.h: here.
10775 Include stdio.h.
10776 Adjust all dependencies on stdio.h and machine.h.
10777 * src/getargs.h: New file.
10778 Let all `extern' declarations about getargs.c be replaced with
10779 inclusion of `getargs.h'.
10780 * src/Makefile.am (noinst_HEADERS): Adjust.
10781
10782 * tests/calc.m4 (yyin): Be initialized in main, not on the global
10783 scope.
10784 (yyerror): Returns void, not int.
10785 * doc/bison.texinfo: Formatting changes.
10786
10787 2000-09-19 Akim Demaille <akim@epita.fr>
10788
10789 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
10790 portable.
10791
10792 2000-09-18 Akim Demaille <akim@epita.fr>
10793
10794 * configure.in: Append WARNING_CFLAGS to CFLAGS.
10795 * src/Makefile.am (INCLUDES): Don't.
10796 Be ready to fetch headers in lib/.
10797
10798 2000-09-18 Akim Demaille <akim@epita.fr>
10799
10800 * doc/bison.texinfo: Update the copyright.
10801 ANSIfy and GNUify the examples.
10802 Remove the old menu.
10803
10804 2000-09-18 Akim Demaille <akim@epita.fr>
10805
10806 First set of tests: use the `calc' example from the documentation.
10807
10808 * src/bison.s1 (yyparse): Condition the code using `yytname' which
10809 is defined only when YYDEBUG is.
10810 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
10811 * src/files.c (tryopen, tryclose): Formatting changes.
10812 Move to the top and be static.
10813 * src/reader.c (read_signed_integer): Likewise.
10814 * tests/calc.m4: New file.
10815 * Makefile.am, suite.m4: Adjust.
10816 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
10817
10818 2000-09-18 Akim Demaille <akim@epita.fr>
10819
10820 Add support for an Autotest test suite for Bison.
10821
10822 * m4/m4.m4, m4/atconfig.m4: New files.
10823 * m4/Makefile.am (EXTRA_DIST): Adjust.
10824 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
10825 files.
10826 * src/getargs.c: Display a more standard --version message.
10827 * src/reader.c (reader): Formatting changes.
10828 No longer depend upon VERSION_STRING.
10829 * configure.in: No longer use `dnl'.
10830 Set up the test suite and the new directory `tests/.
10831 (VERSION_STRING): Remove.
10832
10833 2000-04-14 Akim Demaille <akim@epita.fr>
10834
10835 * src/reader.c (copy_comment2): New function, same as former
10836 `copy_comment', but outputs into two FILE *.
10837 (copy_comment): Use it.
10838 (parse_union_decl): Use it.
10839 (get_type, parse_start_decl): Use the same `invalid' message.
10840 (parse_start_decl, parse_union_decl): Use the same `multiple'
10841 message.
10842 (parse_union_decl, copy_guard, copy_action): Use the same
10843 `unmatched' message.
10844 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
10845
10846 2000-03-31 Akim Demaille <akim@epita.fr>
10847
10848 * src/files.c (tryopen, tryclose): Move to the top.
10849 Be static.
10850
10851 2000-03-31 Akim Demaille <akim@epita.fr>
10852
10853 * src/main.c (main): Don't call `done', exit does it.
10854
10855 2000-03-31 Akim Demaille <akim@epita.fr>
10856
10857 * allocate.c: s/return (foo)/return foo/.
10858 * lalr.c: Likewise.
10859 * LR0.c: Likewise.
10860 * output.c: Likewise.
10861 * reader.c: Likewise.
10862 * symtab.c: Likewise.
10863 * vmsgetargs.c: Likewise.
10864
10865 2000-03-31 Akim Demaille <akim@epita.fr>
10866
10867 Clean up the error reporting functions.
10868
10869 * src/report.c: New file.
10870 * src/report.h: Likewise.
10871 * src/Makefile.am: Adjust.
10872 * m4/error.m4: New file.
10873 * m4/Makefile.am: Adjust.
10874 * configure.in (jm_PREREQ_ERROR): Call it.
10875 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
10876 Remove.
10877 (fatal, fatals): Remove. All callers use complain.c::fatal.
10878 (warn, warni, warns, warnss, warnss): Remove. All callers use
10879 complain.c::complain.
10880 (toomany): Remove, use fatal instead.
10881 * src/files.c (done): No argument, use complain_message_count.
10882 * src/main.c (main): Register `done' to `atexit'.
10883
10884 * src/getargs.c (usage): More `fputs', less `fprintf'.
10885
10886 2000-03-28 Akim Demaille <akim@epita.fr>
10887
10888 * lib/: New directory.
10889 * Makefile.am (SUBDIRS): Adjust.
10890 * configure.in: Adjust.
10891 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
10892 useless.
10893 * src/alloca.c: Moved to lib/.
10894 * src/getopt.c: Likewise.
10895 * src/getopt1.c: Likewise.
10896 * src/getopt.h: Likewise.
10897 * src/ansi2knr.c: Likewise.
10898 * src/ansi2knr.1: Likewise.
10899 * src/Makefile.am: Adjust.
10900 * lib/Makefile.am: New file.
10901
10902 2000-03-28 Akim Demaille <akim@epita.fr>
10903
10904 * src/getargs.c (usage): Refresh the help message.
10905
10906 2000-03-17 Akim Demaille <akim@epita.fr>
10907
10908 * src/getopt1.c: Updated from textutils 2.0e
10909 * src/getopt.c: Likewise.
10910 * src/getopt.h: Likewise.
10911
10912 2000-03-17 Akim Demaille <akim@epita.fr>
10913
10914 * src/Makefile.am (bison.simple): Fix the awk program: quote only
10915 the file name, not the whole `#line LINE FILE'.
10916
10917 2000-03-17 Akim Demaille <akim@epita.fr>
10918
10919 On syntax errors, report the token on which we choked.
10920
10921 * src/bison.s1 (yyparse): In the label yyerrlab, when
10922 YYERROR_VERBOSE, add yychar in msg.
10923
10924 2000-03-17 Akim Demaille <akim@epita.fr>
10925
10926 * src/reader.c (copy_at): New function.
10927 (copy_guard): Use it.
10928 (copy_action): Use it.
10929
10930 2000-03-17 Akim Demaille <akim@epita.fr>
10931
10932 Be kind to translators, save some useless translations.
10933
10934 * src/main.c (banner): New function.
10935 (fatal_banner): Use it.
10936 (warn_banner): Use it.
10937
10938 2000-03-17 Akim Demaille <akim@epita.fr>
10939
10940 * src/reader.c (copy_definition): Use copy_string and
10941 copy_comment. Removed now unused `match', `ended',
10942 `cplus_comment'.
10943 (copy_comment, copy_string): Moved, to be visible from
10944 copy_definition.
10945
10946 2000-03-17 Akim Demaille <akim@epita.fr>
10947
10948 * src/reader.c (copy_string): Declare `static inline'. No
10949 problems with inline, since it is checked by configure.
10950 (copy_comment): Likewise.
10951
10952 2000-03-17 Akim Demaille <akim@epita.fr>
10953
10954 * src/reader.c (packsymbols): Formatting changes.
10955
10956 2000-03-17 Akim Demaille <akim@epita.fr>
10957
10958 * src/reader.c (copy_comment): New function, factored out from:
10959 (copy_action): Use it. Removed now unused `match', `ended',
10960 `cplus_comment'.
10961 (copy_guard): Likewise.
10962
10963 2000-03-17 Akim Demaille <akim@epita.fr>
10964
10965 * src/reader.c (copy_string): New function, factored out from:
10966 (copy_action): Use it.
10967 (copy_guard): Likewise.
10968
10969 2000-03-17 Akim Demaille <akim@epita.fr>
10970
10971 Change the handling of @s so that they behave exactly like $s.
10972 There is now a pseudo variable @$ (readble and writable), location
10973 of the lhs of the rule (by default ranging from the location of
10974 the first symbol of the rhs, to the location of the last symbol,
10975 or, if the rhs is empty, YYLLOC).
10976
10977 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
10978 yyval.
10979 (yyparse): When providing a default semantic action, provide a
10980 default location action.
10981 (after the $): No longer change `*YYLSP', just stack YYLOC the
10982 same way you stack YYVAL.
10983 * src/reader.c (read_declarations): Use warns.
10984 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
10985 (copy_action, case '@'): Likewise.
10986 Use a standard error message, to save useless work from
10987 translators.
10988
10989 2000-03-17 Akim Demaille <akim@epita.fr>
10990
10991 * src/bison.s1: Formatting and cosmetics changes.
10992 * src/reader.c: Likewise.
10993 Update the Copyright notice.
10994
10995 2000-03-17 Akim Demaille <akim@epita.fr>
10996
10997 * src/bison.s1 (#line): All set to `#line' only, since the
10998 Makefile now handles them.
10999
11000 2000-03-16 Akim Demaille <akim@epita.fr>
11001
11002 * src/output.c (output_rule_data): Output the documentation of
11003 some of the tables.
11004 (Copyright notice): Update.
11005 Formatting changes.
11006
11007 2000-03-16 Akim Demaille <akim@epita.fr>
11008
11009 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
11010 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
11011 One `#if YYDEBUG' remains, since it uses variables which are
11012 defined only if `YYDEBUG != 0'.
11013
11014 2000-03-16 Akim Demaille <akim@epita.fr>
11015
11016 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
11017 and related variables so that the similarities are highlighted.
11018
11019 2000-03-16 Akim Demaille <akim@epita.fr>
11020
11021 * src/bison.s1: Properly indent CPP directives.
11022
11023 2000-03-16 Akim Demaille <akim@epita.fr>
11024
11025 * src/bison.s1: Properly indent the `alloca' CPP section.
11026
11027 2000-03-16 Akim Demaille <akim@epita.fr>
11028
11029 Do not hard code values of directories in `configure.in'.
11030 Update the `configure' tool chain.
11031
11032 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
11033 src/makefile.am.
11034 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
11035 (AC_OUTPUT): Add m4/Makefile.
11036 Bump to bison 1.28a, 1.29 has never been released.
11037 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
11038 handled via src/Makefile.am.
11039 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
11040 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
11041 autoheader.
11042 * Makefile.am (SUBDIRS): Add m4.
11043 (ACLOCAL_AM_FLAGS): New variable.
11044 (AUTOMAKE_OPTIONS): Add check-news.
11045 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
11046 the proper line number and file name.
11047 (DEFS): Propagate the location of bison library files and of the
11048 locale files.
11049 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
11050 builddir.
11051 * acinclude.m4: Remove, replaced by the directory m4.
11052 * m4/Makefile.am (EXTRA_DIST): New variable.
11053 * m4/gettext.m4: New file, from the fileutils.
11054 * m4/lcmessage.m4: Likewise
11055 * m4/progtest.m4: Likewise.
11056 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
11057
11058 2000-03-10 Akim Demaille <akim@epita.fr>
11059
11060 * src/closure.c:
11061 Formatting changes of various comments.
11062 Respect the GNU coding standards at various places.
11063 Don't use `_()' when no translation is needed.
11064
11065 1999-12-13 Jesse Thilo <jthilo@gnu.org>
11066
11067 * src/files.c:
11068 OS/2 honors TMPDIR environment variable.
11069
11070 1999-12-13 Jesse Thilo <jthilo@gnu.org>
11071
11072 * doc/bison.texinfo: Tweaked spelling and grammar.
11073 Updated ISBN.
11074 Removed reference to price of printed copy.
11075 Mention BISON_SIMPLE and BISON_HAIRY.
11076
11077 1999-12-13 Jesse Thilo <jthilo@gnu.org>
11078
11079 * configure.in, NEWS:
11080 Bison 1.29 released.
11081
11082 1999-10-27 Jesse Thilo <jthilo@gnu.org>
11083
11084 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
11085 Added reference card.
11086
11087 1999-07-26 Jesse Thilo <jthilo@gnu.org>
11088
11089 * po/ru.po: Added Russian translation.
11090
11091 1999-07-26 Jesse Thilo <jthilo@gnu.org>
11092
11093 * configure.in: Added Russian translation.
11094
11095 1999-07-06 Jesse Thilo <jthilo@gnu.org>
11096
11097 * configure.in, NEWS, README:
11098 Released version 1.28.
11099
11100 1999-06-14 Jesse Thilo <jthilo@gnu.org>
11101
11102 * src/system.h:
11103 Squashed redefinition warning on some systems.
11104
11105 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
11106 Have configure build version string instead of relying on ANSI string
11107 concatentation.
11108
11109 1999-06-14 Jesse Thilo <jthilo@gnu.org>
11110
11111 * po/POTFILES.in: Got rid of version.c.
11112
11113 1999-06-14 Jesse Thilo <jthilo@gnu.org>
11114
11115 * acconfig.h, configure.in:
11116 Have configure build version string instead of relying on ANSI string
11117 concatentation.
11118
11119 1999-06-08 Jesse Thilo <jthilo@gnu.org>
11120
11121 * doc/bison.1:
11122 Dropped mention of `+' for long-named options.
11123
11124 1999-05-30 Jesse Thilo <jthilo@gnu.org>
11125
11126 * src/files.c: Added <unistd.h> for unlink().
11127
11128 * src/Makefile.am, src/system.h:
11129 I18n fixes.
11130
11131 1999-05-30 Jesse Thilo <jthilo@gnu.org>
11132
11133 * README: Added a FAQ list.
11134
11135 * configure.in, acconfig.h:
11136 I18n fixes.
11137
11138 1999-05-30 Jesse Thilo <jthilo@gnu.org>
11139
11140 * doc/FAQ, doc/Makefile.am:
11141 Added a FAQ list.
11142
11143 1999-05-19 Jesse Thilo <jthilo@gnu.org>
11144
11145 * src/alloc.h, src/symtab.h, src/version.c:
11146 Protected inclusion of "config.h" with HAVE_CONFIG_H.
11147
11148 1999-04-18 Jesse Thilo <jthilo@gnu.org>
11149
11150 * src/.cvsignore, src/Makefile.am:
11151 Reorganized: sources in `src', documentation in `doc'.
11152
11153 * src/lex.c (literalchar):
11154 fixed the code for escaping double quotes (thanks
11155 Jonathan Czisny.)
11156
11157 1999-04-18 Jesse Thilo <jthilo@gnu.org>
11158
11159 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
11160 Adjusted paths to reflect directory reorganization.
11161
11162 1999-04-18 Jesse Thilo <jthilo@gnu.org>
11163
11164 * doc/.cvsignore, doc/Makefile.am:
11165 Reorganized: sources in `src', documentation in `doc'.
11166
11167 1999-04-18 Jesse Thilo <jthilo@gnu.org>
11168
11169 * configure.in:
11170 Updated AC_INIT file to reflect directory reorganization.
11171
11172 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
11173 Reorganized: sources in `src', documentation in `doc'.
11174
11175 1999-04-13 Jesse Thilo <jthilo@gnu.org>
11176
11177 * src/allocate.c:
11178 Don't declare calloc() and realloc() if not necessary.
11179
11180 1999-04-13 Jesse Thilo <jthilo@gnu.org>
11181
11182 * configure.in, acconfig.h, acinclude.m4:
11183 Don't declare calloc() and realloc() if not necessary.
11184
11185 1999-03-23 Jesse Thilo <jthilo@gnu.org>
11186
11187 * po/.cvsignore: Added i18n support.
11188
11189 1999-03-23 Jesse Thilo <jthilo@gnu.org>
11190
11191 * acconfig.h, configure.in, Makefile.am:
11192 Added i18n support.
11193
11194 1999-03-22 Jesse Thilo <jthilo@gnu.org>
11195
11196 * src/bison.s1: Fixed #line numbers.
11197
11198 1999-03-15 Jesse Thilo <jthilo@gnu.org>
11199
11200 * po/es.po, po/fr.po, po/nl.po, po/de.po:
11201 Added PO files from Translation Project.
11202
11203 1999-03-03 Jesse Thilo <jthilo@gnu.org>
11204
11205 * Makefile.am:
11206 Added support for non-ANSI compilers (ansi2knr).
11207
11208 1999-02-16 Jesse Thilo <jthilo@gnu.org>
11209
11210 * configure.in: Bumped version number to 1.27.
11211
11212 * Makefile.am:
11213 Added `bison.simple' to list of files removed by `make distclean'.
11214
11215 1999-02-12 Jesse Thilo <jthilo@gnu.org>
11216
11217 * src/files.c, src/files.h:
11218 Defined locations of parser files in config.h instead of Makefile.
11219
11220 1999-02-12 Jesse Thilo <jthilo@gnu.org>
11221
11222 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
11223 Defined locations of parser files in config.h instead of Makefile.
11224
11225 1999-02-09 Jesse Thilo <jthilo@gnu.org>
11226
11227 * Makefile.am:
11228 Removed inappropriate use of $< macro.
11229
11230 1999-02-05 Jesse Thilo <jthilo@gnu.org>
11231
11232 * po/Makefile.in.in, po/POTFILES.in:
11233 Add `po' directory skeleton.
11234
11235 1999-01-27 Jesse Thilo <jthilo@gnu.org>
11236
11237 * README: Document help-bison list.
11238
11239 * configure.in: Add check for mkstemp().
11240
11241 1999-01-20 Jesse Thilo <jthilo@gnu.org>
11242
11243 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
11244 Hush a few compiler warnings.
11245
11246 * src/files.c:
11247 Add tryclose(), which verifies that fclose was successful.
11248 Hush a couple of compiler warnings.
11249
11250 1999-01-20 Jesse Thilo <jthilo@gnu.org>
11251
11252 * Makefile.am, OChangeLog:
11253 ChangeLog is now automatically generated. Include the old version as
11254 OChangeLog.
11255
11256 1999-01-14 Jesse Thilo <jthilo@gnu.org>
11257
11258 * 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:
11259 Update FSF address.
11260
11261 1999-01-14 Jesse Thilo <jthilo@gnu.org>
11262
11263 * doc/bison.texinfo: Fix formatting glitch.
11264
11265 * doc/bison.texinfo: Update FSF address.
11266
11267 1999-01-14 Jesse Thilo <jthilo@gnu.org>
11268
11269 * acconfig.h: Update FSF address.
11270
11271 1999-01-08 Jesse Thilo <jthilo@gnu.org>
11272
11273 * src/system.h:
11274 Don't define PACKAGE here, since config.h defines it.
11275
11276 1998-12-30 Jesse Thilo <jthilo@gnu.org>
11277
11278 * src/reader.c: Update copyright date.
11279
11280 * src/main.c:
11281 Ditch sprintf to statically-sized buffers in fatal/warn functions in
11282 favor of output directly to stderr (avoids buffer overruns).
11283
11284 * src/reader.c: Some checks for premature EOF.
11285
11286 * 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:
11287 Use prototypes if the compiler understands them.
11288
11289 * src/files.c: Honor TMPDIR on Unix hosts.
11290 Use prototypes if the compiler understands them.
11291
11292 * src/reader.c:
11293 Fix a couple of buffer overrun bugs.
11294 Use prototypes if the compiler understands them.
11295
11296 * src/system.h: Include unistd.h and ctype.h.
11297 Use #ifdef instead of #if for NLS symbols.
11298
11299 1998-12-30 Jesse Thilo <jthilo@gnu.org>
11300
11301 * doc/bison.texinfo:
11302 Delete comment "consider using @set for edition number, etc..." since
11303 we now are doing so.
11304
11305 1998-12-30 Jesse Thilo <jthilo@gnu.org>
11306
11307 * configure.in:
11308 Use prototypes if the compiler understands them.
11309
11310 * NEWS: Document 1.26 highlights.
11311
11312 * Makefile.am: Require Automake 1.3 or later.
11313
11314 * acconfig.h:
11315 Use prototypes if the compiler understands them.
11316
11317 1998-12-29 Jesse Thilo <jthilo@gnu.org>
11318
11319 * src/version.c:
11320 Use VERSION symbol from automake for version number.
11321
11322 1998-12-29 Jesse Thilo <jthilo@gnu.org>
11323
11324 * acconfig.h, configure.in, version.cin:
11325 Use VERSION symbol from automake for version number.
11326
11327 1998-11-28 Jesse Thilo <jthilo@gnu.org>
11328
11329 * Makefile.am:
11330 Distribute original version of simple parser (bison.s1), not built
11331 version (bison.simple).
11332
11333 1998-11-28 Jesse Thilo <jthilo@gnu.org>
11334
11335 * doc/bison.texinfo: Add info dir entry.
11336
11337 * doc/bison.texinfo:
11338 Let automake put version number into documentation.
11339
11340 1998-11-26 Jesse Thilo <jthilo@gnu.org>
11341
11342 * src/bison.cld, src/build.com, src/vmshlp.mar:
11343 Add non-RCS files from /gd/gnu/bison.
11344
11345 1998-11-26 Jesse Thilo <jthilo@gnu.org>
11346
11347 * doc/bison.1:
11348 Document the BISON_HAIRY and BISON_SIMPLE variables.
11349
11350 1998-11-25 Jesse Thilo <jthilo@gnu.org>
11351
11352 * src/version.c: Build version.c automatically.
11353
11354 * src/reader.c:
11355 Fix token numbering (used to start at 258, not 257).
11356
11357 * src/system.h: Include config.h.
11358
11359 * src/getargs.c: Update bug report address.
11360
11361 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
11362 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
11363
11364 1998-11-25 Jesse Thilo <jthilo@gnu.org>
11365
11366 * Makefile.am:
11367 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
11368
11369 * configure.in, version.cin:
11370 Build version.c automatically.
11371
11372 * AUTHORS: Add AUTHORS file.
11373
11374 * README: Update bug report address.
11375
11376 * bison.simple:
11377 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
11378
11379 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
11380 Add automake stuff.
11381
11382 1998-11-25 Jesse Thilo <jthilo@gnu.org>
11383
11384 * doc/bison.texinfo: Clean up some formatting.
11385
11386 1998-05-05 Richard Stallman <rms@gnu.org>
11387
11388 * doc/bison.texinfo:
11389 Explain better why to make a pure parser.
11390
11391 1998-01-05 Richard Stallman <rms@gnu.org>
11392
11393 * src/files.c (openfiles):
11394 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
11395 find a temporary directory, if possible. Do not unlink files while
11396 they are open.
11397
11398 1997-08-25 Richard Stallman <rms@gnu.org>
11399
11400 * src/reader.c (stack_offset;):
11401 Change some warni to warns.
11402
11403 * src/lex.c (literalchar): Use warns, not warni.
11404
11405 1997-06-28 Richard Stallman <rms@gnu.org>
11406
11407 * src/bison.s1: Add a Bison version comment.
11408
11409 * src/main.c (fatal, warn, berror):
11410 Use program_name.
11411
11412 1997-06-28 Richard Stallman <rms@gnu.org>
11413
11414 * Makefile.in (bison_version): New variable.
11415 (dist): Use that variable.
11416 (bison.s1): Substitute the Bison version into bison.simple.
11417
11418 * bison.simple: Add a Bison version comment.
11419
11420 1997-06-18 Richard Stallman <rms@gnu.org>
11421
11422 * src/main.c (fatal, warn, berror):
11423 Make error messages standard.
11424 (toomany): Improve error message text.
11425
11426 * 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:
11427 new.h renamed to alloc.h.
11428
11429 1997-06-18 Richard Stallman <rms@gnu.org>
11430
11431 * Makefile.in: new.h renamed to alloc.h.
11432
11433 1997-05-24 Richard Stallman <rms@gnu.org>
11434
11435 * src/lex.c (literalchar):
11436 Fix the code for escaping \, " and '.
11437
11438 (lex): Avoid trouble when there are many chars
11439 to discard in a char literal with just several chars in it.
11440
11441 1997-05-17 Richard Stallman <rms@gnu.org>
11442
11443 * src/bison.s1:
11444 Use malloc, if using alloca is troublesome.
11445 (YYSTACK_USE_ALLOCA): New flag macro.
11446 Define it for some systems and compilers.
11447 (YYSTACK_ALLOC): New macro.
11448 (yyparse): Use YYSTACK_ALLOC to allocate stack.
11449 If it was malloc'd, free it.
11450
11451 1997-05-17 Richard Stallman <rms@gnu.org>
11452
11453 * bison.simple:
11454 Use malloc, if using alloca is troublesome.
11455 (YYSTACK_USE_ALLOCA): New flag macro.
11456 Define it for some systems and compilers.
11457 (YYSTACK_ALLOC): New macro.
11458 (yyparse): Use YYSTACK_ALLOC to allocate stack.
11459 If it was malloc'd, free it.
11460
11461 1997-04-23 Richard Stallman <rms@gnu.org>
11462
11463 * src/bison.s1:
11464 (alloca) [__hpux]: Always define as __builtin_alloca.
11465
11466 1997-04-23 Richard Stallman <rms@gnu.org>
11467
11468 * bison.simple:
11469 (alloca) [__hpux]: Always define as __builtin_alloca.
11470
11471 1997-04-22 Richard Stallman <rms@gnu.org>
11472
11473 * src/bison.s1:
11474 [__hpux]: Include alloca.h (right for HPUX 10)
11475 instead of declaring alloca (right for HPUX 9).
11476
11477 * src/bison.s1 (__yy_memcpy):
11478 Declare arg `count' as unsigned int.
11479 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
11480
11481 1997-04-22 Richard Stallman <rms@gnu.org>
11482
11483 * bison.simple:
11484 [__hpux]: Include alloca.h (right for HPUX 10)
11485 instead of declaring alloca (right for HPUX 9).
11486
11487 * bison.simple (__yy_memcpy):
11488 Declare arg `count' as unsigned int.
11489 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
11490
11491 1997-01-03 Richard Stallman <rms@gnu.org>
11492
11493 * src/allocate.c: [__STDC__ or _MSC_VER]:
11494 Declare calloc and realloc to return void *.
11495
11496 1997-01-02 Richard Stallman <rms@gnu.org>
11497
11498 * src/system.h:
11499 [_MSC_VER]: Include stdlib.h and process.h.
11500 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
11501
11502 * src/main.c (main): Return FAILURE as a value.
11503 (printable_version): Declare arg as int, not char.
11504
11505 1997-01-02 Richard Stallman <rms@gnu.org>
11506
11507 * Makefile.in (dist):
11508 Explicitly check for symlinks, and copy them.
11509
11510 1996-12-19 Richard Stallman <rms@gnu.org>
11511
11512 * src/files.c:
11513 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
11514
11515 1996-12-18 Paul Eggert <eggert@gnu.org>
11516
11517 * src/bison.s1 (yyparse):
11518 If __GNUC__ and YYPARSE_PARAM are both defined,
11519 declare yyparse to have a void * argument.
11520
11521 1996-12-18 Paul Eggert <eggert@gnu.org>
11522
11523 * bison.simple (yyparse):
11524 If __GNUC__ and YYPARSE_PARAM are both defined,
11525 declare yyparse to have a void * argument.
11526
11527 1996-12-17 Richard Stallman <rms@gnu.org>
11528
11529 * src/reduce.c (nbits): Add some casts.
11530
11531 1996-08-12 Richard Stallman <rms@gnu.org>
11532
11533 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
11534
11535 1996-08-12 Richard Stallman <rms@gnu.org>
11536
11537 * bison.simple: Test _MSDOS as well as _MSDOS_.
11538
11539 1996-07-31 Richard Stallman <rms@gnu.org>
11540
11541 * src/bison.s1:
11542 [__sun && __i386]: Include alloca.h.
11543
11544 1996-07-31 Richard Stallman <rms@gnu.org>
11545
11546 * bison.simple:
11547 [__sun && __i386]: Include alloca.h.
11548
11549 1996-07-30 Richard Stallman <rms@gnu.org>
11550
11551 * src/bison.s1: Comment change.
11552
11553 * src/bison.s1: Test _MSDOS_, not MSDOS.
11554
11555 1996-07-30 Richard Stallman <rms@gnu.org>
11556
11557 * bison.simple: Comment change.
11558
11559 * bison.simple: Test _MSDOS_, not MSDOS.
11560
11561 1996-06-01 Richard Stallman <rms@gnu.org>
11562
11563 * 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:
11564 Insert `_' macro around many string constants.
11565
11566 * src/main.c:
11567 Insert `_' macro around many string constants.
11568
11569 (main): Call setlocale, bindtextdomain and textdomain.
11570
11571 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
11572 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
11573 [ENABLE_NLS]: Include libintl.h.
11574 [ENABLE_NLS] (gettext): Define.
11575 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
11576 (N_, PACKAGE, LOCALEDIR): New macros.
11577
11578 1996-06-01 Richard Stallman <rms@gnu.org>
11579
11580 * POTFILES.in: New file.
11581
11582 * Makefile.in (allocate.o):
11583 Define target explicitly.
11584
11585 * Makefile.in (CFLAGS): Set to @CFLAGS@.
11586 (LDFLAGS): Set to @LDFLAGS@.
11587 (configure): Run autoconf only if preceding `cd' succeeds.
11588 (bison.s1): Redirect output to temporary file then move the
11589 temporary to the target, rather than redirecting directly to bison.s1.
11590 (clean): Remove config.status and config.log.
11591 (distclean): Don't remove config.status here.
11592
11593 1996-05-12 Richard Stallman <rms@gnu.org>
11594
11595 * src/bison.s1:
11596 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
11597
11598 1996-05-12 Richard Stallman <rms@gnu.org>
11599
11600 * bison.simple:
11601 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
11602
11603 1996-05-11 Richard Stallman <rms@gnu.org>
11604
11605 * src/bison.s1 (__yy_memcpy):
11606 Really reorder the args, as was supposedly done on Feb 14 1995.
11607 (yyparse): Calls changed accordingly.
11608
11609 1996-05-11 Richard Stallman <rms@gnu.org>
11610
11611 * Makefile.in (dist): Don't use $(srcdir).
11612
11613 * bison.simple (__yy_memcpy):
11614 Really reorder the args, as was supposedly done on Feb 14 1995.
11615 (yyparse): Calls changed accordingly.
11616
11617 1996-01-27 Richard Stallman <rms@gnu.org>
11618
11619 * src/output.c (output_rule_data):
11620 Test YYERROR_VERBOSE in the conditional
11621 around the definition of ttyname.
11622
11623 1995-12-29 Richard Stallman <rms@gnu.org>
11624
11625 * src/bison.s1:
11626 Fix line numbers in #line commands.
11627
11628 1995-12-29 Richard Stallman <rms@gnu.org>
11629
11630 * bison.simple:
11631 Fix line numbers in #line commands.
11632
11633 1995-12-27 Richard Stallman <rms@gnu.org>
11634
11635 * src/bison.s1 (YYPARSE_PARAM_DECL):
11636 In C++, make it always null.
11637 (YYPARSE_PARAM_ARG): New macro.
11638 (yyparse): Use YYPARSE_PARAM_ARG.
11639
11640 1995-12-27 Richard Stallman <rms@gnu.org>
11641
11642 * bison.simple (YYPARSE_PARAM_DECL):
11643 In C++, make it always null.
11644 (YYPARSE_PARAM_ARG): New macro.
11645 (yyparse): Use YYPARSE_PARAM_ARG.
11646
11647 1995-11-29 Richard Stallman <rms@gnu.org>
11648
11649 * doc/bison.texinfo:
11650 Describe literal string tokens, %raw, %no_lines, %token_table.
11651
11652 1995-11-29 Daniel Hagerty <hag@gnu.org>
11653
11654 * doc/bison.texinfo: Fixed update date
11655
11656 1995-10-16 Richard Stallman <rms@gnu.org>
11657
11658 * src/version.c: Version 1.25.
11659
11660 1995-10-16 Richard Stallman <rms@gnu.org>
11661
11662 * NEWS: *** empty log message ***
11663
11664 1995-10-16 Richard Stallman <rms@gnu.org>
11665
11666 * doc/bison.1, doc/bison.rnh:
11667 Add new options.
11668
11669 1995-10-15 Richard Stallman <rms@gnu.org>
11670
11671 * src/vmsgetargs.c, src/getargs.c:
11672 Added -n, -k, and -raw switches.
11673 (noparserflag, toknumflag, rawtoknumflag): New variables.
11674
11675 * src/symtab.h (SALIAS):
11676 New #define for adding aliases to %token.
11677 (struct bucket): Added `alias' field.
11678
11679 * src/reduce.c (reduce_grammar):
11680 Revise error message.
11681 (print_notices): Remove final `.' from error message.
11682
11683 * src/reader.c (reader_output_yylsp):
11684 New function.
11685 (readgram): Use `#if 0' around code that accepted %command
11686 inside grammar rules: The documentation doesn't allow it,
11687 and it will fail since the %command processors scan for the next %.
11688 (parse_token_decl): Extended the %token
11689 declaration to allow a multi-character symbol as an alias.
11690 (parse_thong_decl): New function.
11691 (read_declarations): Added %thong declarations.
11692 (read_declarations): Handle NOOP to deal with allowing
11693 % declarations as another means to specify the flags.
11694 (readgram): Allow %prec prior to semantics embedded in a rule.
11695 (skip_to_char, read_declarations, copy_definition)
11696 (parse_token_decl, parse_start_decl, parse_type_decl)
11697 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
11698 (get_type_name, copy_guard, copy_action, readgram)
11699 (get_type, packsymbols): Revised most error messages.
11700 Changed `fatal' to `warnxxx' to avoid aborting for error.
11701 Revised and use multiple warnxxx functions to avoid using VARARGS1.
11702 (read_declarations): Improve the error message for
11703 an invalid character. Do not abort.
11704 (read_declarations, copy_guard, copy_action): Use
11705 printable_version to avoid unprintable characters in printed output.
11706 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
11707 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
11708 Allow the type of a non-terminal can be given
11709 more than once, as long as all specifications give the same type.
11710
11711 * src/output.c:
11712 (output_headers, output_trailers, output, output_gram)
11713 (output_rule_data): Implement noparserflag variable.
11714 Implement toknumflag variable.
11715 (output): Call reader_output_yylsp to output LTYPESTR.
11716
11717 * src/main.c (main):
11718 If reader sees an error, don't process the grammar.
11719 (fatals): Updated to not use VARARGS1.
11720 (printable_version, int_to_string, warn, warni, warns, warnss)
11721 (warnsss): New error reporting functions. Avoid abort for error.
11722
11723 * src/lex.h:
11724 Added THONG and NOOP for alias processing.
11725 Added SETOPT for the new code that allows setting options with %flags.
11726
11727 * src/lex.c:
11728 Include getopt.h. Add some extern decls.
11729 (safegetc): New function to deal with EOF gracefully.
11730 (literalchar); new function to deal with reading \ escapes.
11731 (lex): Use literalchar.
11732 (lex): Implemented "..." tokens.
11733 (literalchar, lex, parse_percent_token): Made tokenbuffer
11734 always contain the token. This includes growing the token
11735 buffer while reading an integer.
11736 (parse_percent_token): Replaced if-else statement with percent_table.
11737 (parse_percent_token): Added % declarations as another
11738 way to specify the flags -n, -l, and -r. Also added hooks for
11739 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
11740 major changes to files.c.
11741 (lex) Retain in the incoming stream a character following
11742 an incorrect '/'.
11743 (skip_white_space, lex): Revised most error messages
11744 and changed fatal to warn to avoid aborting.
11745 (percent_table): Added %thong declarations.
11746
11747 * src/gram.h: Comment changes.
11748
11749 * src/files.c (openfiles, open_extra_files, done):
11750 Add faction flag
11751 and actfile file. Handle noparserflag. Both for -n switch.
11752
11753 * src/conflicts.c (resolve_sr_conflict):
11754 Remove use of alloca.
11755
11756 1995-06-01 Jim Meyering <meyering@gnu.org>
11757
11758 * doc/bison.texinfo: *** empty log message ***
11759
11760 1995-05-06 Richard Stallman <rms@gnu.org>
11761
11762 * src/bison.s1: Comment change.
11763
11764 1995-05-06 Richard Stallman <rms@gnu.org>
11765
11766 * bison.simple: Comment change.
11767
11768 1995-05-03 Richard Stallman <rms@gnu.org>
11769
11770 * src/version.c: Version now 1.24.
11771
11772 * src/bison.s1: Change distribution terms.
11773
11774 * src/version.c: Version now 1.23.
11775
11776 1995-05-03 Richard Stallman <rms@gnu.org>
11777
11778 * doc/bison.texinfo:
11779 Rewrite "Conditions for Using Bison".
11780 Update version to 1.24.
11781
11782 1995-05-03 Richard Stallman <rms@gnu.org>
11783
11784 * bison.simple: Change distribution terms.
11785
11786 1995-02-23 Richard Stallman <rms@gnu.org>
11787
11788 * src/files.c: Test __VMS_POSIX as well as VMS.
11789
11790 1995-02-14 Jim Meyering <meyering@gnu.org>
11791
11792 * src/bison.s1 (__yy_memcpy):
11793 Renamed from __yy_bcopy to avoid
11794 confusion. Reverse FROM and TO arguments to be consistent with
11795 those of memcpy.
11796
11797 1995-02-14 Jim Meyering <meyering@gnu.org>
11798
11799 * bison.simple (__yy_memcpy):
11800 Renamed from __yy_bcopy to avoid
11801 confusion. Reverse FROM and TO arguments to be consistent with
11802 those of memcpy.
11803
11804 1994-11-10 David J. MacKenzie <djm@gnu.org>
11805
11806 * NEWS: reformat
11807
11808 * NEWS: New file.
11809
11810 * Makefile.in (DISTFILES): Include NEWS.
11811
11812 * Makefile.in (DISTFILES):
11813 Include install-sh, not install.sh.
11814
11815 * configure.in: Update to Autoconf v2 macro names.
11816
11817 1994-10-05 David J. MacKenzie <djm@gnu.org>
11818
11819 * Makefile.in: fix typo
11820
11821 * Makefile.in (prefix, exec_prefix):
11822 Let configure set them.
11823
11824 1994-09-28 David J. MacKenzie <djm@gnu.org>
11825
11826 * Makefile.in: Set datadir to $(prefix)/share.
11827
11828 1994-09-15 Richard Stallman <rms@gnu.org>
11829
11830 * src/bison.s1:
11831 Update copyright notice and GPL version.
11832
11833 1994-09-15 Richard Stallman <rms@gnu.org>
11834
11835 * bison.simple:
11836 Update copyright notice and GPL version.
11837
11838 1994-07-12 Richard Stallman <rms@gnu.org>
11839
11840 * src/reduce.c, src/reader.c:
11841 entered into RCS
11842
11843 1994-05-05 David J. MacKenzie <djm@gnu.org>
11844
11845 * Makefile.in: entered into RCS
11846
11847 1994-03-26 Richard Stallman <rms@gnu.org>
11848
11849 * src/bison.s1: entered into RCS
11850
11851 1994-03-26 Richard Stallman <rms@gnu.org>
11852
11853 * bison.simple: entered into RCS
11854
11855 1994-03-25 Richard Stallman <rms@gnu.org>
11856
11857 * src/main.c: entered into RCS
11858
11859 1994-03-24 Richard Stallman <rms@gnu.org>
11860
11861 * src/conflicts.c: entered into RCS
11862
11863 1994-01-02 Richard Stallman <rms@gnu.org>
11864
11865 * Makefile.in: *** empty log message ***
11866
11867 1993-11-21 Richard Stallman <rms@gnu.org>
11868
11869 * src/bison.s1: *** empty log message ***
11870
11871 1993-11-21 Richard Stallman <rms@gnu.org>
11872
11873 * doc/bison.texinfo: entered into RCS
11874
11875 * doc/bison.texinfo: *** empty log message ***
11876
11877 1993-11-21 Richard Stallman <rms@gnu.org>
11878
11879 * bison.simple: *** empty log message ***
11880
11881 1993-10-25 David J. MacKenzie <djm@gnu.org>
11882
11883 * doc/bison.texinfo: *** empty log message ***
11884
11885 1993-10-19 Richard Stallman <rms@gnu.org>
11886
11887 * src/bison.s1: *** empty log message ***
11888
11889 1993-10-19 Richard Stallman <rms@gnu.org>
11890
11891 * bison.simple: *** empty log message ***
11892
11893 1993-10-14 Richard Stallman <rms@gnu.org>
11894
11895 * src/bison.s1: *** empty log message ***
11896
11897 1993-10-14 Richard Stallman <rms@gnu.org>
11898
11899 * bison.simple: *** empty log message ***
11900
11901 1993-09-14 David J. MacKenzie <djm@gnu.org>
11902
11903 * doc/bison.texinfo: *** empty log message ***
11904
11905 1993-09-13 Noah Friedman <friedman@gnu.org>
11906
11907 * Makefile.in: *** empty log message ***
11908
11909 1993-09-10 Richard Stallman <rms@gnu.org>
11910
11911 * src/conflicts.c: *** empty log message ***
11912
11913 * src/system.h: entered into RCS
11914
11915 1993-09-10 Richard Stallman <rms@gnu.org>
11916
11917 * doc/bison.1: entered into RCS
11918
11919 1993-09-06 Noah Friedman <friedman@gnu.org>
11920
11921 * src/version.c: entered into RCS
11922
11923 1993-09-06 Noah Friedman <friedman@gnu.org>
11924
11925 * Makefile.in: *** empty log message ***
11926
11927 1993-07-30 David J. MacKenzie <djm@gnu.org>
11928
11929 * Makefile.in: *** empty log message ***
11930
11931 1993-07-24 Richard Stallman <rms@gnu.org>
11932
11933 * src/bison.s1: *** empty log message ***
11934
11935 1993-07-24 Richard Stallman <rms@gnu.org>
11936
11937 * bison.simple: *** empty log message ***
11938
11939 1993-07-08 David J. MacKenzie <djm@gnu.org>
11940
11941 * Makefile.in: *** empty log message ***
11942
11943 1993-07-04 Richard Stallman <rms@gnu.org>
11944
11945 * src/bison.s1: *** empty log message ***
11946
11947 1993-07-04 Richard Stallman <rms@gnu.org>
11948
11949 * bison.simple: *** empty log message ***
11950
11951 1993-06-26 David J. MacKenzie <djm@gnu.org>
11952
11953 * src/getargs.c: entered into RCS
11954
11955 1993-06-26 David J. MacKenzie <djm@gnu.org>
11956
11957 * doc/bison.texinfo: *** empty log message ***
11958
11959 * doc/bison.1: New file.
11960
11961 1993-06-25 Richard Stallman <rms@gnu.org>
11962
11963 * src/getargs.c: New file.
11964
11965 1993-06-16 Richard Stallman <rms@gnu.org>
11966
11967 * src/bison.s1: *** empty log message ***
11968
11969 1993-06-16 Richard Stallman <rms@gnu.org>
11970
11971 * bison.simple: *** empty log message ***
11972
11973 1993-06-03 Richard Stallman <rms@gnu.org>
11974
11975 * src/bison.s1: New file.
11976
11977 1993-06-03 Richard Stallman <rms@gnu.org>
11978
11979 * doc/bison.texinfo: *** empty log message ***
11980
11981 1993-06-03 Richard Stallman <rms@gnu.org>
11982
11983 * bison.simple: New file.
11984
11985 1993-05-19 Richard Stallman <rms@gnu.org>
11986
11987 * doc/bison.texinfo: New file.
11988
11989 1993-05-07 Noah Friedman <friedman@gnu.org>
11990
11991 * Makefile.in: *** empty log message ***
11992
11993 1993-04-28 Noah Friedman <friedman@gnu.org>
11994
11995 * src/reader.c: *** empty log message ***
11996
11997 1993-04-23 Noah Friedman <friedman@gnu.org>
11998
11999 * src/alloc.h: entered into RCS
12000
12001 1993-04-20 David J. MacKenzie <djm@gnu.org>
12002
12003 * src/version.c: *** empty log message ***
12004
12005 * src/files.c, src/allocate.c:
12006 entered into RCS
12007
12008 * src/reader.c: *** empty log message ***
12009
12010 * src/lex.c: entered into RCS
12011
12012 * src/conflicts.c: New file.
12013
12014 * src/symtab.c: entered into RCS
12015
12016 * src/alloc.h: New file.
12017
12018 * src/LR0.c: entered into RCS
12019
12020 1993-04-18 Noah Friedman <friedman@gnu.org>
12021
12022 * src/reader.c: New file.
12023
12024 * src/version.c: *** empty log message ***
12025
12026 1993-04-18 Noah Friedman <friedman@gnu.org>
12027
12028 * Makefile.in: *** empty log message ***
12029
12030 1993-04-17 Noah Friedman <friedman@gnu.org>
12031
12032 * Makefile.in: *** empty log message ***
12033
12034 1993-04-15 Richard Stallman <rms@gnu.org>
12035
12036 * src/main.c, src/files.c:
12037 New file.
12038
12039 1993-04-15 Noah Friedman <friedman@gnu.org>
12040
12041 * configure.in: entered into RCS
12042
12043 * configure.in: *** empty log message ***
12044
12045 * configure.in: New file.
12046
12047 1993-04-14 Richard Stallman <rms@gnu.org>
12048
12049 * Makefile.in: New file.
12050
12051 1993-04-13 Richard Stallman <rms@gnu.org>
12052
12053 * src/version.c: New file.
12054
12055 1993-03-25 Richard Stallman <rms@gnu.org>
12056
12057 * src/output.c: entered into RCS
12058
12059 1992-09-25 Richard Stallman <rms@gnu.org>
12060
12061 * configure.bat: entered into RCS
12062
12063 1992-06-22 Richard Stallman <rms@gnu.org>
12064
12065 * src/vmsgetargs.c: entered into RCS
12066
12067 1992-06-22 Richard Stallman <rms@gnu.org>
12068
12069 * doc/bison.rnh: entered into RCS
12070
12071 1992-04-20 David J. MacKenzie <djm@gnu.org>
12072
12073 * README: entered into RCS
12074
12075 1992-01-22 Richard Stallman <rms@gnu.org>
12076
12077 * src/machine.h: entered into RCS
12078
12079 1991-12-21 Richard Stallman <rms@gnu.org>
12080
12081 * src/lalr.c, src/closure.c:
12082 entered into RCS
12083
12084 1991-12-20 Richard Stallman <rms@gnu.org>
12085
12086 * src/state.h: entered into RCS
12087
12088 1991-12-18 Richard Stallman <rms@gnu.org>
12089
12090 * src/print.c, src/nullable.c, src/derives.c:
12091 entered into RCS
12092
12093 1991-11-03 David J. MacKenzie <djm@gnu.org>
12094
12095 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
12096 entered into RCS
12097
12098 1988-09-09 Richard Stallman <rms@gnu.org>
12099
12100 * src/bison.hairy: entered into RCS
12101
12102 1987-12-16 Richard Stallman <rms@gnu.org>
12103
12104 * REFERENCES: entered into RCS
12105
12106 -----
12107
12108 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
12109 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
12110
12111 This file is part of Bison, the GNU Compiler Compiler.
12112
12113 Bison is free software; you can redistribute it and/or modify
12114 it under the terms of the GNU General Public License as published by
12115 the Free Software Foundation; either version 2, or (at your option)
12116 any later version.
12117
12118 Bison is distributed in the hope that it will be useful,
12119 but WITHOUT ANY WARRANTY; without even the implied warranty of
12120 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12121 GNU General Public License for more details.
12122
12123 You should have received a copy of the GNU General Public License
12124 along with Bison; see the file COPYING. If not, write to
12125 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
12126 Boston, MA 02111-1307, USA.