]> git.saurik.com Git - bison.git/blob - ChangeLog
* data/lalr1.cc: Do not use @output_header_name@ unless
[bison.git] / ChangeLog
1 2003-01-28 Paul Eggert <eggert@twinsun.com>
2
3 * data/lalr1.cc: Do not use @output_header_name@ unless
4 b4_defines_flag is set. This fixes two bugs reported by
5 Tim Van Holder in
6 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
7 and <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
8
9 2003-01-21 Paul Eggert <eggert@twinsun.com>
10
11 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
12 we don't need to worry about yyerrlab1 being reported as an
13 "unused label" by non-GCC C compilers. The downside is that if
14 locations are used then a couple of statements are duplicated each
15 time YYERROR is invoked, but the upside is that the warnings
16 should vanish.
17 (yyerrlab1): Move code to YERROR.
18 (yyerrlab2): Remove. Change uses back to yyerrlab1.
19 This reverts some of the 2002-12-27 change.
20
21 2003-01-17 Paul Eggert <eggert@twinsun.com>
22
23 * src/output.c (symbol_printers_output): Fix typo that led
24 to core dump. Problem reported by Antonio Rus in
25 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
26
27 2003-01-13 Akim Demaille <akim@epita.fr>,
28 Quoc Peyrot <chojin@lrde.epita.fr>,
29 Robert Anisko <anisko_r@lrde.epita.fr>
30
31 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
32 when the stacks contain one element, as the loop would otherwise
33 free the last state, and then use the top state (the one we just
34 popped). This means that the initial elements will not be freed
35 explicitly, as is the case in yacc.c; it is not a problem, as
36 these elements have fake values.
37
38 2003-01-11 Paul Eggert <eggert@twinsun.com>
39
40 * NEWS: %expect-violations are now just warnings, reverting
41 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
42 bootstrapping problem reported by Matthias Klose; see
43 <http://mail.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
44 * src/conflicts.c (conflicts_print): Likewise.
45 * tests/conflicts.at (%expect not enough, %expect too much,
46 %expect with reduce conflicts): Likewise.
47 * doc/bison.texinfo (Expect Decl): Document this. Also mention
48 that the warning is enabled if the number of conflicts changes
49 (not necessarily increases).
50
51 * src/getargs.c (version): Update copyright year.
52
53 2003-01-09 Akim Demaille <akim@epita.fr>
54
55 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
56
57 2003-01-08 Paul Eggert <eggert@twinsun.com>
58
59 * Makefile.maint (WGETFLAGS):
60 New macro, containing "-C off" to disable proxy caches.
61 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
62 (rel-check): Use $(WGET) instead of wget.
63
64 2003-01-06 Paul Eggert <eggert@twinsun.com>
65
66 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
67 the GLR paper of Scott, Johnstone and Hussain.
68
69 2003-01-04 Paul Eggert <eggert@twinsun.com>
70
71 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
72 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
73 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
74 (EXTRA_LIBRARIES): New var, for liby.a.
75 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
76 (EXTRA_SCRIPTS): New var, for yacc.
77
78 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
79 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
80 Problem reported by Nelson H. F. Beebe.
81
82 2003-01-03 Paul Eggert <eggert@twinsun.com>
83
84 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
85 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
86 when compiling Bison 1.875's `bitset bset = obstack_alloc
87 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
88
89 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
90 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
91 grow to a huge size with typical invocation.
92
93 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
94 Use the pattern recommended by Autoconf 2.57, except also protect
95 against double-definition.
96 * src/system.h: Likewise.
97 Portability issues reported by Nelson H. F. Beebe.
98
99 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
100 All uses changed. Provide a definition in both C and C++.
101 (yytrue, yyfalse): Define even if defined (__cplusplus).
102
103 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
104 Reported by Nelson H. F. Beebe.
105
106 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
107
108 2003-01-02 Paul Eggert <eggert@twinsun.com>
109
110 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
111 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
112 Bug reported by Nelson H. F. Beebe.
113
114 2003-01-01 Paul Eggert <eggert@twinsun.com>
115
116 * Version 1.875.
117
118 2002-12-30 Paul Eggert <eggert@twinsun.com>
119
120 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
121 Moved here from...
122 (<INITIAL>","): Here. This causes stray "," to be treated
123 more uniformly.
124
125 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
126 last brace in braced code when not in Yacc mode, for compatibility
127 with Bison 1.35. This resurrects the 2001-12-15 patch to
128 src/reader.c.
129
130 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
131 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
132
133 2002-12-28 Paul Eggert <eggert@twinsun.com>
134
135 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
136 that of SYM's type. This fixes Debian bug 168069, reported by
137 Thomas Olsson.
138
139 2002-12-28 Paul Eggert <eggert@twinsun.com>
140
141 Version 1.75f.
142
143 Switch back to the Yacc style of conflict reports, undoing some
144 of the 2002-07-30 change.
145 * doc/bison.texinfo (Understanding): Use Yacc style for
146 conflict reports. Also, use new way of locating rules.
147 * src/conflicts.c (conflict_report):
148 Renamed from conflict_report_yacc, removing the old
149 'conflict_report'. Translate the entire conflict report at once,
150 so that we don't assume that "," has the same interpretation in
151 all languages.
152 (conflicts_output): Use Yacc-style conflict report for each state,
153 instead of our more-complicated style.
154 (conflicts_print): Use Yacc-style conflict report, except print
155 the input file name when not emulating Yacc.
156 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
157 Conflicted Reduction, %expect not enough, %expect too much,
158 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
159 * tests/existing.at (GNU Cim Grammar): Likewise.
160 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
161
162 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
163 fatal): Don't invoke fflush; it's not needed and it might even be
164 harmful for stdout, as stdout might not be open.
165 * src/reduce.c (reduce_print): Likewise.
166
167 2002-12-27 Paul Eggert <eggert@twinsun.com>
168
169 Fix a bug where error locations were not being recorded correctly.
170 This problem was originally reported by Paul Hilfinger in
171 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
172
173 * data/yacc.c (yyparse): New local var yylerrsp, to record the
174 top of the location stack's error locations.
175 (yyerrlab): Set it. When discarding a token, push its location
176 onto yylerrsp so that we don't lose track of the error's end.
177 (yyerrlab1): Now is only the target of YYERROR, so that we can
178 properly record the location of the action that failed. For GCC
179 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
180 GCC warning about yyerrlab1 being unused if YYERROR is unused.
181 (yyerrlab2): New label, which yyerrlab now falls through to.
182 Compute the error's location by applying YYLLOC_DEFAULT to
183 the locations of all the symbols that went into the error.
184 * doc/bison.texinfo (Location Default Action): Mention that
185 YYLLOC_DEFAULT is also invoked for syntax errors.
186 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
187 Error locations include the locations of all the tokens that were
188 discarded, not just the last token.
189
190 2002-12-26 Paul Eggert <eggert@twinsun.com>
191
192 * src/files.c: Include quote.h.
193 (compute_output_file_names): Warn if we detect conflicting
194 outputs to the same file. This should catch the misunderstanding
195 exemplified by Debian Bug 165349, reported by Bruce Stephens..
196
197 * src/conflicts.c (conflicts_print): If the user specifies
198 "%expect N", report an error if there are any reduce/reduce
199 conflicts. This is what the manual says should happen.
200 This fixes Debian bug 130890, reported by Anthony DeRobertis.
201 * tests/conflicts.at (%expect with reduce conflicts): New test.
202
203 Don't use m4_include on relative file names, as it doesn't work as
204 desired if there happens to be a file with that name under ".".
205
206 * m4sugar/version.m4: Remove; it was included but it wasn't used.
207 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
208 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
209 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
210 * src/output.c (output_skeleton): Use full path names when
211 specifying a file to include; don't rely on include path, as
212 it's unreliable when the working file contains a file with
213 that name.
214
215 2002-12-25 Paul Eggert <eggert@twinsun.com>
216
217 Remove obsolete references to bison.simple and bison.hairy.
218 Problem mentioned by Aubin Mahe in
219 <http://mail.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
220 * data/glr.c: Comment fix.
221 * doc/bison.1: Remove references. Also, mention "yacc".
222
223 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
224 with -g option.
225
226 * src/parse-gram.y (declaration): Use enum "report_states" rather
227 than its numeric value 1.
228
229 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
230 opening a new one. This fixes Debian bug 165349, reported by
231 Bruce Stephens.
232
233 2002-12-24 Paul Eggert <eggert@twinsun.com>
234
235 Version 1.75e.
236
237 * Makefile.maint (cvs-update): Don't assume that the shell
238 supports $(...), as Solaris sh doesn't.
239
240 * src/parse-gram.y (lloc_default): Remove test for empty
241 nonterminals at the end, since it didn't change the result.
242
243 2002-12-24 Paul Eggert <eggert@twinsun.com>
244
245 If the user does not define YYSTYPE as a macro, Bison now declares it
246 using typedef instead of defining it as a macro. POSIX requires this.
247 For consistency, YYLTYPE is also declared instead of defined.
248
249 %union directives can now have a tag before the `{', e.g., the
250 directive `%union foo {...}' now generates the C code
251 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
252 The default union tag is `YYSTYPE', for compatibility with Solaris 9
253 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
254 instead of `yyltype'.
255
256 `yystype' and `yyltype' are now obsolescent macros instead of being
257 typedefs or tags; they are no longer documented and will be
258 withdrawn in a future release.
259
260 * data/glr.c (b4_location_type): Remove.
261 (YYSTYPE): Renamed from yystype.
262 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
263 (struct YYLTYPE): Renamed from struct yyltype.
264 (YYLTYPE): Renamed from yyltype.
265 (yyltype, yystype): New (and obsolescent) macros,
266 for backward compatibility.
267 * data/yacc.c: Likewise.
268
269 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
270 does not specify a union tag. This is for compatibility with
271 Solaris 9 yacc.
272
273 * src/parse-gram.y (add_param): 2nd arg is now char * not char
274 const *, since it is now modified by stripping surrounding { }.
275 (current_braced_code): Remove.
276 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
277 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
278 trailing " {...}". Now of type <chars>.
279 (grammar_declaration): Adjust to bundled tokens.
280 (code_content): Remove; stripping is now done by add_param.
281 (print_token_value): Print contents of bundled tokens.
282 (token_name): New function.
283
284 * src/reader.h (braced_code, current_braced_code): Remove.
285 (token_name): New decl.
286
287 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
288 token_type, not braced_code code_kind. All uses changed.
289 (SC_PRE_CODE): New state, for scanning after a keyword that
290 has (or usually has) an immediately-following braced code.
291 (token_type): New local var, to keep track of which token type
292 to return when scanning braced code.
293 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
294 <INITIAL>"%parse-param", <INITIAL>"%printer",
295 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
296 instead of returning a token type immediately.
297 (<INITIAL>"{"): Set token type.
298 (<SC_BRACED_CODE>"}"): Use it.
299 (handle_action_dollar, handle_action_at): Now returns bool
300 indicating success. Fail if ! current_rule; this prevents a core dump.
301 (handle_symbol_code_dollar, handle_symbol_code_at):
302 Remove; merge body into caller.
303 (handle_dollar, handle_at): Complain in invalid contexts.
304
305 * NEWS, doc/bison.texinfo: Document the above.
306 * NEWS: Fix years and program names in copyright notice.
307
308 2002-12-17 Paul Eggert <eggert@twinsun.com>
309
310 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
311 Reporting, Table of Symbols): Omit mentions of %lex-param and
312 %parse-param from the documentation for now.
313
314 2002-12-15 Paul Eggert <eggert@twinsun.com>
315
316 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
317 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
318 lookahead symbol, and which sets yychar in parser actions) and it
319 disagreed with the Bison documentation. Bug
320 reported by Andrew Walrond.
321
322 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
323 as the caller now does that.
324 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
325 (YYEMPTY): Parenthesize right hand side, since others use it.
326 (yyparse): Don't assume that our generated code is the only code
327 that sets yychar.
328
329 2002-12-13 Paul Eggert <eggert@twinsun.com>
330
331 Version 1.75d.
332
333 POSIX requires a "yacc" command.
334 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
335 (MOSTLYCLEANFILES): Add yacc.
336 (yacc): New rule.
337 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
338 as an alias for bison y.
339
340 * po/LINGUAS: Add da.
341
342 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
343 problem with latest <getopt.h>.
344 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
345
346 * doc/fdl.texi: Upgrade to 1.2.
347 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
348 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
349 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
350 gnulib.
351 * config/install-sh: Sync with autotools.
352
353 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
354 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
355 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
356 locations are requested.
357 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
358 locations are requested.
359
360 2002-12-12 Paul Eggert <eggert@twinsun.com>
361
362 Remove unportable casts and storage allocation tricks.
363 While we're at it, remove almost all casts, since they
364 usually aren't needed and are a sign of trouble.
365
366 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
367
368 * src/derives.c (derives_compute): Do not subtract NTOKENS from
369 the pointer DSET returned by malloc; this isn't portable.
370 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
371 Similarly for DERIVES.
372 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
373 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
374 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
375
376 * src/derives.c (derives_compute): Do not bother invoking
377 int_of_rule_number, since rule numbers are integers.
378
379 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
380 rather than XMALLOC (char, N).
381
382 * src/files.c (filename_split): Rewrite to avoid cast.
383
384 * src/gram.h (symbol_number_as_item_number,
385 item_number_as_symbol_number, rule_number_as_item_number,
386 item_number_as_rule_number):
387 Now inline functions rather than macros, to avoid casts.
388 * src/state.h (state_number_as_int): Likewise.
389 * src/tables.c (state_number_to_vector_number,
390 symbol_number_to_vector_number): Likewise.
391
392 * src/gram.h (int_of_rule_number): Remove; no longer used.
393
394 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
395 since the resulting storage is always stored into.
396
397 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
398 where it's needed.
399
400 * src/muscle_tab.c (muscle_m4_output):
401 Now inline. Return bool, not int.
402 * src/state.c (state_compare): Likewise.
403 * src/symtab.c (symbol_check_defined,
404 symbol_check_alias_consistency, symbol_pack, symbol_translation,
405 hash_compare_symbol, hash_symbol):
406 Likewise.
407 * src/uniqstr.c (uniqstr_print): Likewise.
408 * src/muscle_tab.c (muscle_m4_output_processor):
409 New function, to avoid casts.
410 * src/state.c (state_comparator, stage_hasher): Likewise.
411 * src/symtab.c (symbol_check_defined_processor,
412 symbol_check_alias_consistency_processor, symbol_pack_processor,
413 symbol_translation_processor, hash_symbol_comparator,
414 hash_symbol_hasher): Likewise.
415 * src/uniqstr.c (uniqstr_print_processor): Likewise.
416 * src/muscle_tab.c (muscles_m4_output):
417 Use new functions instead of casting old functions unportably.
418 * src/state.c (state_hash_new): Likewise.
419 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
420 symbols_token_translations_init):
421 Likewise.
422 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
423
424 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
425 var instead of casting to long, to avoid casts.
426 (prepare_states): Use MALLOC rather than alloca, so that we don't
427 have to worry about alloca.
428 * src/state.c (state_hash_lookup): Likewise.
429
430 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
431 local var instead of casting to unsigned char, to avoid casts.
432
433 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
434 STATE_ALLOC): Remove.
435 (transitions_new, errs_new, reductions_new, state_new): Use malloc
436 rather than calloc, and use offsetof to avoid allocating slightly
437 too much storage.
438 (state_new): Initialize all members.
439
440 * src/state.c (state_hash): Use unsigned accumulator, not signed.
441
442 * src/symtab.c (symbol_free): Remove; unused.
443 (symbol_get): Remove cast in lhs of assignment.
444 (symbols_do): Now static. Accept generic arguments, not
445 hashing-related ones.
446
447 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
448 (symbol_processor): Remove.
449 (symbols_do): Remove decl; now static.
450
451 * src/system.h (alloca): Remove; decl no longer needed.
452 (<stddef.h>): Include, for offsetof.
453 (<inttypes.>, <stdint.h>): Include if available.
454 (uintptr_t): New type, if system lacks it.
455 (CALLOC, MALLOC, REALLOC): New macros.
456 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
457 new macros.
458
459 * src/tables.c (table_size): Now int, to pacify GCC.
460 (table_grow, table_ninf_remap): Use signed table size.
461 (save_row): Don't bother initializing locals when not needed.
462 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
463 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
464
465 * src/vcg.h: Correct misspellings.
466
467 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
468
469
470 * src/getargs.c (getargs): Don't assume EOF == -1.
471
472 2002-12-09 Paul Eggert <eggert@twinsun.com>
473
474 Change identifier spellings to avoid collisions with names
475 that are reserved by POSIX.
476
477 Don't use names ending in _t, since POSIX reserves them.
478 For consistency, remove _e and _s endings -- they're weren't
479 needed to remove ambiguity. All uses changed.
480 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
481 turn was just renamed from struniq_t.
482 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
483 which in turn was just renamed from struniq_processor_t.
484 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
485 in turn was renamed from hash_compare_struniq_t.
486 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
487 (state_list): Renamed from state_list_t.
488 * src/assoc.h (assoc): Renamed from assoc_t.
489 * src/conflicts.c (enum conflict_resolution): Renamed from
490 enum conflict_resolution_e.
491 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
492 (rule_list): Renamed from rule_list_t.
493 * src/getargs.h (enum trace): Renamed from enum trace_e.
494 (enum report): Renamed from enum report_e.
495 * src/gram.h (item_number): Renamed from item_number_t.
496 (rule_number): Renamed from rule_number_t.
497 (struct rule_s): Remove the "rule_s" part; not used.
498 (rule): Renamed from rule_t.
499 (rule_filter): Renamed from rule_filter_t.
500 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
501 (goto_list): Renamed from goto_list_t.
502 * src/lalr.h (goto_number): Renamed from goto_number_t.
503 * src/location.h (location): Renamed from location_t.
504 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
505 and moved here from:
506 * src/muscle_tab.h (muscle_entry_t): here.
507 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
508 (rule_list): Renamed from rule_list_t.
509 * src/print_graph.c (static_graph): Renamed from graph.
510 * src/reader.h (braced_code): Renamed from braced_code_t.
511 Remove brace_code_e tag.
512 * src/relation.h (relation_node): Renamed from relation_node_t.
513 (relation_nodes): Renamed from relation_nodes_t.
514 (relation): Renamed from relation_t.
515 * src/state.h (state_number): Renamed from state_number_t.
516 (struct state): Renamed from struct state_s.
517 (state): Renamed from state_t.
518 (transitions): Renamed from transitions_t. Unused (and
519 misspelled) transtion_s tag removed.
520 (errs): Renamed from errs_t. Unused errs_s tag removed.
521 (reductions): Renamed from reductions_t. Unused tag
522 reductions_s removed.
523 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
524 (struct symbol_list): Renamed from struct symbol_list_s.
525 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
526 (struct symbol): Renamed from struct symbol_s.
527 (symbol): Renamed from symbol_t.
528 * src/tables.c (vector_number): Renamed from vector_number_t.
529 (action_number): Renamed from action_t.
530 * src/tables.h (base_number): Renamed from base_t.
531 * src/vcg.h (enum color): Renamed from enum color_e.
532 (enum textmode): Renamed from enum textmode_e.
533 (enum shape): Renamed from enum shape_e.
534 (struct colorentry): Renamed from struct colorentry_s.
535 (struct classname): Renamed from struct classname_s.
536 (struct infoname): Renamed from struct infoname_s.
537 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
538 (enum decision): Renamed from enum decision_e.
539 (enum orientation): Renamed from enum orientation_e.
540 (enum alignment): Renamed from enum alignment_e.
541 (enum arrow_mode): Renamed from enum arrow_mode_e.
542 (enum crossing_type): Renamed from enum crossing_type_e.
543 (enum view): Renamed from enum view_e.
544 (struct node): Renamed from struct node_s.
545 (node): Renamed from node_t.
546 (enum linestyle): Renamed from enum linestyle_e.
547 (enum arrowstyle): Renamed from enum arrowstyle_e.
548 (struct edge): Renamed from struct edge.
549 (edge): Renamed from edge_t.
550 (struct graph): Renamed from struct graph_s.
551 (graph): Renamed from graph_t.
552 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
553 Rename value_t -> value.
554 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
555 value_t_as_yystype -> value_as_yystype.
556
557 Don't include <errno.h> in the mainstream code, since it
558 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
559 * lib/get-errno.c, lib/get-errno.h: New files.
560 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
561 get-errno.c.
562 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
563 * src/output.c (output_skeleton): Likewise.
564 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
565 instead of errno.
566 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
567 Likewise.
568 (handle_action_dollar, handle_action_at): Likewise.
569 * src/system.h: Do not include <errno.h>.
570 (TAB_EXT): Renamed from EXT_TAB.
571 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
572
573 Avoid str[a-z]*, since <string.h> reserves that name space.
574 Change all instances of "struniq" in names to "uniqstr", and
575 likewise for "STRUNIQ" and "UNIQSTR".
576 * src/uniqstr.c: Renamed from src/struniq.c.
577 * src/uniqstr.h: Renamed from src/struniq.h.
578 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
579 * src/files.c (strsuffix): Remove; unused.
580 (concat2): Renamed from stringappend. Now static.
581 * src/files.h (strsuffix, stringappend): Remove; unused.
582 * src/parse-gram.y (<chars>): Renamed from <string>.
583 (<uniqstr>): Renamed from <struniq>.
584 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
585 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
586 (struct graph_s.expand): Renamed from struct graph_s.stretch.
587 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
588 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
589 (N_EXPAND): Renamed from N_STRETCH.
590
591 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
592 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
593 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
594 Remove; unused.
595 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
596 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
597 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
598 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
599 (BASE_MAXIMUM): Renamed from BASE_MAX.
600 (BASE_MINIMUM): Renamed from BASE_MIN.
601 (ACTION_MAX): Remove; unused.
602 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
603 Unnecessary casts removed from above defines.
604
605
606 Fix misspelling in names.
607 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
608 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
609 G_NODE_ALIGNEMENT.
610
611
612 * lib/timevar.c (timevar_report): Renamed from time_report,
613 for consistency with other names.
614 * lib/timevar.h (timevar_report): New decl.
615 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
616
617
618 Sort include-file uses.
619
620 Reorder all include files under src to be in the order "system.h".
621 then the ../lib include files in angle brackets (alphabetized),
622 then the . include files in double-quotes (alphabetized). Fix
623 dependency breakages encountered in this process, as follows:
624 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
625 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
626 * src/state.h: Include "symtab.h".
627
628 2002-12-08 Paul Eggert <eggert@twinsun.com>
629
630 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
631 since this causes problems when __file__ contains character
632 sequences like "@" that are treated specially by src/scan-skel.l.
633 Instead, just use the file's basename. This fixes the bug
634 reported by Martin Mokrejs in
635 <http://mail.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
636
637 2002-12-06 Paul Eggert <eggert@twinsun.com>
638
639 Add support for rules that do not have trailing semicolons, as
640 POSIX requires. Improve the quality of locations in Bison
641 diagnostics.
642
643 * src/location.c: Include <quotearg.h>.
644 (empty_location): Now const.
645 (location_print): New function. Follow the recommendation of the
646 GNU Coding Standards for locations that span file boundaries.
647 * src/location.h: Do not include <quotearg.h>; no longer needed.
648 (boundary): New type.
649 (location_t): Use it. This allows locations to span file boundaries.
650 All member uses changed: file -> start.file or end.file (as needed),
651 first_line -> start.line, first_column -> start.column,
652 last_line -> end.line, last_column -> end.column.
653 (equal_boundaries): New function.
654 (LOCATION_RESET, LOCATION_STEP): Remove.
655 (LOCATION_PRINT): Remove. All callers changed to use location_print.
656 (empty_location): Now const.
657 (location_print): New decl.
658 * src/parse-gram.y (lloc_default): New function, which handles
659 empty locations more accurately.
660 (YYLLOC_DEFAULT): Use it.
661 (%token COLON): Remove.
662 (%token ID_COLON): New token.
663 (rules): Use it.
664 (declarations, rules): Remove trailing semicolon.
665 (declaration, rules_or_grammar_declaration):
666 Allow empty (";") declaration.
667 (symbol_def): Remove empty actions; no longer needed.
668 (rules_or_grammar_declaration): Remove trailing semicolon.
669 (semi_colon.opt): Remove.
670 * src/reader.h: Include location.h.
671 (scanner_cursor): New decl.
672 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
673 rolling our own.
674 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
675 of *loc.
676 (STEP): Remove. No longer needed, now that adjust_location does
677 the work. All uses removed.
678 (scanner_cursor): New var.
679 (adjust_location): Renamed from extend_location. It now sets
680 *loc and adjusts the scanner cursor. All uses changed.
681 Don't bother testing for CR.
682 (handle_syncline): Remove location arg; now updates scanner cursor.
683 All callers changed.
684 (unexpected_end_of_file): Now accepts start boundary of token or
685 comment, not location. All callers changed. Update scanner cursor,
686 not the location.
687 (SC_AFTER_IDENTIFIER): New state.
688 (context_state): Renamed from c_context. All uses changed.
689 (id_loc, code_start, token_start): New local vars.
690 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
691 processing of Yacc white space and equivalents here.
692 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
693 instead of returning ID immediately, since we need to search for
694 a subsequent colon.
695 (<INITIAL>"'", "\""): Save token_start.
696 (<INITIAL>"%{", "{", "%%"): Save code_start.
697 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
698 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
699 BEGIN context_state at end, not INITIAL.
700 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
701 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
702 Return correct token start.
703 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
704 the start of a character, string or multiline comment is found.
705 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
706 Reduction): Adjust reported locations to match the more-precise
707 results now expected.
708 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
709 * tests/reduce.at (Useless Rules, Reduced Automaton,
710 Underivable Rules): Likewise.
711 * tests/regression.at (Invalid inputs): No longer `expecting ";"
712 or "|"' now that so many other tokens are allowed by the new grammar.
713
714 * src/complain.h (current_file): Remove duplicate decl;
715 current_file is now owned by files.h.
716 * src/complain.c, src/scan-gram.l: Include files.h.
717
718 2002-12-06 Paul Eggert <eggert@twinsun.com>
719
720 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
721 promotes to int; it might be unsigned int.
722 * data/yacc.c (yy_reduce_print): Likewise.
723
724 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
725 be #defined in the prologue, not in the Bison declarations.
726 This fixes Debian Bug 102878, reported by Shaul Karl.
727
728 2002-12-02 Paul Eggert <eggert@twinsun.com>
729
730 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
731 * lib/strtoul.c: New file, from gnulib.
732 This fixes a porting bug reported by Peter Klein in
733 <http://mail.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
734
735 2002-11-30 Paul Eggert <eggert@twinsun.com>
736
737 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
738 and put only a forward declaration in the prologue. This is for
739 consistency with the other scanner helper functions.
740
741 Type clashes now generate warnings, not errors, since it
742 appears that POSIX may allow some grammars with type clashes.
743 * src/reader.c (grammar_current_rule_check): Warn about
744 type clashes instead of complaining.
745 * tests/input.at (Type Clashes): Expect warnings, not complaints.
746
747 Add Yacc library, since POSIX requires it.
748 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
749 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
750 * lib/main.c, lib/yyerror.c: New files.
751
752 gram_error can be static; it need not be extern.
753 * src/reader.h (gram_error): Remove decl.
754 * src/parse-gram.y (gram_error): Now static. Add static decl.
755 (print_token_value): Omit parameter names from forward decl,
756 for consistency.
757
758 2002-11-29 Paul Eggert <eggert@twinsun.com>
759
760 * doc/bison.texinfo: Emphasize that yylex and yyerror must
761 be declared before being used. E.g., one should typically
762 declare them in the prologue. Use GNU coding style in examples.
763 Put "const" consistently after the type it modifies. Mention
764 that C99 supports "inline". Mention that yyerror traditionally
765 returns "int".
766
767 %parse-param and %lex-param now take just one argument, the
768 declaration; the argument name is deduced from the declaration.
769
770 * doc/bison.texinfo (Parser Function, Pure Calling, Error
771 Reporting, Table of Symbols): Document this.
772 * src/parse-gram.y (add_param): New function.
773 (COMMA): Remove.
774 (declaration): Implement new rule for %parse-param and %lex-param.
775 * src/scan-gram.l: "," now elicits a warning, rather than being
776 a token; this is more compatible with byacc.
777 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
778
779 2002-11-27 Paul Eggert <eggert@twinsun.com>
780
781 Rename identifiers to avoid real and potential collisions.
782
783 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
784 to avoid collision with lex macro described by Bruce Lilly in
785 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
786 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
787 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
788 * src/parse-gram.y (print_token_value): Renamed from yyprint.
789 All uses changed.
790 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
791 The name "yycontrol" violates the name space rules, and this stuff
792 wasn't being used anyway.
793 (input): Remove action; this stuff wasn't being used.
794 (gram_error): Rename local variable yylloc -> loc.
795 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
796 (YY_DECL): Don't use "yy" at start of local variables.
797 All uses changed, e.g., yylloc -> loc.
798 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
799 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
800 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
801 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
802
803 * src/parse-gram.y (gram_error): loc is now const *.
804 * src/reader.h (gram_error): Likewise.
805
806 2002-11-24 Paul Eggert <eggert@twinsun.com>
807
808 Version 1.75c.
809
810 * tests/actions.at (Actions after errors): Use an output format
811 more similar to that of the Printers and Destructors test.
812 Test the position of the ';' token too.
813 (Printers and Destructors): Likewise.
814 (Printers and Destructors: %glr-parser): Remove for now, to avoid
815 unnecessarily alarming people when the test fails.
816
817 * data/yacc.c (yyerrlab1): Move this label down, so that the
818 parser does not discard the lookahead token if the user code
819 invokes YYERROR. This change is required for POSIX conformance.
820
821 * lib/error.c: Sync with gnulib.
822
823 2002-11-22 Paul Eggert <eggert@twinsun.com>
824
825 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
826 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
827 * lib/xmalloc.c: Likewise.
828
829 2002-11-20 Paul Eggert <eggert@twinsun.com>
830
831 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
832
833 2002-11-20 Paul Eggert <eggert@twinsun.com>
834
835 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
836 should use `if (! x) abort ();' rather than `assert (x);', and
837 anyway it's one less thing to worry about configuring.
838
839 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
840 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
841 and replace all instances of assert with abort.
842 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
843 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
844
845 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
846 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
847 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
848 hash_find_entry, hash_rehash, hash_insert): Likewise.
849 * src/conflicts.c (resolve_sr_conflict): Likewise.
850 * src/lalr.c (set_goto_map, map_goto): Likewise.
851 * src/nullable.c (nullable_compute): Likewise.
852 * src/output.c (prepare_rules, token_definitions_output): Likewise.
853 * src/reader.c (packgram, reader): Likewise.
854 * src/state.c (state_new, state_free, state_transitions_set,
855 state_reduction_find): Likewise.
856 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
857 symbol_pack): Likewise.
858 * src/tables.c (conflict_row, pack_vector): Likewise.
859 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
860 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
861 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
862 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
863
864 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
865 (ARGMATCH_CONSTRAINT): New macro.
866 (ARGMATCH_ASSERT): Use it.
867
868 * src/system.h (verify): New macro.
869 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
870 rather than assert.
871 * src/tables.c (tables_generate): Likewise.
872
873 * src/struniq.c (struniq_assert): Now returns void, and aborts
874 if the assertion is false.
875 (struniq_assert_p): Remove.
876 * src/struniq.h: Likewise.
877
878 2002-11-18 Paul Eggert <eggert@twinsun.com>
879
880 * data/glr.c (yygetLRActions): Replace `yyindex' with
881 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
882 This fixes the regression with Sun ONE Studio 7 cc that I reported in
883 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
884
885 2002-11-18 Akim Demaille <akim@epita.fr>
886
887 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
888 space.
889 From Tim Van Holder.
890
891 2002-11-17 Paul Eggert <eggert@twinsun.com>
892
893 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
894 to "SyntaxError" for consistency with my 2002-11-15 change.
895
896 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
897 not define to {}, since this breaks the common use of `YYDPRINTF
898 ((...));' if a single statement is desired (e.g. before `else').
899 Work around GCC warnings by surrounding corresponding calls with
900 {} if needed.
901 (yyhasResolvedValue): Remove unused function.
902 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
903 loop body.
904 (yyreportSyntaxError): Renamed from yyreportParseError.
905 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
906 All uses changed.
907 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
908 extern when possible. Remove unused initializations.
909
910 2002-11-16 Akim Demaille <akim@epita.fr>
911
912 Augment the similarity between GLR and LALR traces.
913
914 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
915 (YY_REDUCE_PRINT): New.
916 (yyparse): Use them.
917 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
918 YYDPRINT here.
919 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
920 state reached after the reduction/recovery, since...
921 (yyparse, yyprocessOneStack): Report the state we are entering in.
922
923 2002-11-16 Akim Demaille <akim@epita.fr>
924
925 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
926 Add support for --trace=skeleton.
927 * src/scan-skel.l: %option debug.
928 Scan strings of non-@ or \n instead of character by character.
929 (scan_skel): Handle trace_skeleton.
930 (QPUTS): New.
931 (@output_parser_name@, @output_header_name@): ``Restore'' their
932 support (used to be M4 macros).
933 * data/yacc.c: Quote larger chunks, a la glr.c.
934 * data/lalr1.cc: Likewise.
935 The header guards are no longer available, so use some other
936 string than `YYLSP_NEEDED'.
937
938 2002-11-16 Akim Demaille <akim@epita.fr>
939
940 Make the ``Printers and Destructors'' test more verbose, taking
941 `yacc.c''s behavior as (possibly wrong) reference.
942
943 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
944 instead of fprint on stdout.
945 Set and report the last_line of the symbols.
946 Consistently display values and locations.
947
948 2002-11-16 Paul Eggert <eggert@twinsun.com>
949
950 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
951
952 2002-11-15 Paul Eggert <eggert@twinsun.com>
953
954 * tests/actions.at (Actions after errors): New test case.
955
956 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
957 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
958 tests/action.at, tests/calc.at, tests/conflicts.at,
959 tests/cxx-type.at, tests/regression.at:
960 "parse error" -> "syntax error" for POSIX compatibility.
961 "parsing stack overflow..." -> "parser stack overflow" so
962 that code matches Bison documentation.
963
964 2002-11-15 Akim Demaille <akim@epita.fr>
965
966 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
967 take two BRACED_CODE, not two string_content.
968 Free the scanner's obstack when we are done.
969 (code_content): New.
970 * tests/calc.at: Adjust.
971 * doc/bison.texinfo: Adjust.
972 Also, make sure to include the `,' for these declarations.
973
974 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
975
976 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
977 definition; avoids potential autoreconf problems.
978
979 2002-11-15 Akim Demaille <akim@epita.fr>
980
981 Always check the value returned by yyparse.
982
983 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
984 returned by yyparse.
985 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
986 Adjust calls.
987 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
988 returned by yyparse.
989
990 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
991
992 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
993 on input.at test.
994
995 2002-11-14 Paul Eggert <eggert@twinsun.com>
996
997 * src/output.c (output_skeleton): Call xfopen instead of
998 duplicating xfopen's body.
999
1000 Fix bugs reported by Nelson H. F. Beebe in
1001 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
1002
1003 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
1004 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
1005 Group compiler. Instead, use "$CC -E bar.c". Include the .h
1006 file twice in the grammar, as an extra check.
1007
1008 * tests/input.at (Torturing the Scanner): Surround the
1009 backslash-newline tests with "#if 0", to make it less likely that
1010 we'll run into compiler bugs. Bring back solitary \ inside
1011 comment, but add a closing comment to work around HP C bug. Don't
1012 test backslash-newline in C character constant.
1013
1014 2002-11-14 Akim Demaille <akim@epita.fr>
1015
1016 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
1017 status of the compiler.
1018 Calling `exit 1' is no longer needed.
1019 Reported by Nelson H. F. Beebe.
1020
1021 2002-11-14 Akim Demaille <akim@epita.fr>
1022
1023 * tests/atlocal.in (CPPFLAGS): We have config.h.
1024 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
1025 New.
1026 * tests/actions.at, tests/calc.at, tests/conflicts.at,
1027 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
1028 * tests/regression.at, tests/torture.at: Use them for all the
1029 grammars that are to be compiled.
1030 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
1031 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
1032 * doc/bison.texinfo (GLR Parsers): Document `inline'.
1033
1034 2002-11-14 Akim Demaille <akim@epita.fr>
1035
1036 * doc/bison.texinfo: Various formatting changes (alignments in
1037 samples, additional @group/@end group, GCS in samples.
1038 Use @deffn instead of simple @table to define the directives,
1039 macros, variables etc.
1040
1041 2002-11-13 Paul Eggert <eggert@twinsun.com>
1042
1043 Fix some bugs reported by Albert Chin-A-Young in
1044 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
1045
1046 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
1047 -o c"; the HP C compiler chatters during compilation.
1048 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
1049 * tests/headers.at (export YYLTYPE): Likewise.
1050
1051 * tests/input.at (Torturing the Scanner): Remove lines containing
1052 solitary backslashes, as they tickle a bug in the HP C compiler.
1053
1054 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
1055 comments, since they're not portable. Use GNU coding style.
1056
1057 2002-11-13 Akim Demaille <akim@epita.fr>
1058
1059 * data/yacc.c: Leave bigger chunks of quoted text.
1060 (YYDSYMPRINTF): New.
1061 Use it to report symbol activities.
1062 * data/glr.c (YYDSYMPRINTF): New.
1063 Use it.
1064
1065 2002-11-12 Paul Eggert <eggert@twinsun.com>
1066
1067 Version 1.75b.
1068
1069 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
1070 (yyglrReduce): Return yyok, not 0.
1071 This should avoid the enumerated-type warnings reported
1072 by Nelson H. F. Beebe in
1073 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
1074
1075 * lib/bbitset.h (BITSET_INLINE): Remove.
1076 * lib/bitset.h [! BITSET_INLINE]: Remove.
1077 (bitset_set, bitset_reset, bitset_test): Rename local vars
1078 to avoid shadowing warnings by GCC.
1079
1080 * data/glr.c (inline): Remove #define. It's the user's
1081 responsibility to #define it away, just like 'const'.
1082 This fixes one of the bugs reported by Nelson H. F. Beebe in
1083 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
1084
1085 * Makefile.maint (po-check): Scan .l and .y files instead of the
1086 .c and the .h files that they generate. This fixes the bug
1087 reported by Tim Van Holder in:
1088 <http://mail.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
1089 Look for N_ as well as for _. Try to avoid matching #define for
1090 N_ and _.
1091 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
1092 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
1093 * src/scan-gram.l: Revamp regular expressions so that " and '
1094 do not confuse xgettext.
1095
1096 * src/struniq.h (struniq_new): Do not declare the return type
1097 to be 'const'; this violates the C standard.
1098 * src/struniq.c (struniq_new): Likewise.
1099
1100 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
1101
1102 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
1103 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
1104 linker.
1105
1106 2002-11-12 Akim Demaille <akim@epita.fr>
1107
1108 * Makefile.maint: Sync with Autoconf:
1109 (local_updates): New.
1110
1111 2002-11-12 Akim Demaille <akim@epita.fr>
1112
1113 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
1114
1115 2002-11-12 Akim Demaille <akim@epita.fr>
1116
1117 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
1118 locations.
1119
1120 2002-11-12 Akim Demaille <akim@epita.fr>
1121
1122 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
1123 not yyvalue.
1124
1125 2002-11-12 Akim Demaille <akim@epita.fr>
1126
1127 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
1128 Use it to test the GLR parser.
1129
1130 2002-11-12 Akim Demaille <akim@epita.fr>
1131
1132 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
1133 defines it.
1134 * data/glr.c (yystos): New.
1135 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
1136 (YYDSYMPRINT): New.
1137 (yyval): Don't define it, it is handled via M4.
1138 (yyrecoverParseError): Free verbosely the discarded symbols.
1139 * data/yacc.c (yysymprint): Remove, rather...
1140 (b4_yysymprint_generate): invoke.
1141 * data/c.m4 (b4_yysymprint_generate): New.
1142 Accept pointers as arguments, as opposed to the version from
1143 yacc.c.
1144 (b4_yydestruct_generate): Likewise.
1145 * tests/cations.at (Printers and Destructors): Use Bison directives
1146 instead of CPP macros.
1147 Don't rely on internal details.
1148
1149 2002-11-12 Akim Demaille <akim@epita.fr>
1150
1151 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
1152 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
1153 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
1154 it against YYEMPTY and so forth), work on yytoken (i.e., set
1155 it to YYEMPTY etc.).
1156 (yydestruct): Replace with a b4_yydestruct_generate invocation.
1157 (b4_symbol_actions): Remove.
1158 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
1159 for 0, end-of-input.
1160
1161 2002-11-12 Akim Demaille <akim@epita.fr>
1162
1163 * doc/bison.texinfo (Destructor Decl): New.
1164
1165 2002-11-12 Akim Demaille <akim@epita.fr>
1166
1167 * src/tables.c (tables_generate): Use free for pointers that
1168 cannot be NULL, not XFREE.
1169 (pack_vector): Use assert, not fatal, for bound violations.
1170 * src/state.c (state_new): Likewise.
1171 * src/reader.c (reader): Likewise.
1172 * src/lalr.c (set_goto_map): Likewise.
1173 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
1174 the file name.
1175
1176 2002-11-12 Akim Demaille <akim@epita.fr>
1177
1178 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
1179 Restore.
1180 * src/scan-gram.l (last_string): Is global to the file, not to
1181 yylex.
1182 * src/parse-gram.y (input): Don't append the epilogue here,
1183 (epilogue.opt): do it here, and free the scanner's obstack.
1184 * src/reader.c (epilogue_set): Rename as...
1185 (epilogue_augment): this.
1186 * data/c.m4 (b4_epilogue): Defaults to empty.
1187
1188 2002-11-12 Akim Demaille <akim@epita.fr>
1189
1190 * src/getargs.c (long_options): Remove duplicates.
1191 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
1192 Remove.
1193 * doc/bison.rnh: Remove.
1194 * doc/bison.texinfo (VMS Invocation): Remove.
1195
1196 2002-11-12 Akim Demaille <akim@epita.fr>
1197
1198 * src/struniq.h, src/struniq.c (struniq_t): Is const.
1199 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
1200
1201 Use struniq for symbols.
1202
1203 * src/symtab.h (symbol_t): The tag member is a struniq.
1204 (symbol_type_set): Adjust.
1205 * src/symtab.c (symbol_new): Takes a struniq.
1206 (symbol_free): Don't free the tag member.
1207 (hash_compare_symbol_t, hash_symbol_t): Rename as...
1208 (hash_compare_symbol, hash_symbol): these.
1209 Use the fact that tags as struniqs.
1210 (symbol_get): Use struniq_new.
1211 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
1212 Returns a strniq.
1213 * src/reader.h (merger_list, grammar_currentmerge_set): The name
1214 and type members are struniqs.
1215 * src/reader.c (get_merge_function)
1216 (grammar_current_rule_merge_set): Adjust.
1217 (TYPE, current_type): Are struniq.
1218
1219 Use struniq for file names.
1220
1221 * src/files.h, src/files.c (infile): Split into...
1222 (grammar_file, current_file): these.
1223 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
1224 * src/reduce.c (reduce_print): Likewise.
1225 * src/getargs.c (getargs): Likewise.
1226 * src/complain.h, src/complain.c: Likewise.
1227 * src/main.c (main): Call struniqs_new early enough to use it for
1228 file names.
1229 Don't free the input file name.
1230
1231 2002-11-12 Akim Demaille <akim@epita.fr>
1232
1233 * src/symtab.c (symbol_free): Remove dead deactivated code:
1234 type_name are properly removed.
1235 Don't use XFREE to free items that cannot be NULL.
1236 * src/struniq.h, src/struniq.c: New.
1237 * src/main.c (main): Initialize/free struniqs.
1238 * src/parse-gram.y (%union): Add astruniq member.
1239 (yyprint): Adjust.
1240 * src/scan-gram.l (<{tag}>): Return a struniq.
1241 Free the obstack bit that used to store it.
1242 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
1243
1244 2002-11-11 Paul Eggert <eggert@twinsun.com>
1245
1246 Revamp to fix many (but not all) of the C- and M4-related quoting
1247 problems. Among other things, this fixes the Bison bug reported
1248 by Jan Hubicka when processing the Bash grammar; see:
1249 <http://mail.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
1250
1251 Use new @ escapes consistently. Represent brackets with @{ and @}
1252 rather than @<:@ and @:>@, since this works a bit better with dumb
1253 editors like vi. Represent @ with @@, since @ is now consistently
1254 an escape. Use @oline@ and @ofile@ rather than __oline__ and
1255 __ofile__, to avoid unexpected expansions. Similarly, use @output
1256 rather than #output.
1257
1258 * data/c.m4 (b4_copyright): Omit file name from comment, since
1259 the file name could contain "*/".
1260 (b4_synclines_flag): Don't quote the 2nd argument; it should already
1261 be quoted. All uses changed.
1262
1263 * data/glr.c: Use new @ escapes consistently.
1264 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
1265 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
1266 Remove, since they couldn't handle arbitrary characters in file
1267 names.
1268 * data/lalr1.cc: Likewise.
1269 * data/yacc.c: Likewise.
1270
1271 * src/files.c (output_infix): Remove; all uses removed.
1272 * src/files.h: Likewise.
1273
1274 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
1275 mishandled funny characters in file names, and anyway it isn't
1276 needed any more.
1277 * data/yacc.c: Likewise.
1278 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
1279
1280 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
1281 * data/yacc.c: Likewise.
1282
1283 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
1284 strings now.
1285 (muscle_init): Quote filename as a C string.
1286 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
1287 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
1288 * src/output.c (escaped_file_name_output): New function.
1289 (prepare_symbols): Quote tokens for M4.
1290 (prepare): Don't insert output_infix, output_prefix,
1291 output_parser_name, output_header_name; this is now down by scan-skel.
1292 Insert skeleton as a C string.
1293
1294 * src/output.c (user_actions_output, symbol_destructors_output,
1295 symbol_printers_output): Quote filenames for C and M4.
1296 * src/reader.c (prologue_augment, epilogue_set): Likewise.
1297
1298 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
1299 escapes other than \\ and \'; this simplifies the code.
1300 (<SC_STRING>): Likewise, for \\ and \".
1301 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
1302 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
1303 Use new escapes @{ and @} for [ and ].
1304
1305 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
1306 them with auto vars.
1307 Switch to new escape scheme, where @ is the escape character uniformly.
1308 Abort if a stray escape character is found. Avoid unbounded input
1309 buffer when parsing non-escaped text.
1310
1311 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
1312 __oline__, #output, $@, and @{ do not have unintended meanings.
1313
1314 2002-11-09 Paul Eggert <eggert@twinsun.com>
1315
1316 Fix the test failure due to GCC warnings described in
1317 <http://mail.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
1318 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
1319 evaluate to 0 if it's impossible for NINF to be in the respective
1320 table.
1321 (yygetLRActions, yyrecoverParseError): Use them.
1322
1323 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
1324 counted in the token inserted at end of file. Now takes
1325 location_t *, not location_t, so that the location can be
1326 adjusted. All uses changed.
1327
1328 * tests/regression.at (Invalid inputs): Adjust wording in
1329 diagnostic to match the new behavior.
1330
1331 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
1332 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
1333 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
1334 abort ();'. This reduces the runtime of the "Many lookaheads"
1335 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
1336 GCC 3.2.
1337
1338 2002-11-07 Paul Eggert <eggert@twinsun.com>
1339
1340 * src/parse-gram.y (CHARACTER): Remove unused token.
1341 All uses removed.
1342
1343 * src/scan-gram.l: Remove stack option. We no longer use the
1344 stack, since the stack was never deeper than 1; instead, use the
1345 new auto var c_context to record the stacked value.
1346
1347 Remove nounput option. At an unexpected end of file, we now unput
1348 the minimal input necessary to end cleanly; this simplifies the
1349 code.
1350
1351 Avoid unbounded token sizes where this is easy.
1352
1353 (unexpected_end_of_file): New function.
1354 Use it to systematize the error message on unexpected EOF.
1355 (last-string): Now auto, not static.
1356 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
1357 (scanner_last_string_free): Remove; not used.
1358 (percent_percent_count): Move decl to just before use.
1359 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
1360 not the (never otherwised-used) CHARACTER.
1361
1362 2002-11-07 Akim Demaille <akim@epita.fr>
1363
1364 Let yyerror always receive the msg as last argument, so that
1365 yyerror can be variadic.
1366
1367 * data/yacc.c (b4_yyerror_args): New.
1368 Use it when calling yyerror.
1369 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
1370 Use it when calling yyerror.
1371 * doc/bison.texinfo (Error Reporting): Adjust.
1372 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
1373 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
1374
1375 2002-11-06 Akim Demaille <akim@epita.fr>
1376
1377 #line should have quoted strings.
1378 Ideally, this should be done by m4_quotearg.
1379
1380 * src/scan-skel.l: Include quotearg.h.
1381 Quote __ofile__.
1382 * src/output.c (symbol_printers_output)
1383 (symbol_destructors_output): Quote the file name.
1384
1385 2002-11-06 Akim Demaille <akim@epita.fr>
1386
1387 * tests/regression.at (Invalid inputs): Adjust to the recent
1388 messages.
1389
1390 2002-11-06 Akim Demaille <akim@epita.fr>
1391
1392 Restore --no-lines.
1393 Reported by Jim Kent.
1394
1395 * data/c.m4 (b4_syncline): New.
1396 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
1397 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
1398 * src/output.c (user_actions_output): Likewise.
1399 (prepare): Define 'b4_synclines_flag'.
1400 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
1401
1402 2002-11-06 Akim Demaille <akim@epita.fr>
1403
1404 * src/main.c (main): Free `infile'.
1405 * src/scan-gram.l (handle_syncline): New.
1406 Recognize `#line'.
1407 * src/output.c (user_actions_output, symbol_destructors_output)
1408 (symbol_printers_output): Use the location's file name, not
1409 infile.
1410 * src/reader.c (prologue_augment, epilogue_set): Likewise.
1411
1412 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1413
1414 * src/tables.c (matching_state): Don't allow states to match if
1415 either has GLR conflict entries.
1416
1417 2002-11-05 Paul Eggert <eggert@twinsun.com>
1418
1419 * src/scan-gram.l: Use more accurate diagnostics, e.g.
1420 "integer out of range" rather than "invalid value".
1421 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
1422 accordingly.
1423
1424 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
1425 Also, remove one static variable in the scanner.
1426
1427 * src/scan-gram.l (braces_level): Now auto, not static.
1428 Initialize to zero if the compiler is being picky.
1429 (INITIAL): Clear braces_level instead of incrementing it.
1430 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
1431 as POSIX 1003.1-2001 requires.
1432 * src/system.h (IF_LINT): New macro, taken from coreutils.
1433 * configure.ac: Define "lint" if --enable-gcc-warnings.
1434
1435 2002-11-05 Akim Demaille <akim@epita.fr>
1436
1437 * src/scan-gram.l: When it starts with `%', complain about the
1438 whole directive, not just that `invalid character: %'.
1439
1440 2002-11-04 Akim Demaille <akim@epita.fr>
1441
1442 * Makefile.maint: Update from Autoconf.
1443 (update, cvs-update, po-update, do-po-update): New.
1444
1445 2002-11-04 Akim Demaille <akim@epita.fr>
1446
1447 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
1448 and yyerror.
1449 Have yyerror `use' its arguments.
1450 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
1451 returns true when location & yacc & pure & parse-param.
1452 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
1453
1454 2002-11-04 Akim Demaille <akim@epita.fr>
1455
1456 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
1457 clashes.
1458 * src/scan-gram.l: Use [\'] instead of ['] to pacify
1459 font-lock-mode.
1460 Use complain_at.
1461 Use quote, not quote_n since LOCATION_PRINT no longer uses the
1462 slot 0.
1463
1464 2002-11-03 Paul Eggert <eggert@twinsun.com>
1465
1466 * src/reader.c (get_merge_function, grammar_current_rule_check):
1467 Use consistent diagnostics for reporting type name clashes.
1468 Quote the types with <>, for consistency with Yacc.
1469 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
1470
1471 2002-11-03 Akim Demaille <akim@epita.fr>
1472
1473 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
1474 New.
1475 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
1476 (b4_parse_param): Remove.
1477 Use b4_identification.
1478 Propagate b4_pure_args where needed to pass them to yyerror.
1479 * data/glr.m4 (b4_parse_param): Remove.
1480 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
1481 (b4_lpure_formals): New.
1482 Use b4_identification.
1483 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
1484 b4_user_formals and b4_user_args.
1485 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
1486 (yyreportAmbiguity): When using a pure parser, also need
1487 the location, and the parse-params.
1488 Adjust callers.
1489 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
1490 When using a pure parser, also need the parse-params.
1491 Adjust callers.
1492 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
1493 (%pure-parser + %parse-param) LALR and GLR parsers.
1494 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
1495 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
1496 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
1497 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
1498 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
1499 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
1500 * doc/bison.texinfo: Untabify the whole file.
1501 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
1502 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
1503 (Error Reporting): Adjust to these new directives.
1504 Document %error-verbose, deprecate YYERROR_VERBOSE.
1505
1506 2002-11-03 Akim Demaille <akim@epita.fr>
1507
1508 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
1509 AT_CHECK_CALC_GLR invocations to use % directives, instead of
1510 command line options.
1511 * tests/cxx-type.at: Formatting changes.
1512
1513 2002-11-03 Paul Eggert <eggert@twinsun.com>
1514
1515 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
1516 to count columns correctly, and to check for invalid inputs.
1517
1518 Use mbsnwidth to count columns correctly. Account for tabs, too.
1519 Include mbswidth.h.
1520 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
1521 (extend_location): New function.
1522 (YY_LINES): Remove.
1523
1524 Handle CRLF in C code rather than in Lex code.
1525 (YY_INPUT): New macro.
1526 (no_cr_read): New function.
1527
1528 Scan UCNs, even though we don't fully handle them yet.
1529 (convert_ucn_to_byte): New function.
1530
1531 Handle backslash-newline correctly in C code.
1532 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
1533 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
1534 all uses changed.
1535 (tag, splice): New EREs. Do not allow NUL or newline in tags.
1536 Use {splice} wherever C allows backslash-newline.
1537 YY_STEP after space, newline, vertical-tab.
1538 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
1539
1540 (letter, id): Don't assume ASCII; e.g., spell out a-z.
1541
1542 ({int}, handle_action_dollar, handle_action_at): Check for integer
1543 overflow.
1544
1545 (YY_STEP): Omit trailing semicolon, so that it's more like C.
1546
1547 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
1548 as well as \000. Check for UCHAR_MAX, not 255.
1549 Allow \x with an arbitrary positive number of digits, as in C.
1550 Check for overflow here.
1551 Allow \? and UCNs, for compatibility with C.
1552
1553 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
1554 with quote slot used by complain_at.
1555
1556 * tests/input.at: Add tests for backslash-newline, m4 quotes
1557 in symbols, long literals, and funny escapes in strings.
1558
1559 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
1560 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
1561 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
1562 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
1563 * m4/mbswidth.m4: New file, from GNU coreutils.
1564
1565 * doc/bison.texinfo (Grammar Outline): Document // comments.
1566 (Symbols): Document that trigraphs have no special meaning in Bison,
1567 nor is backslash-newline allowed.
1568 (Actions): Document that trigraphs have no special meaning.
1569
1570 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
1571 no longer used.
1572
1573 2002-11-02 Paul Eggert <eggert@twinsun.com>
1574
1575 * src/reader.c: Don't include quote.h; not needed.
1576 (get_merge_function): Reword warning to be consistent with
1577 type clash diagnostic in grammar_current_rule_check.
1578
1579 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
1580 bug in trigraph handling.
1581
1582 * src/output.c (prepare_symbols): When printing token names,
1583 escape "[" as "@<:@" and likewise for "]".
1584
1585 * src/system.h (errno): Remove declaration, as we are now
1586 assuming C89 or better, and C89 guarantees errno.
1587
1588 2002-10-30 Paul Eggert <eggert@twinsun.com>
1589
1590 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
1591 Check for close failures.
1592 * src/files.h (xfclose): Return void, not int, since it always
1593 returned zero.
1594 * src/files.c (xfclose): Likewise. Report I/O error if ferror
1595 indicates one.
1596 * src/output.c (output_skeleton): Use xfclose rather than fclose
1597 and ferror. xfclose now checks ferror.
1598
1599 * data/glr.c (YYLEFTMOST_STATE): Remove.
1600 (yyreportTree): Use a stack-based leftmost state. This avoids
1601 our continuing battles with bogus warnings about initializers.
1602
1603 2002-10-30 Akim Demaille <akim@epita.fr>
1604
1605 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
1606 #if.
1607
1608 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1609
1610 * tests/glr-regr1.at: New test for reported regressions.
1611 * tests/testsuite.at: Add glr-regr1.at test.
1612 * tests/Makefile.am: Add glr-regr1.at test.
1613
1614 2002-10-24 Paul Eggert <eggert@twinsun.com>
1615
1616 Version 1.75a.
1617
1618 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
1619 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
1620 we use malloc. Don't assume 'A' through 'Z' are contiguous.
1621 Don't assume strdup exists; POSIX says its an XSI extension.
1622 Check for buffer overflow on input.
1623
1624 2002-10-24 Akim Demaille <akim@epita.fr>
1625
1626 * src/output.c (output_skeleton): Don't disable M4sugar comments
1627 too soon: it results in comments being expanded.
1628 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
1629 first output.
1630
1631 2002-10-24 Akim Demaille <akim@epita.fr>
1632
1633 * data/yacc.c (m4_int_type): New.
1634 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
1635 char' as only yacc.c wants K&R portability.
1636 * data/glr.c (yysigned_char): Remove.
1637 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
1638 Reported by Quoc Peyrot.
1639
1640 2002-10-23 Paul Eggert <eggert@twinsun.com>
1641
1642 * src/main.c (main): With --trace=time, report times even if a
1643 non-fatal error occurs. Formerly, the times were reported in some
1644 such cases but not in others.
1645 * src/reader.c (reader): Just return if a complaint has been issued,
1646 instead of exiting, so that 'main' can report times.
1647
1648 2002-10-22 Akim Demaille <akim@epita.fr>
1649
1650 * src/system.h: Include sys/types.
1651 Reported by Bert Deknuydt.
1652
1653 2002-10-23 Paul Eggert <eggert@twinsun.com>
1654
1655 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
1656 Suggested by Art Haas.
1657
1658 2002-10-22 Paul Eggert <eggert@twinsun.com>
1659
1660 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
1661 decl; not needed any more.
1662 * src/main.c (main): Use return to exit, undoing yesterday's change.
1663 The last OS that we could find where this wouldn't work is
1664 SunOS 3.5, and that's too old to worry about now.
1665
1666 * data/glr.c (struct yyltype): Define members even when not
1667 doing locations. This is more consistent with yacc.c, and it
1668 works around the following bug reports:
1669 http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
1670 http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
1671
1672 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
1673 @acronym consistently. Standardize on "Yacc" instead of "YACC",
1674 "Algol" instead of "ALGOL". Give a bit more history about BNF.
1675
1676 2002-10-22 Akim Demaille <akim@epita.fr>
1677
1678 * data/README: New.
1679
1680 2002-10-21 Paul Eggert <eggert@twinsun.com>
1681
1682 Be consistent about 'bool'; the old code used an enum in one
1683 module and an int in another, and this violates the C standard.
1684 * m4/stdbool.m4: New file, from coreutils 4.5.3.
1685 * configure.ac (AC_HEADER_STDBOOL): Add.
1686 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
1687 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
1688 * src/symtab.c (hash_compare_symbol_t): Likewise.
1689 * src/system.h (bool, false, true): Use a definition consistent
1690 with ../lib/hash.c. All uses changed.
1691
1692 * src/complain.c (warning_issued): Renamed from warn_message_count,
1693 so that we needn't worry about integer overflow (!).
1694 Now of type bool. All uses changed.
1695 (complaint_issued): Renamed from complain_message_count; likewise.
1696
1697 * src/main.c (main): Use exit to exit with failure.
1698
1699 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
1700 rather than 1 and 0.
1701 * src/main.c (main): Likewise.
1702 * src/getargs.c (getargs): Likewise.
1703 * src/reader.c (reader): Likewise.
1704
1705 * src/getarg.c (getargs): Remove duplicate code for
1706 "Try `bison --help'".
1707
1708 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
1709 What was that "2" for?
1710
1711 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
1712 * src/getargs.c (usage): Likewise.
1713
1714 * src/getargs.c (getargs): When there are too few operands, report
1715 the last one. When there are too many, report the first extra
1716 one. This is how diffutils does it.
1717
1718 2002-10-20 Paul Eggert <eggert@twinsun.com>
1719
1720 Remove K&R vestiges.
1721 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
1722 * src/complain.c (VA_START): Remove. Assume prototypes.
1723 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
1724 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
1725 fatal): Assume prototypes.
1726 * src/complain.h: Assume prototypes.
1727 * src/system.h (PARAMS): Remove.
1728 Include <limits.h> unconditionally, since it's guaranteeed even
1729 for a freestanding C89 compiler.
1730 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
1731 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
1732
1733 2002-10-20 Akim Demaille <akim@epita.fr>
1734
1735 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
1736 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
1737 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
1738 (yyresolveStates, yyresolveAction, yyresolveStack)
1739 (yyprocessOneStack): Use them.
1740 (yy_reduce_print): New.
1741 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
1742
1743 2002-10-20 Akim Demaille <akim@epita.fr>
1744
1745 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
1746 arguments and output `void'.
1747 (b4_c_function): Rename as...
1748 (b4_c_function_def): this.
1749 (b4_c_function_decl, b4_c_ansi_function_def)
1750 (b4_c_ansi_function_decl): New.
1751 Change the interpretation of the arguments: before `int, foo', now
1752 `int foo, foo'.
1753 * data/yacc.c (yyparse): Prototype and define thanks to these.
1754 Adjust b4_c_function_def uses.
1755 * data/glr.c (yyparse): Likewise, but ANSI only.
1756
1757 2002-10-20 Akim Demaille <akim@epita.fr>
1758
1759 * src/output.c (prepare): Move the definition of `tokens_number',
1760 `nterms_number', `undef_token_number', `user_token_number_max'
1761 to...
1762 (prepare_tokens): Here.
1763 (prepare_tokens): Rename as...
1764 (prepare_symbols): this.
1765 (prepare): Move the definition of `rules_number' to...
1766 (prepare_rules): here.
1767 (prepare): Move the definition of `last', `final_state_number',
1768 `states_number' to...
1769 (prepare_states): here.
1770 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
1771
1772 2002-10-20 Akim Demaille <akim@epita.fr>
1773
1774 * src/tables.h, src/tables.c, src/output.c: Comment changes.
1775
1776 2002-10-20 Akim Demaille <akim@epita.fr>
1777
1778 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
1779 * data/c.m4: here.
1780
1781 2002-10-20 Akim Demaille <akim@epita.fr>
1782
1783 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
1784 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
1785 `pair'.
1786 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
1787 `name' to...
1788 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
1789 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
1790 These.
1791
1792 2002-10-19 Paul Eggert <eggert@twinsun.com>
1793
1794 Do not create a temporary file, as that involves security and
1795 cleanup headaches. Instead, use a pair of pipes.
1796 Derived from a suggestion by Florian Krohm.
1797 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
1798 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
1799 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
1800 (BISON_PREREQ_SUBPIPE): Add.
1801 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
1802 Add subpipe.h, subpipe.c.
1803 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
1804 * po/POTFILES.in: Add lib/subpipe.c.
1805 * src/output.c: Include "subpipe.h".
1806 (m4_invoke): Remove decl.
1807 (scan_skel): New decl.
1808 (output_skeleton): Use pipe rather than temporary file for m4 input.
1809 Check that m4sugar.m4 is readable, to avoid deadlock.
1810 Check for pipe I/O error.
1811 * src/scan-skel.l (readpipe): Remove decl.
1812 (scan_skel): New function, to be used in place of m4_invoke.
1813 Read from stream rather than file.
1814
1815 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
1816 float, as this generates a warning on Solaris 8 + GCC 3.2 with
1817 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
1818 this generates a more-accurate value anyway.
1819
1820 * lib/timevar.c (timervar_accumulate): Rename locals to
1821 avoid confusion with similarly-named more-global.
1822 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
1823
1824 * src/output.c (prepare): Use xstrdup to convert char const *
1825 to char *, to avoid GCC warning.
1826
1827 2002-10-19 Akim Demaille <akim@epita.fr>
1828
1829 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
1830 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
1831 Use them to have `calc.y' ready for %pure-parser.
1832 * data/yacc.c (YYLEX): Pass a yylex return type to
1833 b4_c_function_call.
1834
1835 2002-10-19 Akim Demaille <akim@epita.fr>
1836
1837 Prototype support of %lex-param and %parse-param.
1838
1839 * src/parse-gram.y: Add the definition of the %lex-param and
1840 %parse-param tokens, plus their rules.
1841 Drop the `_' version of %glr-parser.
1842 Add the "," token.
1843 * src/scan-gram.l (INITIAL): Scan them.
1844 * src/muscle_tab.c: Comment changes.
1845 (muscle_insert, muscle_find): Rename `pair' as `probe'.
1846 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
1847 (muscle_entry_s): The `value' member is no longer const.
1848 Adjust all dependencies.
1849 * src/muscle_tab.c (muscle_init): Adjust: use
1850 MUSCLE_INSERT_STRING.
1851 Initialize the obstack earlier.
1852 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
1853 (muscle_pair_list_grow): New.
1854 * data/c.m4 (b4_c_function_call, b4_c_args): New.
1855 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
1856 * tests/calc.at: Use %locations, not --locations.
1857 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
1858
1859 2002-10-19 Akim Demaille <akim@epita.fr>
1860
1861 * src/getargs.c (usage): Take status as argument and exit
1862 accordingly.
1863 Report the traditional `Try ... --help' message when status != 0.
1864 (usage, version): Don't take a FILE * as arg, it is pointless.
1865 (getargs): When there is an incorrect number of arguments, make it
1866 an error, and report it GNUlically thanks to `usage ()'.
1867
1868 2002-10-18 Paul Eggert <eggert@twinsun.com>
1869
1870 * data/glr.c (yyreportParseError): Don't assume that sprintf
1871 yields the length of the printed string, as this is not true
1872 on SunOS 4.1.4. Reported by Peter Klein.
1873
1874 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
1875 * tests/conflicts.at (%nonassoc and eof): Likewise.
1876 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
1877
1878 2002-10-17 Akim Demaille <akim@epita.fr>
1879
1880 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
1881 * src/getargs.c (trace_types, trace_args): Adjust.
1882 * src/reader.c (grammar_current_rule_prec_set)
1883 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
1884 Standardize error messages.
1885 And s/@prec/%prec/!
1886 (reader): Use trace_flag to enable scanner/parser debugging,
1887 instead of an adhoc scheme.
1888 * src/scan-gram.l: Remove trailing debugging code.
1889
1890 2002-10-16 Paul Eggert <eggert@twinsun.com>
1891
1892 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
1893 MUSCLE_TAB_H.
1894
1895 * NEWS: Officially drop support for building Bison with K&R C,
1896 since it didn't work anyway and it's not worth worrying about.
1897 * Makefile.maint (wget_files): Remove ansi2knr.c.
1898 (ansi2knr.c-url_prefix): Remove.
1899 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
1900 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
1901 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
1902
1903 2002-10-15 Paul Eggert <eggert@twinsun.com>
1904
1905 Stop using the "enum_" trick for K&R-style function definitions;
1906 it confused me, and I was the author! Instead, assume that people
1907 who want to use K&R C compilers (when using these modules in GCC,
1908 perhaps?) will run ansi2knr.
1909
1910 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
1911 All uses of "enum_" changed to "enum ".
1912 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
1913 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
1914
1915 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
1916 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
1917 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
1918 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
1919 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
1920 abitset_not, abitset_ones, abitset_or, abitset_or_and,
1921 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
1922 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
1923 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
1924 Use function prototypes; this removes the need for declaring
1925 static functions simply to provide their prototypes.
1926 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
1927 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
1928 bitset_count_, bitset_create, bitset_dump, bitset_first,
1929 bitset_free, bitset_init, bitset_last, bitset_next,
1930 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
1931 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
1932 bitset_print, bitset_release_memory, bitset_toggle_,
1933 bitset_type_choose, bitset_type_get, bitset_type_name_get,
1934 debug_bitset): Likewise.
1935 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
1936 * lib/bitset_stats.c (bitset_log_histogram_print,
1937 bitset_percent_histogram_print, bitset_stats_and,
1938 bitset_stats_and_cmp, bitset_stats_and_or,
1939 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
1940 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
1941 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
1942 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
1943 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
1944 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
1945 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
1946 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
1947 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
1948 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
1949 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
1950 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
1951 bitset_stats_zero): Likewise.
1952 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
1953 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
1954 bitsetv_dump, debug_bitsetv): Likewise.
1955 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
1956 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
1957 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
1958 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
1959 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
1960 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
1961 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
1962 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
1963 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
1964 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
1965 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
1966 Likewise.
1967 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
1968 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
1969 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
1970 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
1971 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
1972 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
1973 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
1974 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
1975 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
1976 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
1977 lbitset_xor_cmp, lbitset_zero): Likewise.
1978
1979 2002-10-14 Akim Demaille <akim@epita.fr>
1980
1981 Version 1.75.
1982
1983 2002-10-14 Akim Demaille <akim@epita.fr>
1984
1985 * tests/Makefile.am (maintainer-check-posix): New.
1986
1987 2002-10-14 Akim Demaille <akim@epita.fr>
1988
1989 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
1990 member.
1991
1992 2002-10-14 Akim Demaille <akim@epita.fr>
1993
1994 * src/tables.c (table_ninf_remap): base -> tab.
1995 Reported by Matt Rosing.
1996
1997 2002-10-14 Paul Eggert <eggert@twinsun.com>
1998
1999 * tests/action.at, tests/calc.at, tests/conflicts.at,
2000 tests/cxx-type.at, tests/headers.at, tests/input.at,
2001 tests/regression.at, tests/synclines.at, tests/torture.at:
2002 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
2003 so that the tests still work even if POSIXLY_CORRECT is set.
2004 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
2005
2006 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
2007 for portability to K&R hosts. Fix typo: signed char is guaranteed
2008 only to 127, not to 128.
2009 * data/glr.c (yysigned_char): New type.
2010 * data/yacc.c (yysigned_char): Likewise.
2011 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
2012
2013 2002-10-13 Paul Eggert <eggert@twinsun.com>
2014
2015 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
2016 true due to limited range of data type" warning from GCC.
2017
2018 * data/c.m4 (b4_token_defines): Protect against double-inclusion
2019 by wrapping enum yytokentype's definition inside #ifndef
2020 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
2021
2022 2002-10-13 Akim Demaille <akim@epita.fr>
2023
2024 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
2025 Un yy- yyrhs to avoid the name clash with the global YYRHS.
2026
2027 2002-10-13 Akim Demaille <akim@epita.fr>
2028
2029 * Makefile.maint: Update from Autoconf 2.54.
2030 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
2031
2032 2002-10-13 Akim Demaille <akim@epita.fr>
2033
2034 * src/print.c (print_state): Separate the list of solved conflicts
2035 from the other items.
2036 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
2037
2038 2002-10-13 Akim Demaille <akim@epita.fr>
2039
2040 Let nondeterministic skeletons be usable with deterministic
2041 tables.
2042
2043 With the patch, GAWK compiled by GCC without -O2 passes its test
2044 suite using a GLR parser driven by LALR tables. It fails with -O2
2045 because `struct stat' gives two different answers on my machine:
2046 88 (definition of an auto var) and later 96 (memset on this var).
2047 Hence the stack is badly corrumpted. The headers inclusion is to
2048 blame: if I move the awk.h inclusion before GLR's system header
2049 inclusion, the two struct stat have the same size.
2050
2051 * src/tables.c (pack_table): Always create conflict_table.
2052 (token_actions): Always create conflict_list.
2053 * data/glr.c (YYFLAG): Remove, unused.
2054
2055 2002-10-13 Akim Demaille <akim@epita.fr>
2056
2057 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
2058 (O0FLAGS): New.
2059 (VALGRIND, GXX): New.
2060 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
2061 * tests/bison.in: Run $PREBISON a pre-command.
2062 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
2063 (maintainer-check-g++): New.
2064 * Makefile.am (maintainer-check): New.
2065
2066 2002-10-13 Akim Demaille <akim@epita.fr>
2067
2068 * data/glr.c: Formatting changes.
2069 Tweak some trace messages to match yacc.c's.
2070
2071 2002-10-13 Akim Demaille <akim@epita.fr>
2072
2073 GLR parsers sometimes raise parse errors instead of performing the
2074 default reduction.
2075 Reported by Charles-Henry de Boysson.
2076
2077 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
2078 check the length of the traces when %glr.
2079 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
2080 GLR's traces.
2081 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
2082 Test GLR parsers.
2083 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
2084 (yyltype): Remove the yy prefix from the member names.
2085 (yytable): Complete its comment.
2086 (yygetLRActions): Map error action number from YYTABLE from
2087 YYTABLE_NINF to 0.
2088 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
2089 (which was a bug: it should have been YYTABEL_NINF, and yet it was
2090 not satisfying as we could compare an YYACTION computed from
2091 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
2092 only value for error actions.
2093 (yyreportParseError): In verbose parse error messages, don't issue
2094 `error' in the list of expected tokens.
2095 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
2096 next action to perform to match glr.c's decoding.
2097 (yytable): Complete its comment.
2098
2099 2002-10-13 Paul Eggert <eggert@twinsun.com>
2100
2101 Fix problem reported by Henrik Grubbstroem in
2102 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
2103 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
2104 because the Bison parser reads the second action before reducing
2105 the first one.
2106 * src/scan-gram.l (rule_length): New static var.
2107 Use it to keep track of the rule length in the scanner, since
2108 we can't expect the parser to be in lock-step sync with the scanner.
2109 (handle_action_dollar, handle_action_at): Use this var.
2110 * tests/actions.at (Exotic Dollars): Test for the problem.
2111
2112 2002-10-12 Paul Eggert <eggert@twinsun.com>
2113
2114 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
2115 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
2116 Include <sys/time.h> when checking for clock_t and struct tms.
2117 Use same include order as source.
2118 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
2119 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
2120
2121 * lib/timevar.c: Update copyright date and clarify comments.
2122 (get_time) [IN_GCC]: Keep the GCC version for reference.
2123
2124 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
2125 GCC version as of today, then merge Bison's changes.
2126 Change "GCC" to "Bison" in copyright notice. timevar.def's
2127 author is Akim, so change that too.
2128
2129 * src/reader.c (grammar_current_rule_check):
2130 Don't worry about the default action if $$ is untyped.
2131 Prevents bogus warnings reported by Jim Gifford in
2132 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
2133
2134 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
2135 * data/glr.c, data/lalr1.cc, data/yacc.c:
2136 Output token definitions before the first part of user declarations.
2137 Fixes compatibility problem reported by Jim Gifford for kbd in
2138 <http://mail.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
2139
2140 2002-10-11 Paul Eggert <eggert@twinsun.com>
2141
2142 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
2143 (yyparse): here. This undoes some of the 2002-07-25 change.
2144 Compatibility problem reported by Ralf S. Engelschall with
2145 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
2146
2147 2002-10-11 Akim Demaille <akim@epita.fr>
2148
2149 * tests/regression.at Characters Escapes): New.
2150 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
2151 characters.
2152 Reported by Jan Nieuwenhuizen.
2153
2154 2002-10-11 Akim Demaille <akim@epita.fr>
2155
2156 * po/id.po: New.
2157
2158 2002-10-10 Paul Eggert <eggert@twinsun.com>
2159
2160 Portability fixes for bitsets; this also avoids several GCC
2161 warnings.
2162
2163 * lib/abitset.c: Include <stddef.h>, for offsetof.
2164 * lib/lbitset.c: Likewise.
2165
2166 * lib/abitset.c (abitset_bytes): Return a size that is aligned
2167 properly for vectors of objects. Do not assume that adding a
2168 header size to a multiple of a word size yields a value that is
2169 properly aligned for the whole union.
2170 * lib/bitsetv.c (bitsetv_alloc): Likewise.
2171
2172 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
2173 unique names for structures.
2174 * lib/ebitset.c (ebitset_bytes): Likewise.
2175 * lib/lbitset.c (lbitset_bytes): Likewise.
2176
2177 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
2178 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
2179 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
2180 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
2181 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
2182 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
2183 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
2184 to improve the type-checking that GCC can do.
2185 * lib/bitset.c (bitset_op4_cmp): Likewise.
2186 * lib/bitset_stats.c (bitset_stats_count,
2187 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
2188 bitset_stats_copy, bitset_stats_disjoint_p,
2189 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
2190 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
2191 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
2192 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
2193 bitset_stats_and_or_cmp, bitset_stats_andn_or,
2194 bitset_stats_andn_or_cmp, bitset_stats_or_and,
2195 bitset_stats_or_and_cmp): Likewise.
2196 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
2197 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
2198 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
2199 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
2200
2201 * lib/abitset.h: Include bitset.h, not bbitset.h.
2202 * lib/ebitset.h: Likewise.
2203 * lib/lbitset.h: Likewise.
2204
2205 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
2206 All instances of parameters of type enum bitset_opts are now of
2207 type enum_bitset_opts, to conform to the C Standard, and similarly
2208 for enum_bitset_type.
2209 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
2210 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
2211
2212 Do not use "struct bitset_struct" to mean different things in
2213 different modules. Not only is this confusing, it violates
2214 the C Standard, which requires that structure types in different
2215 modules must be compatible if one is to be passed to the other.
2216 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
2217 All instances of "struct bitset_struct *" replaced with "bitset".
2218 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
2219 (union bitset_union, struct abitset_struct, struct ebitset_struct,
2220 struct lbitset_struct, struct bitset_stats_struct): New types.
2221 All uses of struct bitset_struct changed to union bitset_union,
2222 etc.
2223 * lib/abitset.c (struct abitset_struct, abitset,
2224 struct bitset_struct): Remove.
2225 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
2226 struct bitset_struct): Remove.
2227 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
2228 bitset_struct): Remove.
2229 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
2230 Likewise.
2231
2232 Do not call a function of type T using a call that assumes the
2233 function is of a different type U. Standard C requires that a
2234 function must be called with a type that is compatible with its
2235 definition.
2236 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
2237 New decls.
2238 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
2239 New functions.
2240 * lib/ebitset.c (PFV): Remove.
2241 * lib/lbitset.c (PFV): Likewise.
2242 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
2243 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
2244 decls.
2245 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
2246 (ebitset_vtable): Use them.
2247 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
2248 lbitset_xor): New functions.
2249 (lbitset_vtable): Use them.
2250
2251 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
2252 Declare.
2253
2254 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
2255 GCC warning.
2256 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
2257 Use offsetof, for simplicity.
2258
2259 2002-10-06 Paul Eggert <eggert@twinsun.com>
2260
2261 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
2262 the same width as int. This reapplies a hunk of the 2002-08-12 patch
2263 <http://mail.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
2264 which was inadvertently undone by the 2002-09-30 patch.
2265 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
2266 the same width as int.
2267
2268 2002-10-04 Paul Eggert <eggert@twinsun.com>
2269
2270 Version 1.50.
2271
2272 * configure.ac (AC_INIT), NEWS: Increment version number.
2273
2274 * doc/bison.texinfo: Minor spelling, grammar, and white space
2275 fixes.
2276 (Symbols): Mention that any negative value returned from yylex
2277 signifies end-of-input. Warn about negative chars. Mention
2278 the portable Standard C character set.
2279
2280 The GNU coding standard says CFLAGS and YFLAGS are reserved
2281 for the installer to set.
2282 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
2283 * src/Makefile.am (AM_CFLAGS): Likewise.
2284 (AM_YFLAGS): Renamed from YFLAGS.
2285
2286 Fix some MAX and MIN problems.
2287 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
2288 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
2289 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
2290 * src/reader.c (reader): Use it.
2291
2292 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
2293 POSIX 1003.1-2001 has removed fgrep.
2294
2295 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
2296
2297 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
2298 interpreted as signed.
2299 * lib/ebitset.c (ebitset_list): Fix bug.
2300
2301 2002-10-01 Paul Eggert <eggert@twinsun.com>
2302
2303 More fixes for 64-bit hosts and large bitsets.
2304
2305 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
2306 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
2307 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
2308 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
2309 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
2310 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
2311 bitset_count_): Likewise.
2312 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
2313 bitset_first, bitset_last): Likewise.
2314 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
2315 bitset_stats_list_reverse, bitset_stats_size,
2316 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
2317 Likewise.
2318 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
2319 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
2320 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
2321 bitsetv_reflexive_transitive_closure): Likewise.
2322 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
2323 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
2324 Likewise.
2325 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
2326 Likewise.
2327
2328 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
2329 Use size_t, not unsigned int, to count bytes.
2330 * lib/abitset.h (abitset_bytes): Likewise.
2331 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
2332 Likewise.
2333 * lib/bitset.h (bitset_bytes): Likewise.
2334 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
2335 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
2336 * lib/bitsetv.c (bitsetv_alloc): Likewise.
2337 * lib/ebitset.c (ebitset_bytes): Likewise.
2338 * lib/ebitset.h (ebitset_bytes): Likewise.
2339 * lib/lbitset.c (lbitset_bytes): Likewise.
2340 * lib/lbitset.h (lbitset_bytes): Likewise.
2341
2342 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
2343 abitset_subset_p, abitset_disjoint_p, abitset_and,
2344 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
2345 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
2346 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
2347 abitset_or_and, abitset_or_and_cmp):
2348 Use bitset_windex instead of unsigned int.
2349 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
2350 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
2351 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
2352 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
2353 Likewise.
2354 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
2355
2356 * lib/bitset.c (bitset_print):
2357 Use proper printf formats for widths of integer types.
2358 * lib/bitset_stats.c (bitset_percent_histogram_print,
2359 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
2360 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
2361 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
2362 * lib/lbitset.c (lbitset_bytes): Likewise.
2363
2364 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
2365 BITSET_SIZE_MAX): New macros.
2366 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
2367 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
2368 to BITSET_WINDEX_MAX.
2369
2370 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
2371 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
2372 since we now return the bitset_bindex type (not int).
2373
2374 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
2375 when computing sizes.
2376 * lib/ebitset.c (ebitset_elts_grow): Likewise.
2377
2378 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
2379 and avoid cast to unsigned.
2380
2381 2002-09-30 Akim Demaille <akim@epita.fr>
2382
2383 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
2384 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
2385 Updates from Michael Hayes.
2386
2387 2002-09-30 Art Haas <ahaas@neosoft.com>
2388
2389 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
2390 invocations.
2391 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
2392 defined.
2393
2394 2002-09-27 Akim Demaille <akim@epita.fr>
2395
2396 Version 1.49c.
2397
2398 2002-09-27 Akim Demaille <akim@epita.fr>
2399
2400 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
2401 (Because of AC_LIBSOURCE).
2402
2403 2002-09-27 Akim Demaille <akim@epita.fr>
2404
2405 Playing with Autoscan.
2406
2407 * configure.ac: Remove the old LIBOBJ tweaks.
2408 (AC_REPLACE_FUNCS): Add strrchr and strtol.
2409 * lib/strrchr.c: New.
2410 * lib/strtol.c: New, from the Coreutils 4.5.1.
2411
2412 2002-09-27 Akim Demaille <akim@epita.fr>
2413
2414 Playing with Autoscan.
2415
2416 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
2417 * lib/Makefile.am (libbison_a_SOURCES): No longer include
2418 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
2419 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
2420 Coreutils 4.5.1.
2421
2422 2002-09-24 Akim Demaille <akim@epita.fr>
2423
2424 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
2425 (Frequently Asked Questions, Parser Stack Overflow): New.
2426
2427 2002-09-13 Akim Demaille <akim@epita.fr>
2428
2429 Playing with autoscan.
2430
2431 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
2432 * src/files.c (skeleton_find): Remove, unused.
2433 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
2434 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
2435
2436 2002-09-13 Akim Demaille <akim@epita.fr>
2437
2438 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
2439 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
2440
2441 2002-09-13 Akim Demaille <akim@epita.fr>
2442
2443 * configure.ac: Require 2.54.
2444 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
2445 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
2446 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
2447 Remove, provided by Autoconf macros.
2448
2449 2002-09-12 Akim Demaille <akim@epita.fr>
2450
2451 * m4/prereq.m4: Update, from Coreutils 4.5.1.
2452
2453 2002-09-12 Akim Demaille <akim@epita.fr>
2454
2455 * m4/prereq.m4: Update, from Fileutils 4.1.5.
2456 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
2457 Reported by Martin Mokrejs.
2458
2459 2002-09-10 Akim Demaille <akim@epita.fr>
2460
2461 * src/parse-gram.y: Associate a human readable string to each
2462 token type.
2463 * tests/regression.at (Invalid inputs): Adjust.
2464
2465 2002-09-10 Gary V. Vaughan <gary@gnu.org>
2466
2467 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
2468 with an Autoconf-2.5x style configure.ac.
2469
2470 2002-09-06 Paul Eggert <eggert@twinsun.com>
2471
2472 * doc/bison.texinfo (Conditions): Make explicit that the GPL
2473 exception applies only to yacc.c. This is a modification of a
2474 patch originally suggested by Akim Demaille.
2475
2476 2002-09-06 Akim Demaille <akim@epita.fr>
2477
2478 * data/c.m4 (b4_copyright): Move the GPL exception comment from
2479 here to...
2480 * data/yacc.c: here.
2481
2482 * data/lalr1.cc (struct yyltype): Don't define it, since we use
2483 LocationType.
2484 (b4_ltype): Default to yy::Location from location.hh.
2485
2486 2002-09-04 Jim Meyering <jim@meyering.net>
2487
2488 * data/yacc.c: Guard the declaration of yytoknum also with
2489 `#ifdef YYPRINT', so it is declared only when used.
2490
2491 2002-09-04 Akim Demaille <akim@epita.fr>
2492
2493 * configure.in: Rename as...
2494 * configure.ac: this.
2495 Bump to 1.49c.
2496
2497 2002-09-04 Akim Demaille <akim@epita.fr>
2498
2499 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
2500 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
2501 translate maintainer only messages.
2502
2503 2002-08-12 Paul Eggert <eggert@twinsun.com>
2504
2505 Version 1.49b.
2506
2507 * Makefile.am (SUBDIRS): Remove intl.
2508 (DISTCLEANFILES): Remove.
2509 * NEWS: Mention that GNU M4 is now required. Clarify what is
2510 meant by "larger grammars". Mention the pt_BR translation.
2511 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
2512 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
2513 Bump version from 0.11.2 to 0.11.5.
2514 (BISON_PREREQ_STAGE): Remove.
2515 (AM_GNU_GETTEXT): Use external gettext.
2516 (AC_OUTPUT): Remove intl/Makefile.
2517
2518 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
2519
2520 * data/glr.c: Include string.h, for strlen.
2521 (yyreportParseError): Use size_t for yysize.
2522 (yy_yypstack): No longer nested inside yypstates, as nested
2523 functions are not portable. Do not assume size_t is the
2524 same width as int.
2525 (yypstates): Do not assume that ptrdiff_t is the same width
2526 as int, and similarly for yyposn and YYINDEX.
2527
2528 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
2529
2530 * lib/Makefile.am (INCLUDES): Do not include from the intl
2531 directory, which has been removed.
2532 * src/Makefile.am (INCLUDES): Likewise.
2533
2534 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
2535 (bitsets_sources, additional_bitsets_sources, timevars_sources):
2536 New vars.
2537
2538 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
2539 * tests/Makefile.am (EXTRA_DIST): Likewise.
2540
2541 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
2542 Do not assume that bitset_windex is the same width as unsigned.
2543
2544 * lib/abitset.c (abitset_unused_clear): Do not assume that
2545 bitset_word is the same width as int.
2546 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
2547 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
2548 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
2549 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
2550 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
2551
2552 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
2553 portability to one's complement hosts!).
2554 * lib/ebitset.c (ebitset_op1): Likewise.
2555 * lib/lbitset.c (lbitset_op1): Likewise.
2556
2557 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
2558 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
2559 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
2560 Sync with fileutils.
2561 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
2562 lib/gettext.h: Sync with diffutils.
2563
2564 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
2565 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
2566
2567 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
2568 PROTOTYPES to check for prototypes, and "defined __STDC__" to
2569 check for void *.
2570
2571 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
2572 size_t; the old version tried to do this but casted improperly.
2573 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
2574 (bitset_test): Now returns int, not unsigned long.
2575
2576 * lib/bitset_stats.c: Include "gettext.h".
2577 (_): New macro.
2578 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
2579 name locals "index", as it generates unnecessary warnings on some
2580 hosts that have an "index" function.
2581
2582 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
2583 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
2584 they need translation.
2585 * src/LR0.c (state_list_append, new_itemsets, get_state,
2586 append_states, generate_states): Likewise.
2587 * src/assoc.c (assoc_to_string): Likewise.
2588 * src/closure.c (print_closure, set_firsts, closure): Likewise.
2589 * src/gram.c (grammar_dump): Likewise.
2590 * src/injections.c (injections_compute): Likewise.
2591 * src/lalr.c (lookaheads_print): Likewise.
2592 * src/relation.c (relation_transpose): Likewise.
2593 * src/scan-gram.l: Likewise.
2594 * src/tables.c (table_grow, pack_vector): Likewise.
2595
2596 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
2597 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
2598 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
2599 * m4/mbstate_t.m4: Sync with fileutils.
2600 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
2601
2602 * po/LINGUAS: Add pt_BR.
2603 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
2604 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
2605 lib/timevar.c.
2606 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
2607 manual recommends.
2608 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
2609
2610 * src/complain.c (strerror_r): Remove decl; not needed.
2611 (strerror): Use same pattern as ../lib/error.c.
2612
2613 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
2614
2615 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
2616
2617 * src/main.c (main): Cast result of bindtextdomain and textdomain
2618 to void, to avoid a GCC warning when --disable-nls is in effect.
2619
2620 * src/scan-gram.l: Use strings rather than escapes when possible,
2621 to minimize the number of warnings from xgettext.
2622 (handle_action_dollar, handle_action_at): Don't use isdigit,
2623 as it mishandles negative chars and it may not work as expected
2624 outside the C locale.
2625
2626 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
2627 this is a GCC extension and is not portable to other compilers.
2628
2629 * src/system.h (alloca): Use same pattern as ../lib/error.c.
2630 Do not include <ctype.h>; no longer needed.
2631 Do not include <malloc.h>; no longer needed (and generates
2632 warnings on OpenBSD 3.0).
2633
2634 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
2635 it's not portable.
2636
2637 * tests/regression.at: Do not use 'cc -c input.c -o input';
2638 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
2639
2640 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
2641 exit status as failure, not just exit status 1. Sun C exits
2642 with status 2 sometimes.
2643
2644 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
2645 Use it for the two large tests.
2646
2647 2002-08-02 Akim Demaille <akim@epita.fr>
2648
2649 * src/conflicts.c (conflicts_output): Don't output rules never
2650 reduced here, since anyway that computation doesn't work.
2651 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
2652 (rule_useless_p, rule_never_reduced_p): New.
2653 (grammar_rules_partial_print): Use a filter instead of a range.
2654 Display the title only if needed.
2655 (grammar_rules_print): Adjust.
2656 (grammar_rules_never_reduced_report): New.
2657 * src/tables.c (action_row): Move the computation of rules never
2658 reduced to...
2659 (token_actions): here.
2660 * src/main.c (main): Make the parser before making the report, so
2661 that rules never reduced are computed.
2662 Call grammar_rules_never_reduced_report.
2663 * src/print.c (print_results): Report rules never reduced.
2664 * tests/conflicts.at, tests/reduce.at: Adjust.
2665
2666 2002-08-01 Akim Demaille <akim@epita.fr>
2667
2668 Instead of attaching lookaheads and duplicating the rules being
2669 reduced by a state, attach the lookaheads to the reductions.
2670
2671 * src/state.h (state_t): Remove the `lookaheads',
2672 `lookaheads_rule' member.
2673 (reductions_t): Add a `lookaheads' member.
2674 Use a regular array for the `rules'.
2675 * src/state.c (reductions_new): Initialize the lookaheads member
2676 to 0.
2677 (state_rule_lookaheads_print): Adjust.
2678 * src/state.h, src/state.c (state_reductions_find): New.
2679 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
2680 (count_rr_conflicts): Adjust.
2681 * src/lalr.c (LArule): Remove.
2682 (add_lookback_edge): Adjust.
2683 (state_lookaheads_count): New.
2684 (states_lookaheads_initialize): Merge into...
2685 (initialize_LA): this.
2686 (lalr_free): Adjust.
2687 * src/main.c (main): Don't free nullable and derives too early: it
2688 is used by --verbose.
2689 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
2690
2691 2002-08-01 Akim Demaille <akim@epita.fr>
2692
2693 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
2694 `rule_number_t**'.
2695 (set_derives, free_derives): Rename as...
2696 (derives_compute, derives_free): this.
2697 Adjust all dependencies.
2698 * src/nullable.c (set_nullable, free_nullable): Rename as...
2699 (nullable_compute, nullable_free): these.
2700 (rule_list_t): Store rule_t *, not rule_number_t.
2701 * src/state.c (state_rule_lookaheads_print): Directly compare rule
2702 pointers, instead of their numbers.
2703 * src/main.c (main): Call nullable_free, and derives_free earlier,
2704 as they were lo longer used.
2705
2706 2002-08-01 Akim Demaille <akim@epita.fr>
2707
2708 * lib/timevar.c (get_time): Include children time.
2709 * src/lalr.h (LA, LArule): Don't export them: used with the
2710 state_t.
2711 * src/lalr.c (LA, LArule): Static.
2712 * src/lalr.h, src/lalr.c (lalr_free): New.
2713 * src/main.c (main): Call it.
2714 * src/tables.c (pack_vector): Check whether loc is >= to the
2715 table_size, not >.
2716 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
2717 (tables_generate): do it, since that's also it which allocates
2718 them.
2719 Don't free LA and LArule, main does.
2720
2721 2002-07-31 Akim Demaille <akim@epita.fr>
2722
2723 Separate parser tables computation and output.
2724
2725 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
2726 (conflict_list, conflict_list_cnt, table, check, table_ninf)
2727 (yydefgoto, yydefact, high): Move to...
2728 * src/tables.h, src/tables.c: here.
2729 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
2730 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
2731 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
2732 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
2733 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
2734 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
2735 (action_row, save_row, token_actions, save_column, default_goto)
2736 (goto_actions, sort_actions, matching_state, pack_vector)
2737 (table_ninf_remap, pack_table, prepare_actions): Move to...
2738 * src/tables.c: here.
2739 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
2740 * src/output.c (token_actions, output_base, output_conflicts)
2741 (output_check): Merge into...
2742 (prepare_actions): this.
2743 (actions_output): Rename as...
2744 (user_actions_output): this.
2745 * src/main.c (main): Call tables_generate and tables_free.
2746
2747 2002-07-31 Akim Demaille <akim@epita.fr>
2748
2749 Steal GCC's --time-report support.
2750
2751 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
2752 stolen/adjusted from GCC.
2753 * m4/stage.m4: Remove time related checks.
2754 * m4/timevar.m4: New.
2755 * configure.in: Adjust.
2756 * src/system.h: Adjust to using timevar.h.
2757 * src/getargs.h, src/getargs.c: Support trace_time for
2758 --trace=time.
2759 * src/main.c (stage): Remove.
2760 (main): Replace `stage' invocations with timevar calls.
2761 * src/output.c: Insert pertinent timevar calls.
2762
2763 2002-07-31 Akim Demaille <akim@epita.fr>
2764
2765 Let --trace have arguments.
2766
2767 * src/getargs.h (enum trace_e): New.
2768 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
2769 (long_options, short_options): --trace/-T takes an optional
2770 argument.
2771 Change all the uses of trace_flag to reflect the new flags.
2772 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
2773
2774 Strengthen `stage' portability.
2775
2776 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
2777 * configure.in: Use it.
2778 Don't check for malloc.h and sys/times.h.
2779 * src/system.h: Include them when appropriate.
2780 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
2781 times and struct tms are available.
2782
2783 2002-07-30 Akim Demaille <akim@epita.fr>
2784
2785 In verbose parse error message, don't report `error' as an
2786 expected token.
2787 * tests/actions.at (Printers and Destructors): Adjust.
2788 * tests/calc.at (Calculator $1): Adjust.
2789 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
2790 error message, do not report the parser accepts the error token in
2791 that state.
2792
2793 2002-07-30 Akim Demaille <akim@epita.fr>
2794
2795 Normalize conflict related messages.
2796
2797 * src/complain.h, src/complain.c (warn, complain): New.
2798 * src/conflicts.c (conflicts_print): Use them.
2799 (conflict_report_yacc): New, extracted from...
2800 (conflicts_print): here.
2801 * tests/conflicts.at, tests/existing.at: Adjust.
2802
2803 2002-07-30 Akim Demaille <akim@epita.fr>
2804
2805 Report rules which are never reduced by the parser: those hidden
2806 by conflicts.
2807
2808 * src/LR0.c (save_reductions): Don't make the final state too
2809 different: save its reduction (accept) instead of having a state
2810 without any action (no shift or goto, no reduce).
2811 Note: the final state is now a ``regular'' state, i.e., the
2812 parsers now contain `reduce 0' as default reduction.
2813 Nevertheless, since they decide to `accept' when yystate =
2814 final_state, they still will not reduce rule 0.
2815 * src/print.c (print_actions, print_reduction): Adjust.
2816 * src/output.c (action_row): Track reduced rules.
2817 (token_actions): Report rules never reduced.
2818 * tests/conflicts.at, tests/regression.at: Adjust.
2819
2820 2002-07-30 Akim Demaille <akim@epita.fr>
2821
2822 `stage' was accidently included in a previous patch.
2823 Initiate its autoconfiscation.
2824
2825 * configure.in: Look for malloc.h and sys/times.h.
2826 * src/main.c (stage): Adjust.
2827 Report only when trace_flag.
2828
2829 2002-07-29 Akim Demaille <akim@epita.fr>
2830
2831 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
2832 state_number_t.
2833 (errs_t): symbol_t*, not symbol_number_t.
2834 (reductions_t): rule_t*, not rule_number_t.
2835 (FOR_EACH_SHIFT): New.
2836 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
2837 * src/print.c, src/print_graph.c: Adjust.
2838
2839 2002-07-29 Akim Demaille <akim@epita.fr>
2840
2841 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
2842
2843 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
2844 (endtoken, accept): these.
2845 * src/reader.c (reader): Set endtoken's default tag to "$end".
2846 Set undeftoken's tag to "$undefined" instead of "$undefined.".
2847 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
2848 Adjust.
2849
2850 2002-07-29 Akim Demaille <akim@epita.fr>
2851
2852 * src/reduce.c (reduce_grammar): When the language is empty,
2853 complain about the start symbol, not the axiom.
2854 Use its location.
2855 * tests/reduce.at (Empty Language): New.
2856
2857 2002-07-26 Akim Demaille <akim@epita.fr>
2858
2859 * src/reader.h, src/reader.c (gram_error): ... can't get
2860 yycontrol without making too strong assumptions on the parser
2861 itself.
2862 * src/output.c (prepare_tokens): Use the real 0th value of
2863 token_translations instead of `0'.
2864 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
2865 visible here.
2866 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
2867 for the time being: %locations ought to provide it to yyerror.
2868
2869 2002-07-25 Akim Demaille <akim@epita.fr>
2870
2871 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
2872 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
2873 * tests/regression.at (Web2c Actions): Adjust.
2874
2875 2002-07-25 Akim Demaille <akim@epita.fr>
2876
2877 Stop storing rules from 1 to nrules + 1.
2878
2879 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
2880 * src/nullable.c, src/output.c, src/print.c, src/reader.c
2881 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
2882 Iterate from 0 to nrules.
2883 Use rule_number_as_item_number and item_number_as_rule_number.
2884 Adjust to `derive' now containing possibly 0.
2885 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
2886 Handle the `- 1' part in rule numbers from/to item numbers.
2887 * src/conflicts.c (log_resolution): Fix the message which reversed
2888 shift and reduce.
2889 * src/output.c (action_row): Initialize default_rule to -1.
2890 (token_actions): Adjust.
2891 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
2892 expected output.
2893 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
2894
2895 2002-07-25 Akim Demaille <akim@epita.fr>
2896
2897 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
2898 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
2899 (b4_c_knr_arg_decl): New.
2900 * data/yacc.c: Use it to define yysymprint, yydestruct, and
2901 yyreport_parse_error.
2902
2903 2002-07-25 Akim Demaille <akim@epita.fr>
2904
2905 * data/yacc.c (yyreport_parse_error): New, extracted from...
2906 (yyparse): here.
2907 (yydestruct, yysymprint): Move above yyparse.
2908 Be K&R compliant.
2909
2910 2002-07-25 Akim Demaille <akim@epita.fr>
2911
2912 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
2913 replace...
2914 (b4_sint_type, b4_uint_type): these.
2915 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
2916 * tests/regression.at (Web2c Actions): Adjust.
2917
2918 2002-07-25 Akim Demaille <akim@epita.fr>
2919
2920 * src/gram.h (TIEM_NUMBER_MAX): New.
2921 (item_number_of_rule_number, rule_number_of_item_number): Rename
2922 as...
2923 (rule_number_as_item_number, item_number_as_rule_number): these.
2924 Adjust dependencies.
2925 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
2926 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
2927 (symbol_number_to_vector_number): New.
2928 (order): Of vector_number_t* type.
2929 (base_t, BASE_MAX, BASE_MIN): New.
2930 (froms, tos, width, pos, check): Of base_t type.
2931 (action_number_t, ACTION_MIN, ACTION_MAX): New.
2932 (actrow): Of action_number_t type.
2933 (conflrow): Of unsigned int type.
2934 (table_ninf, base_ninf): New.
2935 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
2936 (muscle_insert_int_table, muscle_insert_base_table)
2937 (muscle_insert_rule_number_table): New.
2938 (prepare_tokens): Output `toknum' as int_table.
2939 (action_row): Returns a rule_number_t.
2940 Use ACTION_MIN, not SHRT_MIN.
2941 (token_actions): yydefact is rule_number_t*.
2942 (table_ninf_remap): New.
2943 (pack_table): Use it for `base' and `table'.
2944 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
2945 replaced with...
2946 (YYPACT_NINF, YYTABLE_NINF): these.
2947 (yypact, yytable): Compute their types instead of hard-coded
2948 `short'.
2949 * tests/regression.at (Web2c Actions): Adjust.
2950
2951 2002-07-19 Akim Demaille <akim@epita.fr>
2952
2953 * src/scan-gram.l (id): Can start with an underscore.
2954
2955 2002-07-16 Akim Demaille <akim@epita.fr>
2956
2957 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
2958 Adjust all former `associativity' dependencies.
2959 * src/symtab.c (symbol_new): Default associativity is `undef', not
2960 `right'.
2961 (symbol_check_alias_consistence): Adjust.
2962
2963 2002-07-09 Akim Demaille <akim@epita.fr>
2964
2965 * doc/bison.texinfo: Properly set the ``header'' part.
2966 Use @dircategory ``GNU programming tools'' as per Texinfo's
2967 documentation.
2968 Use @copying.
2969
2970 2002-07-09 Akim Demaille <akim@epita.fr>
2971
2972 * lib/quotearg.h: Protect against multiple inclusions.
2973 * src/location.h (location_t): Add a `file' member.
2974 (LOCATION_RESET, LOCATION_PRINT): Adjust.
2975 * src/complain.c (warn_at, complain_at, fatal_at): Drop
2976 `error_one_per_line' support.
2977
2978 2002-07-09 Akim Demaille <akim@epita.fr>
2979
2980 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
2981 * src/reader.c (lineno): Remove.
2982 Adjust all dependencies.
2983 (get_merge_function): Take a location and use complain_at.
2984 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
2985 * tests/regression.at (Invalid inputs, Mixing %token styles):
2986 Adjust.
2987
2988 2002-07-09 Akim Demaille <akim@epita.fr>
2989
2990 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
2991 recovery rule, and forbid extensions when --yacc.
2992 (gram_error): Use complain_at.
2993 * src/reader.c (reader): Exit if there were parse errors.
2994
2995 2002-07-09 Akim Demaille <akim@epita.fr>
2996
2997 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
2998 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
2999 Reported by R Blake <blakers@mac.com>.
3000
3001 2002-07-09 Akim Demaille <akim@epita.fr>
3002
3003 * data/yacc.c: Output the copyright notive in the header.
3004
3005 2002-07-03 Akim Demaille <akim@epita.fr>
3006
3007 * src/output.c (froms, tos): Are state_number_t.
3008 (save_column): sp, sp1, and sp2 are state_number_t.
3009 (prepare): Rename `final' as `final_state_number', `nnts' as
3010 `nterms_number', `nrules' as `rules_number', `nstates' as
3011 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
3012 unused.
3013 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
3014 * data/lalr1.cc (nsym_): Remove, unused.
3015
3016 2002-07-03 Akim Demaille <akim@epita.fr>
3017
3018 * src/lalr.h, src/lalr.c (goto_number_t): New.
3019 * src/lalr.c (goto_list_t): New.
3020 Propagate them.
3021 * src/nullable.c (rule_list_t): New.
3022 Propagate.
3023 * src/types.h: Remove.
3024
3025 2002-07-03 Akim Demaille <akim@epita.fr>
3026
3027 * src/closure.c (print_fderives): Use rule_rhs_print.
3028 * src/derives.c (print_derives): Use rule_rhs_print.
3029 (rule_list_t): New, replaces `shorts'.
3030 (set_derives): Add comments.
3031 * tests/sets.at (Nullable, Firsts): Adjust.
3032
3033 2002-07-03 Akim Demaille <akim@epita.fr>
3034
3035 * src/output.c (prepare_actions): Free `tally' and `width'.
3036 (prepare_actions): Allocate and free `order'.
3037 * src/symtab.c (symbols_free): Free `symbols'.
3038 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
3039 * src/output.c (m4_invoke): Move to...
3040 * src/scan-skel.l: here.
3041 (<<EOF>>): Close yyout, and free its name.
3042
3043 2002-07-03 Akim Demaille <akim@epita.fr>
3044
3045 Fix some memory leaks, and fix a bug: state 0 was examined twice.
3046
3047 * src/LR0.c (new_state): Merge into...
3048 (state_list_append): this.
3049 (new_states): Merge into...
3050 (generate_states): here.
3051 (set_states): Don't ensure a proper `errs' state member here, do it...
3052 * src/conflicts.c (conflicts_solve): here.
3053 * src/state.h, src/state.c: Comment changes.
3054 (state_t): Rename member `shifts' as `transitions'.
3055 Adjust all dependencies.
3056 (errs_new): For consistency, also take the values as argument.
3057 (errs_dup): Remove.
3058 (state_errs_set): New.
3059 (state_reductions_set, state_transitions_set): Assert that no
3060 previous value was assigned.
3061 (state_free): New.
3062 (states_free): Use it.
3063 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
3064 temporary storage: use `errs' and `nerrs' as elsewhere.
3065 (set_conflicts): Allocate and free this `errs'.
3066
3067 2002-07-02 Akim Demaille <akim@epita.fr>
3068
3069 * lib/libiberty.h: New.
3070 * lib: Update the bitset implementation from upstream.
3071 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
3072 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
3073 * src/main.c: Adjust bitset stats calls.
3074
3075 2002-07-01 Paul Eggert <eggert@twinsun.com>
3076
3077 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
3078 char, so that negative chars don't collide with $.
3079
3080 2002-06-30 Akim Demaille <akim@epita.fr>
3081
3082 Have the GLR tests be `warning' checked, and fix the warnings.
3083
3084 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
3085 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
3086 (yyremoveDeletes): `yyi' and `yyj' are size_t.
3087 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
3088 (yyaddDeferredAction): static.
3089 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
3090 (yyreportParseError): yyprefix is const.
3091 yytokenp is used only when verbose.
3092 (yy__GNUC__): Replace with __GNUC__.
3093 (yypdumpstack): yyi is size_t.
3094 (yypreference): Un-yy local variables and arguments, to avoid
3095 clashes with `yyr1'. Anyway, we are not in the user name space.
3096 (yytname_size): be an int, as is compared with ints.
3097 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
3098 Use them.
3099 * tests/cxx-gram.at: Use quotation to protect $1.
3100 Use AT_COMPILE to enable warnings hunts.
3101 Prototype yylex and yyerror.
3102 `Use' argc.
3103 Include `string.h', not `strings.h'.
3104 Produce and prototype stmtMerge only when used.
3105 yylex takes a location.
3106
3107 2002-06-30 Akim Demaille <akim@epita.fr>
3108
3109 We spend a lot of time in quotearg, in particular when --verbose.
3110
3111 * src/symtab.c (symbol_get): Store a quoted version of the key.
3112 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
3113 Adjust all callers.
3114
3115 2002-06-30 Akim Demaille <akim@epita.fr>
3116
3117 * src/state.h (reductions_t): Rename member `nreds' as num.
3118 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
3119 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
3120
3121 2002-06-30 Akim Demaille <akim@epita.fr>
3122
3123 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
3124 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
3125 (shifts_to): Rename as...
3126 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
3127 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
3128 (TRANSITION_IS_DISABLED, transitions_to): these.
3129
3130 2002-06-30 Akim Demaille <akim@epita.fr>
3131
3132 * src/print.c (print_shifts, print_gotos): Merge into...
3133 (print_transitions): this.
3134 (print_transitions, print_errs, print_reductions): Align the
3135 lookaheads columns.
3136 (print_core, print_transitions, print_errs, print_state,
3137 print_grammar): Output empty lines separator before, not after.
3138 (state_default_rule_compute): Rename as...
3139 (state_default_rule): this.
3140 * tests/conflicts.at (Defaulted Conflicted Reduction),
3141 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
3142 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
3143
3144 2002-06-30 Akim Demaille <akim@epita.fr>
3145
3146 Display items as we display rules.
3147
3148 * src/gram.h, src/gram.c (rule_lhs_print): New.
3149 * src/gram.c (grammar_rules_partial_print): Use it.
3150 * src/print.c (print_core): Likewise.
3151 * tests/conflicts.at (Defaulted Conflicted Reduction),
3152 (Unresolved SR Conflicts): Adjust.
3153 (Unresolved SR Conflicts): Adjust and rename as...
3154 (Resolved SR Conflicts): this, as was meant.
3155 * tests/regression.at (Web2c Report): Adjust.
3156
3157 2002-06-30 Akim Demaille <akim@epita.fr>
3158
3159 * src/print.c (state_default_rule_compute): New, extracted from...
3160 (print_reductions): here.
3161 Pessimize, but clarify the code.
3162 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
3163
3164 2002-06-30 Akim Demaille <akim@epita.fr>
3165
3166 * src/output.c (action_row): Let default_rule be always a rule
3167 number.
3168
3169 2002-06-30 Akim Demaille <akim@epita.fr>
3170
3171 * src/closure.c (print_firsts, print_fderives, closure):
3172 Use BITSET_EXECUTE.
3173 * src/lalr.c (lookaheads_print): Likewise.
3174 * src/state.c (state_rule_lookaheads_print): Likewise.
3175 * src/print_graph.c (print_core): Likewise.
3176 * src/print.c (print_reductions): Likewise.
3177 * src/output.c (action_row): Likewise.
3178 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
3179
3180 2002-06-30 Akim Demaille <akim@epita.fr>
3181
3182 * src/print_graph.c: Use report_flag.
3183
3184 2002-06-30 Akim Demaille <akim@epita.fr>
3185
3186 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
3187 to...
3188 * src/relation.h, src/relation.c (traverse, relation_digraph)
3189 (relation_print, relation_transpose): New.
3190
3191 2002-06-30 Akim Demaille <akim@epita.fr>
3192
3193 * src/state.h, src/state.c (shifts_to): New.
3194 * src/lalr.c (build_relations): Use it.
3195
3196 2002-06-30 Akim Demaille <akim@epita.fr>
3197
3198 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
3199 (item_number_of_rule_number, rule_number_of_item_number): New.
3200 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
3201 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
3202 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
3203 Propagate their use.
3204 Much remains to be done, in particular wrt `shorts' from types.h.
3205
3206 2002-06-30 Akim Demaille <akim@epita.fr>
3207
3208 * src/symtab.c (symbol_new): Initialize the `printer' member.
3209
3210 2002-06-30 Akim Demaille <akim@epita.fr>
3211
3212 * src/LR0.c (save_reductions): Remove, replaced by...
3213 * src/state.h, src/state.c (state_reductions_set): New.
3214 (reductions, errs): Rename as...
3215 (reductions_t, errs_t): these.
3216 Adjust all dependencies.
3217
3218 2002-06-30 Akim Demaille <akim@epita.fr>
3219
3220 * src/LR0.c (state_list_t, state_list_append): New.
3221 (first_state, last_state): Now symbol_list_t.
3222 (this_state): Remove.
3223 (new_itemsets, append_states, save_reductions): Take a state_t as
3224 argument.
3225 (set_states, generate_states): Adjust.
3226 (save_shifts): Remove, replaced by...
3227 * src/state.h, src/state.c (state_shifts_set): New.
3228 (shifts): Rename as...
3229 (shifts_t): this.
3230 Adjust all dependencies.
3231 * src/state.h (state_t): Remove the `next' member.
3232
3233 2002-06-30 Akim Demaille <akim@epita.fr>
3234
3235 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
3236 escaped in slot 0.
3237
3238 2002-06-30 Akim Demaille <akim@epita.fr>
3239
3240 Use hash.h for the state hash table.
3241
3242 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
3243 (allocate_storage): Use state_hash_new.
3244 (free_storage): Use state_hash_free.
3245 (new_state, get_state): Adjust.
3246 * src/lalr.h, src/lalr.c (states): Move to...
3247 * src/states.h (state_t): Remove the `link' member, no longer
3248 used.
3249 * src/states.h, src/states.c: here.
3250 (state_hash_new, state_hash_free, state_hash_lookup)
3251 (state_hash_insert, states_free): New.
3252 * src/states.c (state_table, state_compare, state_hash): New.
3253 * src/output.c (output_actions): Do not free states now, since we
3254 still need to know the final_state number in `prepare', called
3255 afterwards. Do it...
3256 * src/main.c (main): here: call states_free after `output'.
3257
3258 2002-06-30 Akim Demaille <akim@epita.fr>
3259
3260 * src/state.h, src/state.c (state_new): New, extracted from...
3261 * src/LR0.c (new_state): here.
3262 * src/state.h (STATE_ALLOC): Move to...
3263 * src/state.c: here.
3264 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
3265 * src/state.h, src/state.c: here.
3266
3267 2002-06-30 Akim Demaille <akim@epita.fr>
3268
3269 * src/reader.c (gensym): Rename as...
3270 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
3271 (getsym): Rename as...
3272 (symbol_get): this.
3273
3274 2002-06-30 Akim Demaille <akim@epita.fr>
3275
3276 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
3277 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
3278 * src/output.c, src/print.c, src/print_graph.c: Propagate.
3279 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
3280
3281 2002-06-30 Akim Demaille <akim@epita.fr>
3282
3283 Make the test suite pass with warnings checked.
3284
3285 * tests/actions.at (Printers and Destructors): Improve.
3286 Avoid unsigned vs. signed issues.
3287 * tests/calc.at: Don't exercise the scanner here, do it...
3288 * tests/input.at (Torturing the Scanner): here.
3289
3290 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3291
3292 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
3293 reorganize first lines parallel to yacc.c.
3294
3295 2002-06-28 Akim Demaille <akim@epita.fr>
3296
3297 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
3298 (b4_token_enum, b4_token_defines): New, factored from...
3299 * data/lalr1.cc, data/yacc.c, glr.c: here.
3300
3301 2002-06-28 Akim Demaille <akim@epita.fr>
3302
3303 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
3304 unused variables.
3305 * src/output.c (merger_output): static.
3306
3307 2002-06-28 Akim Demaille <akim@epita.fr>
3308
3309 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
3310 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
3311 pacify GCC.
3312 * src/output.c (save_row): Initialize all the variables to pacify GCC.
3313
3314 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3315
3316 Accumulated changelog for new GLR parsing features.
3317
3318 * src/conflicts.c (count_total_conflicts): Change name to
3319 conflicts_total_count.
3320 * src/conflicts.h: Ditto.
3321 * src/output.c (token_actions): Use the new name.
3322 (output_conflicts): Change conflp => conflict_list_heads, and
3323 confl => conflict_list for better readability.
3324 * data/glr.c: Use the new names.
3325 * NEWS: Add self to GLR announcement.
3326
3327 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
3328
3329 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
3330 Akim Demaille.
3331
3332 * data/bison.glr: Change name to glr.c
3333 * data/glr.c: Renamed from bison.glr.
3334 * data/Makefile.am: Add glr.c
3335
3336 * src/getargs.c:
3337
3338 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
3339 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
3340
3341 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3342
3343 * data/bison.glr: Be sure to restore the
3344 current #line when returning to the skeleton contents after having
3345 exposed the input file's #line.
3346
3347 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3348
3349 * data/bison.glr: Bring up to date with changes to bison.simple.
3350
3351 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3352
3353 * data/bison.glr: Correct definitions that use b4_prefix.
3354 Various reformatting.
3355 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
3356 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
3357 yytokenp argument; now part of stack.
3358 (yychar): Define to behave as documented.
3359 (yyclearin): Ditto.
3360
3361 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3362
3363 * src/reader.h: Add declaration for free_merger_functions.
3364
3365 * src/reader.c (merge_functions): New variable.
3366 (get_merge_function): New function.
3367 (free_merger_functions): New function.
3368 (readgram): Check for %prec that is not followed by a symbol.
3369 Handle %dprec and %merge declarations.
3370 (packgram): Initialize dprec and merger fields in rules array.
3371
3372 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
3373 conflict_list_cnt, conflict_list_free): New variables.
3374 (table_grow): Also grow conflict_table.
3375 (prepare_rules): Output dprec and merger tables.
3376 (conflict_row): New function.
3377 (action_row): Output conflict lists for GLR parser. Don't use
3378 default reduction in conflicted states for GLR parser so that there
3379 are spaces for the conflict lists.
3380 (save_row): Also save conflict information.
3381 (token_actions): Allocate conflict list.
3382 (merger_output): New function.
3383 (pack_vector): Pack conflict table, too.
3384 (output_conflicts): New function to output yyconflp and yyconfl.
3385 (output_check): Allocate conflict_tos.
3386 (output_actions): Output conflict tables, also.
3387 (output_skeleton): Output b4_mergers definition.
3388 (prepare): Output b4_max_rhs_length definition.
3389 Use 'bison.glr' as default skeleton for GLR parsers.
3390
3391 * src/gram.c (glr_parser): New flag.
3392 (grammar_free): Call free_merger_functions.
3393
3394 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
3395 all pairs of conflicting reductions, rather than just all tokens
3396 causing conflicts. Needed to size conflict tables.
3397 (conflicts_output): Modify call to count_rr_conflicts for new
3398 interface.
3399 (conflicts_print): Ditto.
3400 (count_total_conflicts): New function.
3401
3402 * src/reader.h (merger_list): New type.
3403 (merge_functions): New variable.
3404
3405 * src/lex.h (tok_dprec, tok_merge): New token types.
3406
3407 * src/gram.h (rule_s): Add dprec and merger fields.
3408 (glr_parser): New flag.
3409
3410 * src/conflicts.h (count_total_conflicts): New function.
3411
3412 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
3413
3414 * doc/bison.texinfo (Generalized LR Parsing): New section.
3415 (GLR Parsers): New section.
3416 (Language and Grammar): Mention GLR parsing.
3417 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
3418 Correct typo ("tge" -> "the").
3419
3420 * data/bison.glr: New skeleton for GLR parsing.
3421
3422 * tests/cxx-gram.at: New tests for GLR parsing.
3423
3424 * tests/testsuite.at: Include cxx-gram.at.
3425
3426 * tests/Makefile.am: Add cxx-gram.at.
3427
3428 * src/parse-gram.y:
3429
3430 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
3431
3432 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
3433
3434 2002-06-27 Akim Demaille <akim@epita.fr>
3435
3436 * src/options.h, src/options.c: Remove.
3437 * src/getargs.c (short_options, long_options): New.
3438
3439 2002-06-27 Akim Demaille <akim@epita.fr>
3440
3441 * data/bison.simple, data/bison.c++: Rename as...
3442 * data/yacc.c, data/lalr1.cc: these.
3443 * doc/bison.texinfo (Environment Variables): Remove.
3444
3445 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
3446
3447 * src/getargs.c (report_argmatch): Initialize strtok().
3448
3449 2002-06-20 Akim Demaille <akim@epita.fr>
3450
3451 * data/bison.simple (b4_symbol_actions): New, replaces...
3452 (b4_symbol_destructor, b4_symbol_printer): these.
3453 (yysymprint): Be sure to call YYPRINT only for tokens, and using
3454 user token numbers.
3455
3456 2002-06-20 Akim Demaille <akim@epita.fr>
3457
3458 * data/bison.simple (yydestructor): Rename as...
3459 (yydestruct): this.
3460
3461 2002-06-20 Akim Demaille <akim@epita.fr>
3462
3463 * src/symtab.h, src/symtab.c (symbol_type_set)
3464 (symbol_destructor_set, symbol_precedence_set): The location is
3465 the last argument.
3466 Adjust all callers.
3467
3468 2002-06-20 Akim Demaille <akim@epita.fr>
3469
3470 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
3471 internals.
3472 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
3473 Takes a location.
3474 * src/symtab.h, src/symtab.c (symbol_class_set)
3475 (symbol_user_token_number_set): Likewise.
3476 Adjust all callers.
3477 Promote complain_at.
3478 * tests/input.at (Type Clashes): Adjust.
3479
3480 2002-06-20 Akim Demaille <akim@epita.fr>
3481
3482 * data/bison.simple (YYLEX): Fix the declaration when
3483 %pure-parser.
3484
3485 2002-06-20 Akim Demaille <akim@epita.fr>
3486
3487 * data/bison.simple (yysymprint): Don't print the token number,
3488 just its name.
3489 * tests/actions.at (Destructors): Rename as...
3490 (Printers and Destructors): this.
3491 Also exercise %printer.
3492
3493 2002-06-20 Akim Demaille <akim@epita.fr>
3494
3495 * data/bison.simple (YYDSYMPRINT): New.
3496 Use it to remove many of the #if YYDEBUG/if (yydebug).
3497
3498 2002-06-20 Akim Demaille <akim@epita.fr>
3499
3500 * src/symtab.h, src/symtab.c (symbol_t): printer and
3501 printer_location are new members.
3502 (symbol_printer_set): New.
3503 * src/parse-gram.y (PERCENT_PRINTER): New token.
3504 Handle its associated rule.
3505 * src/scan-gram.l: Adjust.
3506 (handle_destructor_at, handle_destructor_dollar): Rename as...
3507 (handle_symbol_code_at, handle_symbol_code_dollar): these.
3508 * src/output.c (symbol_printers_output): New.
3509 (output_skeleton): Call it.
3510 * data/bison.simple (yysymprint): New. Cannot be named yyprint
3511 since there are already many grammar files with a user `yyprint'.
3512 Replace the calls to YYPRINT to calls to yysymprint.
3513 * tests/calc.at: Adjust.
3514 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
3515 taking advantage of parser very internal details (stack size!).
3516
3517 2002-06-20 Akim Demaille <akim@epita.fr>
3518
3519 * src/scan-gram.l: Complete the scanner with the missing patterns
3520 to pacify Flex.
3521 Use `quote' and `symbol_tag_get' where appropriate.
3522
3523 2002-06-19 Akim Demaille <akim@epita.fr>
3524
3525 * tests/actions.at (Destructors): Augment to test locations.
3526 * data/bison.simple (yydestructor): Pass it the current location
3527 if locations are enabled.
3528 Prototype only when __STDC__ or C++.
3529 Change the argument names to move into the yy name space: there is
3530 user code here.
3531
3532 2002-06-19 Akim Demaille <akim@epita.fr>
3533
3534 * data/bison.simple (b4_pure_if): New.
3535 Use it instead of #ifdef YYPURE.
3536
3537 2002-06-19 Akim Demaille <akim@epita.fr>
3538
3539 * data/bison.simple (b4_location_if): New.
3540 Use it instead of #ifdef YYLSP_NEEDED.
3541
3542 2002-06-19 Akim Demaille <akim@epita.fr>
3543
3544 Prepare @$ in %destructor, but currently don't bind it in the
3545 skeleton, as %location use is not cleaned up yet.
3546
3547 * src/scan-gram.l (handle_dollar, handle_destructor_at)
3548 (handle_action_at): New.
3549 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
3550 a braced_code_t and a location as additional arguments.
3551 (handle_destructor_dollar): Instead of requiring `b4_eval', just
3552 unquote one when outputting `b4_dollar_dollar'.
3553 Adjust callers.
3554 * data/bison.simple (b4_eval): Remove.
3555 (b4_symbol_destructor): Adjust.
3556 * tests/input.at (Invalid @n): Adjust.
3557
3558 2002-06-19 Zack Weinberg <zack@codesourcery.com>
3559
3560 * doc/bison.texinfo: Document ability to have multiple
3561 prologue sections.
3562
3563 2002-06-18 Akim Demaille <akim@epita.fr>
3564
3565 * src/files.c (compute_base_names): When computing the output file
3566 names from the input file name, strip the directory part.
3567
3568 2002-06-18 Akim Demaille <akim@epita.fr>
3569
3570 * data/bison.simple.new: Comment changes.
3571 Reported by Andreas Schwab.
3572
3573 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
3574
3575 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
3576 there are no `label `yyoverflowlab' defined but not used' warnings
3577 when yyoverflow is defined.
3578
3579 2002-06-18 Akim Demaille <akim@epita.fr>
3580
3581 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
3582 new member.
3583 (symbol_destructor_set): Adjust.
3584 * src/output.c (symbol_destructors_output): Output the destructor
3585 locations.
3586 Output the symbol name.
3587 * data/bison.simple (b4_symbol_destructor): Adjust.
3588
3589 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
3590 and Akim Demaille <akim@epita.fr>
3591
3592 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
3593 what's left on the stack when the error recovery hits EOF.
3594 * tests/actions.at (Destructors): Complete to exercise this case.
3595
3596 2002-06-17 Akim Demaille <akim@epita.fr>
3597
3598 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
3599 arguments is really empty, not only equal to `[]'.
3600 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
3601 member.
3602 (symbol_destructor_set): New.
3603 * src/output.c (symbol_destructors_output): New.
3604 * src/reader.h (brace_code_t, current_braced_code): New.
3605 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
3606 (handle_dollar): Rename as...
3607 (handle_action_dollar): this.
3608 (handle_destructor_dollar): New.
3609 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
3610 (grammar_declaration): Use it.
3611 * data/bison.simple (yystos): Is always defined.
3612 (yydestructor): New.
3613 * tests/actions.at (Destructors): New.
3614 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
3615
3616 2002-06-17 Akim Demaille <akim@epita.fr>
3617
3618 * src/symlist.h, src/symlist.c (symbol_list_length): New.
3619 * src/scan-gram.l (handle_dollar, handle_at): Compute the
3620 rule_length only when needed.
3621 * src/output.c (actions_output, token_definitions_output): Output
3622 the full M4 block.
3623 * src/symtab.c: Don't access directly to the symbol tag, use
3624 symbol_tag_get.
3625 * src/parse-gram.y: Use symbol_list_free.
3626
3627 2002-06-17 Akim Demaille <akim@epita.fr>
3628
3629 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
3630 (symbol_list_prepend, get_type_name): Move to...
3631 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
3632 (symbol_list_prepend, symbol_list_n_type_name_get): here.
3633 Adjust all callers.
3634 (symbol_list_free): New.
3635 * src/scan-gram.l (handle_dollar): Takes a location.
3636 * tests/input.at (Invalid $n): Adjust.
3637
3638 2002-06-17 Akim Demaille <akim@epita.fr>
3639
3640 * src/reader.h, src/reader.c (symbol_list_new): Export it.
3641 (symbol_list_prepend): New.
3642 * src/parse-gram.y (%union): `list' is a new member.
3643 (symbols.1): New, replaces...
3644 (terms_to_prec.1, nterms_to_type.1): these.
3645 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
3646 Take a location as additional argument.
3647 Adjust all callers.
3648
3649 2002-06-15 Akim Demaille <akim@epita.fr>
3650
3651 * src/parse-gram.y: Move %token in the declaration section so that
3652 we don't depend upon CVS Bison.
3653
3654 2002-06-15 Akim Demaille <akim@epita.fr>
3655
3656 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
3657 * src/print.c (print_core): Use it.
3658
3659 2002-06-15 Akim Demaille <akim@epita.fr>
3660
3661 * src/conflicts.c (log_resolution): Accept the rule involved in
3662 the sr conflicts instead of the lookahead number that points to
3663 that rule.
3664 (flush_reduce): Accept the current lookahead vector as argument,
3665 instead of the index in LA.
3666 (resolve_sr_conflict): Accept the current number of lookahead
3667 bitset to consider for the STATE, instead of the index in LA.
3668 (set_conflicts): Adjust.
3669 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
3670
3671 2002-06-15 Akim Demaille <akim@epita.fr>
3672
3673 * src/state.h (state_t): Replace the `lookaheadsp' member, a
3674 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
3675 Adjust all dependencies.
3676 * src/lalr.c (initialize_lookaheads): Split into...
3677 (states_lookaheads_count, states_lookaheads_initialize): these.
3678 (lalr): Adjust.
3679
3680 2002-06-15 Akim Demaille <akim@epita.fr>
3681
3682 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
3683 out of...
3684 (grammar_rules_print): here.
3685 * src/reduce.c (reduce_output): Use it.
3686 * tests/reduce.at (Useless Rules, Reduced Automaton)
3687 (Underivable Rules): Adjust.
3688
3689 2002-06-15 Akim Demaille <akim@epita.fr>
3690
3691 Copy BYacc's nice way to report the grammar.
3692
3693 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
3694 New.
3695 Don't print the rules' location, it is confusing and useless.
3696 (rule_print): Use grammar_rhs_print.
3697 * src/print.c (print_grammar): Use grammar_rules_print.
3698
3699 2002-06-15 Akim Demaille <akim@epita.fr>
3700
3701 Complete and rationalize `useless thing' warnings.
3702
3703 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
3704 (symbol_tag_print): New.
3705 Use them everywhere in place of accessing directly the tag member.
3706 * src/gram.h, src/gram.c (rule_print): New.
3707 Use it where a rule used to be printed `by hand'.
3708 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
3709 (reduce_grammar_tables): Report the useless rules.
3710 (reduce_print): Useless things are a warning, not an error.
3711 Report it as such.
3712 * tests/reduce.at (Useless Nonterminals, Useless Rules):
3713 (Reduced Automaton, Underivable Rules): Adjust.
3714 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
3715 * tests/conflicts.at (Unresolved SR Conflicts)
3716 (Solved SR Conflicts): Adjust.
3717
3718 2002-06-15 Akim Demaille <akim@epita.fr>
3719
3720 Let symbols have a location.
3721
3722 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
3723 (getsym): Adjust.
3724 Adjust all callers.
3725 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
3726 Use location_t, not int.
3727 * src/symtab.c (symbol_check_defined): Take advantage of the
3728 location.
3729 * tests/regression.at (Invalid inputs): Adjust.
3730
3731 2002-06-15 Akim Demaille <akim@epita.fr>
3732
3733 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
3734 (input): Don't try to initialize yylloc here, do it in the
3735 scanner.
3736 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
3737 * src/gram.h (rule_t): Change line and action_line into location
3738 and action_location, of location_t type.
3739 Adjust all dependencies.
3740 * src/location.h, src/location.c (empty_location): New.
3741 * src/reader.h, src/reader.c (grammar_start_symbol_set)
3742 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
3743 (grammar_current_rule_symbol_append)
3744 (grammar_current_rule_action_append): Expect a location as argument.
3745 * src/reader.c (grammar_midrule_action): Adjust to attach an
3746 action's location as dummy symbol location.
3747 * src/symtab.h, src/symtab.c (startsymbol_location): New.
3748 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
3749 the line numbers.
3750
3751 2002-06-14 Akim Demaille <akim@epita.fr>
3752
3753 Grammar declarations may be found in the grammar section.
3754
3755 * src/parse-gram.y (rules_or_grammar_declaration): New.
3756 (declarations): Each declaration may end with a semicolon, not
3757 just...
3758 (grammar_declaration): `"%union"'.
3759 (grammar): Branch to rules_or_grammar_declaration.
3760
3761 2002-06-14 Akim Demaille <akim@epita.fr>
3762
3763 * src/main.c (main): Invoke scanner_free.
3764
3765 2002-06-14 Akim Demaille <akim@epita.fr>
3766
3767 * src/output.c (m4_invoke): Extracted from...
3768 (output_skeleton): here.
3769 Free tempfile.
3770
3771 2002-06-14 Akim Demaille <akim@epita.fr>
3772
3773 * src/parse-gram.y (directives, directive, gram)
3774 (grammar_directives, precedence_directives, precedence_directive):
3775 Rename as...
3776 (declarations, declaration, grammar, grammar_declaration)
3777 (precedence_declaration, precedence_declarator): these.
3778 (symbol_declaration): New.
3779
3780 2002-06-14 Akim Demaille <akim@epita.fr>
3781
3782 * src/files.c (action_obstack): Remove, unused.
3783 (output_obstack): Remove it, and all its dependencies, as it is no
3784 longer needed.
3785 * src/reader.c (epilogue_set): Build the epilogue in the
3786 muscle_obstack.
3787 * src/output.h, src/output.c (muscle_obstack): Move to...
3788 * src/muscle_tab.h, src/muscle_tab.h: here.
3789 (muscle_init): Initialize muscle_obstack.
3790 (muscle_free): New.
3791 * src/main.c (main): Call it.
3792
3793 2002-06-14 Akim Demaille <akim@epita.fr>
3794
3795 * src/location.h: New, extracted from...
3796 * src/reader.h: here.
3797 * src/Makefile.am (noinst_HEADERS): Merge into
3798 (bison_SOURCES): this.
3799 Add location.h.
3800 * src/parse-gram.y: Use location_t instead of Bison's.
3801 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
3802 Use location_t instead of ints.
3803
3804 2002-06-14 Akim Demaille <akim@epita.fr>
3805
3806 * data/bison.simple, data/bison.c++: Be sure to restore the
3807 current #line when returning to the skeleton contents after having
3808 exposed the input file's #line.
3809
3810 2002-06-12 Akim Demaille <akim@epita.fr>
3811
3812 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
3813 eager.
3814 * tests/actions.at (Exotic Dollars): New.
3815
3816 2002-06-12 Akim Demaille <akim@epita.fr>
3817
3818 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
3819 ['"/] too eagerly.
3820 * tests/input.at (Torturing the Scanner): New.
3821
3822 2002-06-11 Akim Demaille <akim@epita.fr>
3823
3824 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
3825 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
3826 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
3827 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
3828 * src/reader.c (reader): Use it.
3829
3830 2002-06-11 Akim Demaille <akim@epita.fr>
3831
3832 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
3833 Adjust all callers.
3834 (scanner_last_string_free): New.
3835
3836 2002-06-11 Akim Demaille <akim@epita.fr>
3837
3838 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
3839 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
3840 (last_string, YY_OBS_FREE): New.
3841 Use them when returning an ID.
3842
3843 2002-06-11 Akim Demaille <akim@epita.fr>
3844
3845 Have Bison grammars parsed by a Bison grammar.
3846
3847 * src/reader.c, src/reader.h (prologue_augment): New.
3848 * src/reader.c (copy_definition): Remove.
3849
3850 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
3851 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
3852 (grammar_current_rule_prec_set, grammar_current_rule_check)
3853 (grammar_current_rule_symbol_append)
3854 (grammar_current_rule_action_append): Export.
3855 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
3856 (symbol_list_action_append): Remove.
3857 Hook the routines from reader.
3858 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
3859 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
3860
3861 * src/reader.c (read_declarations): Remove, unused.
3862
3863 * src/parse-gram.y: Handle the epilogue.
3864 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
3865 (grammar_start_symbol_set): this.
3866 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
3867 * src/reader.c (readgram): Remove, unused.
3868 (reader): Adjust to insert eoftoken and axiom where appropriate.
3869
3870 * src/reader.c (copy_dollar): Replace with...
3871 * src/scan-gram.h (handle_dollar): this.
3872 * src/parse-gram.y: Remove `%thong'.
3873
3874 * src/reader.c (copy_at): Replace with...
3875 * src/scan-gram.h (handle_at): this.
3876
3877 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
3878 New.
3879
3880 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
3881 time being.
3882
3883 * src/reader.h, src/reader.c (grammar_rule_end): New.
3884
3885 * src/parse.y (current_type, current_class): New.
3886 Implement `%nterm', `%token' support.
3887 Merge `%term' into `%token'.
3888 (string_as_id): New.
3889 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
3890 type name.
3891
3892 * src/parse-gram.y: Be sure to handle properly the beginning of
3893 rules.
3894
3895 * src/parse-gram.y: Handle %type.
3896 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
3897
3898 * src/parse-gram.y: More directives support.
3899 * src/options.c: No longer handle source directives.
3900
3901 * src/parse-gram.y: Fix %output.
3902
3903 * src/parse-gram.y: Handle %union.
3904 Use the prologue locations.
3905 * src/reader.c (parse_union_decl): Remove.
3906
3907 * src/reader.h, src/reader.c (epilogue_set): New.
3908 * src/parse-gram.y: Use it.
3909
3910 * data/bison.simple, data/bison.c++: b4_stype is now either not
3911 defined, then default to int, or to the contents of %union,
3912 without `union' itself.
3913 Adjust.
3914 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
3915
3916 * src/output.c (actions_output): Don't output braces, as they are
3917 already handled by the scanner.
3918
3919 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
3920 characters to themselves.
3921
3922 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
3923 that the epilogue has a proper #line.
3924
3925 * src/parse-gram.y: Handle precedence/associativity.
3926
3927 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
3928 a terminal.
3929 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
3930 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
3931 at all to define terminals that cannot be emitted.
3932
3933 * src/scan-gram.l: Escape M4 characters.
3934
3935 * src/scan-gram.l: Working properly with escapes in user
3936 strings/characters.
3937
3938 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
3939 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
3940 grammar.
3941 Use more modest sizes, as for the time being the parser does not
3942 release memory, and therefore the process swallows a huge amount
3943 of memory.
3944
3945 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
3946 stricter %token grammar.
3947
3948 * src/symtab.h (associativity): Add `undef_assoc'.
3949 (symbol_precedence_set): Do nothing when passed an undef_assoc.
3950 * src/symtab.c (symbol_check_alias_consistence): Adjust.
3951
3952 * tests/regression.at (Invalid %directive): Remove, as it is now
3953 meaningless.
3954 (Invalid inputs): Adjust to the new error messages.
3955 (Token definitions): The new grammar doesn't allow too many
3956 eccentricities.
3957
3958 * src/lex.h, src/lex.c: Remove.
3959 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
3960 (copy_character, copy_string2, copy_string, copy_identifier)
3961 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
3962 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
3963 (parse_action): Remove.
3964 * po/POTFILES.in: Adjust.
3965
3966 2002-06-11 Akim Demaille <akim@epita.fr>
3967
3968 * src/reader.c (parse_action): Don't store directly into the
3969 rule's action member: return the action as a string.
3970 Don't require `rule_length' as an argument: compute it.
3971 (grammar_current_rule_symbol_append)
3972 (grammar_current_rule_action_append): New, eved out from
3973 (readgram): here.
3974 Remove `action_flag', `rulelength', unused now.
3975
3976 2002-06-11 Akim Demaille <akim@epita.fr>
3977
3978 * src/reader.c (grammar_current_rule_prec_set).
3979 (grammar_current_rule_check): New, eved out from...
3980 (readgram): here.
3981 Remove `xaction', `first_rhs': useless.
3982 * tests/input.at (Type clashes): New.
3983 * tests/existing.at (GNU Cim Grammar): Adjust.
3984
3985 2002-06-11 Akim Demaille <akim@epita.fr>
3986
3987 * src/reader.c (grammar_midrule_action): New, Eved out from
3988 (readgram): here.
3989
3990 2002-06-11 Akim Demaille <akim@epita.fr>
3991
3992 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
3993 New.
3994 (readgram): Use them as replacement of inlined code, crule and
3995 crule1.
3996
3997 2002-06-11 Akim Demaille <akim@epita.fr>
3998
3999 * src/reader.c (grammar_end, grammar_symbol_append): New.
4000 (readgram): Use them.
4001 Make the use of `p' as local as possible.
4002
4003 2002-06-10 Akim Demaille <akim@epita.fr>
4004
4005 GCJ's parser requires the tokens to be defined before the prologue.
4006
4007 * data/bison.simple: Output the token definition before the user's
4008 prologue.
4009 * tests/regression.at (Braces parsing, Duplicate string)
4010 (Mixing %token styles): Check the output from bison.
4011 (Early token definitions): New.
4012
4013 2002-06-10 Akim Demaille <akim@epita.fr>
4014
4015 * src/symtab.c (symbol_user_token_number_set): Don't complain when
4016 assigning twice the same user number to a token, so that we can
4017 use it in...
4018 * src/lex.c (lex): here.
4019 Also use `symbol_class_set' instead of hand written code.
4020 * src/reader.c (parse_assoc_decl): Likewise.
4021
4022 2002-06-10 Akim Demaille <akim@epita.fr>
4023
4024 * src/symtab.c, src/symtab.c (symbol_class_set)
4025 (symbol_user_token_number_set): New.
4026 * src/reader.c (parse_token_decl): Use them.
4027 Use a switch instead of ifs.
4028 Use a single argument.
4029
4030 2002-06-10 Akim Demaille <akim@epita.fr>
4031
4032 Remove `%thong' support as it is undocumented, unused, duplicates
4033 `%token's job, and creates useless e-mail traffic with people who
4034 want to know what it is, why it is undocumented, unused, and
4035 duplicates `%token's job.
4036
4037 * src/reader.c (parse_thong_decl): Remove.
4038 * src/options.c (option_table): Remove "thong".
4039 * src/lex.h (tok_thong): Remove.
4040
4041 2002-06-10 Akim Demaille <akim@epita.fr>
4042
4043 * src/symtab.c, src/symtab.c (symbol_type_set)
4044 (symbol_precedence_set): New.
4045 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
4046 (value_components_used): Remove, unused.
4047
4048 2002-06-09 Akim Demaille <akim@epita.fr>
4049
4050 Move symbols handling code out of the reader.
4051
4052 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
4053 (axiom): Move to...
4054 * src/symtab.h, src/symtab.c: here.
4055
4056 * src/gram.c (start_symbol): Remove: use startsymbol->number.
4057 * src/reader.c (startval): Rename as...
4058 * src/symtab.h, src/symtab.c (startsymbol): this.
4059 * src/reader.c: Adjust.
4060
4061 * src/reader.c (symbol_check_defined, symbol_make_alias)
4062 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
4063 (token_translations_init)
4064 Move to...
4065 * src/symtab.c: here.
4066 * src/reader.c (packsymbols): Move to...
4067 * src/symtab.h, src/symtab.c (symbols_pack): here.
4068 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
4069 argument.
4070
4071 2002-06-03 Akim Demaille <akim@epita.fr>
4072
4073 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
4074 then statements.
4075
4076 2002-06-03 Akim Demaille <akim@epita.fr>
4077
4078 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
4079 structs with non literals.
4080 * src/scan-skel.l: never-interactive.
4081 * src/conflicts.c (enum conflict_resolution_e): No trailing
4082 comma.
4083 * src/getargs.c (usage): Split long literal strings.
4084 Reported by Hans Aberg.
4085
4086 2002-05-28 Akim Demaille <akim@epita.fr>
4087
4088 * data/bison.c++: Use C++ ostreams.
4089 (cdebug_): New member.
4090
4091 2002-05-28 Akim Demaille <akim@epita.fr>
4092
4093 * src/output.c (output_skeleton): Be sure to allocate enough room
4094 for `/' _and_ for `\0' in full_skeleton.
4095
4096 2002-05-28 Akim Demaille <akim@epita.fr>
4097
4098 * data/bison.c++: Catch up with bison.simple:
4099 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4100 and Paul Eggert <eggert@twinsun.com>: `error' handing.
4101 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
4102 and popping traces.
4103
4104 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4105
4106 * src/output.c (output_skeleton): Put an explicit path in front of
4107 the skeleton file name, rather than relying on the -I directory,
4108 to partially alleviate effects of having a skeleton file lying around
4109 in the current directory.
4110
4111 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4112
4113 * src/conflicts.c (log_resolution): Correct typo:
4114 obstack_printf should be obstack_fgrow1.
4115
4116 2002-05-26 Akim Demaille <akim@epita.fr>
4117
4118 * src/state.h (state_t): `solved_conflicts' is a new member.
4119 * src/LR0.c (new_state): Set it to 0.
4120 * src/conflicts.h, src/conflicts.c (print_conflicts)
4121 (free_conflicts, solve_conflicts): Rename as...
4122 (conflicts_print, conflicts_free, conflicts_solve): these.
4123 Adjust callers.
4124 * src/conflicts.c (enum conflict_resolution_e)
4125 (solved_conflicts_obstack): New, used by...
4126 (log_resolution): this.
4127 Adjust to attach the conflict resolution to each state.
4128 Complete the description with the precedence/associativity
4129 information.
4130 (resolve_sr_conflict): Adjust.
4131 * src/print.c (print_state): Output its solved_conflicts.
4132 * tests/conflicts.at (Unresolved SR Conflicts)
4133 (Solved SR Conflicts): Exercise --report=all.
4134
4135 2002-05-26 Akim Demaille <akim@epita.fr>
4136
4137 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
4138 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
4139 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
4140 (token_number_t, item_number_as_token_number)
4141 (token_number_as_item_number, muscle_insert_token_number_table):
4142 Rename as...
4143 (symbol_number_t, item_number_as_symbol_number)
4144 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
4145 these, since it is more appropriate.
4146
4147 2002-05-26 Akim Demaille <akim@epita.fr>
4148
4149 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
4150 `Error:' lines.
4151 * data/bison.simple (yystos) [YYDEBUG]: New.
4152 (yyparse) [YYDEBUG]: Display the symbols which are popped during
4153 error recovery.
4154 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
4155
4156 2002-05-25 Akim Demaille <akim@epita.fr>
4157
4158 * doc/bison.texinfo (Debugging): Split into...
4159 (Tracing): this new section, its former contents, and...
4160 (Understanding): this new section.
4161 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
4162 by...
4163 (report_flag): this.
4164 Adjust all dependencies.
4165 (report_args, report_types, report_argmatch): New.
4166 (usage, getargs): Report/support -r, --report.
4167 * src/options.h
4168 (struct option_table_struct): Rename as..,
4169 (struct option_table_s): this.
4170 Rename the `set_flag' member to `flag' to match with getopt_long's
4171 struct.
4172 * src/options.c (option_table): Split verbose into an entry for
4173 %verbose, and another for --verbose.
4174 Support --report/-r, so remove -r from the obsolete --raw.
4175 * src/print.c: Attach full item sets and lookaheads reports to
4176 report_flag instead of trace_flag.
4177 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
4178
4179 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4180 and Paul Eggert <eggert@twinsun.com>
4181
4182 * data/bison.simple (yyparse): Correct error handling to conform to
4183 POSIX and yacc. Specifically, after syntax error is discovered,
4184 do not reduce further before shifting the error token.
4185 Clean up the code a bit by removing the labels yyerrdefault,
4186 yyerrhandle, yyerrpop.
4187 * NEWS: Document the above.
4188
4189 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4190
4191 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
4192 type; it isn't always big enough, since it doesn't necessarily
4193 include non-terminals.
4194 (yytranslate): Expand definition of yy_token_number_type, so that
4195 the latter can be removed.
4196 (yy_token_number_type): Remove, only one use.
4197 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
4198 don't use TokenNumberType as element type.
4199
4200 * tests/regression.at: Modify expected output to agree with change
4201 to yyr1 and yytranslate.
4202
4203 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
4204
4205 * src/reader.c (parse_action): Use copy_character instead of
4206 obstack_1grow.
4207
4208 2002-05-13 Akim Demaille <akim@epita.fr>
4209
4210 * tests/regression.at (Token definitions): Prototype yylex and
4211 yyerror.
4212
4213 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4214
4215 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
4216 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
4217 32-bit arithmetic.
4218 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
4219
4220 2002-05-07 Akim Demaille <akim@epita.fr>
4221
4222 * tests/synclines.at: Be sure to prototype yylex and yyerror to
4223 avoid GCC warnings.
4224
4225 2002-05-07 Akim Demaille <akim@epita.fr>
4226
4227 Kill GCC warnings.
4228
4229 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
4230 over the RHS of each rule.
4231 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
4232 * src/state.h (state_t): Member `nitems' is unsigned short.
4233 * src/LR0.c (get_state): Adjust.
4234 * src/reader.c (packgram): Likewise.
4235 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
4236 `Type'.
4237 (muscle_insert_int_table): Remove, unused.
4238 (prepare_rules): Remove `max'.
4239
4240 2002-05-06 Akim Demaille <akim@epita.fr>
4241
4242 * src/closure.c (print_firsts): Display of the symbol tags.
4243 (bitmatrix_print): Move to...
4244 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
4245 here.
4246 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
4247
4248 2002-05-06 Akim Demaille <akim@epita.fr>
4249
4250 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
4251 hash_do_for_each.
4252
4253 2002-05-06 Akim Demaille <akim@epita.fr>
4254
4255 * src/LR0.c (new_state, get_state): Instead of using the global
4256 `kernel_size' and `kernel_base', have two new arguments:
4257 `core_size' and `core'.
4258 Adjust callers.
4259
4260 2002-05-06 Akim Demaille <akim@epita.fr>
4261
4262 * src/reader.c (packgram): No longer end `ritem' with a 0
4263 sentinel: it is not used.
4264
4265 2002-05-05 Akim Demaille <akim@epita.fr>
4266
4267 New experimental feature: display the lookaheads in the report and
4268 graph.
4269
4270 * src/print (print_core): When --trace-flag, display the rules
4271 lookaheads.
4272 * src/print_graph.c (print_core): Likewise.
4273 Swap the arguments.
4274 Adjust caller.
4275
4276 2002-05-05 Akim Demaille <akim@epita.fr>
4277
4278 * tests/torture.at (Many lookaheads): New test.
4279
4280 2002-05-05 Akim Demaille <akim@epita.fr>
4281
4282 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
4283 (GENERATE_MUSCLE_INSERT_TABLE): this.
4284 (output_int_table, output_unsigned_int_table, output_short_table)
4285 (output_token_number_table, output_item_number_table): Replace with...
4286 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
4287 (muscle_insert_short_table, muscle_insert_token_number_table)
4288 (muscle_insert_item_number_table): these.
4289 Adjust all callers.
4290 (prepare_tokens): Don't free `translations', since...
4291 * src/reader.h, src/reader.c (grammar_free): do it.
4292 Move to...
4293 * src/gram.h, src/gram.c (grammar_free): here.
4294 * data/bison.simple, data/bison.c++: b4_token_number_max is now
4295 b4_translate_max.
4296
4297 2002-05-05 Akim Demaille <akim@epita.fr>
4298
4299 * src/output.c (output_unsigned_int_table): New.
4300 (prepare_rules): `i' is unsigned.
4301 `prhs', `rline', `r2' are unsigned int.
4302 Rename muscle `rhs_number_max' as `rhs_max'.
4303 Output muscles `prhs_max', `rline_max', and `r2_max'.
4304 Free rline and r1.
4305 * data/bison.simple, data/bison.c++: Adjust to use these muscles
4306 to compute types instead of constant types.
4307 * tests/regression.at (Web2c Actions): Adjust.
4308
4309 2002-05-04 Akim Demaille <akim@epita.fr>
4310
4311 * src/symtab.h (SALIAS, SUNDEF): Rename as...
4312 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
4313 Adjust dependencies.
4314 * src/output.c (token_definitions_output): Be sure not to output a
4315 `#define 'a'' when fed with `%token 'a' "a"'.
4316 * tests/regression.at (Token definitions): New.
4317
4318 2002-05-03 Paul Eggert <eggert@twinsun.com>
4319
4320 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
4321 for K&R C.
4322
4323 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
4324
4325 * Makefile.am (SUBDIRS): Remove intl.
4326 (EXTRA_DIST): Add config/config.rpath.
4327
4328 2002-05-03 Akim Demaille <akim@epita.fr>
4329
4330 * data/bison.simple (m4_if): Don't output empty enums.
4331 And actually, output valid enum definitions :(.
4332
4333 2002-05-03 Akim Demaille <akim@epita.fr>
4334
4335 * configure.bat: Remove, completely obsolete.
4336 * Makefile.am (EXTRA_DIST): Adjust.
4337 Don't distribute config.rpath...
4338 * config/Makefile.am (EXTRA_DIST): Do it.
4339
4340 2002-05-03 Akim Demaille <akim@epita.fr>
4341
4342 * configure.in (GETTEXT_VERSION): New.
4343 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
4344
4345 2002-05-03 Akim Demaille <akim@epita.fr>
4346
4347 * data/bison.simple (b4_token_enum): New.
4348 (b4_token_defines): Use it to output tokens both as #define and
4349 enums.
4350 Suggested by Paul Eggert.
4351 * src/output.c (token_definitions_output): Don't output spurious
4352 white spaces.
4353
4354 2002-05-03 Akim Demaille <akim@epita.fr>
4355
4356 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
4357
4358 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
4359
4360 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
4361 Update the stack class, give a try to deque as the default container.
4362
4363 2002-05-02 Akim Demaille <akim@epita.fr>
4364
4365 * data/bison.simple (yyparse): Do not implement @$ = @1.
4366 (YYLLOC_DEFAULT): Adjust to do it.
4367 * doc/bison.texinfo (Location Default Action): Fix.
4368
4369 2002-05-02 Akim Demaille <akim@epita.fr>
4370
4371 * src/reader.c (parse_braces): Merge into...
4372 (parse_action): this.
4373
4374 2002-05-02 Akim Demaille <akim@epita.fr>
4375
4376 * configure.in (ALL_LINGUAS): Remove.
4377 * po/LINGUAS, hr.po: New.
4378
4379 2002-05-02 Akim Demaille <akim@epita.fr>
4380
4381 Remove the so called hairy (semantic) parsers.
4382
4383 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
4384 * src/gram.h, src/gram.c (semantic_parser): Remove.
4385 (rule_t): Remove the guard and guard_line members.
4386 * src/lex.h (token_t): remove tok_guard.
4387 * src/options.c (option_table): Remove %guard and %semantic_parser
4388 support.
4389 * src/output.c, src/output.h (guards_output): Remove.
4390 (prepare): Adjust.
4391 (token_definitions_output): Don't output the `T'
4392 tokens (???).
4393 (output_skeleton): Don't output the guards.
4394 * src/files.c, src/files.c (attrsfile): Remove.
4395 * src/reader.c (symbol_list): Remove the guard and guard_line
4396 members.
4397 Adjust dependencies.
4398 (parse_guard): Remove.
4399 * data/bison.hairy: Remove.
4400 * doc/bison.texinfo (Environment Variables): Remove occurrences of
4401 BISON_HAIRY.
4402
4403 2002-05-02 Akim Demaille <akim@epita.fr>
4404
4405 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
4406 (parse_guard): Rename the formal argument `stack_offset' as
4407 `rule_length', which is more readable.
4408 Adjust callers.
4409 (copy_at, copy_dollar): Instead of outputting the hard coded
4410 values of $$, $n and so forth, output invocation to b4_lhs_value,
4411 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
4412 Note: this patch partially drops `semantic-parser' support: it
4413 always does `rule_length - n', where semantic parsers ought to
4414 always use `-n'.
4415 * data/bison.simple, data/bison.c++ (b4_lhs_value)
4416 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
4417
4418 2002-05-02 Akim Demaille <akim@epita.fr>
4419
4420 * configure.in (AC_INIT): Bump to 1.49b.
4421 (AM_INIT_AUTOMAKE): Short invocation.
4422
4423 2002-05-02 Akim Demaille <akim@epita.fr>
4424
4425 Version 1.49a.
4426
4427 2002-05-01 Akim Demaille <akim@epita.fr>
4428
4429 * src/skeleton.h: Remove.
4430
4431 2002-05-01 Akim Demaille <akim@epita.fr>
4432
4433 * src/skeleton.h: Fix the #endif.
4434 Reported by Magnus Fromreide.
4435
4436 2002-04-26 Paul Eggert <eggert@twinsun.com>
4437
4438 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
4439 Define if we define YYSTYPE and YYLTYPE, respectively.
4440 (YYCOPY): Fix [] quoting problem in the non-GCC case.
4441
4442 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
4443
4444 * src/scan-skel.l: Postprocess quadrigraphs.
4445
4446 * src/reader.c (copy_character): New function, used to output
4447 single characters while replacing `[' and `]' with quadrigraphs, to
4448 avoid troubles with M4 quotes.
4449 (copy_comment): Output characters with copy_character.
4450 (read_additionnal_code): Likewise.
4451 (copy_string2): Likewise.
4452 (copy_definition): Likewise.
4453
4454 * tests/calc.at: Exercise M4 quoting.
4455
4456 2002-04-25 Akim Demaille <akim@epita.fr>
4457
4458 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
4459 between `!' and the command.
4460 Reported by Paul Eggert.
4461
4462 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
4463
4464 * tests/calc.at: Exercise prologue splitting.
4465
4466 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
4467 `b4_post_prologue' instead of `b4_prologue'.
4468
4469 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
4470 muscles.
4471 (output): Free pre_prologue_obstack and post_prologue_obstack.
4472 * src/files.h, src/files.c (attrs_obstack): Remove.
4473 (pre_prologue_obstack, post_prologue_obstack): New.
4474 * src/reader.c (copy_definition): Add a parameter to specify the
4475 obstack to fill, instead of using attrs_obstack unconditionally.
4476 (read_declarations): Pass pre_prologue_obstack to copy_definition if
4477 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
4478
4479 2002-04-23 Paul Eggert <eggert@twinsun.com>
4480
4481 * data/bison.simple: Remove unnecessary commentary and white
4482 space differences from 1_29-branch.
4483 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
4484
4485 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
4486 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
4487 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
4488 constructors or destructors.
4489
4490 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
4491
4492 2002-04-23 Akim Demaille <akim@epita.fr>
4493
4494 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
4495 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
4496 location with columns.
4497 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
4498 All reported by Paul Eggert.
4499
4500 2002-04-22 Akim Demaille <akim@epita.fr>
4501
4502 * src/reduce.c (dump_grammar): Move to...
4503 * src/gram.h, src/gram.c (grammar_dump): here.
4504 Be sure to separate long item numbers.
4505 Don't read the members of a rule's prec if its nil.
4506
4507 2002-04-22 Akim Demaille <akim@epita.fr>
4508
4509 * src/output.c (table_size, table_grow): New.
4510 (MAXTABLE): Remove, replace uses with table_size.
4511 (pack_vector): Instead of dying when the table is too big, grow it.
4512
4513 2002-04-22 Akim Demaille <akim@epita.fr>
4514
4515 * data/bison.simple (yyr1): Its type is that of a token number.
4516 * data/bison.c++ (r1_): Likewise.
4517 * tests/regression.at (Web2c Actions): Adjust.
4518
4519 2002-04-22 Akim Demaille <akim@epita.fr>
4520
4521 * src/reader.c (token_translations_init): 256 is now the default
4522 value for the error token, i.e., it will be assigned another
4523 number if the user assigned 256 to one of her tokens.
4524 (reader): Don't force 256 to error.
4525 * doc/bison.texinfo (Symbols): Adjust.
4526 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
4527 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
4528 etc. instead of 10, 20, 30 (which was used to `jump' over error
4529 (256) and undefined (2)).
4530
4531 2002-04-22 Akim Demaille <akim@epita.fr>
4532
4533 Propagate more token_number_t.
4534
4535 * src/gram.h (token_number_as_item_number)
4536 (item_number_as_token_number): New.
4537 * src/output.c (GENERATE_OUTPUT_TABLE): New.
4538 Use it to create output_item_number_table and
4539 output_token_number_table.
4540 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
4541 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
4542 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
4543 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
4544
4545 2002-04-22 Akim Demaille <akim@epita.fr>
4546
4547 * src/output.h, src/output.c (get_lines_number): Remove.
4548
4549 2002-04-19 Akim Demaille <akim@epita.fr>
4550
4551 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
4552 as Lex/Flex'.
4553 (Debugging): More details about enabling the debugging features.
4554 (Table of Symbols): Describe $$, $n, @$, and @n.
4555 Suggested by Tim Josling.
4556
4557 2002-04-19 Akim Demaille <akim@epita.fr>
4558
4559 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
4560
4561 2002-04-10 Akim Demaille <akim@epita.fr>
4562
4563 * src/system.h: Rely on HAVE_LIMITS_H.
4564 Suggested by Paul Eggert.
4565
4566 2002-04-09 Akim Demaille <akim@epita.fr>
4567
4568 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
4569 full stderr, and strip it according to the bison options, instead
4570 of composing the error message from different bits.
4571 This makes it easier to check for several error messages.
4572 Adjust all the invocations.
4573 Add an invocation exercising the error token.
4574 Add an invocation demonstrating a stupid error message.
4575 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
4576 Adjust the tests.
4577 Error message are for stderr, not stdout.
4578
4579 2002-04-09 Akim Demaille <akim@epita.fr>
4580
4581 * src/gram.h, src/gram.c (error_token_number): Remove, use
4582 errtoken->number.
4583 * src/reader.c (reader): Don't specify the user token number (2)
4584 for $undefined, as it uselessly prevents using it.
4585 * src/gram.h (token_number_t): Move to...
4586 * src/symtab.h: here.
4587 (state_t.number): Is a token_number_t.
4588 * src/print.c, src/reader.c: Use undeftoken->number instead of
4589 hard coded 2.
4590 (Even though this 2 is not the same as above: the number of the
4591 undeftoken remains being 2, it is its user token number which
4592 might not be 2).
4593 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
4594 `user_token_number_max'.
4595 Output `undef_token_number'.
4596 * data/bison.simple, data/bison.c++: Use them.
4597 Be sure to map invalid yylex return values to
4598 `undef_token_number'. This saves us from gratuitous SEGV.
4599
4600 * tests/conflicts.at (Solved SR Conflicts)
4601 (Unresolved SR Conflicts): Adjust.
4602 * tests/regression.at (Web2c Actions): Adjust.
4603
4604 2002-04-08 Akim Demaille <akim@epita.fr>
4605
4606 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
4607 Adding #line.
4608 Remove the duplicate `typedefs'.
4609 (RhsNumberType): Fix the declaration and various other typos.
4610 Use __ofile__.
4611 * data/bison.simple: Use __ofile__.
4612 * src/scan-skel.l: Handle __ofile__.
4613
4614 2002-04-08 Akim Demaille <akim@epita.fr>
4615
4616 * src/gram.h (item_number_t): New, the type of item numbers in
4617 RITEM. Note that it must be able to code symbol numbers as
4618 positive number, and the negation of rule numbers as negative
4619 numbers.
4620 Adjust all dependencies (pretty many).
4621 * src/reduce.c (rule): Remove this `short *' pointer: use
4622 item_number_t.
4623 * src/system.h (MINSHORT, MAXSHORT): Remove.
4624 Include `limits.h'.
4625 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
4626 (shortcpy): Remove.
4627 (MAXTABLE): Move to...
4628 * src/output.c (MAXTABLE): here.
4629 (prepare_rules): Use output_int_table to output rhs.
4630 * data/bison.simple, data/bison.c++: Adjust.
4631 * tests/torture.at (Big triangle): Move the limit from 254 to
4632 500.
4633 * tests/regression.at (Web2c Actions): Ajust.
4634
4635 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
4636 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
4637 passes, but produces negative #line number, once fixed, GCC is
4638 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
4639 C), it passes.
4640 * src/state.h (state_h): Code input lines on ints, not shorts.
4641
4642 2002-04-08 Akim Demaille <akim@epita.fr>
4643
4644 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
4645 and then the grammar.
4646
4647 2002-04-08 Akim Demaille <akim@epita.fr>
4648
4649 * src/system.h: No longer using strndup.
4650
4651 2002-04-07 Akim Demaille <akim@epita.fr>
4652
4653 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
4654 * src/output.c (output_table_data): Return the longest number.
4655 (prepare_tokens): Output `token_number_max').
4656 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
4657 New.
4658 Use them to define yy_token_number_type/TokenNumberType.
4659 Use this type for yytranslate.
4660 * tests/torture.at (Big triangle): Push the limit from 124 to
4661 253.
4662 * tests/regression.at (Web2c Actions): Adjust.
4663
4664 2002-04-07 Akim Demaille <akim@epita.fr>
4665
4666 * tests/torture.at (Big triangle): New.
4667 (GNU AWK Grammar, GNU Cim Grammar): Move to...
4668 * tests/existing.at: here.
4669
4670 2002-04-07 Akim Demaille <akim@epita.fr>
4671
4672 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
4673 nritems.
4674 Adjust dependencies.
4675
4676 2002-04-07 Akim Demaille <akim@epita.fr>
4677
4678 * src/reader.c: Normalize increments to prefix form.
4679
4680 2002-04-07 Akim Demaille <akim@epita.fr>
4681
4682 * src/reader.c, symtab.c: Remove debugging code.
4683
4684 2002-04-07 Akim Demaille <akim@epita.fr>
4685
4686 Rename all the `bucket's as `symbol_t'.
4687
4688 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
4689 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
4690 * src/symtab.c, src/symtab.h (bucket): Rename as...
4691 (symbol_t): this.
4692 (symbol_list_new, bucket_check_defined, bucket_make_alias)
4693 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
4694 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
4695 (buckets_new, buckets_free, buckets_do): Rename as...
4696 (symbol_list_new, symbol_check_defined, symbol_make_alias)
4697 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
4698 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
4699 (symbols_new, symbols_free, symbols_do): these.
4700
4701 2002-04-07 Akim Demaille <akim@epita.fr>
4702
4703 Use lib/hash for the symbol table.
4704
4705 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
4706 EOF.
4707 * src/lex.c (lex): Set the `number' member of new terminals.
4708 * src/reader.c (bucket_check_defined, bucket_make_alias)
4709 (bucket_check_alias_consistence, bucket_translation): New.
4710 (reader, grammar_free, readgram, token_translations_init)
4711 (packsymbols): Adjust.
4712 (reader): Number the predefined tokens.
4713 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
4714 for predefined tokens.
4715 * src/symtab.h (bucket): Remove all the hash table related
4716 members.
4717 * src/symtab.c (symtab): Replace by...
4718 (bucket_table): this.
4719 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
4720 (buckets_new, buckets_do): New.
4721
4722 2002-04-07 Akim Demaille <akim@epita.fr>
4723
4724 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
4725 (start_symbol, max_user_token_number, semantic_parser)
4726 (error_token_number): Initialize.
4727 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
4728 Initialize.
4729 (reader): Don't.
4730 (errtoken, eoftoken, undeftoken, axiom): Extern.
4731
4732 2002-04-07 Akim Demaille <akim@epita.fr>
4733
4734 * src/gram.h (rule_s): prec and precsym are now pointers
4735 to the bucket giving the priority/associativity.
4736 Member `associativity' removed: useless.
4737 * src/reduce.c, src/conflicts.c: Adjust.
4738
4739 2002-04-07 Akim Demaille <akim@epita.fr>
4740
4741 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
4742 Properly escape the symbols' TAG when outputting them.
4743
4744 2002-04-07 Akim Demaille <akim@epita.fr>
4745
4746 * src/lalr.h (LA): Is a bitsetv, not bitset*.
4747
4748 2002-04-07 Akim Demaille <akim@epita.fr>
4749
4750 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
4751 (LArule): this, which is an array to rule_t*.
4752 * src/print.c, src/conflicts.c: Adjust.
4753
4754 2002-04-07 Akim Demaille <akim@epita.fr>
4755
4756 * src/gram.h (rule_t): Rename `number' as `user_number'.
4757 `number' is a new member.
4758 Adjust dependencies.
4759 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
4760
4761 2002-04-07 Akim Demaille <akim@epita.fr>
4762
4763 As a result of the previous patch, it is no longer needed
4764 to reorder ritem itself.
4765
4766 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
4767
4768 2002-04-07 Akim Demaille <akim@epita.fr>
4769
4770 Be sure never to walk through RITEMS, but use only data related to
4771 the rules themselves. RITEMS should be banished.
4772
4773 * src/output.c (output_token_translations): Rename as...
4774 (prepare_tokens): this.
4775 In addition to `translate', prepare the muscles `tname' and
4776 `toknum', which were handled by...
4777 (output_rule_data): this.
4778 Remove, and move the remainder of its outputs into...
4779 (prepare_rules): this new routines, which also merges content from
4780 (output_gram): this.
4781 (prepare_rules): Be sure never to walk through RITEMS.
4782 (output_stos): Rename as...
4783 (prepare_stos): this.
4784 (output): Always invoke prepare_states, after all, just don't use it
4785 in the output if you don't need it.
4786
4787 2002-04-07 Akim Demaille <akim@epita.fr>
4788
4789 * src/LR0.c (new_state): Display `nstates' as the name of the
4790 newly created state.
4791 Adjust to initialize first_state and last_state if needed.
4792 Be sure to distinguish the initial from the final state.
4793 (new_states): Create the itemset of the initial state, and use
4794 new_state.
4795 * src/closure.c (closure): Now that the initial state has its
4796 items properly set, there is no need for a special case when
4797 creating `ruleset'.
4798
4799 As a result, now the rule 0, reducing to $axiom, is visible in the
4800 outputs. Adjust the test suite.
4801
4802 * tests/conflicts.at (Solved SR Conflicts)
4803 (Unresolved SR Conflicts): Adjust.
4804 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
4805 * tests/conflicts.at (S/R in initial): New.
4806
4807 2002-04-07 Akim Demaille <akim@epita.fr>
4808
4809 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
4810 the RHS of the rules.
4811 * src/output.c (output_gram): Likewise.
4812
4813 2002-04-07 Akim Demaille <akim@epita.fr>
4814
4815 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
4816 bucket.
4817 Adjust all dependencies.
4818 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
4819 `number' of the buckets too.
4820 * src/gram.h: Include `symtab.h'.
4821 (associativity): Move to...
4822 * src/symtab.h: here.
4823 No longer include `gram.h'.
4824
4825 2002-04-07 Akim Demaille <akim@epita.fr>
4826
4827 * src/gram.h, src/gram.c (rules_rhs_length): New.
4828 (ritem_longest_rhs): Use it.
4829 * src/gram.h (rule_t): `number' is a new member.
4830 * src/reader.c (packgram): Set it.
4831 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
4832 the end of `rules', and count them out of `nrules'.
4833 (reduce_output, dump_grammar): Adjust.
4834 * src/print.c (print_grammar): It is no longer needed to check for
4835 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
4836 * tests/reduce.at (Reduced Automaton): New test.
4837
4838 2002-04-07 Akim Demaille <akim@epita.fr>
4839
4840 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
4841 lacking `+ 1' to nrules, Bison reported as useless a token if it
4842 was used solely to set the precedence of the last rule...
4843
4844 2002-04-07 Akim Demaille <akim@epita.fr>
4845
4846 * data/bison.c++, data/bison.simple: Don't output the current file
4847 name in #line, to avoid useless diffs between two identical
4848 outputs under different names.
4849
4850 2002-04-07 Akim Demaille <akim@epita.fr>
4851
4852 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
4853 Normalize loops to using `< nrules + 1', not `<= nrules'.
4854
4855 2002-04-07 Akim Demaille <akim@epita.fr>
4856
4857 * TODO: Update.
4858
4859 2002-04-07 Akim Demaille <akim@epita.fr>
4860
4861 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
4862 bucket.value as bucket.number.
4863
4864 2002-04-07 Akim Demaille <akim@epita.fr>
4865
4866 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
4867 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
4868 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
4869 RHS, instead of being an index in RITEMS.
4870
4871 2002-04-04 Paul Eggert <eggert@twinsun.com>
4872
4873 * doc/bison.texinfo: Update copyright date.
4874 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
4875 (Symbols): Warn about running Bison in one character set,
4876 but compiling and/or running in an incompatible one.
4877 Warn about character code 256, too.
4878
4879 2002-04-03 Paul Eggert <eggert@twinsun.com>
4880
4881 * src/bison.data (YYSTACK_ALLOC): Depend on whether
4882 YYERROR_VERBOSE is nonzero, not whether it is defined.
4883
4884 Merge changes from bison-1_29-branch.
4885
4886 2002-03-20 Paul Eggert <eggert@twinsun.com>
4887
4888 Merge fixes from Debian bison_1.34-1.diff.
4889
4890 * configure.in (AC_PREREQ): 2.53.
4891
4892 2002-03-20 Akim Demaille <akim@epita.fr>
4893
4894 * src/conflicts.c (log_resolution): Argument `resolution' is const.
4895
4896 2002-03-19 Paul Eggert <eggert@twinsun.com>
4897
4898 * src/bison.simple (YYCOPY): New macro.
4899 (YYSTACK_RELOCATE): Use it.
4900 Remove Type arg; no longer needed. All callers changed.
4901 (yymemcpy): Remove; no longer needed.
4902
4903 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
4904 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
4905
4906 2002-03-19 Akim Demaille <akim@epita.fr>
4907
4908 Test and fix the #line outputs.
4909
4910 * tests/atlocal.at (GCC): New.
4911 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
4912 (Prologue synch line, ,%union synch line, Postprologue synch line)
4913 (Action synch line, Epilogue synch line): New tests.
4914 * src/reader.c (parse_union_decl): Define the muscle stype_line.
4915 * data/bison.simple, data/bison.c++: Use it.
4916
4917 2002-03-19 Akim Demaille <akim@epita.fr>
4918
4919 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
4920 (Solved SR Conflicts, %expect not enough, %expect right)
4921 (%expect too much): Move to...
4922 * tests/conflicts.at: this new file.
4923
4924 2002-03-19 Akim Demaille <akim@epita.fr>
4925
4926 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
4927 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
4928 that we can move to enums for instance.
4929 * src/output.c (token_definitions_output): Output a list of
4930 `token-name, token-number' instead of the #define.
4931 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
4932
4933 2002-03-14 Akim Demaille <akim@epita.fr>
4934
4935 Use Gettext 0.11.1.
4936
4937 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
4938
4939 * data/bison.c++: Make the user able to add members to the generated
4940 parser by subclassing.
4941
4942 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
4943
4944 * src/reader.c (read_additionnal_code): `c' should be an integer, not
4945 a character.
4946 Reported by Nicolas Tisserand and Nicolas Burrus.
4947
4948 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
4949
4950 * src/reader.c: Warn about lacking semi-colons, do not complain.
4951
4952 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
4953
4954 * data/bison.c++: Remove a debug line.
4955
4956 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
4957
4958 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
4959 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
4960 provide a default implementation.
4961
4962 2002-03-04 Akim Demaille <akim@epita.fr>
4963
4964 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
4965 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
4966 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
4967 * tests/semantic.at (Parsing Guards): Similarly.
4968 * src/reader.at (readgram): Complain if the last rule is not ended
4969 with a semi-colon.
4970
4971 2002-03-04 Akim Demaille <akim@epita.fr>
4972
4973 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
4974 * src/closure.c: here.
4975 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
4976 RTC.
4977 * src/warshall.h, src/warshall.c: Remove.
4978 * tests/sets.at (Broken Closure): Adjust.
4979
4980 2002-03-04 Akim Demaille <akim@epita.fr>
4981
4982 * src/output.c (output_skeleton): tempdir is const.
4983 bytes_read is unused.
4984
4985 2002-03-04 Akim Demaille <akim@epita.fr>
4986
4987 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
4988 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
4989 Update.
4990 From Michael Hayes.
4991
4992 2002-03-04 Akim Demaille <akim@epita.fr>
4993
4994 * src/closure.c (closure): `r' is unused.
4995
4996 2002-03-04 Akim Demaille <akim@epita.fr>
4997
4998 * tests/sets.at (Broken Closure): Add the ending `;'.
4999 * src/reader.at (readgram): Complain if a rule is not ended with a
5000 semi-colon.
5001
5002 2002-03-04 Akim Demaille <akim@epita.fr>
5003
5004 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
5005 (count_sr_conflicts): Use bitset_count.
5006 * src/reduce.c (inaccessable_symbols): Ditto.
5007 (bits_size): Remove.
5008 * src/warshall.h, src/warshall.c: Convert to bitsetv.
5009
5010 2002-03-04 Akim Demaille <akim@epita.fr>
5011
5012 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
5013 * src/reduce.c: Remove the `bitset_zero's following the
5014 `bitset_create's, as now it is performed by the latter.
5015
5016 2002-03-04 Akim Demaille <akim@epita.fr>
5017
5018 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
5019 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
5020 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
5021 latest sources from Michael.
5022
5023 2002-03-04 Akim Demaille <akim@epita.fr>
5024
5025 * src/output.c (output): Don't free the grammar.
5026 * src/reader.c (grammar_free): New.
5027 * src/main.c (main): Call it and don't free symtab here.
5028
5029 2002-03-04 Akim Demaille <akim@epita.fr>
5030
5031 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
5032 before returning.
5033 Reported by Benoit Perrot.
5034
5035 2002-03-04 Akim Demaille <akim@epita.fr>
5036
5037 Use bitset operations when possible, not loops over bits.
5038
5039 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
5040 bitset_or.
5041 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
5042 * src/reduce.c (useless_nonterminals): Formatting changes.
5043 * src/warshall.c (TC): Use bitset_or.
5044
5045 2002-03-04 Akim Demaille <akim@epita.fr>
5046
5047 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
5048 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
5049 Ditto.
5050
5051 2002-03-04 Akim Demaille <akim@epita.fr>
5052
5053 * src/lalr.c (F): Now a bitset*.
5054 Adjust all dependencies.
5055
5056 2002-03-04 Akim Demaille <akim@epita.fr>
5057
5058 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
5059 Adjust all dependencies.
5060
5061 2002-03-04 Akim Demaille <akim@epita.fr>
5062
5063 * src/L0.c, src/LR0.h (nstates): Be size_t.
5064 Adjust comparisons (signed vs unsigned).
5065 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
5066 bitset*.
5067 Adjust all dependencies.
5068
5069 2002-03-04 Akim Demaille <akim@epita.fr>
5070
5071 * src/closure.c (firsts): Now, also a bitset.
5072 Adjust all dependencies.
5073 (varsetsize): Remove, now unused.
5074 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
5075
5076 2002-03-04 Akim Demaille <akim@epita.fr>
5077
5078 * src/print.c: Convert to use bitset.h, not hand coded iterations
5079 over ints.
5080
5081 2002-03-04 Akim Demaille <akim@epita.fr>
5082
5083 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
5084
5085 2002-03-04 Akim Demaille <akim@epita.fr>
5086
5087 * src/closure.c (ruleset): Be a bitset.
5088 (rulesetsize): Remove.
5089
5090 2002-03-04 Akim Demaille <akim@epita.fr>
5091
5092 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
5093 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
5094 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
5095 * src/closure.c (fderives): Be an array of bitsets.
5096
5097 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
5098
5099 * data/bison.c++: Merge the two generated headers. Insert a copyright
5100 notice in each output file.
5101
5102 2002-02-28 Akim Demaille <akim@epita.fr>
5103
5104 * data/bison.c++: Copy the prologue of bison.simple to fetch
5105 useful M4 definitions, such as b4_header_guard.
5106
5107 2002-02-25 Akim Demaille <akim@epita.fr>
5108
5109 * src/getargs.c (version): Give the name of the authors, and use a
5110 translator friendly scheme for the bgr
5111 copyright notice.
5112
5113 2002-02-25 Akim Demaille <akim@epita.fr>
5114
5115 * src/output.c (header_output): Remove, now handled completely via
5116 M4.
5117
5118 2002-02-25 Akim Demaille <akim@epita.fr>
5119
5120 * m4/m4.m4: New, from CVS Autoconf.
5121 * configure.in: Invoke it.
5122 * src/output.c (output_skeleton): Use its result instead of the
5123 hard coded name.
5124
5125 2002-02-25 Akim Demaille <akim@epita.fr>
5126
5127 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
5128 Fileutils 4.1.5.
5129 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
5130 * src/output.c (output_skeleton): Use mkstemp to create a real
5131 temporary file.
5132 Move the filling of `skeleton' and its muscle to...
5133 (prepare): here.
5134 (output): Move the definition of the prologue muscle to...
5135 (prepare): here.
5136 * src/system.h (DEFAULT_TMPDIR): New.
5137
5138 2002-02-14 Paul Eggert <eggert@twinsun.com>
5139
5140 Remove the support for C++ namespace cleanliness; it was
5141 causing more problems than it was curing, since it didn't work
5142 properly on some nonstandard C++ compilers. This can wait
5143 for a proper C++ parser.
5144
5145 * NEWS: Document this.
5146 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
5147 of C++, as it's treated like C now.
5148 * src/bison.simple (YYSTD): Remove.
5149 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
5150 Treat C++ just like Standard C instead of trying to support
5151 namespace cleanliness.
5152
5153 2002-02-14 Akim Demaille <akim@epita.fr>
5154
5155 * tests/regression.at (else): Adjust to Andreas' change.
5156
5157 2002-02-14 Akim Demaille <akim@epita.fr>
5158
5159 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
5160
5161 2002-02-13 Andreas Schwab <schwab@suse.de>
5162
5163 * src/output.c (output_rule_data): Don't output NULL, it might
5164 not be defined yet.
5165
5166 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
5167
5168 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
5169 (Copyright notice): Update.
5170
5171 2002-02-11 Akim Demaille <akim@epita.fr>
5172
5173 * tests/regression.at (%nonassoc and eof): Don't include
5174 nonportable headers.
5175
5176 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
5177
5178 * data/bison.c++: Correct error recovery. Make the user able to
5179 initialize the starting location.
5180
5181 2002-02-07 Akim Demaille <akim@epita.fr>
5182
5183 * tests/input.at: New.
5184
5185 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
5186
5187 * data/bison.c++: Replace some direct m4 expansions by constants. Be
5188 more consistent when naming methods and variables. Put preprocessor
5189 directives around tables only needed for debugging.
5190
5191 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
5192
5193 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
5194 C++ parsers.
5195 (yy::b4_name::parse): Use print_.
5196
5197 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
5198
5199 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
5200
5201 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
5202
5203 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
5204 C++ parsers.
5205 (yy::b4_name::parse): Build verbose error messages, and use error_.
5206
5207 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
5208
5209 * data/bison.c++: Fix m4 quoting in comments.
5210
5211 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
5212
5213 * data/bison.c++: Adjust the parser code. Fix some muscles that were
5214 not expanded by m4.
5215
5216 2002-02-05 Akim Demaille <akim@epita.fr>
5217
5218 * data/bison.c++: Adjust to the M4 back end.
5219 More is certainly needed.
5220
5221 2002-02-05 Akim Demaille <akim@epita.fr>
5222
5223 Give a try to M4 as a back end.
5224
5225 * lib/readpipe.c: New, from wdiff.
5226 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
5227 BISON_HAIRY.
5228 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
5229 specific values. Now it is m4 that performs the lookup.
5230 * src/parse-skel.y: Remove.
5231 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
5232 * src/output.c (actions_output, guards_output)
5233 (token_definitions_output): No longer keeps track of the output
5234 line number, hence remove the second argument.
5235 (guards_output): Check against the guard member of a rule, not the
5236 action member.
5237 Adjust callers.
5238 (output_skeleton): Don't look for the skeleton location, let m4 do
5239 that.
5240 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
5241 file will be used.
5242 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
5243 (prepare): Given that for the time being changesyntax is not
5244 usable in M4, rename the muscles using `-' to `_'.
5245 Define `defines_flag', `output_parser_name' and `output_header_name'.
5246 * src/output.h (actions_output, guards_output)
5247 (token_definitions_output): Adjust prototypes.
5248 * src/scan-skel.l: Instead of scanning the skeletons, it now
5249 processes the output of m4: `__oline__' and `#output'.
5250 * data/bison.simple: Adjust to be used by M4(sugar).
5251 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
5252 to date.
5253 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
5254 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
5255 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
5256 shamelessly stolen from CVS Autoconf.
5257
5258 2002-02-05 Akim Demaille <akim@epita.fr>
5259
5260 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
5261 * configure.in: Check for the declarations of free and malloc.
5262 * src/muscle_tab.c: Adjust.
5263
5264 2002-02-05 Akim Demaille <akim@epita.fr>
5265
5266 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
5267 which have no values.
5268
5269 2002-02-05 Akim Demaille <akim@epita.fr>
5270
5271 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
5272 * data/: here.
5273
5274 2002-01-29 Paul Eggert <eggert@twinsun.com>
5275
5276 * src/bison.simple (YYSIZE_T): Do not define merely because
5277 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
5278 On some platforms, <alloca.h> does not declare YYSTD (size_t).
5279
5280 2002-01-27 Akim Demaille <akim@epita.fr>
5281
5282 Fix `%nonassoc and eof'.
5283
5284 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
5285 which were not properly copied! Replace
5286 memcpy (res->errs, src->errs, src->nerrs);
5287 with
5288 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
5289 !!!
5290 * tests/regression.at (%nonassoc and eof): Adjust to newest
5291 Autotest: `.' is not in the PATH.
5292
5293 2002-01-27 Akim Demaille <akim@epita.fr>
5294
5295 * tests/sets.at (AT_EXTRACT_SETS): New.
5296 (Nullable): Use it.
5297 (Firsts): New.
5298
5299 2002-01-26 Akim Demaille <akim@epita.fr>
5300
5301 * tests/actions.at, tests/calc.at, tests/headers.at,
5302 * tests/torture.at: Adjust to the newest Autotest which no longer
5303 forces `.' in the PATH.
5304
5305 2002-01-25 Akim Demaille <akim@epita.fr>
5306
5307 * tests/regression.at (%nonassoc and eof): New.
5308 Suggested by Robert Anisko.
5309
5310 2002-01-24 Akim Demaille <akim@epita.fr>
5311
5312 Bison dumps core when trying to complain about broken input files.
5313 Reported by Cris van Pelt.
5314
5315 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
5316 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
5317 into...
5318 (Invalid inputs): Strengthen: exercise parse_percent_token.
5319
5320 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
5321
5322 * src/Makefile.am: Add bison.c++.
5323 * src/bison.c++: New skeleton.
5324
5325 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
5326
5327 * po/it.po: New.
5328
5329 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
5330
5331 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
5332
5333 2002-01-20 Marc Autret <marc@gnu.org>
5334
5335 * src/files.c (compute_output_file_names): Fix
5336
5337 2002-01-20 Marc Autret <marc@gnu.org>
5338
5339 * tests/output.at: New test.
5340 * src/files.c (compute_base_names): Don't map extensions when
5341 the YACC flag is set, use defaults.
5342 Reported by Evgeny Stambulchik.
5343
5344 2002-01-20 Marc Autret <marc@gnu.org>
5345
5346 * src/system.h: Need to define __attribute__ away for non-GCC
5347 compilers as well (i.e. the vendor C compiler).
5348 Suggested by Albert Chin-A-Young.
5349
5350 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
5351
5352 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
5353 canonical definition.
5354 * src/system.h: Use the canonical definition for PARAMS (avoids
5355 a conflict with the macro from lib/hash.h).
5356
5357 2002-01-11 Akim Demaille <akim@epita.fr>
5358
5359 * configure.in: Use AC_FUNC_STRNLEN.
5360 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
5361
5362 2002-01-09 Akim Demaille <akim@epita.fr>
5363
5364 * src/files.c, src/files.h (output_infix): New.
5365 (tab_extension): Remove.
5366 (compute_base_names): Compute the former, drop the latter.
5367 * src/output.c (prepare): Insert the muscles `output-infix', and
5368 `output-suffix'.
5369 * src/parse-skel.y (string, string.1): New.
5370 (section.header): Use it.
5371 (section.yacc): Remove.
5372 (prefix): Remove too.
5373 * src/scan-skel.l: Adjust.
5374 * src/bison.simple, src/bison.hairy: Adjust.
5375
5376 2002-01-09 Akim Demaille <akim@epita.fr>
5377
5378 * configure.in (WERROR_CFLAGS): Compute it.
5379 * src/Makefile.am (CFLAGS): Pass it.
5380 * tests/atlocal.in (CFLAGS): Idem.
5381 * src/files.c: Fix a few warnings.
5382 (get_extension_index): Remove, unused.
5383
5384 2002-01-08 Akim Demaille <akim@epita.fr>
5385
5386 * src/getargs.c (AS_FILE_NAME): New.
5387 (getargs): Use it to convert DOSish file names.
5388 * src/files.c (base_name): Rename as full_base_name to avoid
5389 clashes with `base_name ()'.
5390 (filename_split): New.
5391 (compute_base_names): N-th rewrite, using filename_split.
5392
5393 2002-01-08 Akim Demaille <akim@epita.fr>
5394
5395 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
5396 New, stolen from the Fileutils 4.1.
5397 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
5398 * configure.in: Check for the presence of memrchr, and of its
5399 prototype.
5400
5401 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
5402
5403 * lib/hash.h (__P): Added definition for this macro.
5404 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
5405 BUILT_SOURCES, to ensure they are generated first.
5406 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
5407 %error-verbose to allow bootstrapping with bison 1.30x.
5408
5409 2002-01-06 Akim Demaille <akim@epita.fr>
5410
5411 * src/reader.c (parse_braces): Don't fetch the next char, the
5412 convention is to fetch on entry.
5413 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
5414 'switch' without a following semicolon.
5415 * tests/regression.at (braces parsing): New.
5416
5417 2002-01-06 Akim Demaille <akim@epita.fr>
5418
5419 Bison is dead wrong in its RR conflict reports.
5420
5421 * tests/torture.at (GNU Cim Grammar): New.
5422 * src/conflicts.c (count_rr_conflicts): Fix.
5423
5424 2002-01-06 Akim Demaille <akim@epita.fr>
5425
5426 Creating package.m4 from configure.ac causes too many problems.
5427
5428 * tests/Makefile.am (package.m4): Create it by hand,
5429 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
5430
5431 2002-01-06 Akim Demaille <akim@epita.fr>
5432
5433 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
5434 skeleton.h.
5435
5436 2002-01-04 Paul Eggert <eggert@twinsun.com>
5437
5438 * doc/bison.texinfo (Debugging):
5439 Remove YYSTDERR; it's no longer defined or used.
5440 Also, s/cstdio.h/cstdio/.
5441
5442 2002-01-03 Akim Demaille <akim@epita.fr>
5443
5444 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
5445
5446 2002-01-03 Akim Demaille <akim@epita.fr>
5447
5448 * src/parse-skel.y (process_skeleton): Don't bind the parser's
5449 tracing code to --trace, wait for a better --trace option, with
5450 args.
5451
5452 2002-01-03 Akim Demaille <akim@epita.fr>
5453
5454 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
5455 The ISO C++ standard is extremely clear about it: stderr is
5456 considered a macro, not a regular symbol (see table 94 `Header
5457 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
5458 Therefore std:: does not apply to it. It still does with fprintf.
5459 Also, s/cstdio.h/cstdio/.
5460
5461 2002-01-03 Akim Demaille <akim@epita.fr>
5462
5463 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
5464 for non system headers.
5465
5466 2002-01-02 Akim Demaille <akim@epita.fr>
5467
5468 Equip the skeleton chain with location tracking, runtime trace,
5469 pure parser and scanner.
5470
5471 * src/parse-skel.y: Request a pure parser, locations, and prefix
5472 renaming.
5473 (%union): Having several members with the same type does not help
5474 type mismatches, simplify.
5475 (YYPRINT, yyprint): New.
5476 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
5477 (skel_error): this.
5478 Handle locations.
5479 * src/scan-skel.l: Adjust to these changes.
5480 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
5481 (LOCATION_PRINT, skel_control_t): New.
5482
5483 2001-12-30 Akim Demaille <akim@epita.fr>
5484
5485 * src/parse-skel.y: Get rid of the shift/reduce conflict:
5486 replace `gb' with BLANKS.
5487 * src/scan-skel.l: Adjust.
5488
5489 2001-12-30 Akim Demaille <akim@epita.fr>
5490
5491 * src/system.h: We don't need nor want bcopy.
5492 Throw away MS-DOS crap: we don't need getpid.
5493 * configure.in: We don't need strndup. It was even causing
5494 problems: because Flex includes the headers *before* us,
5495 _GNU_SOURCE is not defined by config.h, and therefore strndup was
5496 not visible.
5497 * lib/xstrndup.c: New.
5498 * src/scan-skel.l: Use it.
5499 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
5500 * src/parse-skel.y: Use %directives instead of #defines.
5501
5502 2001-12-30 Akim Demaille <akim@epita.fr>
5503
5504 * src/skeleton.h: New.
5505 * src/output.c (output_parser, output_master_parser): Remove, dead
5506 code.
5507 * src/output.h (get_lines_number, actions_output, guards_output)
5508 (token_definitions_output): Prototype them.
5509 * src/parse-skel.y: Add the license notice.
5510 Include output.h and skeleton.h.
5511 (process_skeleton): Returns void, and takes a single parameter.
5512 * src/scan-skel.l: Add the license notice.
5513 Include skeleton.h.
5514 Don't use %option yylineno: it seems that then Flex imagines
5515 REJECT has been used, and therefore it won't reallocate its
5516 buffers (which makes no other sense to me than a bug). It results
5517 in warnings for `unused: yy_flex_realloc'.
5518
5519 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
5520
5521 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
5522 (MUSCLE_INSERT_PREFIX): ...to there.
5523 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
5524 (MUSCLE_INSERT_PREFIX): Move from here...
5525
5526 * src/bison.hairy: Add a section directive. Put braces around muscle
5527 names. This parser skeleton is still broken, but Bison should not
5528 choke on a bad muscle 'syntax'.
5529 * src/bison.simple: Add a section directive. Put braces around muscle
5530 names.
5531
5532 * src/files.h (strsuffix, stringappend): Add declarations.
5533 (tab_extension): Add declaration.
5534 (short_base_name): Add declaration.
5535
5536 * src/files.c (strsuffix, stringappend): No longer static. These
5537 functions are used in the skeleton parser.
5538 (tab_extension): New.
5539 (compute_base_names): Use the computations done in this function
5540 to guess if the generated parsers should have '.tab' in their
5541 names.
5542 (short_base_name): No longer static.
5543
5544 * src/output.c (output_skeleton): New.
5545 (output): Disable call to output_master_parser, and give a try to
5546 a new skeleton handling system.
5547 (guards_output, actions_output): No longer static.
5548 (token_definitions_output, get_lines_number): No longer static.
5549
5550 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
5551
5552 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
5553 parse-skel.y.
5554
5555 * src/parse-skel.y: New file.
5556 * src/scan-skel.l: New file.
5557
5558 2001-12-29 Akim Demaille <akim@epita.fr>
5559
5560 %name-prefix is broken.
5561
5562 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
5563 Adjust all dependencies.
5564 * tests/headers.at (export YYLTYPE): Strengthen this test: use
5565 %name-prefix.
5566
5567 Renaming yylval but not yylloc is not consistent. Now we do.
5568
5569 * src/bison.simple: Prefix yylloc if used.
5570 * doc/bison.texinfo (Decl Summary): Document that.
5571
5572 2001-12-29 Akim Demaille <akim@epita.fr>
5573
5574 * doc/bison.texinfo: Promote `%long-directive' over
5575 `%long_directive'.
5576 Remove all references to fixed-output-files, yacc is enough.
5577
5578 2001-12-29 Akim Demaille <akim@epita.fr>
5579
5580 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
5581 user prologue. These are defaults.
5582 * tests/actions.at (Mid-rule actions): Make sure the user can
5583 define YYDEBUG and YYERROR_VERBOSE.
5584
5585 2001-12-29 Akim Demaille <akim@epita.fr>
5586
5587 * src/output.c (header_output): Don't forget to export YYLTYPE and
5588 yylloc.
5589 * tests/headers.at (export YYLTYPE): New, make sure it does.
5590 * tests/regression.at (%union and --defines, Invalid CPP headers):
5591 Move to...
5592 * tests/headers.at: here.
5593
5594 2001-12-29 Akim Demaille <akim@epita.fr>
5595
5596 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
5597
5598 2001-12-29 Akim Demaille <akim@epita.fr>
5599
5600 * tests/actions.at (Mid-rule actions): Output on a single line
5601 instead of several.
5602
5603 2001-12-29 Akim Demaille <akim@epita.fr>
5604
5605 * doc/bison.texinfo: Formatting changes.
5606
5607 2001-12-29 Akim Demaille <akim@epita.fr>
5608
5609 Don't store the token defs in a muscle, just be ready to output it
5610 on command. Now possible via `symbols'. Fixes a memory leak.
5611
5612 * src/output.c (token_definitions_output): New.
5613 (output_parser, header_output): Use it.
5614 * src/reader.c (symbols_save): Remove.
5615
5616 2001-12-29 Akim Demaille <akim@epita.fr>
5617
5618 * src/bison.simple: Do not provide a default for YYSTYPE and
5619 YYLTYPE before the user's prologue. Otherwise it's hardly... a
5620 default.
5621
5622 2001-12-29 Akim Demaille <akim@epita.fr>
5623
5624 Mid-rule actions are simply... ignored!
5625
5626 * src/reader.c (readgram): Be sure to attach mid-rule actions to
5627 the empty-rule associated to the dummy symbol, not to the host
5628 rule.
5629 * tests/actions.at (Mid-rule actions): New.
5630
5631 2001-12-29 Akim Demaille <akim@epita.fr>
5632
5633 Memory leak.
5634
5635 * src/reader.c (reader): Free grammar.
5636
5637 2001-12-29 Akim Demaille <akim@epita.fr>
5638
5639 Memory leak.
5640
5641 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
5642 since it allocates it for each state, although only one is needed.
5643 (allocate_storage): Do it here.
5644
5645 2001-12-29 Akim Demaille <akim@epita.fr>
5646
5647 * src/options.h, src/options.c (create_long_option_table): Rename
5648 as...
5649 (long_option_table_new): this, with a clearer prototype.
5650 (percent_table): Remove, unused,
5651 * src/getargs.c (getargs): Adjust.
5652
5653 2001-12-29 Akim Demaille <akim@epita.fr>
5654
5655 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
5656 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
5657 as states.
5658
5659 2001-12-29 Akim Demaille <akim@epita.fr>
5660
5661 * src/lalr.c (build_relations): Rename `states' as `states1'.
5662 Sorry, I don't understand exactly what it is, no better name...
5663
5664 2001-12-29 Akim Demaille <akim@epita.fr>
5665
5666 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
5667 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
5668 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
5669 as rules.
5670
5671 2001-12-29 Akim Demaille <akim@epita.fr>
5672
5673 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
5674 ago.
5675
5676 2001-12-29 Akim Demaille <akim@epita.fr>
5677
5678 * src/reader.c, src/reader.h (user_toknums): Remove.
5679 Adjust all users to use symbols[i]->user_token_number.
5680
5681 2001-12-29 Akim Demaille <akim@epita.fr>
5682
5683 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
5684 Adjust all users to use symbols[i]->prec or ->assoc.
5685
5686 2001-12-29 Akim Demaille <akim@epita.fr>
5687
5688 * src/reader.c, src/reader.h (tags): Remove.
5689 Adjust all users to use symbols[i]->tag.
5690
5691 2001-12-29 Akim Demaille <akim@epita.fr>
5692
5693 * src/gram.h, src/gram.c (symbols): New, similar to state_table
5694 and rule_table.
5695 * src/reader.c (packsymbols): Fill this table.
5696 Drop sprec.
5697 * src/conflicts.c (resolve_sr_conflict): Adjust.
5698 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
5699 single table.
5700 Use symbols[i]->tag instead of tags[i].
5701
5702 2001-12-29 Akim Demaille <akim@epita.fr>
5703
5704 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
5705 In addition, put a comment in there, to replace...
5706 * tests/regression.at (%union and C comments): Remove.
5707
5708 2001-12-29 Akim Demaille <akim@epita.fr>
5709
5710 * tests/regression.at (Web2c Actions): Blindly move the actual
5711 output as expected output. The contents *seem* right to me, but I
5712 can't pretend reading perfectly parser tables... Nonetheless, all
5713 the other tests pass correctly, the table look OK, even though the
5714 presence of `$axiom' is to be noted: AFAICS it is useless (but
5715 harmless).
5716
5717 2001-12-29 Akim Demaille <akim@epita.fr>
5718
5719 * src/reader.c (readgram): Don't add the rule 0 if there were no
5720 rules read. In other words, add it _after_ having performed
5721 grammar sanity checks.
5722 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
5723
5724 2001-12-29 Akim Demaille <akim@epita.fr>
5725
5726 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
5727 visible, and some states have now a different number.
5728
5729 2001-12-29 Akim Demaille <akim@epita.fr>
5730
5731 * src/reader.c (readgram): Bind the initial rule's lineno to that
5732 of the first rule.
5733 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
5734 (Solved SR Conflicts): Adjust rule 0's line number.
5735
5736 2001-12-29 Akim Demaille <akim@epita.fr>
5737
5738 Fix the `GAWK Grammar' failure.
5739
5740 * src/LR0.c (final_state): Initialize to -1 so that we do compute
5741 the reductions of the first state which was mistakenly confused
5742 with the final state because precisely final_state was initialized
5743 to 0.
5744 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
5745 now noticed by Bison.
5746 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
5747 have a reduction on $default.
5748
5749 2001-12-29 Akim Demaille <akim@epita.fr>
5750
5751 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
5752 rule line numbers.
5753 * src/closure.c (print_closure): Likewise.
5754 * src/derives.c (print_derives): Likewise.
5755 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
5756 now.
5757
5758 2001-12-29 Akim Demaille <akim@epita.fr>
5759
5760 * src/lalr.c (lookaheads_print): New.
5761 (lalr): Call it when --trace-flag.
5762 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
5763 are dumped.
5764
5765 2001-12-29 Akim Demaille <akim@epita.fr>
5766
5767 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
5768 when walking through ritem, even via rule->rhs.
5769 * src/reduce.c (dump_grammar, useful_production, reduce_output)
5770 (useful_production, useless_nonterminals): Likewise.
5771 (reduce_grammar_tables): Likewise, plus update nritems.
5772 * src/nullable.c (set_nullable): Likewise.
5773 * src/lalr.c (build_relations): Likewise.
5774 * tests/sets.at (Nullable): Adjust.
5775 Fortunately, now, the $axiom is no longer nullable.
5776
5777 2001-12-29 Akim Demaille <akim@epita.fr>
5778
5779 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
5780 the 0-sentinel.
5781 * src/gram.c (ritem_longest_rhs): Likewise.
5782 * src/reduce.c (nonterminals_reduce): Likewise.
5783 * src/print_graph.c (print_graph): Likewise.
5784 * src/output.c (output_rule_data): Likewise.
5785 * src/nullable.c (set_nullable): Likewise.
5786
5787 2001-12-29 Akim Demaille <akim@epita.fr>
5788
5789 * src/output.c: Comment changes.
5790
5791 2001-12-27 Paul Eggert <eggert@twinsun.com>
5792
5793 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
5794 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
5795 Sparc, as they were causing more porting problems than the
5796 (minor) performance improvement was worth.
5797
5798 Also, catch up with 1.31's YYSTD.
5799
5800 2001-12-27 Akim Demaille <akim@epita.fr>
5801
5802 * src/output.c (output_gram): Rely on nritems, not the
5803 0-sentinel. See below.
5804 Use -1 as separator, not 0.
5805 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
5806 Rely on -1 as separator in yyrhs, instead of 0.
5807 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
5808 twice `Now at end of input', therefore there are two lines less to
5809 expect.
5810
5811 2001-12-27 Akim Demaille <akim@epita.fr>
5812
5813 * tests/regression.at (Unresolved SR Conflicts):
5814 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
5815 below.
5816
5817 2001-12-27 Akim Demaille <akim@epita.fr>
5818
5819 * src/LR0.c (new_state): Recognize the final state by the fact it
5820 is reached by eoftoken.
5821 (insert_start_shifting_state, insert_eof_shifting_state)
5822 (insert_accepting_state, augment_automaton): Remove, since now
5823 these states are automatically computed from the initial state.
5824 (generate_states): Adjust.
5825 * src/print.c: When reporting a rule number to the user, substract
5826 1, so that the axiom rule is rule 0, and the first user rule is 1.
5827 * src/reduce.c: Likewise.
5828 * src/print_graph.c (print_core): For the time being, just as for
5829 the report, depend upon --trace-flags to dump the full set of
5830 items.
5831 * src/reader.c (readgram): Once the grammar read, insert the rule
5832 0: `$axiom: START-SYMBOL $'.
5833 * tests/set.at: Adjust: rule 0 is now displayed, and since the
5834 number of the states has changed (the final state is no longer
5835 necessarily the last), catch up.
5836
5837 2001-12-27 Akim Demaille <akim@epita.fr>
5838
5839 Try to make the use of the eoftoken valid. Given that its value
5840 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
5841 is used instead of > 0 where appropriate, (ii), depend upon nritems
5842 instead of the 0-sentinel.
5843
5844 * src/gram.h, src/gram.c (nritems): New.
5845 Expected to be duplication of nitems, but for the time being...
5846 * src/reader.c (packgram): Assert nritems and nitems are equal.
5847 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
5848 * src/closure.c (print_closure, print_fderives): Likewise.
5849 * src/gram.c (ritem_print): Likewise.
5850 * src/print.c (print_core, print_grammar): Likewise.
5851 * src/print_graph.c: Likewise.
5852
5853 2001-12-27 Akim Demaille <akim@epita.fr>
5854
5855 * src/main.c (main): If there are complains after grammar
5856 reductions, then output the report anyway if requested, then die.
5857 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
5858 * src/reader.c (eoftoken): New.
5859 (parse_token_decl): If the token being defined has value `0', it
5860 is the eoftoken.
5861 (packsymbols): No longer hack `tags' to insert `$' by hand.
5862 Be sure to preserve the value of the eoftoken.
5863 (reader): Make sure eoftoken is defined.
5864 Initialize nsyms to 0: now eoftoken is created just like the others.
5865 * src/print.c (print_grammar): Don't special case the eof token.
5866 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
5867 lie anyway, albeit pleasant.
5868 * tests/calc.at: Exercise error messages with eoftoken.
5869 Change the grammar so that empty input is invalid.
5870 Adjust expectations.
5871 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
5872
5873 2001-12-27 Akim Demaille <akim@epita.fr>
5874
5875 * configure.in: Check the protos of strchr ans strspn.
5876 Replace strchr if needed.
5877 * src/system.h: Provide the protos of strchr, strspn and memchr if
5878 missing.
5879 * lib/strchr.c: New.
5880 * src/reader.c (symbols_save): Use strchr.
5881
5882 2001-12-27 Akim Demaille <akim@epita.fr>
5883
5884 * src/print.c, src/print_graph.c (escape): New.
5885 Use it to quote the TAGS outputs.
5886 * src/print_graph.c (print_state): Now errors are in red, and
5887 reductions in green.
5888 Prefer high to wide: output the state number on a line of its own.
5889
5890 2001-12-27 Akim Demaille <akim@epita.fr>
5891
5892 * src/state.h, src/state.c (reductions_new): New.
5893 * src/LR0.c (set_state_table): Let all the states have a
5894 `reductions', even if reduced to 0.
5895 (save_reductions): Adjust.
5896 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
5897 * src/print.c (print_reductions, print_actions): Adjust.
5898 * src/output.c (action_row): Adjust.
5899
5900 2001-12-27 Akim Demaille <akim@epita.fr>
5901
5902 * src/state.h, src/state.c (errs_new, errs_dup): New.
5903 * src/LR0.c (set_state_table): Let all the states have an errs,
5904 even if reduced to 0.
5905 * src/print.c (print_errs, print_reductions): Adjust.
5906 * src/output.c (output_actions, action_row): Adjust.
5907 * src/conflicts.c (resolve_sr_conflict): Adjust.
5908
5909 2001-12-27 Akim Demaille <akim@epita.fr>
5910
5911 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
5912
5913 2001-12-27 Akim Demaille <akim@epita.fr>
5914
5915 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
5916 * src/print.c: here.
5917 (lookaheadset, shiftset): New, used as additional storage by
5918 print_reductions.
5919 (print_results): Adjust.
5920 (print_shifts, print_gotos, print_errs): New, extracted from...
5921 (print_actions): here.
5922 * src/print_graph.c (print_actions): Remove dead code.
5923
5924 2001-12-27 Akim Demaille <akim@epita.fr>
5925
5926 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
5927 `$n' and `@n'.
5928
5929 2001-12-27 Akim Demaille <akim@epita.fr>
5930
5931 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
5932 (build_relations): Adjust.
5933
5934 2001-12-27 Akim Demaille <akim@epita.fr>
5935
5936 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
5937 duplication.
5938
5939 2001-12-27 Akim Demaille <akim@epita.fr>
5940
5941 * src/reader.c (packgram): Catch nitems overflows.
5942
5943 2001-12-27 Akim Demaille <akim@epita.fr>
5944
5945 * src/files.c, src/files.h (guard_obstack): Remove.
5946 * src/output.c (output): Adjust.
5947 * src/reader.c (parse_braces): New, factoring...
5948 (copy_action, copy_guard): these two which are renamed as...
5949 (parse_action, parse_guard): these.
5950 As a voluntary consequence, using braces around guards is now
5951 mandatory.
5952
5953 2001-12-27 Akim Demaille <akim@epita.fr>
5954
5955 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
5956 * src/reader.c (symbol_list): `guard' and `guard_line' are new
5957 members.
5958 (symbol_list_new): Adjust.
5959 (copy_action): action_line is the first line, not the last.
5960 (copy_guard): Just as for actions, store the `action' only, not
5961 the switch/case/break flesh.
5962 Don't parse the user action that might follow the guard, let...
5963 (readgram): do it, i.e., now, there can be an action after a
5964 guard.
5965 In other words the guard is just explicitly optional.
5966 (packgram): Adjust.
5967 * src/output.c (guards_output): New.
5968 (output_parser): Call it when needed.
5969 (output): Also free the guard and attrs obstacks.
5970 * src/files.c, src/files.h (obstack_save): Remove.
5971 (output_files): Remove.
5972 As a result, if one needs the former `.act' file, using an
5973 appropriate skeleton which requires actions and guards is now
5974 required.
5975 * src/main.c (main): Adjust.
5976 * tests/semantic.at: New.
5977 * tests/regression.at: Use `input.y' as input file name.
5978 Avoid 8+3 problems by requiring input.c when the test needs the
5979 parser.
5980
5981 2001-12-27 Akim Demaille <akim@epita.fr>
5982
5983 * src/reader.c (symbol_list_new): Be sure to initialize all the
5984 fields.
5985
5986 2001-12-27 Akim Demaille <akim@epita.fr>
5987
5988 All the hacks using a final pseudo state are now useless.
5989
5990 * src/LR0.c (set_state_table): state_table holds exactly nstates.
5991 * src/lalr.c (nLA): New.
5992 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
5993 instead of lookaheadsp from the pseudo state (nstate + 1).
5994
5995 2001-12-27 Akim Demaille <akim@epita.fr>
5996
5997 * src/output.c (action_row, token_actions): Use a state_t instead
5998 of a integer, and nlookaheads instead of the following state's
5999 lookaheadsp.
6000
6001 2001-12-27 Akim Demaille <akim@epita.fr>
6002
6003 * src/conflicts.c (log_resolution, flush_shift)
6004 (resolve_sr_conflict, set_conflicts, solve_conflicts)
6005 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
6006 (conflicts_print, print_reductions): Use a state_t instead of an
6007 integer when referring to a state.
6008 As much as possible, depend upon nlookaheads, instead of the
6009 `lookaheadsp' member of the following state (since lookaheads of
6010 successive states are successive, the difference between state n + 1
6011 and n served as the number of lookaheads for state n).
6012 * src/lalr.c (add_lookback_edge): Likewise.
6013 * src/print.c (print_core, print_actions, print_state)
6014 (print_results): Likewise.
6015 * src/print_graph.c (print_core, print_actions, print_state)
6016 (print_graph): Likewise.
6017 * src/conflicts.h: Adjust.
6018
6019 2001-12-27 Akim Demaille <akim@epita.fr>
6020
6021 * src/bison.hairy: Formatting/comment changes.
6022 ANSIfy.
6023 Remove `register' indications.
6024 Add plenty of `static'.
6025
6026 2001-12-27 Akim Demaille <akim@epita.fr>
6027
6028 * src/output.c (prepare): Drop the muscle `ntbase' which
6029 duplicates ntokens.
6030 * src/bison.simple: Formatting/comment changes.
6031 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
6032 is an undocumented synonym.
6033
6034 2001-12-22 Akim Demaille <akim@epita.fr>
6035
6036 * src/output.c (output_table_data): Change the prototype to use
6037 `int' for array ranges: some invocations do pass an int, not a
6038 short.
6039 Reported by Wayne Green.
6040
6041 2001-12-22 Akim Demaille <akim@epita.fr>
6042
6043 Some actions of web2c.y are improperly triggered.
6044 Reported by Mike Castle.
6045
6046 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
6047 * tests/regression.at (Web2c): Rename as...
6048 (Web2c Report): this.
6049 (Web2c Actions): New.
6050
6051 2001-12-22 Akim Demaille <akim@epita.fr>
6052
6053 Reductions in web2c.y are improperly reported.
6054 Reported by Mike Castle.
6055
6056 * src/conflicts.c (print_reductions): Fix.
6057 * tests/regression.at (Web2c): New.
6058
6059 2001-12-18 Akim Demaille <akim@epita.fr>
6060
6061 Some host fail on `assert (!"foo")', which expands to
6062 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
6063 Reported by Nelson Beebee.
6064
6065 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
6066 `#define it_succeeded 0' and `assert (it_succeeded)'.
6067
6068 2001-12-17 Marc Autret <autret_m@epita.fr>
6069
6070 * src/bison.simple: Don't hard code the skeleton line and filename.
6071 * src/output.c (output_parser): Rename 'line' as 'output_line'.
6072 New line counter 'skeleton_line' (skeleton-line muscle).
6073
6074 2001-12-17 Paul Eggert <eggert@twinsun.com>
6075
6076 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
6077 YYDEBUG must be defined to a nonzero value.
6078
6079 * src/bison.simple (yytname): Do not assume that the user defines
6080 YYDEBUG to a properly parenthesized expression.
6081
6082 2001-12-17 Akim Demaille <akim@epita.fr>
6083
6084 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
6085 nlookaheads is a new member.
6086 Adjust all users.
6087 * src/lalr.h (nlookaheads): Remove this orphan declaration.
6088 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
6089 state.
6090
6091 2001-12-17 Akim Demaille <akim@epita.fr>
6092
6093 * src/files.h, src/files.c (open_files, close_files): Remove.
6094 * src/main.c (main): Don't open/close files, nor invoke lex_free,
6095 let...
6096 * src/reader.c (reader): Do it.
6097
6098 2001-12-17 Akim Demaille <akim@epita.fr>
6099
6100 * src/conflicts.c (print_reductions): Formatting changes.
6101
6102 2001-12-17 Akim Demaille <akim@epita.fr>
6103
6104 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
6105 (flush_reduce): New.
6106 (resolve_sr_conflict): Adjust.
6107
6108 2001-12-17 Akim Demaille <akim@epita.fr>
6109
6110 * src/output.c (output_obstack): Be static and rename as...
6111 (format_obstack): this, to avoid any confusion with files.c's
6112 output_obstack.
6113 * src/reader.h (muscle_obstack): Move to...
6114 * src/output.h: here, since it's defined in output.c.
6115
6116 2001-12-17 Akim Demaille <akim@epita.fr>
6117
6118 * src/output.c (action_row, save_column, default_goto)
6119 (sort_actions, matching_state, pack_vector): Better variable
6120 locality.
6121
6122 2001-12-17 Akim Demaille <akim@epita.fr>
6123
6124 * src/output.c: Various formatting changes.
6125
6126 2001-12-17 Akim Demaille <akim@epita.fr>
6127
6128 * src/files.c (output_files): Free the output_obstack.
6129 * src/main.c (main): Call print and print_graph conditionally.
6130 * src/print.c (print): Work unconditionally.
6131 * src/print_graph.c (print_graph): Work unconditionally.
6132 * src/conflicts.c (log_resolution): Output only if verbose_flag.
6133
6134 2001-12-16 Marc Autret <autret_m@epita.fr>
6135
6136 * src/output.c (actions_output): Fix. When we use %no-lines,
6137 there is one less line per action.
6138
6139 2001-12-16 Marc Autret <autret_m@epita.fr>
6140
6141 * src/bison.simple: Remove a useless #line directive.
6142 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
6143 * src/output.c (get_lines_number): New.
6144 (output_parser): Adjust, now takes care about the lines of a
6145 output muscles.
6146 Fix line numbering.
6147 (actions_output): Computes the number of lines taken by actions.
6148 (output_master_parser): Insert new skeleton which is the name of
6149 the output parser file name.
6150
6151 2001-12-15 Marc Autret <autret_m@epita.fr>
6152
6153 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
6154
6155 2001-12-15 Marc Autret <autret_m@epita.fr>
6156
6157 * src/output.c (output_gram): Keep track of the hairy one.
6158
6159 2001-12-15 Akim Demaille <akim@epita.fr>
6160
6161 Make `make distcheck' work.
6162
6163 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
6164 system.h which uses libgettext.h.
6165
6166 2001-12-15 Akim Demaille <akim@epita.fr>
6167
6168 * src/nullable.c (set_nullable): Useless rules must be skipped,
6169 otherwise, since we range over their symbols, we might look at a
6170 nonterminal which no longer ``exists'', i.e., it is not counted in
6171 `nvars', hence we overflow our arrays.
6172
6173 2001-12-15 Akim Demaille <akim@epita.fr>
6174
6175 The header can also be produced directly, without any obstack!
6176 Yahoo!
6177
6178 * src/files.c, src/files.h (defines_obstack): Remove.
6179 (compute_header_macro): Global.
6180 (defines_obstack_save): Remove.
6181 * src/reader.c (parse_union_decl): No longer output to
6182 defines_obstack: its content can be found in the `stype' muscle
6183 anyway.
6184 (output_token_translations): Merge into...
6185 (symbols_output): this.
6186 Rename as...
6187 (symbols_save): this.
6188 (reader): Adjust.
6189 * src/output.c (header_output): New.
6190 (output): Call it.
6191
6192 2001-12-15 Akim Demaille <akim@epita.fr>
6193
6194 * src/reader.c (parse_union_decl): Instead of handling two obstack
6195 simultaneously, use one to define the `stype' muscle, and use the
6196 value of the latter to fill defines_obstack.
6197 (copy_comment): Remove.
6198 (copy_comment2): Work for a single obstack.
6199 Rename as...
6200 (copy_comment): this.
6201
6202 2001-12-15 Akim Demaille <akim@epita.fr>
6203
6204 * src/lex.c, src/lex.h (xgetc): No longer static.
6205 * src/reader.c (parse_union_decl): Revamp.
6206
6207 2001-12-15 Akim Demaille <akim@epita.fr>
6208
6209 Still making progress in separating Bison into (i) input, (ii)
6210 process, (iii) output: now we can directly output the parser file
6211 without using table_obstack at all.
6212
6213 * src/files.c, src/files.h (table_obstack): Bye bye.
6214 (parser_file_name): New.
6215 * src/files.c (compute_output_file_names): Compute it.
6216 * src/output.c (actions_output, output_parser)
6217 (output_master_parser): To a file instead of an obstack.
6218
6219 2001-12-15 Akim Demaille <akim@epita.fr>
6220
6221 Attach actions to rules, instead of pre-outputting them to
6222 actions_obstack.
6223
6224 * src/gram.h (rule_t): action and action_line are new members.
6225 * src/reader.c (symbol_list): Likewise.
6226 (copy_action): Save the actions within the rule.
6227 (packgram): Save them in rule_table.
6228 * src/output.c (actions_output): New.
6229 (output_parser): Use it on `%%actions'.
6230 (output_rule_data): Don't free rule_table.
6231 (output): Do it.
6232 (prepare): Don't save the `action' muscle.
6233 * src/bison.simple: s/%%action/%%actions/.
6234
6235 2001-12-15 Akim Demaille <akim@epita.fr>
6236
6237 * src/reader.c (copy_action): When --yacc, don't append a `;'
6238 to the user action: let it fail if lacking.
6239 Suggested by Arnold Robbins and Tom Tromey.
6240
6241 2001-12-14 Akim Demaille <akim@epita.fr>
6242
6243 * src/lex.c (literalchar): Simply return the char you decoded, non
6244 longer mess around with obstacks and int pointers.
6245 Adjust all callers.
6246
6247 2001-12-14 Akim Demaille <akim@epita.fr>
6248
6249 * src/lex.c (literalchar): Don't escape the special characters,
6250 just decode them, and keep them as char (before, eol was output as
6251 the 2 char string `\n' etc.).
6252 * src/output.c (output_rule_data): Use quotearg to output the
6253 token strings.
6254
6255 2001-12-13 Paul Eggert <eggert@twinsun.com>
6256
6257 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
6258 Do not infringe on the global user namespace when using C++.
6259 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
6260 All uses of `fprintf' and `stderr' changed.
6261
6262 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
6263
6264 2001-12-13 Akim Demaille <akim@epita.fr>
6265
6266 The computation of nullable is broken: it doesn't handle empty
6267 RHS's properly.
6268
6269 * tests/torture.at (GNU AWK Grammar): New.
6270 * tests/sets.at (Nullable): New.
6271 * src/nullable.c (set_nullable): Instead of blindly looping over
6272 `ritems', loop over the rules, and then over their rhs's.
6273
6274 Work around Autotest bugs.
6275
6276 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
6277 frame, because Autotest understand lines starting with a `+' as
6278 traces from the shell. Then, they are not processed properly.
6279 Admittedly an Autotest bug, but we don't have time to wait for
6280 Autotest to catch up.
6281 * tests/regression.at (Broken Closure): Adjust to the new table
6282 frames.
6283 Move to...
6284 * tests/sets.at: here.
6285
6286 2001-12-13 Akim Demaille <akim@epita.fr>
6287
6288 * src/closure.c (closure): Use nrules instead of playing tricks
6289 with BITS_PER_WORD.
6290
6291 2001-12-13 Akim Demaille <akim@epita.fr>
6292
6293 * src/print.c (print_actions): Output the handling of `$' as the
6294 traces do: shifting the token EOF. Before EOF was treated as a
6295 nonterminal.
6296 * tests/regression.at: Adjust some tests.
6297 * src/print_graph.c (print_core): Complete the set of items via
6298 closure. The next-to-final and final states are still unsatisfying,
6299 but that's to be addressed elsewhere.
6300 No longer output the rule numbers, but do output the state number.
6301 A single loop for the shifts + gotos is enough, but picked a
6302 distinct color for each.
6303 (print_graph): Initialize and finalize closure.
6304
6305 2001-12-13 Akim Demaille <akim@epita.fr>
6306
6307 * src/reader.c (readgram): Remove dead code, an strip useless
6308 braces.
6309 (get_type): Remove, unused.
6310
6311 2001-12-12 Akim Demaille <akim@epita.fr>
6312
6313 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
6314 on that of lib/error.c.
6315
6316 2001-12-12 Akim Demaille <akim@epita.fr>
6317
6318 Some hosts don't like `/' in includes.
6319
6320 * src/system.h: Include libgettext.h without qualifying the path.
6321 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
6322 $(top_srcdir).
6323
6324 2001-12-11 Marc Autret <autret_m@epita.fr>
6325
6326 * src/output.c (output_parser): Remove useless muscle.
6327
6328 2001-12-11 Marc Autret <autret_m@epita.fr>
6329
6330 * src/bison.simple: Remove #line just before %%epilogue. It
6331 is now handled in ...
6332 * src/reader.c (read_additionnal_code): Add the output of a
6333 #line for the epilogue.
6334
6335 2001-12-10 Marc Autret <autret_m@epita.fr>
6336
6337 * src/reader.c (copy_definition): Re-use CPP-outed code which
6338 replace precedent remove.
6339 * src/bison.simple: Remove #line before %%prologue because
6340 %%input-line is wrong at this time.
6341
6342 2001-12-10 Marc Autret <autret_m@epita.fr>
6343
6344 * src/reader.c (symbols_output): Clean up.
6345 * src/output.c (output_gram, output): Clean up.
6346
6347 2001-12-10 Akim Demaille <akim@epita.fr>
6348
6349 * src/lalr.c (initialize_lookaheads): New. Extracted from...
6350 * src/LR0.c (set_state_table): here.
6351 * src/lalr.c (lalr): Call it.
6352
6353 2001-12-10 Akim Demaille <akim@epita.fr>
6354
6355 * src/state.h (shifts): Remove the `number' member: shifts are
6356 attached to state, hence no longer need to be labelled with a
6357 state number.
6358
6359 2001-12-10 Akim Demaille <akim@epita.fr>
6360
6361 Now that states have a complete set of members, the linked list of
6362 shifts is useless: just fill directly the state's shifts member.
6363
6364 * src/state.h (shifts): Remove the `next' member.
6365 * src/LR0.c (first_state, last_state): Remove.
6366 Adjust the callers.
6367 (augment_automaton): Don't look for the shifts that must be added
6368 a shift on EOF: it is those of the state we looked for! But now,
6369 since shifts are attached, it is no longer needed to looking
6370 merely by its id: its number.
6371
6372 2001-12-10 Akim Demaille <akim@epita.fr>
6373
6374 * src/LR0.c (augment_automaton): Better variable locality.
6375 Remove an impossible branch: if there is a state corresponding to
6376 the start symbol being shifted, then there is shift for the start
6377 symbol from the initial state.
6378
6379 2001-12-10 Akim Demaille <akim@epita.fr>
6380
6381 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
6382 only when appropriate: when insert_start_shifting_state' is not
6383 invoked.
6384 * tests/regression.at (Rule Line Numbers): Adjust.
6385
6386 2001-12-10 Akim Demaille <akim@epita.fr>
6387
6388 * src/LR0.c (augment_automaton): Now that all states have shifts,
6389 merge the two cases addition shifts to the initial state.
6390
6391 2001-12-10 Akim Demaille <akim@epita.fr>
6392
6393 * src/lalr.c (set_state_table): Move to...
6394 * src/LR0.c: here.
6395 * src/lalr.c (lalr): Don't call it...
6396 * src/LR0.c (generate_states): do it.
6397 * src/LR0.h (first_state): Remove, only the table is used.
6398
6399 2001-12-10 Akim Demaille <akim@epita.fr>
6400
6401 * src/LR0.h (first_shift, first_reduction): Remove.
6402 * src/lalr.c: Don't use first_shift: find shifts through the
6403 states.
6404
6405 2001-12-10 Akim Demaille <akim@epita.fr>
6406
6407 * src/LR0.c: Attach shifts to states as soon as they are
6408 computed.
6409 * src/lalr.c (set_state_table): Instead of assigning shifts to
6410 state, just assert that the mapping was properly done.
6411
6412 2001-12-10 Akim Demaille <akim@epita.fr>
6413
6414 * src/LR0.c (insert_start_shift): Rename as...
6415 (insert_start_shifting_state): this.
6416 (insert_eof_shifting_state, insert_accepting_state): New.
6417 (augment_automaton): Adjust.
6418 Better locality of the variables.
6419 When looking if the start_symbol is shifted from the initial
6420 state, using `while (... symbol != start_symbol ...)' sounds
6421 better than `while (... symbol < start_symbol ...)': If fail
6422 to see how the order between symbols could be relevant!
6423
6424 2001-12-10 Akim Demaille <akim@epita.fr>
6425
6426 * src/getargs.h: Don't declare `spec_name_prefix' and
6427 `spec_file_prefix', declared by src/files.h.
6428 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
6429 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
6430 * src/output.c (prepare): Adjust.
6431 * src/reader.c (symbols_output): Likewise.
6432 * src/vmsgetargs.c: Vaguely adjust, but who cares?
6433
6434 2001-12-10 Akim Demaille <akim@epita.fr>
6435
6436 * src/muscle_tab.c (muscle_init): NULL is a better default than
6437 `"0"'.
6438
6439 2001-12-10 Akim Demaille <akim@epita.fr>
6440
6441 * src/reader.c (reader): Calling symbols_output once is enough.
6442
6443 2001-12-10 Akim Demaille <akim@epita.fr>
6444
6445 Now that states have a complete set of members, the linked list of
6446 reductions is useless: just fill directly the state's reductions
6447 member.
6448
6449 * src/state.h (struct reductions): Remove member `number' and
6450 `next'.
6451 * src/LR0.c (first_reduction, last_reduction): Remove.
6452 (save_reductions): Don't link the new reductions, store them in
6453 this_state.
6454 * src/lalr.c (set_state_table): No need to attach reductions to
6455 states, it's already done.
6456 * src/output.c (output_actions): No longer free the shifts, then
6457 the reductions, then the states: free all the states and their
6458 members.
6459
6460 2001-12-10 Akim Demaille <akim@epita.fr>
6461
6462 * src/options.c (OPTN, DRTV, BOTH): New.
6463 (option_table): Use them.
6464
6465 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
6466 the job of system.h.
6467 * src/options.c: Don't include stdio.h and xalloc.h for the same
6468 reasons.
6469
6470 2001-12-10 Akim Demaille <akim@epita.fr>
6471
6472 * src/output.c (output, prepare): Make sure the values of the
6473 muscles `action' and `prologue' are 0-terminated.
6474
6475 2001-12-10 Akim Demaille <akim@epita.fr>
6476
6477 Clean up GCC warnings.
6478
6479 * src/reader.c (copy_action): `buf' is not used.
6480 (parse_skel_decl): Be static.
6481 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
6482 * src/options.h (create_long_option_table): Have a real prototype.
6483 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
6484 (hash_delete_at): Return const void *.
6485 Adjust casts to preserve the const.
6486
6487 2001-12-10 Akim Demaille <akim@epita.fr>
6488
6489 * configure.in: Require 2.52g.
6490 M4 is not needed, but AUTOM4TE is.
6491 * m4/m4.m4: Remove.
6492 * tests/Makefile.am: Adjust.
6493
6494 2001-12-10 Akim Demaille <akim@epita.fr>
6495
6496 One structure for states is enough, even though theoretically
6497 there are LR(0) states and LALR(1) states.
6498
6499 * src/lalr.h (state_t): Remove.
6500 (state_table): Be state_t **, not state_t *.
6501 * src/state.h (core, CORE_ALLOC): Rename as...
6502 (state_t, STATE_ALLOC): this.
6503 Add the LALR(1) members: shifts, reductions, errs.
6504 * src/LR0.c (state_table): Rename as...
6505 (state_hash): this, to avoid name clashes with the global
6506 `state_table'.
6507 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
6508 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
6509
6510 2001-12-10 Akim Demaille <akim@epita.fr>
6511
6512 Bison dumps core on bash.y.
6513 Reported by Pascal Bart.
6514
6515 * src/warshall.c (bitmatrix_print): New.
6516 (TC): Use it.
6517 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
6518 j must be the outer loop.
6519 * tests/regression.at (Broken Closure): New.
6520
6521 2001-12-05 Akim Demaille <akim@epita.fr>
6522
6523 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
6524 its argument.
6525 Reported by Peter Hámorský.
6526
6527 2001-12-05 Akim Demaille <akim@epita.fr>
6528
6529 * src/conflicts.c (err_table): Remove.
6530 (resolve_sr_conflict): Adjust.
6531 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
6532 Rename as...
6533 (state_t.reductions, state_t.shifts): this.
6534
6535 2001-12-05 Akim Demaille <akim@epita.fr>
6536
6537 * src/reduce.c (reduce_grammar_tables): No longer disable the
6538 removal of useless rules via CPP but via `if (0)', so that the
6539 compiler still check the code is valid.
6540 For instance, it should have noticed `rline' no longer exists: use
6541 the `line' member of rule_t.
6542 * src/gram.c (dummy, rline): Remove, unused.
6543
6544 2001-12-05 Akim Demaille <akim@epita.fr>
6545
6546 * src/output.c (pack_vector): Use assert, not berror.
6547 * src/main.c (berror): Remove, unused.
6548
6549 2001-12-05 Akim Demaille <akim@epita.fr>
6550
6551 New experimental feature: if --verbose --trace output all the
6552 items of a state, not only its kernel.
6553
6554 * src/print.c (print_core): If `trace_flag', then invoke closure
6555 before outputting the items of the state (print_core is no longer
6556 a correct name them).
6557 (print_results): Invoke new_closure/free_closure if needed.
6558
6559 2001-12-05 Akim Demaille <akim@epita.fr>
6560
6561 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
6562 * src/closure.c, src/closure.h (itemsetsize): Rename as...
6563 (nitemset): for consistency with the rest of the project.
6564
6565 2001-12-05 Akim Demaille <akim@epita.fr>
6566
6567 * src/closure.c (print_closure): Improve.
6568 (closure): Use it for printing input and output.
6569
6570 2001-12-05 Akim Demaille <akim@epita.fr>
6571
6572 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
6573 indexed by nonterminals.
6574
6575 2001-12-05 Akim Demaille <akim@epita.fr>
6576
6577 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
6578 what it was!).
6579 * src/warshall.h: Remove accidental duplication of the content.
6580
6581 2001-12-05 Akim Demaille <akim@epita.fr>
6582
6583 * src/closure.c (set_fderives): De-obfuscate.
6584
6585 2001-12-05 Akim Demaille <akim@epita.fr>
6586
6587 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
6588
6589 2001-12-05 Akim Demaille <akim@epita.fr>
6590
6591 * src/closure.c (set_firsts): De-obfuscate.
6592
6593 2001-12-05 Akim Demaille <akim@epita.fr>
6594
6595 * src/output.c (action_row): De-obfuscate
6596 using the good o' techniques: arrays not pointers, variable
6597 locality, BITISSET, RESETBIT etc.
6598
6599 2001-12-05 Akim Demaille <akim@epita.fr>
6600
6601 Pessimize the code to simplify it: from now on, all the states
6602 have a valid SHIFTS, which NSHIFTS is possibly 0.
6603
6604 * src/LR0.c (shifts_new): Be global and move to..
6605 * src/state.c, src/state.h: here.
6606 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
6607 * src/print_graph: Adjust.
6608
6609 2001-12-05 Akim Demaille <akim@epita.fr>
6610
6611 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
6612 * src/conflicts.c: Use it.
6613 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
6614 incorrectly ``simplified''.
6615
6616 2001-12-05 Akim Demaille <akim@epita.fr>
6617
6618 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
6619 using the good o' techniques: arrays not pointers, variable
6620 locality, BITISSET, RESETBIT etc.
6621
6622 2001-12-05 Akim Demaille <akim@epita.fr>
6623
6624 * src/state.h (SHIFT_SYMBOL): New.
6625 * src/conflicts.c: Use it to deobfuscate.
6626
6627 2001-12-05 Akim Demaille <akim@epita.fr>
6628
6629 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
6630 (print_reductions): De-obfuscate using the good o' techniques:
6631 arrays not pointers, variable locality, BITISSET.
6632
6633 2001-12-05 Akim Demaille <akim@epita.fr>
6634
6635 * src/conflicts.c (print_reductions): Arrays, not pointers.
6636 Use BITISSET.
6637
6638 2001-12-05 Akim Demaille <akim@epita.fr>
6639
6640 * src/conflicts.c (print_reductions): Pessimize, but clarify.
6641
6642 2001-12-05 Akim Demaille <akim@epita.fr>
6643
6644 * src/conflicts.c (print_reductions): Improve variable locality.
6645
6646 2001-12-05 Akim Demaille <akim@epita.fr>
6647
6648 * src/conflicts.c (print_reductions): Pessimize, but clarify.
6649
6650 2001-12-05 Akim Demaille <akim@epita.fr>
6651
6652 * src/conflicts.c (print_reductions): Improve variable locality.
6653
6654 2001-12-05 Akim Demaille <akim@epita.fr>
6655
6656 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
6657 * src/lalr.c: Use them.
6658
6659 2001-12-05 Akim Demaille <akim@epita.fr>
6660
6661 * src/LR0.c (augment_automaton): Formatting changes.
6662 Better variable locality.
6663
6664 2001-12-05 Akim Demaille <akim@epita.fr>
6665
6666 * src/lalr.c (matrix_print): New.
6667 (transpose): Use it.
6668 Use arrays instead of pointers.
6669
6670 2001-12-05 Akim Demaille <akim@epita.fr>
6671
6672 * src/lalr.c (maxrhs): Move to...
6673 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
6674 * src/lalr.c (build_relations): Adjust.
6675
6676 2001-12-05 Akim Demaille <akim@epita.fr>
6677
6678 * src/lalr.c (transpose): Free the memory allocated to the
6679 argument, as it is replaced by the results by the unique caller.
6680 (build_relations): Merely invoke transpose: it handles the memory
6681 deallocation.
6682 Improve variable locality.
6683 Avoid variables used as mere abbreviations.
6684 (compute_lookaheads): Use arrays instead of pointers.
6685
6686 2001-12-05 Akim Demaille <akim@epita.fr>
6687
6688 * src/lalr.c (initialize_F): Improve variable locality.
6689 Avoid variables used as mere abbreviations.
6690
6691 2001-12-05 Akim Demaille <akim@epita.fr>
6692
6693 * src/derives.c (print_derives): Display the ruleno.
6694 * src/lalr.c (initialize_F, transpose): Better variable locality
6695 to improve readability.
6696 Avoid variables used as mere abbreviations.
6697
6698 2001-12-05 Akim Demaille <akim@epita.fr>
6699
6700 * src/lalr.c (traverse): Use arrays instead of pointers.
6701
6702 2001-12-05 Akim Demaille <akim@epita.fr>
6703
6704 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
6705 the handling of squeue.
6706 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
6707
6708 2001-12-05 Akim Demaille <akim@epita.fr>
6709
6710 Because useless nonterminals are now kept alive (instead of being
6711 `destroyed'), we now sometimes examine them, and store information
6712 related to them. Hence we need to know their number, and adjust
6713 memory allocations.
6714
6715 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
6716 static.
6717 * src/LR0.c (allocate_itemsets): The memory allocated to
6718 `symbol_count' was used for two different purpose: once to count
6719 the number of occurrences of each symbol, and later reassigned to
6720 `shift_symbol', containing the symbol that can be shifted from a
6721 given state.
6722 Deobfuscate, i.e., allocate, use and free `symbol_count' here
6723 only, and...
6724 (new_itemsets): Allocate `shift_symbol' here.
6725 (allocate_itemsets): symbol_count includes useless nonterminals.
6726 Make room for them.
6727 (free_storage): Use `free', not `XFREE', for pointers that cannot
6728 be null.
6729
6730 2001-12-05 Akim Demaille <akim@epita.fr>
6731
6732 * src/nullable.c (set_nullable): Deobfuscate the handling of
6733 ritem.
6734 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
6735
6736 2001-12-05 Akim Demaille <akim@epita.fr>
6737
6738 * src/gram.c, src/gram.h (ritem_print): New.
6739 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
6740 (This useless function was defined only to work around VMS linkers
6741 that can't handle compilation units with variables only).
6742 * src/reduce.c (dump_grammar): Use it to trace the construction of
6743 ritem.
6744
6745 2001-12-04 Paul Eggert <eggert@twinsun.com>
6746
6747 * src/bison.simple (union yyalloc): Change member names
6748 to be the same as the stack names.
6749 (yyparse): yyptr is now union yyalloc *, not char *.
6750 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
6751 and may generate better code on some machines.
6752 (yystpcpy): Use prototype if __STDC__ is defined, not just
6753 if __cplusplus is defined.
6754
6755 2001-11-30 Akim Demaille <akim@epita.fr>
6756
6757 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
6758 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
6759 Gettext doesn't compile cleanly, and dies with -Werror.
6760 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
6761 Include WARNING_CFLAGS here.
6762 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
6763 before being defined.
6764
6765 2001-11-27 Paul Eggert <eggert@twinsun.com>
6766
6767 * lib/quotearg.h (quotearg_n, quotearg_n_style):
6768 First arg is int, not unsigned.
6769 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
6770 (SIZE_MAX, UINT_MAX): New macros.
6771 (quotearg_n_options): Abort if N is negative.
6772 Avoid overflow check on hosts where size_t is 64 bits and int
6773 is 32 bits, as overflow is impossible there.
6774 Fix off-by-one typo that caused unnecessary reallocation.
6775
6776 2001-11-29 Paul Eggert <eggert@twinsun.com>
6777
6778 Name space cleanup in generated parser.
6779
6780 * doc/bison.texinfo (Bison Parser): Discuss system headers
6781 and their effect on the user name space.
6782
6783 * src/bison.simple:
6784 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
6785 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
6786 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
6787
6788 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
6789 on user names when possible.
6790
6791 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
6792 Simplify test for whather <alloca.h> exists.
6793
6794 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
6795
6796 (<stdio.h>): Include if YYDEBUG.
6797
6798 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
6799 ! defined (yyoverflow) && ! defined (yymemcpy).
6800
6801 (yymemcpy, yyparse): Rename local variables as needed so that
6802 they all begin with 'yy'.
6803
6804 (yystrlen, yystpcpy): New functions.
6805
6806 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
6807 All uses changed.
6808
6809 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
6810 instead of relying on string.h functions. Use YYSTACK_ALLOC
6811 and YYSTACK_FREE instead of malloc and free.
6812
6813 2001-11-30 Akim Demaille <akim@epita.fr>
6814
6815 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
6816 before their first uses.
6817 (YYBISON, YYPURE): Move to the top of the output.
6818
6819 2001-11-30 Akim Demaille <akim@epita.fr>
6820
6821 * tests/reduce.at (Useless Nonterminals): Fix.
6822
6823 2001-11-30 Akim Demaille <akim@epita.fr>
6824
6825 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
6826 if body instead of `;' to pacify GCC's warnings.
6827
6828 2001-11-30 Akim Demaille <akim@epita.fr>
6829
6830 Instead of mapping the LHS of unused rules to -1, keep the LHS
6831 valid, but flag the rules as invalid.
6832
6833 * src/gram.h (rule_t): `useful' is a new member.
6834 * src/print.c (print_grammar): Adjust.
6835 * src/derives.c (set_derives): Likewise.
6836 * src/reader.c (packgram, reduce_output): Likewise.
6837 * src/reduce.c (reduce_grammar_tables): Likewise.
6838 * tests/reduce.at (Underivable Rules, Useless Rules): New.
6839
6840 2001-11-30 Akim Demaille <akim@epita.fr>
6841
6842 * src/reduce.c (reduce_output): Formatting changes.
6843 * src/print.c (print_results, print_grammar): Likewise.
6844 * tests/regression.at (Rule Line Numbers)
6845 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
6846
6847 2001-11-30 Akim Demaille <akim@epita.fr>
6848
6849 * src/reduce.c (nonterminals_reduce): Instead of throwing away
6850 useless nonterminals, move them at the end of the symbol arrays.
6851 (reduce_output): Adjust.
6852 * tests/reduce.at (Useless Nonterminals): Adjust.
6853
6854 2001-11-30 Akim Demaille <akim@epita.fr>
6855
6856 * src/reduce.c: Various comment/formatting changes.
6857 (nonterminals_reduce): New, extracted from...
6858 (reduce_grammar_tables): here.
6859 (reduce_grammar): Call nonterminals_reduce.
6860
6861 2001-11-29 Paul Eggert <eggert@twinsun.com>
6862
6863 * src/bison.simple (YYSTACK_REALLOC): Remove.
6864 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
6865 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
6866 New macros.
6867 (union yyalloc): New type.
6868 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
6869 an arbitrary restriction on hosts where size_t is wider than int.
6870
6871 (yyparse): Don't dump core if alloca or malloc fails; instead, report
6872 a parser stack overflow. Allocate just one block of memory for all
6873 three stacks, instead of allocating three blocks; this typically is
6874 faster and reduces fragmentation.
6875
6876 Do not limit the number of items in the stack to a value that fits
6877 in 'int', as this is an arbitrary limit on hosts with 64-bit
6878 size_t and 32-bit int.
6879
6880 2001-11-29 Marc Autret <autret_m@epita.fr>
6881
6882 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
6883 of defining YYERROR_VERBOSE.
6884 [AT_DATA]: $4 is now out of C declarations in the prologue.
6885
6886 2001-11-28 Marc Autret <autret_m@epita.fr>
6887
6888 * src/reader.c (parse_dquoted_param): New.
6889 (parse_skel_decl): Use it.
6890 * src/lex.h: Add its prototype.
6891 * src/lex.c (literalchar): Become not static.
6892
6893 2001-11-28 Marc Autret <autret_m@epita.fr>
6894
6895 * src/output.h: And put its extern declaration here.
6896 * src/output.c (error_verbose): Define here.
6897 (prepare): Echo name modification.
6898 * src/getargs.h: Clean its extern declaration.
6899 * src/getargs.c (error_verbose_flag): Remove.
6900 (getargs): Remove case 'e'.
6901 * src/options.c (option_table): 'error-verbose' is now seen as simple
6902 percent option.
6903 Include output.h.
6904
6905 * src/reader.c (read_declarations): Remove case tok_include.
6906 (parse_include_decl): Remove.
6907 * src/lex.h (token_t): Remove tok_include.
6908 * src/options.c (option_table): 'include' is now a simple command line
6909 option.
6910
6911 2001-11-28 Marc Autret <autret_m@epita.fr>
6912
6913 * src/bison.simple: Adjust muscle names.
6914 * src/muscle_tab.c (muscle_init): Also rename the muscles.
6915 * src/output.c (prepare): s/_/-/ for the muscles names.
6916 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
6917
6918 2001-11-28 Marc Autret <autret_m@epita.fr>
6919
6920 * src/bison.simple: Fix debug.
6921 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
6922
6923 2001-11-28 Akim Demaille <akim@epita.fr>
6924
6925 * src/LR0.c (shifts_new): New.
6926 (save_shifts, insert_start_shift, augment_automaton): Use it.
6927
6928 2001-11-28 Akim Demaille <akim@epita.fr>
6929
6930 * src/closure.c (closure): `b' and `ruleno' denote the same value:
6931 keep ruleno only.
6932
6933 2001-11-28 Akim Demaille <akim@epita.fr>
6934
6935 * src/closure.c (closure): Instead of looping over word in array
6936 then bits in words, loop over bits in array.
6937
6938 2001-11-28 Akim Demaille <akim@epita.fr>
6939
6940 * src/closure.c (closure): No longer optimize the special case
6941 where all the bits of `ruleset[r]' are set to 0, to make the code
6942 clearer.
6943
6944 2001-11-28 Akim Demaille <akim@epita.fr>
6945
6946 * src/closure.c (closure): `r' and `c' are new variables, used to
6947 de-obfuscate accesses to RULESET and CORE.
6948
6949 2001-11-28 Akim Demaille <akim@epita.fr>
6950
6951 * src/reduce.c (reduce_print): Use ngettext.
6952 (dump_grammar): Improve the trace accuracy.
6953
6954 2001-11-28 Akim Demaille <akim@epita.fr>
6955
6956 * src/reduce.c (dump_grammar): Don't translate trace messages.
6957
6958 2001-11-28 Akim Demaille <akim@epita.fr>
6959
6960 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
6961 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
6962 as all tags are free'ed afterwards.
6963 From Enrico Scholz.
6964
6965 2001-11-27 Paul Eggert <eggert@twinsun.com>
6966
6967 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
6968 use alloca when we didn't want to, and vice versa.
6969
6970 2001-11-27 Marc Autret <autret_m@epita.fr>
6971
6972 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
6973 initialization.
6974 * src/output.c (prepare): Remove its update.
6975
6976 2001-11-27 Marc Autret <autret_m@epita.fr>
6977
6978 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
6979 Use %error-verbose.
6980
6981 2001-11-27 Marc Autret <autret_m@epita.fr>
6982
6983 * src/bison.simple: Remove YYERROR_VERBOSE using.
6984 Use %%error_verbose.
6985 (yyparse): Likewise.
6986 * src/output.c (prepare): Give its final value.
6987 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
6988 * src/getargs.h: Add its extern declaration.
6989 * src/getargs.c (error_verbose_flag): New int.
6990 (getargs): Update to catch new case.
6991 * src/options.c (option_table): 'error-verbose' is a new option.
6992 (shortopts): Update.
6993
6994 2001-11-27 Akim Demaille <akim@epita.fr>
6995
6996 * src/system.h: Use intl/libgettext.h.
6997 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
6998
6999 2001-11-27 Akim Demaille <akim@epita.fr>
7000
7001 * tests/torture.at (Exploding the Stack Size with Malloc):
7002 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
7003
7004 2001-11-27 Akim Demaille <akim@epita.fr>
7005
7006 * src/files.c: Include error.h.
7007 Reported by Hans Aberg.
7008
7009 2001-11-26 Marc Autret <autret_m@epita.fr>
7010
7011 * src/reader.c (parse_include_decl): New, not yet implemented.
7012 (read_declarations): Add case tok_include.
7013 * src/getargs.h (include): Add its extern definition.
7014 * src/getargs.c (include): New const char *.
7015 (getargs): Add case '-I'.
7016 * src/options.c (option_table): Add include as command line and
7017 percent option.
7018 * src/lex.h (token_t): Add tok_include.
7019
7020 2001-11-26 Akim Demaille <akim@epita.fr>
7021
7022 * src/reader.c (readgram): Make sure rules for mid-rule actions
7023 have a lineno equal to that of their host rule.
7024 Reported by Hans Aberg.
7025 * tests/regression.at (Rule Line Numbers): New.
7026
7027 2001-11-26 Akim Demaille <akim@epita.fr>
7028
7029 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
7030 size_ts.
7031
7032 2001-11-26 Akim Demaille <akim@epita.fr>
7033
7034 * src/complain.c, src/complain.h (error): Remove, provided by
7035 lib/error.[ch].
7036
7037 2001-11-26 Akim Demaille <akim@epita.fr>
7038
7039 * src/reader.c (read_declarations): Don't abort on tok_illegal,
7040 issue an error message.
7041 * tests/regression.at (Invalid %directive): New.
7042 Reported by Hans Aberg.
7043
7044 2001-11-26 Akim Demaille <akim@epita.fr>
7045
7046 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
7047 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
7048
7049 2001-11-26 Akim Demaille <akim@epita.fr>
7050
7051 * src/conflicts.c (conflicts_print): Don't complain at all when
7052 there are no reduce/reduce conflicts, and as many shift/reduce
7053 conflicts as expected.
7054 * tests/regression.at (%expect right): Adjust.
7055
7056 2001-11-23 Akim Demaille <akim@epita.fr>
7057
7058 * lib/alloca.c: Update, from fileutils.
7059
7060 2001-11-23 Akim Demaille <akim@epita.fr>
7061
7062 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
7063
7064 2001-11-23 Akim Demaille <akim@epita.fr>
7065
7066 * src/system.h: Include alloca.h.
7067 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
7068
7069 2001-11-23 Akim Demaille <akim@epita.fr>
7070
7071 * src/print_graph.c (print_actions): Remove `rule', unused.
7072 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
7073 pacify GCC's signed < unsigned warnings.
7074 * src/closure.c (itemsetsize): Likewise.
7075 * src/reader.c (symbol_list_new): Static.
7076
7077 2001-11-23 Akim Demaille <akim@epita.fr>
7078
7079 Attaching lineno to buckets is stupid, since only one copy of each
7080 symbol is kept, only the line of the first occurrence is kept too.
7081
7082 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
7083 * src/reader.c (rline_allocated): Remove, unused.
7084 (symbol_list): Have a `line' member.
7085 (symbol_list_new): New.
7086 (readgram): Use it.
7087 * src/print.c (print_grammar): Output the rule line numbers.
7088 * tests/regression.at (Solved SR Conflicts)
7089 (Unresolved SR Conflicts): Adjust.
7090 Reported by Hans Aberg.
7091
7092 2001-11-22 Marc Autret <autret_m@epita.fr>
7093
7094 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
7095
7096 2001-11-22 Marc Autret <autret_m@epita.fr>
7097
7098 * src/muscle_tab.c (muscle_init): Remove initialization of
7099 skeleton muscle.
7100 * src/output.c (output_master_parser): Do it here.
7101
7102 2001-11-20 Akim Demaille <akim@epita.fr>
7103
7104 * po/sv.po: New.
7105 * configure.in (ALL_LINGUAS): Adjust.
7106 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
7107 longer contains strings to translate.
7108
7109 2001-11-19 Akim Demaille <akim@epita.fr>
7110
7111 * src/conflicts.c (conflicts_print): Add a missing \n.
7112
7113 2001-11-19 Akim Demaille <akim@epita.fr>
7114
7115 * src/nullable.c (nullable_print): New.
7116 (set_nullable): Call it when tracing.
7117 Better locality of variables.
7118
7119 2001-11-19 Akim Demaille <akim@epita.fr>
7120
7121 * src/print.c (print_actions): Better locality of variables.
7122
7123 2001-11-19 Akim Demaille <akim@epita.fr>
7124
7125 * src/derives.c (print_derives): Fix and enrich.
7126 * src/closure.c (print_fderives): Likewise.
7127
7128 2001-11-19 Akim Demaille <akim@epita.fr>
7129
7130 * src/closure.c (itemsetend): Remove, replaced with...
7131 (itemsetsize): new.
7132
7133 2001-11-19 Akim Demaille <akim@epita.fr>
7134
7135 * src/LR0.c (kernel_end): Remove, replaced with...
7136 (kernel_size): new.
7137
7138 2001-11-19 Akim Demaille <akim@epita.fr>
7139
7140 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
7141 to clarify.
7142
7143 2001-11-19 Akim Demaille <akim@epita.fr>
7144
7145 * src/closure.c (closure): Use arrays instead of pointers to clarify.
7146
7147 2001-11-19 Akim Demaille <akim@epita.fr>
7148
7149 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
7150 trace messages.
7151 * src/LR0.c: Likewise.
7152 (allocate_itemsets): Use arrays instead of pointers to clarify.
7153
7154 2001-11-19 Akim Demaille <akim@epita.fr>
7155
7156 * src/getargs.c (statistics_flag): Replace with...
7157 (trace_flag): New.
7158 (longopts): Accept --trace instead of --statistics.
7159 * src/getargs.h, src/options.c: Adjust.
7160 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
7161 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
7162
7163 2001-11-19 Akim Demaille <akim@epita.fr>
7164
7165 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
7166 pointers to clarify the code.
7167 (save_reductions, save_shifts): Factor common parts of alternatives.
7168
7169 2001-11-19 Akim Demaille <akim@epita.fr>
7170
7171 * src/LR0.c (new_state, get_state): Complete TRACE code.
7172 * src/closure.c: Include `reader.h' to get `tags', needed by the
7173 trace code.
7174 Rename the conditional DEBUG as TRACE.
7175 Output consistently TRACEs to stderr, not stdout.
7176 * src/derives.c: Likewise.
7177 * src/reduce.c: (inaccessable_symbols): Using if is better style
7178 than goto.
7179 Use `#if TRACE' instead of `#if 0' for tracing code.
7180
7181 2001-11-19 Akim Demaille <akim@epita.fr>
7182
7183 * src/system.h (LIST_FREE, shortcpy): New.
7184 * src/LR0.c: Use them.
7185 * src/output.c (free_itemsets, free_reductions, free_shifts):
7186 Remove, replaced by LIST_FREE.
7187
7188 2001-11-19 Akim Demaille <akim@epita.fr>
7189
7190 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
7191 (REDUCTIONS_ALLOC): New.
7192 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
7193 allocation.
7194
7195 2001-11-19 Akim Demaille <akim@epita.fr>
7196
7197 * src/LR0.c (new_state): Complete trace code.
7198 * src/nullable.c (set_nullable): Don't translate traces.
7199
7200 2001-11-19 Akim Demaille <akim@epita.fr>
7201
7202 * src/print_graph.c (print_core): Better locality of variables.
7203 * src/print.c (print_core): Likewise.
7204
7205 2001-11-19 Akim Demaille <akim@epita.fr>
7206
7207 * src/vcg.c: You do the output, so you are responsible of the
7208 handling of VCG syntax, in particular: use quotearg.
7209 * src/print_graph.c: Don't.
7210 (print_actions): Don't output the actions as part of the nodes,
7211 since that's the job of the edges.
7212 (print_state): Don't output by hand: fill the node description,
7213 and ask for its output.
7214
7215 2001-11-19 Akim Demaille <akim@epita.fr>
7216
7217 * src/bison.simple (yyparse): When verbosely reporting an error,
7218 no longer put additional quotes around token names.
7219 * tests/calc.at: Adjust.
7220
7221 2001-11-19 Akim Demaille <akim@epita.fr>
7222
7223 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
7224 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
7225 * src/output.c: Adjust.
7226
7227 2001-11-19 Akim Demaille <akim@epita.fr>
7228
7229 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
7230 (rule_t): this.
7231 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
7232
7233 2001-11-19 Akim Demaille <akim@epita.fr>
7234
7235 * src/gram.h (rule_t): New.
7236 (rule_table): New.
7237 (rrhs, rlhs): Remove, part of state_t.
7238 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
7239 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
7240 * src/reader.c, src/reduce.c: Adjust.
7241
7242 2001-11-19 Akim Demaille <akim@epita.fr>
7243
7244 * src/reader.c (symbols_output): New, extracted from...
7245 (packsymbols): Here.
7246 (reader): Call it.
7247
7248 2001-11-19 Akim Demaille <akim@epita.fr>
7249
7250 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
7251 (maxrhs): this new function.
7252
7253 2001-11-19 Akim Demaille <akim@epita.fr>
7254
7255 * src/lalr.c (F): New macro to access the variable F.
7256 Adjust.
7257
7258 2001-11-19 Akim Demaille <akim@epita.fr>
7259
7260 * src/lalr.h (LA): New macro to access the variable LA.
7261 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7262 * src/lalr.c: Adjust.
7263
7264 2001-11-19 Akim Demaille <akim@epita.fr>
7265
7266 * src/lalr.c (initialize_LA): Only initialize LA. Let...
7267 (set_state_table): handle the `lookaheads' members.
7268
7269 2001-11-19 Akim Demaille <akim@epita.fr>
7270
7271 * src/lalr.h (lookaheads): Removed array, whose contents is now
7272 a member of...
7273 (state_t): this structure.
7274 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7275 Adjust.
7276
7277 2001-11-19 Akim Demaille <akim@epita.fr>
7278
7279 * src/lalr.h (consistent): Removed array, whose contents is now
7280 a member of...
7281 (state_t): this structure.
7282 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7283 Adjust.
7284
7285 2001-11-19 Akim Demaille <akim@epita.fr>
7286
7287 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
7288 contents are now members of...
7289 (state_t): this structure.
7290 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7291 Adjust.
7292
7293 2001-11-19 Akim Demaille <akim@epita.fr>
7294
7295 * src/lalr.h (state_t): New.
7296 (state_table): Be a state_t * instead of a core **.
7297 (accessing_symbol): Remove, part of state_t.
7298 * src/lalr.c: Adjust.
7299 (set_accessing_symbol): Merge into...
7300 (set_state_table): this.
7301 * src/print_graph.c, src/conflicts.c: Adjust.
7302
7303 2001-11-14 Akim Demaille <akim@epita.fr>
7304
7305 * tests/calc.at, tests/output.at, tests/regression.at,
7306 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
7307 now the tests are run in private dirs, therefore AC_CLEANUP and
7308 family can be simplified to 0-ary.
7309 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
7310 use abs. path to find config.h.
7311 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
7312 stderr, there can be way too much random noise.
7313 Instead pass -Werror to GCC and rely on the exit status.
7314 Reported by Wolfram Wagner.
7315
7316 2001-11-14 Akim Demaille <akim@epita.fr>
7317
7318 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
7319 defined only if yyoverflow is defined, to avoid `warning: unused
7320 variable `yyvs1''.
7321 Reported by The Test Suite.
7322
7323 2001-11-14 Akim Demaille <akim@epita.fr>
7324
7325 * src/print.c: Include reduce.h.
7326 Reported by Hans Aberg.
7327
7328 2001-11-14 Akim Demaille <akim@epita.fr>
7329
7330 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
7331 Revert a previous patch: these are really const.
7332 * src/conflicts.c (conflict_report): Additional useless pair of
7333 braces to pacify GCC's warnings for `if () if () {} else {}'.
7334 * src/lex.c (parse_percent_token): Replace equal_offset with
7335 arg_offset.
7336 arg is const.
7337 Be sure to strdup `arg' when used, since there is no reason for
7338 token_buffer not to change.
7339
7340 2001-11-14 Akim Demaille <akim@epita.fr>
7341
7342 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
7343 definition.
7344 * src/main.c (main): Use them.
7345 Suggested by Hans Aberg.
7346
7347 2001-11-12 Akim Demaille <akim@epita.fr>
7348
7349 * src/system.h (ngettext): Now that we use ngettext, be sure to
7350 provide a default definition when NLS are not used.
7351
7352 2001-11-12 Akim Demaille <akim@epita.fr>
7353
7354 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
7355 Use @kbd to denote user input.
7356 (Language and Grammar): ANSIfy the example.
7357 Adjust its layout for info/notinfo.
7358 (Location Tracking Calc): Output error messages to stderr.
7359 Output locations in a more GNUtically correct way.
7360 Fix a couple of Englishos.
7361 Adjust @group/@end group pairs.
7362
7363 2001-11-12 Akim Demaille <akim@epita.fr>
7364
7365 %expect was not functioning at all.
7366
7367 * src/conflicts.c (expected_conflicts): Set to -1.
7368 (conflict_report): Use ngettext.
7369 (conflicts_print): Check %expect and make its violation an error.
7370 * doc/bison.texinfo (Expect Decl): Adjust.
7371 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
7372 * tests/regression.at (%expect not enough, %expect right)
7373 (%expect too much): New.
7374
7375 2001-11-12 Akim Demaille <akim@epita.fr>
7376
7377 * tests/regression.at (Conflicts): Rename as...
7378 (Unresolved SR Conflicts): this.
7379 (Solved SR Conflicts): New.
7380
7381 2001-11-12 Akim Demaille <akim@epita.fr>
7382
7383 * src/reduce.c (print_results): Rename as...
7384 (reduce_output): This.
7385 Output to OUT, passed as argument, instead of output_obstack.
7386 (dump_grammar): Likewise.
7387 (reduce_free): New.
7388 Also free V1.
7389 (reduce_grammar): No longer call reduce_output, since...
7390 * src/print.c (print_results): do it.
7391 * src/main.c (main): Call reduce_free;
7392
7393 2001-11-12 Akim Demaille <akim@epita.fr>
7394
7395 * src/conflicts.c (print_reductions): Accept OUT as argument.
7396 Output to it, not to output_obstack.
7397 * src/print.c (print_actions): Adjust.
7398
7399 2001-11-12 Akim Demaille <akim@epita.fr>
7400
7401 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
7402 the result instead of using...
7403 (src_total, rrc_total, src_count, rrc_count): Remove.
7404 (any_conflicts): Remove.
7405 (print_conflicts): Split into...
7406 (conflicts_print, conflicts_output): New.
7407 * src/conflicts.h: Adjust.
7408 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
7409 * src/print.c (print_grammar): Issue `\n' between two rules.
7410 * tests/regression.at (Conflicts): New.
7411 Reported by Tom Lane.
7412
7413 2001-11-12 Akim Demaille <akim@epita.fr>
7414
7415 * tests/regression.at (Invalid input): Remove, duplicate with
7416 ``Invalid input: 1''.
7417
7418 2001-11-12 Akim Demaille <akim@epita.fr>
7419
7420 * tests/torture.at (AT_DATA_STACK_TORTURE)
7421 (Exploding the Stack Size with Alloca)
7422 (Exploding the Stack Size with Malloc): New.
7423
7424 2001-11-12 Akim Demaille <akim@epita.fr>
7425
7426 * src/bison.simple (YYSTACK_REALLOC): New.
7427 (yyparse) [!yyoverflow]: Use it and free the old stack.
7428 Reported by Per Allansson.
7429
7430 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
7431
7432 * src/bison.simple: Define type yystype instead of YYSTYPE, and
7433 define CPP macro, which substitute YYSTYPE by yystype.
7434 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
7435 with yyltype/YYLTYPE. This allows inclusion of the generated
7436 header within the parser if the compiler, such as GGC, accepts
7437 multiple equivalent #defines.
7438 From Akim.
7439
7440 2001-11-05 Akim Demaille <akim@epita.fr>
7441
7442 * src/reader.c (symbols_output): New, extracted from...
7443 (packsymbols): here.
7444 (reader): Adjust.
7445
7446 2001-11-05 Akim Demaille <akim@epita.fr>
7447
7448 * src/lex.c (parse_percent_token): s/quotearg/quote/.
7449
7450 2001-11-05 Akim Demaille <akim@epita.fr>
7451
7452 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
7453 pattern.
7454
7455 2001-11-05 Akim Demaille <akim@epita.fr>
7456
7457 * src/options.h (struct option_table_struct): set_flags is void*.
7458 * src/options.c (longopts): Support `--output' and `%output'.
7459 (usage): Adjust.
7460 * src/lex.h (tok_setopt): Remove, replaced with...
7461 (tok_intopt, tok_stropt): these new guys.
7462 * src/lex.c (getopt.h): Not needed.
7463 (token_buffer, unlexed_token_buffer): Not const.
7464 (percent_table): Promote `-' over `_' in directive names.
7465 Active `%name-prefix', `file-prefix', and `output'.
7466 (parse_percent_token): Accept possible arguments to directives.
7467 Promote `-' over `_' in directive names.
7468
7469 2001-11-04 Akim Demaille <akim@epita.fr>
7470
7471 * doc/bison.texinfo (Decl Summary): Split the list into
7472 `directives for grammars' and `directives for bison'.
7473 Sort'em.
7474 Add description of `%name-prefix', `file-prefix', and `output'.
7475 Promote `-' over `_' in directive names.
7476 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
7477 Simplify the description of `--name-prefix'.
7478 Promote `-' over `_' in directive names.
7479 Promote `--output' over `--output-file'.
7480 Fix the description of `--defines'.
7481 * tests/output.at: Exercise %file-prefix and %output.
7482
7483 2001-11-02 Akim Demaille <akim@epita.fr>
7484
7485 * doc/refcard.tex: Update.
7486
7487 2001-11-02 Akim Demaille <akim@epita.fr>
7488
7489 * src/symtab.h (SUNDEF): New.
7490 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
7491 stand for `uninitialized', instead of 0.
7492 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
7493 * src/lex.c (lex): Adjust.
7494
7495 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
7496 Number it 0.
7497 Let yylex return it instead of a plain 0.
7498 Reported by Dick Streefland.
7499
7500 2001-11-02 Akim Demaille <akim@epita.fr>
7501
7502 * tests/regression.at (Mixing %token styles): New test.
7503
7504 2001-11-02 Akim Demaille <akim@epita.fr>
7505
7506 * src/reader.c (parse_thong_decl): Formatting changes.
7507 (token_translations_init): New, extracted from...
7508 (packsymbols): Here.
7509 Adjust.
7510
7511 2001-11-01 Akim Demaille <akim@epita.fr>
7512
7513 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
7514 Check that `9foo.y' produces correct cpp guards.
7515 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
7516 guards.
7517 Reported by Wwp.
7518
7519 2001-11-01 Akim Demaille <akim@epita.fr>
7520
7521 * tests/regression.at (Invalid input: 2): New.
7522 * src/lex.c (unlexed_token_buffer): New.
7523 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
7524 too.
7525 Reported by Wwp.
7526
7527 2001-11-01 Akim Demaille <akim@epita.fr>
7528
7529 * tests/calc.at: Catch up with 1.30.
7530 * configure.in: Bump to 1.49a.
7531 Adjust to newer Autotest.
7532
7533 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
7534
7535 * src/conflicts.c: Move global variables rrc_total and src_total ...
7536 (print_conflicts): here.
7537 * src/output.c (output): Free global variable user_toknums.
7538 * src/lex.c (token_obstack): Become static.
7539
7540 2001-10-18 Akim Demaille <akim@epita.fr>
7541
7542 * tests/atlocal.in (GCC): Add.
7543 * tests/calc.at: s/m4_match/m4_bmatch/.
7544 s/m4_patsubst/m4_bpatsubst/.
7545 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
7546 * configure.in: AC_SUBST(GCC).
7547
7548 2001-10-14 Marc Autret <autret_m@epita.fr>
7549
7550 * src/options.c (create_long_option_table): Fix.
7551
7552 2001-10-10 Akim Demaille <akim@epita.fr>
7553
7554 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
7555
7556 2001-10-04 Akim Demaille <akim@epita.fr>
7557
7558 * src/reader.c (parse_union_decl): Push the caracters in
7559 union_obstack, not attrs_obstack.
7560
7561 2001-10-04 Akim Demaille <akim@epita.fr>
7562
7563 Merge in the branch 1.29.
7564
7565 * src/reader.c (packsymbols): Use a temporary obstack for
7566 `%%tokendef', since output_stack is already used elsewhere.
7567
7568 2001-10-02 Akim Demaille <akim@epita.fr>
7569
7570 Bump 1.29d.
7571
7572 2001-10-02 Akim Demaille <akim@epita.fr>
7573
7574 Version 1.29c.
7575
7576 2001-10-02 Akim Demaille <akim@epita.fr>
7577
7578 * tests/regression.at (Invalid CPP headers): New.
7579 From Alexander Belopolsky.
7580 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
7581
7582 2001-10-02 Akim Demaille <akim@epita.fr>
7583
7584 * tests/regression.at (Invalid input): New.
7585 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
7586 Reported by Shura.
7587
7588 2001-10-02 Akim Demaille <akim@epita.fr>
7589
7590 * tests/calc.at: Now that --debug works, the tests must be adjusted.
7591
7592 2001-10-02 Akim Demaille <akim@epita.fr>
7593
7594 * src/output.c (output_parser): Assert `skeleton'.
7595 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
7596 systems.
7597 From Shura.
7598
7599 2001-10-01 Marc Autret <autret_m@epita.fr>
7600
7601 * src/lex.h: Echo modifications.
7602 * src/lex.c (unlex): Parameter is now token_t.
7603 From Hans Aberg.
7604
7605 2001-10-01 Marc Autret <autret_m@epita.fr>
7606
7607 * src/main.c: Include lex.h.
7608 From Hans Aberg.
7609
7610 2001-09-29 Akim Demaille <akim@epita.fr>
7611
7612 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
7613
7614 2001-09-28 Akim Demaille <akim@epita.fr>
7615
7616 * tests/testsuite.at: Update to newer Autotest.
7617 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
7618
7619 2001-09-27 Akim Demaille <akim@epita.fr>
7620
7621 Position independent wrapper.
7622
7623 * tests/bison: Remove.
7624 * tests/bison.in: New.
7625 * configure.in: Adjust.
7626
7627 2001-09-27 Paul Eggert <eggert@twinsun.com>
7628
7629 Port quotearg fixes from tar 1.13.24.
7630
7631 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
7632 tm to be declared.
7633 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
7634 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
7635
7636 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
7637 * m4/mbrtowc.m4: New file.
7638 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
7639 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
7640
7641 2001-09-27 Akim Demaille <akim@epita.fr>
7642
7643 Bump to 1.29c.
7644
7645 2001-09-27 Akim Demaille <akim@epita.fr>
7646
7647 Version 1.29b.
7648
7649 2001-09-25 Akim Demaille <akim@epita.fr>
7650
7651 * src/system.h: Include `xalloc.h'.
7652 Remove it from the C files.
7653 * src/files.c (output_files): Free the obstacks.
7654 * src/lex.c (init_lex): Rename as...
7655 (lex_init): this.
7656 (lex_free): New.
7657 * src/main.c (main): Use it.
7658
7659 2001-09-24 Marc Autret <autret_m@epita.fr>
7660
7661 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
7662 to output informations in fout (FILE*).
7663 (open_graph, close_graph): Likewise.
7664 (output_graph, output_edge, output_node): Likewise.
7665 * src/vcg.h: Update function prototypes.
7666 * src/print_graph.c (print_graph): Open output graph file.
7667 (print_actions): Adjust.
7668 * src/files.h: Remove extern declaration.
7669 * src/files.c: Remove graph_obstack declaration.
7670 (open_files): Remove graph_obstack initialization.
7671 (output_files): Remove graph_obstack saving.
7672
7673 2001-09-24 Marc Autret <autret_m@epita.fr>
7674
7675 * src/files.c (compute_output_file_names): Fix.
7676
7677 2001-09-24 Marc Autret <autret_m@epita.fr>,
7678 Akim Demaille <akim@epita.fr>
7679
7680 * src/reader.c (reader): Remove call to free_symtab ().
7681 * src/main.c (main): Call it here.
7682 Include symtab.h.
7683 * src/conflicts.c (initialize_conflicts): Rename as...
7684 (solve_conflicts): this.
7685 * src/print.c (print_core, print_actions, print_state)
7686 (print_grammar): Dump to a file instead a `output_obstack'.
7687 (print_results): Dump `output_obstack', and then proceed with the
7688 FILE *.
7689 * src/files.c (compute_output_file_names, close_files): New.
7690 (output_files): Adjust.
7691 * src/main.c (main): Adjust.
7692
7693 2001-09-23 Marc Autret <autret_m@epita.fr>
7694
7695 * src/files.c (compute_header_macro): Computes header macro name
7696 from spec_defines_file when given.
7697
7698 2001-09-23 Marc Autret <autret_m@epita.fr>
7699
7700 * src/files.c (output_files): Add default extensions.
7701
7702 2001-09-22 Akim Demaille <akim@epita.fr>
7703
7704 * src/conflicts.c (finalize_conflicts): Rename as...
7705 (free_conflicts): this.
7706
7707 2001-09-22 Akim Demaille <akim@epita.fr>
7708
7709 * src/gram.c (gram_free): Rename back as...
7710 (dummy): this.
7711 (output_token_translations): Free `token_translations'.
7712 * src/symtab.c (free_symtab): Free the tag field.
7713
7714 2001-09-22 Akim Demaille <akim@epita.fr>
7715
7716 Remove `translations' as it is always set to true.
7717
7718 * src/gram.h: Adjust.
7719 * src/reader.c (packsymbols, parse_token_decl): Adjust
7720 * src/print.c (print_grammar): Adjust.
7721 * src/output.c (output_token_translations): Adjust.
7722 * src/lex.c (lex): Adjust.
7723 * src/gram.c: Be sure the set pointers to NULL.
7724 (dummy): Rename as...
7725 (gram_free): this.
7726
7727 2001-09-22 Akim Demaille <akim@epita.fr>
7728
7729 * configure.in: Invoke AM_LIB_DMALLOC.
7730 * src/system.h: Use dmalloc.
7731 * src/LR0.c: Be sure to have pointers initialized to NULL.
7732 (allocate_itemsets): Allocate kernel_items only if needed.
7733
7734 2001-09-22 Akim Demaille <akim@epita.fr>
7735
7736 * configure.in: Bump to 1.29b.
7737 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
7738 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
7739 need xmalloc.c in calc.y.
7740 From Pascal Bart.
7741
7742 2001-09-21 Akim Demaille <akim@epita.fr>
7743
7744 Version 1.29a.
7745 * Makefile.maint, config/config.guess, config/config.sub,
7746 * config/missing: Update from masters.
7747 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
7748 upon package.m4.
7749 * configure.in (ALL_LINGUAS): Add `tr'.
7750
7751 2001-09-21 Akim Demaille <akim@epita.fr>
7752
7753 * tests/Makefile.am (package.m4): Move to...
7754 ($(srcdir)/$(TESTSUITE)): here.
7755
7756 2001-09-20 Akim Demaille <akim@epita.fr>
7757
7758 * src/complain.c: No longer try to be standalone: use system.h.
7759 Don't assume __STDC__ is defined to 1. Just test if it is defined.
7760 * src/complain.h: Likewise.
7761 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
7762 Remove the unused variable `n'.
7763 From Albert Chin-A-Young.
7764
7765 2001-09-18 Marc Autret <autret_m@epita.fr>
7766
7767 * doc/bison.1: Update.
7768 * doc/bison.texinfo (Bison Options): Update --defines and --graph
7769 descriptions.
7770 (Option Cross Key): Update.
7771 Add --graph.
7772
7773 2001-09-18 Marc Autret <autret_m@epita.fr>
7774
7775 * tests/regression.at: New test (comment in %union).
7776
7777 2001-09-18 Marc Autret <autret_m@epita.fr>
7778
7779 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
7780 do that.
7781 Reported by Keith Browne.
7782
7783 2001-09-18 Marc Autret <autret_m@epita.fr>
7784
7785 * tests/output.at: Add tests for --defines and --graph.
7786
7787 2001-09-18 Marc Autret <autret_m@epita.fr>
7788
7789 * tests/output.at: Removes tests of %{header,src}_extension features.
7790
7791 2001-09-18 Akim Demaille <akim@epita.fr>
7792
7793 * tests/Makefile.am (package.m4): New.
7794 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
7795 (_AT_CHECK_CALC_ERROR): Likewise.
7796 Factor the `, ' part of verbose error messages.
7797
7798 2001-09-18 Marc Autret <autret_m@epita.fr>
7799
7800 * src/getargs.c (longopts): Declare --defines and --graph as options
7801 with optional arguments.
7802 * src/files.h: Add extern declarations.
7803 * src/files.c (spec_graph_file, spec_defines_file): New.
7804 (output_files): Update.
7805 Remove CPP-outed code.
7806
7807 2001-09-18 Marc Autret <autret_m@epita.fr>
7808
7809 Turn off %{source,header}_extension feature.
7810
7811 * src/files.c (compute_exts_from_gf): Update.
7812 (compute_exts_from_src): Update.
7813 (output_files): CPP-out useless code.
7814 * src/files.h: Remove {header,source}_extension extern declarations.
7815 * src/reader.c (parse_dquoted_param): CPP-out.
7816 (parse_header_extension_decl): Remove.
7817 (parse_source_extension_decl): Remove.
7818 (read_declarations): Remove cases tok_{hdrext,srcext}.
7819 * src/lex.c (percent_table): Remove {header,source}_extension entries.
7820 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
7821
7822 2001-09-10 Akim Demaille <akim@epita.fr>
7823
7824 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
7825 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
7826 (AT_CHECK_OUTPUT): this.
7827 Merely check ls' exit status, its output is useless.
7828
7829 2001-09-10 Akim Demaille <akim@epita.fr>
7830
7831 * tests/calc.at: Use m4_match.
7832 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
7833
7834 2001-09-10 Marc Autret <autret_m@epita.fr>,
7835 Akim Demaille <akim@epita.fr>
7836
7837 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
7838 enum color_e.
7839 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
7840 to `normal'.
7841 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
7842 * src/lex.h: Adjust prototype.
7843 (token_t): Add `tok_undef'.
7844 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
7845 (parse_percent_token): Now returns token_t.
7846 Add default statement in switch.
7847 (lex): Separate `c' as an input variable, from the token_t result
7848 part.
7849 (unlexed): Is a token_t.
7850
7851 2001-09-10 Akim Demaille <akim@epita.fr>
7852
7853 * configure.in: Bump to 1.29a.
7854
7855 2001-09-07 Akim Demaille <akim@epita.fr>
7856
7857 Version 1.29.
7858
7859 2001-08-30 Akim Demaille <akim@epita.fr>
7860
7861 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
7862 * m4/atconfig.m4: Remove.
7863 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
7864 * tests/bison: New.
7865 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
7866 m4_if, m4_patsubst, and m4_regexp.
7867 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
7868 `input' file instead of echo.
7869
7870 2001-08-29 Akim Demaille <akim@epita.fr>
7871
7872 Bump to 1.28e.
7873
7874 2001-08-29 Akim Demaille <akim@epita.fr>
7875
7876 Version 1.28d.
7877
7878 2001-08-29 Paul Eggert <eggert@twinsun.com>
7879
7880 * src/bison.simple (yyparse): Don't take the address of an
7881 item before the start of an array, as that doesn't conform to
7882 the C Standard.
7883
7884 2001-08-29 Robert Anisko <anisko_r@epita.fr>
7885
7886 * doc/bison.texinfo (Location Tracking Calc): New node.
7887
7888 2001-08-29 Paul Eggert <eggert@twinsun.com>
7889
7890 * src/output.c (output): Do not define const, as this now
7891 causes more problems than it cures.
7892
7893 2001-08-29 Akim Demaille <akim@epita.fr>
7894
7895 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
7896 the nodes.
7897 Be sure to tag the `detailmenu'.
7898
7899 2001-08-29 Akim Demaille <akim@epita.fr>
7900
7901 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
7902 download in a tmp dir.
7903
7904 2001-08-28 Marc Autret <autret_m@epita.fr>
7905
7906 * config/depcomp: New file.
7907
7908 2001-08-28 Marc Autret <autret_m@epita.fr>
7909
7910 * doc/bison.1 (mandoc): Adjust.
7911 From Juan Manuel Guerrero.
7912
7913 2001-08-28 Marc Autret <autret_m@epita.fr>
7914
7915 * src/print_graph.c (print_state): Fix.
7916
7917 2001-08-27 Marc Autret <autret_m@epita.fr>
7918
7919 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
7920 char * members.
7921 Echo modifications to the functions prototypes.
7922 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
7923
7924 2001-08-27 Marc Autret <autret_m@epita.fr>
7925
7926 * src/vcg.c: Include `xalloc.h'.
7927 (add_colorentry): New.
7928 (add_classname): New.
7929 (add_infoname): New.
7930 * src/vcg.h: Add new prototypes.
7931
7932 2001-08-27 Akim Demaille <akim@epita.fr>
7933
7934 * Makefile.maint: Sync. again with CVS Autoconf.
7935
7936 2001-08-27 Akim Demaille <akim@epita.fr>
7937
7938 * Makefile.maint: Formatting changes.
7939 (po-update, cvs-update, update): New targets.
7940 (AMTAR): Remove.
7941
7942 2001-08-27 Akim Demaille <akim@epita.fr>
7943
7944 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
7945 * Makefile.maint: Sync. with CVS Autoconf.
7946
7947 2001-08-27 Marc Autret <autret_m@epita.fr>
7948
7949 * src/vcg.h (struct infoname_s): New.
7950 (struct colorentry_s): New.
7951 (graph_s): New fields {vertical,horizontal}_order in structure.
7952 Add `infoname' field.
7953 Add `colorentry' field;
7954 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
7955 (G_HORIZONTAL_ORDER): New.
7956 (G_INFONAME): New.
7957 (G_COLORENTRY): New.
7958 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
7959 Add output of `infoname'.
7960 Add output of `colorentry'.
7961
7962 2001-08-27 Marc Autret <autret_m@epita.fr>
7963
7964 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
7965 This one shadowed a global parameter.
7966
7967 2001-08-24 Marc Autret <autret_m@epita.fr>
7968
7969 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
7970 instead of `unsigned'.
7971 (print_state): Do not call obstack_object_size () in obstack_grow ()
7972 to avoid macro variables shadowing.
7973
7974 2001-08-23 Marc Autret <autret_m@epita.fr>
7975
7976 * src/lex.c (percent_table): Typo: s/naem/name/.
7977 Add graph option.
7978 Normalize new options declarations.
7979
7980 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
7981
7982 * tests/suite.at: Exercise %header_extension and %source_extension.
7983
7984 2001-08-16 Marc Autret <autret_m@epita.fr>
7985
7986 * src/reader.c (parse_dquoted_param): New.
7987 (parse_header_extension_decl): Use it.
7988 (parse_source_extension_decl): Likewise.
7989
7990 2001-08-16 Marc Autret <autret_m@epita.fr>
7991
7992 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
7993 (get_xxxx_str): Use assert () instead of complain ().
7994 Remove return invokations in default cases.
7995 (get_decision_str): Modify default behaviour. Remove second argument.
7996 Echo modifications on calls.
7997 (output_graph): Fix.
7998
7999 2001-08-16 Marc Autret <autret_m@epita.fr>
8000
8001 * src/getargs.c (usage): Update with ``-g, --graph''.
8002
8003 2001-08-16 Marc Autret <autret_m@epita.fr>
8004
8005 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
8006 (Option Cross Key): Likewise.
8007 * doc/bison.1: Update.
8008
8009 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
8010
8011 * src/output.c (output_master_parser): Don't finish action_obstack.
8012 (output_parser): Don't care about the muscle action, here.
8013 (prepare): Copy the action_obstack in the action muscle.
8014 (output): Free action_obstack.
8015
8016 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
8017
8018 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
8019 will contain `%union' declaration.
8020 (parse_union_decl): Delete #line directive output.
8021 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
8022 informations about %union.
8023 (parse_union_decl): Copy the union_obstack in the muscle stype.
8024 * src/bison.simple: Add new #line directive.
8025 Add typdef %%stype YYSTYPE.
8026
8027 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
8028
8029 * src/bison.simple: Add new `#line' directive.
8030
8031 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
8032
8033 * src/bison.simple: New `#line' directive.
8034 * src/output.c (output_parser): Support new dynamic muscle input_line.
8035
8036 2001-09-22 Marc Autret <autret_m@epita.fr>
8037
8038 * src/output.c (output_master_parser): New.
8039 (output_parser): Be more re-entrant.
8040
8041 2001-09-21 Marc Autret <autret_m@epita.fr>
8042
8043 * src/reader.c (copy_definition, parse_union_decl): Update and use
8044 `linef' muscle.
8045 (copy_action): Likewise.
8046 Use obstack_1grow ().
8047 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
8048
8049 2001-09-21 Marc Autret <autret_m@epita.fr>
8050
8051 * src/options.c (option_table): Adjust.
8052 * src/lex.c (parse_percent_token): Fix.
8053
8054 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
8055
8056 * src/options.c (symtab.h): Include it, need by lex.h.
8057
8058 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
8059
8060 * src/lex.c (parse_percent_token): Change type of variable `tx', which
8061 is now an option_table_struct*.
8062 (option_strcmp): New function option_strcmp.
8063 (parse_percent_token): Call option_strcmp.
8064 * src/getargs.c (xalloc.h, options.h): Include it.
8065 (getargs): Call create_long_option_table.
8066 (getargs): Free longopts at the end of the function.
8067 (shortopts): Move in options.c.
8068 * src/options.c (create_long_option_table): New function. Convert
8069 information from option_table to option structure.
8070 * src/reader.c (options.h): Include it.
8071
8072 * src/Makefile.am: Adjust.
8073 * src/options.c (option_table): Create from longopts and percent_table.
8074 * src/getargs.c (longopts): Delete.
8075 * src/lex.c (struct percent_table_struct): Delete.
8076 (percent_table): Delete.
8077 (options.h): Include it.
8078 * src/options.c: Create.
8079 * src/options.h: Create.
8080 Declare enum opt_access_e.
8081 Define struct option_table_struct.
8082
8083 2001-09-20 Marc Autret <autret_m@epita.fr>
8084
8085 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
8086 sections of Bison.
8087
8088 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
8089
8090 * src/bison.simple: s/%%filename/%%skeleton.
8091 * src/muscle_tab.c (getargs.h): Include it.
8092 (muscle_init): Insert new muscle skeleton.
8093
8094 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
8095
8096 * src/output.c (output_parser): Delete unused variable actions_dumped.
8097
8098 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
8099
8100 * src/output.c (output): Delete call to reader_output_yylsp.
8101 * src/reader.c (reader): Likewise.
8102 * src/reader.h: Delete declaration of reader_output_yylsp.
8103
8104 2001-09-02 Marc Autret <autret_m@epita.fr>
8105
8106 * src/reader.c: Include muscle_tab.h.
8107 (parse_union_decl): Update.
8108 (parse_macro_decl): Rename parse_muscle_decl.
8109 Update to use renamed functions and variable.
8110 (read_declarations, copy_action, read_additionnal_code, : Updated
8111 with correct variables and functions names.
8112 (packsymbols, reader): Likewise.
8113
8114 * src/reader.h (muscle_obstack): Extern declaration update.
8115
8116 * src/output.c: Include muscle_tab.h
8117 In all functions using macro_insert, change by using muscle_insert ().
8118 (macro_obstack): Rename muscle_obstack.
8119 Echo modifications in the whole file.
8120 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
8121 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
8122 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
8123
8124 * src/muscle_tab.h: Update double inclusion macros.
8125 (macro_entry_s): Rename muscle_entry_s.
8126 Update prototypes.
8127
8128 * src/muscle_tab.c: Include muscle_tab.h.
8129 Rename macro_tabble to muscle_table.
8130 (mhash1, mhash2, mcmp): Use muscle_entry.
8131 (macro_init): Rename muscle_init. Update.
8132 (macro_insert): Rename muscle_insert. Update.
8133 (macro_find): Rename muscle_find. Update.
8134
8135 * src/main.c: Include muscle_tab.h.
8136 (main): Call muscle_init ().
8137 * src/Makefile.am (bison_SOURCES): Echo modifications.
8138
8139 2001-09-02 Marc Autret <autret_m@epita.fr>
8140
8141 Now the files macro_tab.[ch] are named muscle_tab.[ch].
8142
8143 * src/muscle_tab.c, src/muscle_tab.h: Add files.
8144
8145 2001-09-02 Marc Autret <autret_m@epita.fr>
8146
8147 * src/macrotab.c, src/macrotab.h: Remove.
8148
8149 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
8150
8151 * src/reader.c (copy_guard): Use muscle to specify the `#line'
8152 filename.
8153
8154 2001-09-01 Marc Autret <autret_m@epita.fr>
8155
8156 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
8157 to an explicit value to activate the feature. We do it here.
8158
8159 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
8160
8161 * src/output.c (prepare): Delete the `filename' muscule insertion.
8162 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
8163 (parse_union_decl): Likewise.
8164 * src/macrotab.c (macro_init): Initialize filename by infile.
8165
8166 2001-08-31 Marc Autret <autret_m@epita.fr>
8167
8168 * src/bison.simple (YYLSP_NEEDED): New definition.
8169 * src/output.c (prepare): Add macro insertion of `locations_flag'
8170
8171 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
8172
8173 * src/output.c (prepare): Delete insertion of previous muscles,
8174 and insert the `prefix' muscles.
8175 * src/macrotab.c (macro_init): Likewise.
8176 (macro_init): Initialization prefix directive by `yy'.
8177 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
8178 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
8179 yylval, yydebug, yyerror, yynerrs and yyparse.
8180 New directive `#define' to substitute yydebug, ... with option
8181 name_prefix.
8182
8183 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
8184
8185 * src/main.c (main): Standardize.
8186 * src/output.c (output_table_data, output_parser): Likewise.
8187 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
8188
8189 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
8190
8191 * src/reader.c (read_additionnal_code): Rename %%user_code to
8192 %%epilogue.
8193 * src/output.c (output): Rename %%declarations to %%prologue.
8194 * src/bison.simple: Echo modifications.
8195
8196 2001-08-31 Marc Autret <autret_m@epita.fr>
8197
8198 * src/reader.c (readgram): CleanUp.
8199 (output_token_defines): Likewise.
8200 (packsymbols): Likewise.
8201 (reader): Likewise.
8202 * src/output.c (output): CPP-out useless code.
8203
8204 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
8205
8206 * src/reader.c (reader): Delete obsolete call to function
8207 output_trailers and output_headers.
8208 * src/output.h: Remove obsolete functions prototypes of output_headers
8209 and output_trailers.
8210
8211 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
8212
8213 * src/main.c: Include macrotab.h.
8214 * src/macrotab.h (macro_entry_s): Constify fields.
8215 Adjust functions prototypes.
8216 * src/macrotab.c (macro_insert): Constify key and value.
8217 (macro_find): Constify key.
8218 (macro_insert): Include 'xalloc.h'
8219 (macro_insert): Use XMALLOC.
8220 (macro_find): Constify return value.
8221 * src/output.c (output_table_data): Rename table to table_data.
8222 (output_parser): Constify macro_key, macro_value.
8223
8224 2001-08-30 Marc Autret <autret_m@epita.fr>
8225
8226 * src/reader.c (parse_skel_decl): New.
8227 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
8228 * src/lex.h (token_t): New token `tok_skel'.
8229 * src/lex.c (percent_table): Add skeleton option entry.
8230 Standardize.
8231
8232 2001-08-29 Marc Autret <autret_m@epita.fr>
8233
8234 * src/bison.simple: Add %%user_code directive at the end.
8235 * src/reader.c (read_additionnal_code): New.
8236 (reader): Use it.
8237 * src/output.c (output_program): Remove.
8238 (output): Update.
8239
8240 2001-08-28 Marc Autret <autret_m@epita.fr>
8241
8242 * src/output.c (output_actions): Clean up.
8243 (output_gram): CPP-out useless code.
8244 * src/reader.c (reader): Clean up, CPP-out useless code.
8245
8246 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
8247
8248 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
8249 directive.
8250 * src/bison.simple: Add `%%definitions'.
8251
8252 2001-08-28 Marc Autret <autret_m@epita.fr>
8253
8254 * config/depcomp: New file.
8255
8256 2001-08-27 Paul Eggert <eggert@twinsun.com>
8257
8258 * src/bison.simple (yyparse): Don't take the address of an
8259 item before the start of an array, as that doesn't conform to
8260 the C Standard.
8261
8262 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
8263
8264 * src/output.c (output): Remove the initialization of the macro
8265 obstack. It was done too late here.
8266
8267 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
8268 completely wrong.
8269 (reader): Initialize the macro obstack here, since we need it to grow
8270 '%define' directives.
8271
8272 * src/reader.h: Declare the macro obstack as extern.
8273
8274 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
8275
8276 * src/output.c (output_parser): Fix. Store single '%' characters in
8277 the output obstack instead of throwing them away.
8278
8279 2001-08-27 Akim Demaille <akim@epita.fr>
8280
8281 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
8282
8283 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8284
8285 * lib/Makefile.am: Adjust.
8286
8287 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8288
8289 * src/bison.simple: Update and add '%%' directives.
8290
8291 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8292
8293 * src/reader.c (reader): Remove calls to 'output_headers' and
8294 'output_trailers'. Remove some C output.
8295 (readgram): Disable a piece of code that was writing a default
8296 definition for 'YYSTYPE'.
8297 (reader_output_yylsp): Remove.
8298 (packsymbols): Output token defintions to a macro.
8299 (copy_definition): Disable C output.
8300
8301 * src/reader.c (parse_macro_decl): New function used to parse macro
8302 declarations.
8303 (copy_string2): Put the body of copy_string into this new function.
8304 Add a parameter to let the caller choose whether he wants to copy the
8305 string delimiters or not.
8306 (copy_string): Be a simple call to copy_string2 with the last argument
8307 bound to true.
8308 (read_declarations): Add case for macro definition.
8309 (copy_identifier): New.
8310 (parse_macro_decl): Read macro identifiers using copy_identifier
8311 rather than lex.
8312
8313 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8314
8315 * src/output.c (prepare): Add prefixed names.
8316 (output_parser): Output semantic actions.
8317 (output_parser): Fix bug on '%%line' directives.
8318
8319 * src/output.c (output_headers): Remove. The C code printed by this
8320 function should now be in the skeletons.
8321 (output_trailers): Remove.
8322 (output): Disable call to 'reader_output_yylsp'.
8323 (output_rule_data): Do not output tables to the table obstack.
8324
8325 * src/output.c: Remove some C dedicated output.
8326 Improve the use of macro and output obstacks.
8327 (output_defines): Remove.
8328
8329 * src/output.c (output_token_translations): Associate 'translate'
8330 table with a macro. No output to the table obstack.
8331 (output_gram): Same for 'rhs' and 'prhs'.
8332 (output_stos): Same for 'stos'.
8333 (output_rule_data): Same for 'r1' and 'r2'.
8334 (token_actions): Same for 'defact'.
8335 (goto_actions): Same for 'defgoto'.
8336 (output_base): Same for 'pact' and 'pgoto'.
8337 (output_table): Same for 'table'.
8338 (output_check): Same for 'check'.
8339
8340 * src/output.c (output_table_data): New function.
8341 (output_short_table): Remove.
8342 (output_short_or_char_table): Remove.
8343
8344 * src/output.c (output_parser): Replace most of the skeleton copy code
8345 with something new. Skeletons are now processed character by character
8346 rather than line by line, and Bison looks for '%%' macros. This is the
8347 first step in making Bison's output process (a lot) more flexible.
8348 (output_parser): Use the macro table.
8349
8350 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8351
8352 * src/main.c (main): Initialize the macro table.
8353
8354 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8355
8356 * src/lex.c (percent_table): Add tok_define.
8357 * src/lex.h: Add tok_define.
8358
8359 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8360
8361 * src/macrotab.c: New file.
8362 * src/macrotab.h: New file.
8363 * src/Makefile.am: Update.
8364
8365 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8366
8367 * lib/hash.c: New file.
8368 * lib/hash.h: New file.
8369 * lib/Makefile.am: Update.
8370
8371 2001-08-15 Akim Demaille <akim@epita.fr>
8372
8373 Version 1.28c.
8374
8375 2001-08-15 Marc Autret <autret_m@epita.fr>
8376
8377 * src/reader.c (readgram): Indent output macro YYSTYPE.
8378 (packsymbols): Likewise.
8379 (output_token_defines): Likewise.
8380 * src/files.c: Standardize.
8381 (compute_header_macro): New.
8382 (defines_obstack_save): New. Use compute_header_macro.
8383 (output_files): Update. Use defines_obstack_save.
8384
8385 2001-08-15 Akim Demaille <akim@epita.fr>
8386
8387 * doc/bison.texinfo (Table of Symbols): Document
8388 YYSTACK_USE_ALLOCA.
8389
8390 2001-08-15 Akim Demaille <akim@epita.fr>
8391
8392 * missing: Update from CVS Automake.
8393 * config/config.guess, config/config.sub, config/texinfo.tex:
8394 Update from gnu.org.
8395
8396 2001-08-15 Akim Demaille <akim@epita.fr>
8397
8398 * Makefile.maint: Sync with CVS Autoconf.
8399
8400 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
8401
8402 * doc/bison.texinfo: Include GNU Free Documentation License from
8403 `fdl.texi'.
8404 * doc/fdl.texi: Add to package.
8405
8406 2001-08-14 Marc Autret <autret_m@epita.fr>
8407
8408 Turn on %{source,header}_extension features.
8409
8410 * src/lex.c (percent_table): Un-CPP out header_extension and
8411 source_extension.
8412 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
8413 (compute_exts_from_src): Remove conditions. It restores priorities
8414 between options.
8415
8416 2001-08-14 Marc Autret <autret_m@epita.fr>
8417
8418 * src/files.c (compute_base_names): Add extensions computing when
8419 `--file-prefix' used.
8420 Standardize function calls.
8421
8422 2001-08-13 Marc Autret <autret_m@epita.fr>
8423
8424 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
8425 defining it (defined but null disables alloca).
8426
8427 2001-08-13 Marc Autret <autret_m@epita.fr>
8428
8429 * src/bison.simple (_yy_memcpy): CPP reformat.
8430
8431 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
8432
8433 * tests/atconfig.in (CPPFLAGS): Fix.
8434
8435 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
8436
8437 * doc/bison.texinfo: Include GNU General Public License from
8438 `gpl.texi'.
8439 * doc/gpl.texi: Add to package.
8440
8441 2001-08-10 Marc Autret <autret_m@epita.fr>
8442
8443 * src/print_graph.h: Fix.
8444 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
8445
8446 2001-08-10 Akim Demaille <akim@epita.fr>
8447
8448 * src/system.h: Provide default declarations for stpcpy, strndup,
8449 and strnlen.
8450
8451 2001-08-10 Robert Anisko <anisko_r@epita.fr>
8452
8453 * doc/bison.texinfo (Locations): Update @$ stuff.
8454
8455 2001-08-09 Robert Anisko <anisko_r@epita.fr>
8456
8457 * src/bison.simple (YYLLOC_DEFAULT): Update.
8458 (yyparse): Adjust.
8459
8460 2001-08-08 Marc Autret <autret_m@epita.fr>
8461
8462 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
8463 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
8464 Reported by Fabrice Bauzac.
8465
8466 2001-08-08 Marc Autret <autret_m@epita.fr>
8467
8468 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
8469 * src/vcg.c (output_node): Fix.
8470 * src/vcg.h: Cleanup.
8471 * src/print_graph.c: Add comments.
8472 (node_output_size): New global variable. Simplify the formatting of
8473 the VCG graph output.
8474 (print_actions): Unused code is now used. It notifies the final state
8475 and no action states in the VCG graph. It also give the reduce actions.
8476 The `shift and goto' edges are red and the `go to state' edges are
8477 blue.
8478 Get the current node name and node_obstack by argument.
8479 (node_obstack): New variable.
8480 (print_state): Manage node_obstack.
8481 (print_core): Use node_obstack given by argument.
8482 A node is not only computed here but in print_actions also.
8483 (print_graph): CPP out useless code instead of commenting it.
8484
8485 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
8486
8487 * tests/atconfig.in (CPPFLAGS): Fix.
8488
8489 2001-08-07 Akim Demaille <akim@epita.fr>
8490
8491 * src/print_graph.c (quote): New.
8492 (print_core): Use it.
8493
8494 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
8495
8496 * src/vcg.c (complain.h): Include it.
8497 Unepitaize `return' invocations.
8498 [NDEBUG] (main): Remove.
8499 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
8500 * src/files.c (open_files): Initialize graph_obstack.
8501 * src/print_graph.c (print_actions): CPP out useless code.
8502 (print_core): Don't output the last `\n' in labels.
8503 Use `quote'.
8504 * src/files.c (output_files): Output the VCG file.
8505 * src/main.c (main): Invoke print_graph ();
8506
8507 2001-08-06 Marc Autret <autret_m@epita.fr>
8508
8509 Automaton VCG graph output.
8510 Using option ``-g'' or long option ``--graph'', you can generate
8511 a gram_filename.vcg file containing a VCG description of the LALR (1)
8512 automaton of your grammar.
8513
8514 * src/main.c: Call to print_graph() function.
8515 * src/getargs.h: Update.
8516 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
8517 (graph_flag): New flag.
8518 (longopts): Update.
8519 (getargs): Add case `g'.
8520 * src/files.c (graph_obstack): New obstack struct.
8521 (open_files): Initialize new obstack.
8522 (output_files): Saves graph_obstack if required.
8523 * src/files.h (graph_obstack): New extern declaration.
8524 * src/Makefile.am: Add new source files.
8525
8526 2001-08-06 Marc Autret <autret_m@epita.fr>
8527
8528 * src/print_graph.c, src/print_graph.h (graph): New.
8529 * src/vcg.h: New file.
8530 * src/vcg.c: New file, VCG graph handling.
8531
8532 2001-08-06 Marc Autret <autret_m@epita.fr>
8533
8534 Add of %source_extension and %header_extension which specify
8535 the source or/and the header output file extension.
8536
8537 * src/files.c (compute_base_names): Remove initialisation of
8538 src_extension and header_extension.
8539 (compute_exts_from_gf): Update.
8540 (compute_exts_from_src): Update.
8541 (output_files): Update.
8542 * src/reader.c (parse_header_extension_decl): New.
8543 (parse_source_extension_decl): New.
8544 (read_declarations): New case statements for the new tokens.
8545 * src/lex.c (percent_table): Add entries for %source_extension
8546 and %header_extension.
8547 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
8548
8549 2001-08-06 Marc Autret <autret_m@epita.fr>
8550
8551 * configure.in: Bump to 1.28c.
8552 * doc/bison.texinfo: Texinfo thingies.
8553
8554 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
8555
8556 * tests/atconfig.in (CPPFLAGS): Add.
8557 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
8558
8559 2001-08-03 Akim Demaille <akim@epita.fr>
8560
8561 Version 1.28b.
8562
8563 2001-08-03 Akim Demaille <akim@epita.fr>
8564
8565 * tests/Makefile.am (check-local): Ship testsuite.
8566 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
8567 Include `string.h'.
8568
8569 2001-08-03 Akim Demaille <akim@epita.fr>
8570
8571 * configure.in: Try using -Wformat when compiling.
8572
8573 2001-08-03 Akim Demaille <akim@epita.fr>
8574
8575 * configure.in: Bump to 1.28b.
8576
8577 2001-08-03 Akim Demaille <akim@epita.fr>
8578
8579 * src/complain.c: Adjust strerror_r portability issues.
8580
8581 2001-08-03 Akim Demaille <akim@epita.fr>
8582
8583 Version 1.28a.
8584
8585 2001-08-03 Akim Demaille <akim@epita.fr>
8586
8587 * src/getargs.c, src/getarg.h (skeleton)): Constify.
8588 * src/lex.c (literalchar): Avoid name clashes on `buf'.
8589 * src/getargs.c: Include complain.h.
8590 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
8591 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
8592
8593 2001-08-03 Akim Demaille <akim@epita.fr>
8594
8595 * src/reader.c (readgram): Display hidden chars in error messages.
8596
8597 2001-08-03 Akim Demaille <akim@epita.fr>
8598
8599 Update to gettext 0.10.39.
8600
8601 2001-08-03 Akim Demaille <akim@epita.fr>
8602
8603 * lib/strspn.c: New.
8604
8605 2001-08-01 Marc Autret <autret_m@epita.fr>
8606
8607 * doc/bison.texinfo: Update.
8608 * doc/bison.1 (mandoc): Update.
8609 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
8610 * src/files.c: Support output files extensions computing.
8611 (src_extension): New static variable.
8612 (header_extension): New static variable.
8613 (tr): New function.
8614 (get_extension_index): New function, gets the index of an extension
8615 filename in a string.
8616 (compute_exts_from_gf): New function, computes extensions from the
8617 grammar file extension.
8618 (compute_exts_from_src): New functions, computes extensions from the
8619 C source file extension, file given by ``-o'' option.
8620 (compute_base_names): Update.
8621 (output_files): Update.
8622
8623 2001-08-01 Robert Anisko <anisko_r@epita.fr>
8624
8625 * doc/bison.texi: Document @$.
8626 (Locations): New section.
8627
8628 2001-07-18 Akim Demaille <akim@epita.fr>
8629
8630 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
8631 * config/prev-version.txt, config/move-if-change: New.
8632 * Makefile.am: Adjust.
8633
8634 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
8635
8636 * src/bison.simple (yyparse): Suppress warning `comparaison
8637 between signed and unsigned'.
8638
8639 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
8640
8641 * src/getargs.h (raw_flag): Remove.
8642 * src/getargs.c: Die on `-r'/`--raw'.
8643 * src/lex.c (parse_percent_token): Die on `%raw'.
8644 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
8645 * tests/calc.at: Suppress test with option `--raw'.
8646
8647 2001-07-14 Akim Demaille <akim@epita.fr>
8648
8649 * config/: New.
8650 * configure.in: Require Autoconf 2.50.
8651 Update to gettext 0.10.38.
8652
8653 2001-03-16 Akim Demaille <akim@epita.fr>
8654
8655 * doc/bison.texinfo: ANSIfy the examples.
8656
8657 2001-03-16 Akim Demaille <akim@epita.fr>
8658
8659 * getargs.c (skeleton): New variable.
8660 (longopts): --skeleton is a new option.
8661 (shortopts, getargs): -S is a new option.
8662 * getargs.h: Declare skeleton.
8663 * output.c (output_parser): Use it.
8664
8665 2001-03-16 Akim Demaille <akim@epita.fr>
8666
8667 * m4/strerror_r.m4: New.
8668 * m4/error.m4: Run AC_FUNC_STRERROR_R.
8669 * lib/error.h, lib/error.c: Update.
8670
8671 2001-03-16 Akim Demaille <akim@epita.fr>
8672
8673 * src/getargs.c (longopts): Clean up.
8674
8675 2001-02-21 Akim Demaille <akim@epita.fr>
8676
8677 * src/reader.c (gensym): `gensym_count' is your own.
8678 Use a static buf to create the symbol name, as token_buffer is no
8679 longer a buffer.
8680
8681 2001-02-08 Akim Demaille <akim@epita.fr>
8682
8683 * src/conflicts.c (conflict_report): Be sure not to append to res
8684 between two calls, which could happen if both first sprintf were
8685 skipped, but not the first cp += strlen.
8686
8687 2001-02-08 Akim Demaille <akim@epita.fr>
8688
8689 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
8690 New, from fileutils 4.0.37.
8691 * configure.in: Require Autoconf 2.49c. I took some time before
8692 making this decision. This is the only way out for portability
8693 issues in Bison, it would mean way too much duplicate effort to
8694 import in Bison features implemented in 2.49c since 2.13.
8695 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
8696
8697 2001-02-02 Akim Demaille <akim@epita.fr>
8698
8699 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
8700 * lib/xalloc.h, lib/xmalloc.c: Update.
8701
8702 2001-01-19 Akim Demaille <akim@epita.fr>
8703
8704 Get rid of the ad hoc handling of token_buffer in the scanner: use
8705 the obstacks.
8706
8707 * src/lex.c (token_obstack): New.
8708 (init_lex): Initialize it. No longer call...
8709 (grow_token_buffer): this. Remove it.
8710 Adjust all the places which used it to use the obstack.
8711
8712 2001-01-19 Akim Demaille <akim@epita.fr>
8713
8714 * src/lex.h: Rename all the tokens:
8715 s/\bENDFILE\b/tok_eof/g;
8716 s/\bIDENTIFIER\b/tok_identifier/g;
8717 etc.
8718 Let them be enums, not #define, to ease debugging.
8719 Adjust all the code.
8720
8721 2001-01-18 Akim Demaille <akim@epita.fr>
8722
8723 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
8724 * src/lex.c (maxtoken, grow_token_buffer): Static.
8725
8726 2001-01-18 Akim Demaille <akim@epita.fr>
8727
8728 Since we now use obstacks, more % directives can be enabled.
8729
8730 * src/lex.c (percent_table): Also accept `%yacc',
8731 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
8732 `%debug'.
8733 Handle the actions for `%semantic_parser' and `%pure_parser' here,
8734 instead of returning a token.
8735 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
8736 * src/reader.c (read_declarations): Adjust.
8737 * src/files.c (open_files): Don't call `compute_base_names', don't
8738 compute `attrsfile' since they depend upon data which might be
8739 *in* the input file now.
8740 (output_files): Do it here.
8741 * src/output.c (output_headers): Document the fact that this patch
8742 introduces a guaranteed SEGV for semantic parsers.
8743 * doc/bison.texinfo: Document them.
8744 * tests/suite.at: Exercise these %options.
8745
8746 2000-12-20 Akim Demaille <akim@epita.fr>
8747
8748 Also handle the output file (--verbose) with obstacks.
8749
8750 * files.c (foutput): Remove.
8751 (output_obstack): New.
8752 Adjust all dependencies.
8753 * src/conflicts.c: Return a string.
8754 * src/system.h (obstack_grow_string): Rename as...
8755 (obstack_sgrow): this. Be ready to work with non literals.
8756 (obstack_fgrow4): New.
8757
8758 2000-12-20 Akim Demaille <akim@epita.fr>
8759
8760 * src/files.c (open_files): Fix the computation of short_base_name
8761 in the case of `-o foo.tab.c'.
8762
8763 2000-12-20 Akim Demaille <akim@epita.fr>
8764
8765 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
8766 (copy_dollar): Now that everything uses obstacks, get rid of the
8767 FILE * parameters.
8768
8769 2000-12-20 Akim Demaille <akim@epita.fr>
8770
8771 * src/files.c (open_files): Actually the `.output' file is based
8772 on the short_base_name, not base_name.
8773 * tests/suite.at (Checking output file names): Adjust.
8774
8775 2000-12-20 Akim Demaille <akim@epita.fr>
8776
8777 * src/bison.s1: Remove, we now use directly...
8778 * src/bison.simple: this.
8779 * src/Makefile.am: Use pkgdata instead of data.
8780
8781 2000-12-20 Akim Demaille <akim@epita.fr>
8782
8783 * src/files.c (guard_obstack): New.
8784 (open_files): Initialize it.
8785 (output_files): Dump it...
8786 * src/files.h: Export it.
8787 * src/reader.c (copy_guard): Use it.
8788
8789 2000-12-19 Akim Demaille <akim@epita.fr>
8790
8791 * src/files.c (outfile, defsfile, actfile): Removed as global
8792 vars.
8793 (open_files): Don't compute them.
8794 (output_files): Adjust.
8795 (base_name, short_base_name): Be global.
8796 Adjust dependencies.
8797
8798 2000-12-19 Akim Demaille <akim@epita.fr>
8799
8800 * src/files.c (strsuffix): New.
8801 (stringappend): Be just like strcat but allocate.
8802 (base_names): Eve out from open_files.
8803 Try to simplify the rather hairy computation of base_name and
8804 short_base_name.
8805 (open_files): Use it.
8806 * tests/suite.at (Checking output file names): New test.
8807
8808 2000-12-19 Akim Demaille <akim@epita.fr>
8809
8810 * src/system.h (obstack_grow_literal_string): Rename as...
8811 (obstack_grow_string): this.
8812 * src/output.c (output_parser): Recognize `%% actions' instead of
8813 `$'.
8814 * src/bison.s1: s/$/%% actions/.
8815 * src/bison.hairy: Likewise.
8816
8817 2000-12-19 Akim Demaille <akim@epita.fr>
8818
8819 * src/output.c (output_parser): Compute the `#line' lines when
8820 there are.
8821 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
8822 Suggested by Hans Aberg.
8823
8824 2000-12-19 Akim Demaille <akim@epita.fr>
8825
8826 Let the handling of the skeleton files be local to the procedures
8827 that use it.
8828
8829 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
8830 longer static.
8831 (fparser, open_extra_files): Remove.
8832 (open_files, output_files): Don't take care of fparser.
8833 * src/files.h: Adjust.
8834 * src/output.c (output_parser): Open and close the file to the
8835 skeleton.
8836 * src/reader.c (read_declarations): When %semantic_parser, open
8837 fguard.
8838
8839 2000-12-19 Akim Demaille <akim@epita.fr>
8840
8841 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
8842 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
8843
8844 2000-12-19 Akim Demaille <akim@epita.fr>
8845
8846 * src/files.c (open_files): Yipee! We no longer need all the code
8847 looking for `/tmp' since we have no tmp file.
8848
8849 2000-12-19 Akim Demaille <akim@epita.fr>
8850
8851 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
8852 New macros.
8853 * src/files.c (open_files): Less dependency on MSDOS etc.
8854
8855 2000-12-14 Akim Demaille <akim@epita.fr>
8856
8857 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
8858 Provide a default definition.
8859 Use it when executing the default @ action.
8860 * src/reader.c (reader_output_yylsp): No longer include
8861 `timestamp' and `text' in the default YYLTYPE.
8862
8863 2000-12-12 Akim Demaille <akim@epita.fr>
8864
8865 * src/reader.c (copy_definition, parse_union_decl, copy_action)
8866 (copy_guard): Quote the file names.
8867 Reported by Laurent Mascherpa.
8868
8869 2000-12-12 Akim Demaille <akim@epita.fr>
8870
8871 * src/output.c (output_headers, output_program, output): Be sure
8872 to escape special characters when outputting filenames.
8873 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
8874 (output_headers): Don't depend on them, Use ACTSTR.
8875
8876 2000-11-17 Akim Demaille <akim@epita.fr>
8877
8878 * lib/obstack.h: Formatting changes.
8879 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
8880 prevents type checking.
8881 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
8882 cast the value to (void *): assigning a `foo *' to a `void *'
8883 variable is valid.
8884 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
8885 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
8886 append characters.
8887
8888 2000-11-17 Akim Demaille <akim@epita.fr>
8889
8890 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
8891 as...
8892 (suite.m4, regression.m4, calc.m4): these.
8893 * tests/atgeneral.m4: Update from CVS Autoconf.
8894
8895 2000-11-17 Akim Demaille <akim@epita.fr>
8896
8897 * tests/regression.m4 (%union and --defines): New test,
8898 demonstrating a current bug in the obstack implementation.
8899
8900 2000-11-17 Akim Demaille <akim@epita.fr>
8901
8902 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
8903 macros.
8904 Use them to declare the variables which are global or local to
8905 `yyparse'.
8906
8907 2000-11-17 Akim Demaille <akim@epita.fr>
8908
8909 * acconfig.h: Remove, no longer used.
8910
8911 2000-11-07 Akim Demaille <akim@epita.fr>
8912
8913 * src: s/Copyright (C)/Copyright/g.
8914
8915 2000-11-07 Akim Demaille <akim@epita.fr>
8916
8917 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
8918 defining.
8919 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
8920
8921 2000-11-07 Akim Demaille <akim@epita.fr>
8922
8923 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
8924 Merge in a single CPP if/else.
8925
8926 2000-11-07 Akim Demaille <akim@epita.fr>
8927
8928 * src/output.c (output): Remove useless variables.
8929 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
8930 argument `data' for consistency with the prototypes.
8931 Qualify it `const'.
8932 (obstack_copy, obstack_copy0): Rename the second argument as
8933 `address' for consistency. Qualify it `const'.
8934 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
8935 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
8936 `const' their input argument (`data' or `address').
8937 Adjust the corresponding macros to include `const' in casts.
8938
8939 2000-11-03 Akim Demaille <akim@epita.fr>
8940
8941 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
8942 s/PFILE1/BISON_HAIRY/.
8943 Adjust dependencies.
8944
8945 2000-11-03 Akim Demaille <akim@epita.fr>
8946
8947 For some reason, this was not applied.
8948
8949 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
8950 `unlink': it's no longer used.
8951
8952 2000-11-03 Akim Demaille <akim@epita.fr>
8953
8954 * src/files.c (skeleton_find): New function, eved out of...
8955 (open_files, open_extra_files): here.
8956
8957 2000-11-03 Akim Demaille <akim@epita.fr>
8958
8959 Don't use `atexit'.
8960
8961 * src/files.c (obstack_save): New function.
8962 (done): Rename as...
8963 (output_files): this.
8964 Use `obstack_save'.
8965 * src/main.c (main): Don't use `atexit' to register `done', since
8966 it no longer has to remove tmp files, just call `output_files'
8967 when there are no errors.
8968
8969 2000-11-02 Akim Demaille <akim@epita.fr>
8970
8971 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
8972 `unlink': it's no longer used.
8973 * src/files.h: Formatting changes.
8974
8975 2000-11-02 Akim Demaille <akim@epita.fr>
8976
8977 Remove the last uses of mktemp and unlink/delete.
8978
8979 * src/files.c (fdefines, ftable): Removed.
8980 (defines_ostack, table_obstack): New.
8981 Adjust dependencies of the former into uses of the latter.
8982 * src/output.c (output_short_or_char_table, output_short_table):
8983 Convert to using obstacks.
8984 * src/reader.c (copy_comment2): Accept one FILE * and two
8985 obstacks.
8986 (output_token_defines, reader_output_yylsp): Use obstacks.
8987 * src/system.h (obstack_fgrow3): New.
8988
8989 2000-11-01 Akim Demaille <akim@epita.fr>
8990
8991 Change each use of `fattrs' into a use of `attrs_obstack'.
8992
8993 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
8994 * src/files.c (fattrs): Remove.
8995 (attrs_obstack): New.
8996 Adjust all dependencies.
8997 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
8998
8999 2000-11-01 Akim Demaille <akim@epita.fr>
9000
9001 Introduce obstacks.
9002 Change each use of `faction' into a use of `action_obstack'.
9003
9004 * lib/obstack.h, lib/obstack.c: New files.
9005 * src/files.c (faction): Remove.
9006 (action_obstack): New.
9007 Adjust all dependencies.
9008
9009 2000-10-20 Akim Demaille <akim@epita.fr>
9010
9011 * lib/quote.h (PARAMS): New macro. Use it.
9012
9013 2000-10-16 Akim Demaille <akim@epita.fr>
9014
9015 * src/output.c (output_short_or_char_table): New function.
9016 (output_short_table, output_token_translations): Use it.
9017 (goto_actions): Use output_short_table.
9018
9019 2000-10-16 Akim Demaille <akim@epita.fr>
9020
9021 * src/symtab.c (bucket_new): New function.
9022 (getsym): Use it.
9023
9024 * src/output.c (output_short_table): New argument to display the
9025 comment associated with the table.
9026 Adjust dependencies.
9027 (output_gram): Use it.
9028 (output_rule_data): Nicer output layout for YYTNAME.
9029
9030 2000-10-16 Akim Demaille <akim@epita.fr>
9031
9032 * src/lex.c (read_typename): New function.
9033 (lex): Use it.
9034 * src/reader.c (copy_dollar): Likewise.
9035
9036 2000-10-16 Akim Demaille <akim@epita.fr>
9037
9038 * src/reader.c (copy_comment2): Expect the input stream to be on
9039 the `/' which is suspected to open a comment, instead of being
9040 called after `//' or `/*' was read.
9041 (copy_comment, copy_definition, parse_union_decl, copy_action)
9042 (copy_guard): Adjust.
9043
9044 2000-10-16 Akim Demaille <akim@epita.fr>
9045
9046 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
9047 `read_signed_integer'.
9048
9049 2000-10-16 Akim Demaille <akim@epita.fr>
9050
9051 * src/reader.c (copy_dollar): New function.
9052 (copy_guard, copy_action): Use it.
9053
9054 2000-10-16 Akim Demaille <akim@epita.fr>
9055
9056 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
9057 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
9058 New files, from Fileutils 4.0.27.
9059 * src/main.c (printable_version): Remove.
9060 * src/lex.c, src/reader.c: Use `quote'.
9061
9062 2000-10-04 Akim Demaille <akim@epita.fr>
9063
9064 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
9065
9066 2000-10-04 Akim Demaille <akim@epita.fr>
9067
9068 * doc/bison.texinfo: Various typos spotted by Neil Booth.
9069
9070 2000-10-04 Akim Demaille <akim@epita.fr>
9071
9072 When a literal string is used to define two different tokens,
9073 `bison -v' segfaults.
9074 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
9075
9076 * tests/regression.m4: New file.
9077 Include the core of the sample provided by Piotr Gackiewicz.
9078 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
9079 properly.
9080
9081 2000-10-04 Akim Demaille <akim@epita.fr>
9082
9083 * src/reader.c (parse_expect_decl): Keep `count' within the size
9084 of `buffer'.
9085 From Neil Booth.
9086
9087 2000-10-02 Paul Eggert <eggert@twinsun.com>
9088
9089 * bison.s1 (yyparse): Assign the default value
9090 unconditionally, to avoid a GCC warning and make the parser a
9091 tad smaller.
9092
9093 2000-10-02 Akim Demaille <akim@epita.fr>
9094
9095 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
9096 options.
9097
9098 2000-10-02 Akim Demaille <akim@epita.fr>
9099
9100 * src/derives.c, src/print.c, src/reduce.c: To ease the
9101 translation, move some `\n' out of the translated strings.
9102
9103 2000-10-02 Akim Demaille <akim@epita.fr>
9104
9105 The location tracking mechanism is precious for parse error
9106 messages. Nevertheless, it is enabled only when `@n' is used in
9107 the grammar, which is a different issue (you can use it in error
9108 message, but not in the grammar per se). Therefore, there should
9109 be another means to enable it.
9110
9111 * src/getargs.c (getargs): Support `--locations'.
9112 (usage): Report it.
9113 * src/getargs.h (locationsflag): Export it.
9114 * src/lex.c (percent_table): Support `%locations'.
9115 * src/reader.c (yylsp_needed): Remove this variable, now replaced
9116 with `locationsflag'.
9117 * doc/bison.texinfo: Document `--locations' and `%locations'.
9118 Sort the options.
9119 * tests/calc.m4: Test it.
9120
9121 For regularity of the names, replace each
9122 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
9123 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
9124 In addition replace each `flag' with `_flag'.
9125
9126 2000-10-02 Akim Demaille <akim@epita.fr>
9127
9128 Also test parse error messages, including with YYERROR_VERBOSE.
9129
9130 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
9131 associative).
9132 Use it to check the computations.
9133 Use it to check `nonassoc' is honored.
9134 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
9135 `--yyerror-verbose'.
9136 (_AT_CHECK_CALC): Adjust to this option.
9137 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
9138
9139 2000-10-02 Akim Demaille <akim@epita.fr>
9140
9141 Test also `--verbose', `--defines' and `--name-prefix'. Testing
9142 the latter demonstrates a flaw in the handling of non debugging
9143 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
9144 was used in order to simplify:
9145
9146 #if YYDEBUG
9147 if (yydebug)
9148 {
9149 ...
9150 }
9151 #endif
9152
9153 into
9154
9155 if (yydebug)
9156 {
9157 ...
9158 }
9159
9160 unfortunately this leads to a CPP conflict when
9161 `--name-prefix=foo' is used since it produces `#define yydebug
9162 foodebug'.
9163
9164 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
9165 (YYDPRINTF): New macro.
9166 Spread its use.
9167 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
9168 the bison options.
9169 Also test `--verbose', `--defines' and `--name-prefix'.
9170
9171 2000-10-02 Akim Demaille <akim@epita.fr>
9172
9173 Improve the readability of the produced parsers.
9174
9175 * src/bison.s1: Formatting changes.
9176 Improve the comment related to the `$' mark.
9177 (yydefault): Don't fall through to `yyresume': `goto' there.
9178 * src/output.c (output_parser): When the `$' is met, skip the end
9179 of its line.
9180 New variable, `number_of_dollar_signs', to check there's exactly
9181 one `$' in the parser skeleton.
9182
9183 2000-10-02 Akim Demaille <akim@epita.fr>
9184
9185 * lib/xstrdup.c: New file, from the fileutils.
9186 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
9187 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
9188 instead of strlen + xmalloc + strcpy.
9189 * src/symtab.c (copys): Remove, use xstrdup instead.
9190
9191 2000-10-02 Akim Demaille <akim@epita.fr>
9192
9193 * src/gram.h (associativity): New enum type which replaces the
9194 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
9195 `right_assoc', `left_assoc' and `non_assoc'.
9196 Adjust all dependencies.
9197 * src/reader.c: Formatting changes.
9198 (LTYPESTR): Don't define it, use it as a literal in
9199 `reader_output_yylsp'.
9200 * src/symtab.h (symbol_class): New enum type which replaces the
9201 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
9202 `sunknown', `stoken and `snterm'.
9203
9204 2000-10-02 Akim Demaille <akim@epita.fr>
9205
9206 * src/getargs.c (fixed_outfiles): Rename as...
9207 (yaccflag): for consistency and accuracy.
9208 Adjust dependencies.
9209
9210 2000-10-02 Akim Demaille <akim@epita.fr>
9211
9212 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
9213 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
9214 difficult and introduced a lot of core dump. It turns out that
9215 Bison used an implementation of `xmalloc' based on `calloc', and
9216 at various places it does depend upon the initialization to 0. I
9217 have not tried to isolate the pertinent places, and all the former
9218 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
9219 someone should address this issue.
9220
9221 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
9222 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
9223 files.
9224 Adjust dependencies.
9225 * src/warshall.h: New file.
9226 Propagate.
9227
9228 2000-10-02 Akim Demaille <akim@epita.fr>
9229
9230 Various anti-`extern in *.c' changes.
9231
9232 * src/system.h: Include `assert.h'.
9233
9234 2000-10-02 Akim Demaille <akim@epita.fr>
9235
9236 * src/state.h (nstates, final_state, first_state, first_shift)
9237 (first_reduction): Move their exportation from here...
9238 * src/LR0.h: to here.
9239 Adjust dependencies.
9240 * src/getargs.c (statisticsflag): New variable.
9241 Add support for `--statistics'.
9242 Adjust dependencies.
9243
9244 Remove a lot of now useless `extern' statements in most files.
9245
9246 2000-10-02 Akim Demaille <akim@epita.fr>
9247
9248 * src/LR0.h: New file.
9249 Propagate its use.
9250
9251 2000-10-02 Akim Demaille <akim@epita.fr>
9252
9253 * src/print.h: New file.
9254 Propagate its use.
9255 * src/print.c: Formatting and ordering changes.
9256 (verbose, terse): Replace with...
9257 (print_results): this new function.
9258 Adjust dependencies.
9259
9260 2000-10-02 Akim Demaille <akim@epita.fr>
9261
9262 * src/conflicts.c (conflict_report): New function.
9263 (conflict_log, verbose_conflict_log): Replace with...
9264 (print_conflicts): this function.
9265 Adjust dependencies.
9266 * src/conflicts.h: New file.
9267 Propagate its inclusion.
9268
9269 2000-10-02 Akim Demaille <akim@epita.fr>
9270
9271 * src/nullable.h: New file.
9272 Propagate its inclusion.
9273 * src/nullable.c: Formatting changes.
9274
9275 2000-10-02 Akim Demaille <akim@epita.fr>
9276
9277 * src/reduce.h: New file.
9278 Propagate its inclusion.
9279 * src/reduce.c: Topological sort and other formatting changes.
9280 (bool, TRUE, FALSE): Move their definition to...
9281 * src/system.h: here.
9282
9283 2000-10-02 Akim Demaille <akim@epita.fr>
9284
9285 * src/files.c: Formatting changes.
9286 (tryopen, tryclose, openfiles): Rename as...
9287 (xfopen, xfclose, open_files): this.
9288 (stringappend): static.
9289 * src/files.h: Complete the list of exported symbols.
9290 Propagate its use.
9291
9292 2000-10-02 Akim Demaille <akim@epita.fr>
9293
9294 * src/reader.h: New file.
9295 Propagate its use instead of tedious list of `extern' and
9296 prototypes.
9297 * src/reader.c: Formatting changes, topological sort,
9298 s/register//.
9299
9300 2000-10-02 Akim Demaille <akim@epita.fr>
9301
9302 * src/lex.h: Prototype `lex.c' exported functions.
9303 * src/reader.c: Adjust.
9304 * src/lex.c: Formatting changes.
9305 (safegetc): Rename as...
9306 (xgetc): this.
9307
9308 2000-10-02 Akim Demaille <akim@epita.fr>
9309
9310 * src/lalr.h: New file.
9311 Propagate its inclusion instead of prototypes and `extern'.
9312 * src/lalr.c: Formatting changes, topological sorting etc.
9313
9314 2000-10-02 Akim Demaille <akim@epita.fr>
9315
9316 * src/output.c (token_actions): Introduce a temporary array,
9317 YYDEFACT, that makes it possible for this function to use
9318 output_short_table.
9319
9320 2000-10-02 Akim Demaille <akim@epita.fr>
9321
9322 `user_toknums' is output as a `short[]' in `output.c', while it is
9323 defined as a `int[]' in `reader.c'. For consistency with the
9324 other output tables, `user_toknums' is now defined as a table of
9325 shorts.
9326
9327 * src/reader.c (user_toknums): Be a short table instead of an int
9328 table.
9329 Adjust dependencies.
9330
9331 Factor the short table outputs.
9332
9333 * src/output.c (output_short_table): New function.
9334 * src/output.c (output_gram, output_stos, output_rule_data)
9335 (output_base, output_table, output_check): Use it.
9336
9337 2000-10-02 Akim Demaille <akim@epita.fr>
9338
9339 * src/output.c (output): Topological sort of the functions, in
9340 order to get rid of the `static' prototypes.
9341 No longer use `register'.
9342 * src/output.h: New file.
9343 Propagate its inclusion in files explicitly prototyping functions
9344 from output.c.
9345
9346 2000-09-21 Akim Demaille <akim@epita.fr>
9347
9348 * src/atgeneral.m4: Update from Autoconf.
9349
9350 2000-09-21 Akim Demaille <akim@epita.fr>
9351
9352 * src/closure.h: New file.
9353 * src/closure.c: Formatting changes, topological sort over the
9354 functions, use of closure.h.
9355 (initialize_closure, finalize_closure): Rename as...
9356 (new_closure, free_closure): these. Adjust dependencies.
9357 * src/LR0.c: Formatting changes, topological sort, use of
9358 cloture.h.
9359 (initialize_states): Rename as...
9360 (new_states): this.
9361 * src/Makefile.am (noinst_HEADERS): Adjust.
9362
9363 2000-09-20 Akim Demaille <akim@epita.fr>
9364
9365 * src/acconfig.h: Don't protect config.h against multiple
9366 inclusion.
9367 Don't define PARAMS.
9368 * src/system.h: Define PARAMS.
9369 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
9370 purpose of config.h. system.h must not try to fix wrong
9371 definitions in config.h.
9372
9373 2000-09-20 Akim Demaille <akim@epita.fr>
9374
9375 * src/derives.h: New file.
9376 * src/main.c, src/derives.h: Use it.
9377 Formatting changes.
9378 * src/Makefile.am (noinst_HEADERS): Adjust.
9379
9380 2000-09-20 Akim Demaille <akim@epita.fr>
9381
9382 * tests/atgeneral.m4: Update from Autoconf.
9383 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
9384 (AT_CHECK_CALC): New macros.
9385 Use these macros to test bison with options `', `--raw',
9386 `--debug', `--yacc', `--yacc --debug'.
9387
9388 2000-09-19 Akim Demaille <akim@epita.fr>
9389
9390 * src/output.c: Formatting changes.
9391 * src/machine.h: Remove, leaving its contents in...
9392 * src/system.h: here.
9393 Include stdio.h.
9394 Adjust all dependencies on stdio.h and machine.h.
9395 * src/getargs.h: New file.
9396 Let all `extern' declarations about getargs.c be replaced with
9397 inclusion of `getargs.h'.
9398 * src/Makefile.am (noinst_HEADERS): Adjust.
9399
9400 * tests/calc.m4 (yyin): Be initialized in main, not on the global
9401 scope.
9402 (yyerror): Returns void, not int.
9403 * doc/bison.texinfo: Formatting changes.
9404
9405 2000-09-19 Akim Demaille <akim@epita.fr>
9406
9407 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
9408 portable.
9409
9410 2000-09-18 Akim Demaille <akim@epita.fr>
9411
9412 * configure.in: Append WARNING_CFLAGS to CFLAGS.
9413 * src/Makefile.am (INCLUDES): Don't.
9414 Be ready to fetch headers in lib/.
9415
9416 2000-09-18 Akim Demaille <akim@epita.fr>
9417
9418 * doc/bison.texinfo: Update the copyright.
9419 ANSIfy and GNUify the examples.
9420 Remove the old menu.
9421
9422 2000-09-18 Akim Demaille <akim@epita.fr>
9423
9424 First set of tests: use the `calc' example from the documentation.
9425
9426 * src/bison.s1 (yyparse): Condition the code using `yytname' which
9427 is defined only when YYDEBUG is.
9428 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
9429 * src/files.c (tryopen, tryclose): Formatting changes.
9430 Move to the top and be static.
9431 * src/reader.c (read_signed_integer): Likewise.
9432 * tests/calc.m4: New file.
9433 * Makefile.am, suite.m4: Adjust.
9434 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
9435
9436 2000-09-18 Akim Demaille <akim@epita.fr>
9437
9438 Add support for an Autotest test suite for Bison.
9439
9440 * m4/m4.m4, m4/atconfig.m4: New files.
9441 * m4/Makefile.am (EXTRA_DIST): Adjust.
9442 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
9443 files.
9444 * src/getargs.c: Display a more standard --version message.
9445 * src/reader.c (reader): Formatting changes.
9446 No longer depend upon VERSION_STRING.
9447 * configure.in: No longer use `dnl'.
9448 Set up the test suite and the new directory `tests/.
9449 (VERSION_STRING): Remove.
9450
9451 2000-04-14 Akim Demaille <akim@epita.fr>
9452
9453 * src/reader.c (copy_comment2): New function, same as former
9454 `copy_comment', but outputs into two FILE *.
9455 (copy_comment): Use it.
9456 (parse_union_decl): Use it.
9457 (get_type, parse_start_decl): Use the same `invalid' message.
9458 (parse_start_decl, parse_union_decl): Use the same `multiple'
9459 message.
9460 (parse_union_decl, copy_guard, copy_action): Use the same
9461 `unmatched' message.
9462 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
9463
9464 2000-03-31 Akim Demaille <akim@epita.fr>
9465
9466 * src/files.c (tryopen, tryclose): Move to the top.
9467 Be static.
9468
9469 2000-03-31 Akim Demaille <akim@epita.fr>
9470
9471 * src/main.c (main): Don't call `done', exit does it.
9472
9473 2000-03-31 Akim Demaille <akim@epita.fr>
9474
9475 * allocate.c: s/return (foo)/return foo/.
9476 * lalr.c: Likewise.
9477 * LR0.c: Likewise.
9478 * output.c: Likewise.
9479 * reader.c: Likewise.
9480 * symtab.c: Likewise.
9481 * vmsgetargs.c: Likewise.
9482
9483 2000-03-31 Akim Demaille <akim@epita.fr>
9484
9485 Clean up the error reporting functions.
9486
9487 * src/report.c: New file.
9488 * src/report.h: Likewise.
9489 * src/Makefile.am: Adjust.
9490 * m4/error.m4: New file.
9491 * m4/Makefile.am: Adjust.
9492 * configure.in (jm_PREREQ_ERROR): Call it.
9493 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
9494 Remove.
9495 (fatal, fatals): Remove. All callers use complain.c::fatal.
9496 (warn, warni, warns, warnss, warnss): Remove. All callers use
9497 complain.c::complain.
9498 (toomany): Remove, use fatal instead.
9499 * src/files.c (done): No argument, use complain_message_count.
9500 * src/main.c (main): Register `done' to `atexit'.
9501
9502 * src/getargs.c (usage): More `fputs', less `fprintf'.
9503
9504 2000-03-28 Akim Demaille <akim@epita.fr>
9505
9506 * lib/: New directory.
9507 * Makefile.am (SUBDIRS): Adjust.
9508 * configure.in: Adjust.
9509 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
9510 useless.
9511 * src/alloca.c: Moved to lib/.
9512 * src/getopt.c: Likewise.
9513 * src/getopt1.c: Likewise.
9514 * src/getopt.h: Likewise.
9515 * src/ansi2knr.c: Likewise.
9516 * src/ansi2knr.1: Likewise.
9517 * src/Makefile.am: Adjust.
9518 * lib/Makefile.am: New file.
9519
9520 2000-03-28 Akim Demaille <akim@epita.fr>
9521
9522 * src/getargs.c (usage): Refresh the help message.
9523
9524 2000-03-17 Akim Demaille <akim@epita.fr>
9525
9526 * src/getopt1.c: Updated from textutils 2.0e
9527 * src/getopt.c: Likewise.
9528 * src/getopt.h: Likewise.
9529
9530 2000-03-17 Akim Demaille <akim@epita.fr>
9531
9532 * src/Makefile.am (bison.simple): Fix the awk program: quote only
9533 the file name, not the whole `#line LINE FILE'.
9534
9535 2000-03-17 Akim Demaille <akim@epita.fr>
9536
9537 On syntax errors, report the token on which we choked.
9538
9539 * src/bison.s1 (yyparse): In the label yyerrlab, when
9540 YYERROR_VERBOSE, add yychar in msg.
9541
9542 2000-03-17 Akim Demaille <akim@epita.fr>
9543
9544 * src/reader.c (copy_at): New function.
9545 (copy_guard): Use it.
9546 (copy_action): Use it.
9547
9548 2000-03-17 Akim Demaille <akim@epita.fr>
9549
9550 Be kind to translators, save some useless translations.
9551
9552 * src/main.c (banner): New function.
9553 (fatal_banner): Use it.
9554 (warn_banner): Use it.
9555
9556 2000-03-17 Akim Demaille <akim@epita.fr>
9557
9558 * src/reader.c (copy_definition): Use copy_string and
9559 copy_comment. Removed now unused `match', `ended',
9560 `cplus_comment'.
9561 (copy_comment, copy_string): Moved, to be visible from
9562 copy_definition.
9563
9564 2000-03-17 Akim Demaille <akim@epita.fr>
9565
9566 * src/reader.c (copy_string): Declare `static inline'. No
9567 problems with inline, since it is checked by configure.
9568 (copy_comment): Likewise.
9569
9570 2000-03-17 Akim Demaille <akim@epita.fr>
9571
9572 * src/reader.c (packsymbols): Formatting changes.
9573
9574 2000-03-17 Akim Demaille <akim@epita.fr>
9575
9576 * src/reader.c (copy_comment): New function, factored out from:
9577 (copy_action): Use it. Removed now unused `match', `ended',
9578 `cplus_comment'.
9579 (copy_guard): Likewise.
9580
9581 2000-03-17 Akim Demaille <akim@epita.fr>
9582
9583 * src/reader.c (copy_string): New function, factored out from:
9584 (copy_action): Use it.
9585 (copy_guard): Likewise.
9586
9587 2000-03-17 Akim Demaille <akim@epita.fr>
9588
9589 Change the handling of @s so that they behave exactly like $s.
9590 There is now a pseudo variable @$ (readble and writable), location
9591 of the lhs of the rule (by default ranging from the location of
9592 the first symbol of the rhs, to the location of the last symbol,
9593 or, if the rhs is empty, YYLLOC).
9594
9595 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
9596 yyval.
9597 (yyparse): When providing a default semantic action, provide a
9598 default location action.
9599 (after the $): No longer change `*YYLSP', just stack YYLOC the
9600 same way you stack YYVAL.
9601 * src/reader.c (read_declarations): Use warns.
9602 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
9603 (copy_action, case '@'): Likewise.
9604 Use a standard error message, to save useless work from
9605 translators.
9606
9607 2000-03-17 Akim Demaille <akim@epita.fr>
9608
9609 * src/bison.s1: Formatting and cosmetics changes.
9610 * src/reader.c: Likewise.
9611 Update the Copyright notice.
9612
9613 2000-03-17 Akim Demaille <akim@epita.fr>
9614
9615 * src/bison.s1 (#line): All set to `#line' only, since the
9616 Makefile now handles them.
9617
9618 2000-03-16 Akim Demaille <akim@epita.fr>
9619
9620 * src/output.c (output_rule_data): Output the documentation of
9621 some of the tables.
9622 (Copyright notice): Update.
9623 Formatting changes.
9624
9625 2000-03-16 Akim Demaille <akim@epita.fr>
9626
9627 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
9628 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
9629 One `#if YYDEBUG' remains, since it uses variables which are
9630 defined only if `YYDEBUG != 0'.
9631
9632 2000-03-16 Akim Demaille <akim@epita.fr>
9633
9634 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
9635 and related variables so that the similarities are highlighted.
9636
9637 2000-03-16 Akim Demaille <akim@epita.fr>
9638
9639 * src/bison.s1: Properly indent CPP directives.
9640
9641 2000-03-16 Akim Demaille <akim@epita.fr>
9642
9643 * src/bison.s1: Properly indent the `alloca' CPP section.
9644
9645 2000-03-16 Akim Demaille <akim@epita.fr>
9646
9647 Do not hard code values of directories in `configure.in'.
9648 Update the `configure' tool chain.
9649
9650 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
9651 src/makefile.am.
9652 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
9653 (AC_OUTPUT): Add m4/Makefile.
9654 Bump to bison 1.28a, 1.29 has never been released.
9655 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
9656 handled via src/Makefile.am.
9657 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
9658 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
9659 autoheader.
9660 * Makefile.am (SUBDIRS): Add m4.
9661 (ACLOCAL_AM_FLAGS): New variable.
9662 (AUTOMAKE_OPTIONS): Add check-news.
9663 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
9664 the proper line number and file name.
9665 (DEFS): Propagate the location of bison library files and of the
9666 locale files.
9667 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
9668 builddir.
9669 * acinclude.m4: Remove, replaced by the directory m4.
9670 * m4/Makefile.am (EXTRA_DIST): New variable.
9671 * m4/gettext.m4: New file, from the fileutils.
9672 * m4/lcmessage.m4: Likewise
9673 * m4/progtest.m4: Likewise.
9674 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
9675
9676 2000-03-10 Akim Demaille <akim@epita.fr>
9677
9678 * src/closure.c:
9679 Formatting changes of various comments.
9680 Respect the GNU coding standards at various places.
9681 Don't use `_()' when no translation is needed.
9682
9683 1999-12-13 Jesse Thilo <jthilo@gnu.org>
9684
9685 * src/files.c:
9686 OS/2 honors TMPDIR environment variable.
9687
9688 1999-12-13 Jesse Thilo <jthilo@gnu.org>
9689
9690 * doc/bison.texinfo: Tweaked spelling and grammar.
9691 Updated ISBN.
9692 Removed reference to price of printed copy.
9693 Mention BISON_SIMPLE and BISON_HAIRY.
9694
9695 1999-12-13 Jesse Thilo <jthilo@gnu.org>
9696
9697 * configure.in, NEWS:
9698 Bison 1.29 released.
9699
9700 1999-10-27 Jesse Thilo <jthilo@gnu.org>
9701
9702 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
9703 Added reference card.
9704
9705 1999-07-26 Jesse Thilo <jthilo@gnu.org>
9706
9707 * po/ru.po: Added Russian translation.
9708
9709 1999-07-26 Jesse Thilo <jthilo@gnu.org>
9710
9711 * configure.in: Added Russian translation.
9712
9713 1999-07-06 Jesse Thilo <jthilo@gnu.org>
9714
9715 * configure.in, NEWS, README:
9716 Released version 1.28.
9717
9718 1999-06-14 Jesse Thilo <jthilo@gnu.org>
9719
9720 * src/system.h:
9721 Squashed redefinition warning on some systems.
9722
9723 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
9724 Have configure build version string instead of relying on ANSI string
9725 concatentation.
9726
9727 1999-06-14 Jesse Thilo <jthilo@gnu.org>
9728
9729 * po/POTFILES.in: Got rid of version.c.
9730
9731 1999-06-14 Jesse Thilo <jthilo@gnu.org>
9732
9733 * acconfig.h, configure.in:
9734 Have configure build version string instead of relying on ANSI string
9735 concatentation.
9736
9737 1999-06-08 Jesse Thilo <jthilo@gnu.org>
9738
9739 * doc/bison.1:
9740 Dropped mention of `+' for long-named options.
9741
9742 1999-05-30 Jesse Thilo <jthilo@gnu.org>
9743
9744 * src/files.c: Added <unistd.h> for unlink().
9745
9746 * src/Makefile.am, src/system.h:
9747 I18n fixes.
9748
9749 1999-05-30 Jesse Thilo <jthilo@gnu.org>
9750
9751 * README: Added a FAQ list.
9752
9753 * configure.in, acconfig.h:
9754 I18n fixes.
9755
9756 1999-05-30 Jesse Thilo <jthilo@gnu.org>
9757
9758 * doc/FAQ, doc/Makefile.am:
9759 Added a FAQ list.
9760
9761 1999-05-19 Jesse Thilo <jthilo@gnu.org>
9762
9763 * src/alloc.h, src/symtab.h, src/version.c:
9764 Protected inclusion of "config.h" with HAVE_CONFIG_H.
9765
9766 1999-04-18 Jesse Thilo <jthilo@gnu.org>
9767
9768 * src/.cvsignore, src/Makefile.am:
9769 Reorganized: sources in `src', documentation in `doc'.
9770
9771 * src/lex.c (literalchar):
9772 fixed the code for escaping double quotes (thanks
9773 Jonathan Czisny.)
9774
9775 1999-04-18 Jesse Thilo <jthilo@gnu.org>
9776
9777 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
9778 Adjusted paths to reflect directory reorganization.
9779
9780 1999-04-18 Jesse Thilo <jthilo@gnu.org>
9781
9782 * doc/.cvsignore, doc/Makefile.am:
9783 Reorganized: sources in `src', documentation in `doc'.
9784
9785 1999-04-18 Jesse Thilo <jthilo@gnu.org>
9786
9787 * configure.in:
9788 Updated AC_INIT file to reflect directory reorganization.
9789
9790 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
9791 Reorganized: sources in `src', documentation in `doc'.
9792
9793 1999-04-13 Jesse Thilo <jthilo@gnu.org>
9794
9795 * src/allocate.c:
9796 Don't declare calloc() and realloc() if not necessary.
9797
9798 1999-04-13 Jesse Thilo <jthilo@gnu.org>
9799
9800 * configure.in, acconfig.h, acinclude.m4:
9801 Don't declare calloc() and realloc() if not necessary.
9802
9803 1999-03-23 Jesse Thilo <jthilo@gnu.org>
9804
9805 * po/.cvsignore: Added i18n support.
9806
9807 1999-03-23 Jesse Thilo <jthilo@gnu.org>
9808
9809 * acconfig.h, configure.in, Makefile.am:
9810 Added i18n support.
9811
9812 1999-03-22 Jesse Thilo <jthilo@gnu.org>
9813
9814 * src/bison.s1: Fixed #line numbers.
9815
9816 1999-03-15 Jesse Thilo <jthilo@gnu.org>
9817
9818 * po/es.po, po/fr.po, po/nl.po, po/de.po:
9819 Added PO files from Translation Project.
9820
9821 1999-03-03 Jesse Thilo <jthilo@gnu.org>
9822
9823 * Makefile.am:
9824 Added support for non-ANSI compilers (ansi2knr).
9825
9826 1999-02-16 Jesse Thilo <jthilo@gnu.org>
9827
9828 * configure.in: Bumped version number to 1.27.
9829
9830 * Makefile.am:
9831 Added `bison.simple' to list of files removed by `make distclean'.
9832
9833 1999-02-12 Jesse Thilo <jthilo@gnu.org>
9834
9835 * src/files.c, src/files.h:
9836 Defined locations of parser files in config.h instead of Makefile.
9837
9838 1999-02-12 Jesse Thilo <jthilo@gnu.org>
9839
9840 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
9841 Defined locations of parser files in config.h instead of Makefile.
9842
9843 1999-02-09 Jesse Thilo <jthilo@gnu.org>
9844
9845 * Makefile.am:
9846 Removed inappropriate use of $< macro.
9847
9848 1999-02-05 Jesse Thilo <jthilo@gnu.org>
9849
9850 * po/Makefile.in.in, po/POTFILES.in:
9851 Add `po' directory skeleton.
9852
9853 1999-01-27 Jesse Thilo <jthilo@gnu.org>
9854
9855 * README: Document help-bison list.
9856
9857 * configure.in: Add check for mkstemp().
9858
9859 1999-01-20 Jesse Thilo <jthilo@gnu.org>
9860
9861 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
9862 Hush a few compiler warnings.
9863
9864 * src/files.c:
9865 Add tryclose(), which verifies that fclose was successful.
9866 Hush a couple of compiler warnings.
9867
9868 1999-01-20 Jesse Thilo <jthilo@gnu.org>
9869
9870 * Makefile.am, OChangeLog:
9871 ChangeLog is now automatically generated. Include the old version as
9872 OChangeLog.
9873
9874 1999-01-14 Jesse Thilo <jthilo@gnu.org>
9875
9876 * 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:
9877 Update FSF address.
9878
9879 1999-01-14 Jesse Thilo <jthilo@gnu.org>
9880
9881 * doc/bison.texinfo: Fix formatting glitch.
9882
9883 * doc/bison.texinfo: Update FSF address.
9884
9885 1999-01-14 Jesse Thilo <jthilo@gnu.org>
9886
9887 * acconfig.h: Update FSF address.
9888
9889 1999-01-08 Jesse Thilo <jthilo@gnu.org>
9890
9891 * src/system.h:
9892 Don't define PACKAGE here, since config.h defines it.
9893
9894 1998-12-30 Jesse Thilo <jthilo@gnu.org>
9895
9896 * src/reader.c: Update copyright date.
9897
9898 * src/main.c:
9899 Ditch sprintf to statically-sized buffers in fatal/warn functions in
9900 favor of output directly to stderr (avoids buffer overruns).
9901
9902 * src/reader.c: Some checks for premature EOF.
9903
9904 * 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:
9905 Use prototypes if the compiler understands them.
9906
9907 * src/files.c: Honor TMPDIR on Unix hosts.
9908 Use prototypes if the compiler understands them.
9909
9910 * src/reader.c:
9911 Fix a couple of buffer overrun bugs.
9912 Use prototypes if the compiler understands them.
9913
9914 * src/system.h: Include unistd.h and ctype.h.
9915 Use #ifdef instead of #if for NLS symbols.
9916
9917 1998-12-30 Jesse Thilo <jthilo@gnu.org>
9918
9919 * doc/bison.texinfo:
9920 Delete comment "consider using @set for edition number, etc..." since
9921 we now are doing so.
9922
9923 1998-12-30 Jesse Thilo <jthilo@gnu.org>
9924
9925 * configure.in:
9926 Use prototypes if the compiler understands them.
9927
9928 * NEWS: Document 1.26 highlights.
9929
9930 * Makefile.am: Require Automake 1.3 or later.
9931
9932 * acconfig.h:
9933 Use prototypes if the compiler understands them.
9934
9935 1998-12-29 Jesse Thilo <jthilo@gnu.org>
9936
9937 * src/version.c:
9938 Use VERSION symbol from automake for version number.
9939
9940 1998-12-29 Jesse Thilo <jthilo@gnu.org>
9941
9942 * acconfig.h, configure.in, version.cin:
9943 Use VERSION symbol from automake for version number.
9944
9945 1998-11-28 Jesse Thilo <jthilo@gnu.org>
9946
9947 * Makefile.am:
9948 Distribute original version of simple parser (bison.s1), not built
9949 version (bison.simple).
9950
9951 1998-11-28 Jesse Thilo <jthilo@gnu.org>
9952
9953 * doc/bison.texinfo: Add info dir entry.
9954
9955 * doc/bison.texinfo:
9956 Let automake put version number into documentation.
9957
9958 1998-11-26 Jesse Thilo <jthilo@gnu.org>
9959
9960 * src/bison.cld, src/build.com, src/vmshlp.mar:
9961 Add non-RCS files from /gd/gnu/bison.
9962
9963 1998-11-26 Jesse Thilo <jthilo@gnu.org>
9964
9965 * doc/bison.1:
9966 Document the BISON_HAIRY and BISON_SIMPLE variables.
9967
9968 1998-11-25 Jesse Thilo <jthilo@gnu.org>
9969
9970 * src/version.c: Build version.c automatically.
9971
9972 * src/reader.c:
9973 Fix token numbering (used to start at 258, not 257).
9974
9975 * src/system.h: Include config.h.
9976
9977 * src/getargs.c: Update bug report address.
9978
9979 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
9980 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
9981
9982 1998-11-25 Jesse Thilo <jthilo@gnu.org>
9983
9984 * Makefile.am:
9985 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
9986
9987 * configure.in, version.cin:
9988 Build version.c automatically.
9989
9990 * AUTHORS: Add AUTHORS file.
9991
9992 * README: Update bug report address.
9993
9994 * bison.simple:
9995 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
9996
9997 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
9998 Add automake stuff.
9999
10000 1998-11-25 Jesse Thilo <jthilo@gnu.org>
10001
10002 * doc/bison.texinfo: Clean up some formatting.
10003
10004 1998-05-05 Richard Stallman <rms@gnu.org>
10005
10006 * doc/bison.texinfo:
10007 Explain better why to make a pure parser.
10008
10009 1998-01-05 Richard Stallman <rms@gnu.org>
10010
10011 * src/files.c (openfiles):
10012 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
10013 find a temporary directory, if possible. Do not unlink files while
10014 they are open.
10015
10016 1997-08-25 Richard Stallman <rms@gnu.org>
10017
10018 * src/reader.c (stack_offset;):
10019 Change some warni to warns.
10020
10021 * src/lex.c (literalchar): Use warns, not warni.
10022
10023 1997-06-28 Richard Stallman <rms@gnu.org>
10024
10025 * src/bison.s1: Add a Bison version comment.
10026
10027 * src/main.c (fatal, warn, berror):
10028 Use program_name.
10029
10030 1997-06-28 Richard Stallman <rms@gnu.org>
10031
10032 * Makefile.in (bison_version): New variable.
10033 (dist): Use that variable.
10034 (bison.s1): Substitute the Bison version into bison.simple.
10035
10036 * bison.simple: Add a Bison version comment.
10037
10038 1997-06-18 Richard Stallman <rms@gnu.org>
10039
10040 * src/main.c (fatal, warn, berror):
10041 Make error messages standard.
10042 (toomany): Improve error message text.
10043
10044 * 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:
10045 new.h renamed to alloc.h.
10046
10047 1997-06-18 Richard Stallman <rms@gnu.org>
10048
10049 * Makefile.in: new.h renamed to alloc.h.
10050
10051 1997-05-24 Richard Stallman <rms@gnu.org>
10052
10053 * src/lex.c (literalchar):
10054 Fix the code for escaping \, " and '.
10055
10056 (lex): Avoid trouble when there are many chars
10057 to discard in a char literal with just several chars in it.
10058
10059 1997-05-17 Richard Stallman <rms@gnu.org>
10060
10061 * src/bison.s1:
10062 Use malloc, if using alloca is troublesome.
10063 (YYSTACK_USE_ALLOCA): New flag macro.
10064 Define it for some systems and compilers.
10065 (YYSTACK_ALLOC): New macro.
10066 (yyparse): Use YYSTACK_ALLOC to allocate stack.
10067 If it was malloc'd, free it.
10068
10069 1997-05-17 Richard Stallman <rms@gnu.org>
10070
10071 * bison.simple:
10072 Use malloc, if using alloca is troublesome.
10073 (YYSTACK_USE_ALLOCA): New flag macro.
10074 Define it for some systems and compilers.
10075 (YYSTACK_ALLOC): New macro.
10076 (yyparse): Use YYSTACK_ALLOC to allocate stack.
10077 If it was malloc'd, free it.
10078
10079 1997-04-23 Richard Stallman <rms@gnu.org>
10080
10081 * src/bison.s1:
10082 (alloca) [__hpux]: Always define as __builtin_alloca.
10083
10084 1997-04-23 Richard Stallman <rms@gnu.org>
10085
10086 * bison.simple:
10087 (alloca) [__hpux]: Always define as __builtin_alloca.
10088
10089 1997-04-22 Richard Stallman <rms@gnu.org>
10090
10091 * src/bison.s1:
10092 [__hpux]: Include alloca.h (right for HPUX 10)
10093 instead of declaring alloca (right for HPUX 9).
10094
10095 * src/bison.s1 (__yy_memcpy):
10096 Declare arg `count' as unsigned int.
10097 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
10098
10099 1997-04-22 Richard Stallman <rms@gnu.org>
10100
10101 * bison.simple:
10102 [__hpux]: Include alloca.h (right for HPUX 10)
10103 instead of declaring alloca (right for HPUX 9).
10104
10105 * bison.simple (__yy_memcpy):
10106 Declare arg `count' as unsigned int.
10107 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
10108
10109 1997-01-03 Richard Stallman <rms@gnu.org>
10110
10111 * src/allocate.c: [__STDC__ or _MSC_VER]:
10112 Declare calloc and realloc to return void *.
10113
10114 1997-01-02 Richard Stallman <rms@gnu.org>
10115
10116 * src/system.h:
10117 [_MSC_VER]: Include stdlib.h and process.h.
10118 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
10119
10120 * src/main.c (main): Return FAILURE as a value.
10121 (printable_version): Declare arg as int, not char.
10122
10123 1997-01-02 Richard Stallman <rms@gnu.org>
10124
10125 * Makefile.in (dist):
10126 Explicitly check for symlinks, and copy them.
10127
10128 1996-12-19 Richard Stallman <rms@gnu.org>
10129
10130 * src/files.c:
10131 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
10132
10133 1996-12-18 Paul Eggert <eggert@gnu.org>
10134
10135 * src/bison.s1 (yyparse):
10136 If __GNUC__ and YYPARSE_PARAM are both defined,
10137 declare yyparse to have a void * argument.
10138
10139 1996-12-18 Paul Eggert <eggert@gnu.org>
10140
10141 * bison.simple (yyparse):
10142 If __GNUC__ and YYPARSE_PARAM are both defined,
10143 declare yyparse to have a void * argument.
10144
10145 1996-12-17 Richard Stallman <rms@gnu.org>
10146
10147 * src/reduce.c (nbits): Add some casts.
10148
10149 1996-08-12 Richard Stallman <rms@gnu.org>
10150
10151 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
10152
10153 1996-08-12 Richard Stallman <rms@gnu.org>
10154
10155 * bison.simple: Test _MSDOS as well as _MSDOS_.
10156
10157 1996-07-31 Richard Stallman <rms@gnu.org>
10158
10159 * src/bison.s1:
10160 [__sun && __i386]: Include alloca.h.
10161
10162 1996-07-31 Richard Stallman <rms@gnu.org>
10163
10164 * bison.simple:
10165 [__sun && __i386]: Include alloca.h.
10166
10167 1996-07-30 Richard Stallman <rms@gnu.org>
10168
10169 * src/bison.s1: Comment change.
10170
10171 * src/bison.s1: Test _MSDOS_, not MSDOS.
10172
10173 1996-07-30 Richard Stallman <rms@gnu.org>
10174
10175 * bison.simple: Comment change.
10176
10177 * bison.simple: Test _MSDOS_, not MSDOS.
10178
10179 1996-06-01 Richard Stallman <rms@gnu.org>
10180
10181 * 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:
10182 Insert `_' macro around many string constants.
10183
10184 * src/main.c:
10185 Insert `_' macro around many string constants.
10186
10187 (main): Call setlocale, bindtextdomain and textdomain.
10188
10189 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
10190 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
10191 [ENABLE_NLS]: Include libintl.h.
10192 [ENABLE_NLS] (gettext): Define.
10193 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
10194 (N_, PACKAGE, LOCALEDIR): New macros.
10195
10196 1996-06-01 Richard Stallman <rms@gnu.org>
10197
10198 * POTFILES.in: New file.
10199
10200 * Makefile.in (allocate.o):
10201 Define target explicitly.
10202
10203 * Makefile.in (CFLAGS): Set to @CFLAGS@.
10204 (LDFLAGS): Set to @LDFLAGS@.
10205 (configure): Run autoconf only if preceding `cd' succeeds.
10206 (bison.s1): Redirect output to temporary file then move the
10207 temporary to the target, rather than redirecting directly to bison.s1.
10208 (clean): Remove config.status and config.log.
10209 (distclean): Don't remove config.status here.
10210
10211 1996-05-12 Richard Stallman <rms@gnu.org>
10212
10213 * src/bison.s1:
10214 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
10215
10216 1996-05-12 Richard Stallman <rms@gnu.org>
10217
10218 * bison.simple:
10219 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
10220
10221 1996-05-11 Richard Stallman <rms@gnu.org>
10222
10223 * src/bison.s1 (__yy_memcpy):
10224 Really reorder the args, as was supposedly done on Feb 14 1995.
10225 (yyparse): Calls changed accordingly.
10226
10227 1996-05-11 Richard Stallman <rms@gnu.org>
10228
10229 * Makefile.in (dist): Don't use $(srcdir).
10230
10231 * bison.simple (__yy_memcpy):
10232 Really reorder the args, as was supposedly done on Feb 14 1995.
10233 (yyparse): Calls changed accordingly.
10234
10235 1996-01-27 Richard Stallman <rms@gnu.org>
10236
10237 * src/output.c (output_rule_data):
10238 Test YYERROR_VERBOSE in the conditional
10239 around the definition of ttyname.
10240
10241 1995-12-29 Richard Stallman <rms@gnu.org>
10242
10243 * src/bison.s1:
10244 Fix line numbers in #line commands.
10245
10246 1995-12-29 Richard Stallman <rms@gnu.org>
10247
10248 * bison.simple:
10249 Fix line numbers in #line commands.
10250
10251 1995-12-27 Richard Stallman <rms@gnu.org>
10252
10253 * src/bison.s1 (YYPARSE_PARAM_DECL):
10254 In C++, make it always null.
10255 (YYPARSE_PARAM_ARG): New macro.
10256 (yyparse): Use YYPARSE_PARAM_ARG.
10257
10258 1995-12-27 Richard Stallman <rms@gnu.org>
10259
10260 * bison.simple (YYPARSE_PARAM_DECL):
10261 In C++, make it always null.
10262 (YYPARSE_PARAM_ARG): New macro.
10263 (yyparse): Use YYPARSE_PARAM_ARG.
10264
10265 1995-11-29 Richard Stallman <rms@gnu.org>
10266
10267 * doc/bison.texinfo:
10268 Describe literal string tokens, %raw, %no_lines, %token_table.
10269
10270 1995-11-29 Daniel Hagerty <hag@gnu.org>
10271
10272 * doc/bison.texinfo: Fixed update date
10273
10274 1995-10-16 Richard Stallman <rms@gnu.org>
10275
10276 * src/version.c: Version 1.25.
10277
10278 1995-10-16 Richard Stallman <rms@gnu.org>
10279
10280 * NEWS: *** empty log message ***
10281
10282 1995-10-16 Richard Stallman <rms@gnu.org>
10283
10284 * doc/bison.1, doc/bison.rnh:
10285 Add new options.
10286
10287 1995-10-15 Richard Stallman <rms@gnu.org>
10288
10289 * src/vmsgetargs.c, src/getargs.c:
10290 Added -n, -k, and -raw switches.
10291 (noparserflag, toknumflag, rawtoknumflag): New variables.
10292
10293 * src/symtab.h (SALIAS):
10294 New #define for adding aliases to %token.
10295 (struct bucket): Added `alias' field.
10296
10297 * src/reduce.c (reduce_grammar):
10298 Revise error message.
10299 (print_notices): Remove final `.' from error message.
10300
10301 * src/reader.c (reader_output_yylsp):
10302 New function.
10303 (readgram): Use `#if 0' around code that accepted %command
10304 inside grammar rules: The documentation doesn't allow it,
10305 and it will fail since the %command processors scan for the next %.
10306 (parse_token_decl): Extended the %token
10307 declaration to allow a multi-character symbol as an alias.
10308 (parse_thong_decl): New function.
10309 (read_declarations): Added %thong declarations.
10310 (read_declarations): Handle NOOP to deal with allowing
10311 % declarations as another means to specify the flags.
10312 (readgram): Allow %prec prior to semantics embedded in a rule.
10313 (skip_to_char, read_declarations, copy_definition)
10314 (parse_token_decl, parse_start_decl, parse_type_decl)
10315 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
10316 (get_type_name, copy_guard, copy_action, readgram)
10317 (get_type, packsymbols): Revised most error messages.
10318 Changed `fatal' to `warnxxx' to avoid aborting for error.
10319 Revised and use multiple warnxxx functions to avoid using VARARGS1.
10320 (read_declarations): Improve the error message for
10321 an invalid character. Do not abort.
10322 (read_declarations, copy_guard, copy_action): Use
10323 printable_version to avoid unprintable characters in printed output.
10324 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
10325 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
10326 Allow the type of a non-terminal can be given
10327 more than once, as long as all specifications give the same type.
10328
10329 * src/output.c:
10330 (output_headers, output_trailers, output, output_gram)
10331 (output_rule_data): Implement noparserflag variable.
10332 Implement toknumflag variable.
10333 (output): Call reader_output_yylsp to output LTYPESTR.
10334
10335 * src/main.c (main):
10336 If reader sees an error, don't process the grammar.
10337 (fatals): Updated to not use VARARGS1.
10338 (printable_version, int_to_string, warn, warni, warns, warnss)
10339 (warnsss): New error reporting functions. Avoid abort for error.
10340
10341 * src/lex.h:
10342 Added THONG and NOOP for alias processing.
10343 Added SETOPT for the new code that allows setting options with %flags.
10344
10345 * src/lex.c:
10346 Include getopt.h. Add some extern decls.
10347 (safegetc): New function to deal with EOF gracefully.
10348 (literalchar); new function to deal with reading \ escapes.
10349 (lex): Use literalchar.
10350 (lex): Implemented "..." tokens.
10351 (literalchar, lex, parse_percent_token): Made tokenbuffer
10352 always contain the token. This includes growing the token
10353 buffer while reading an integer.
10354 (parse_percent_token): Replaced if-else statement with percent_table.
10355 (parse_percent_token): Added % declarations as another
10356 way to specify the flags -n, -l, and -r. Also added hooks for
10357 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
10358 major changes to files.c.
10359 (lex) Retain in the incoming stream a character following
10360 an incorrect '/'.
10361 (skip_white_space, lex): Revised most error messages
10362 and changed fatal to warn to avoid aborting.
10363 (percent_table): Added %thong declarations.
10364
10365 * src/gram.h: Comment changes.
10366
10367 * src/files.c (openfiles, open_extra_files, done):
10368 Add faction flag
10369 and actfile file. Handle noparserflag. Both for -n switch.
10370
10371 * src/conflicts.c (resolve_sr_conflict):
10372 Remove use of alloca.
10373
10374 1995-06-01 Jim Meyering <meyering@gnu.org>
10375
10376 * doc/bison.texinfo: *** empty log message ***
10377
10378 1995-05-06 Richard Stallman <rms@gnu.org>
10379
10380 * src/bison.s1: Comment change.
10381
10382 1995-05-06 Richard Stallman <rms@gnu.org>
10383
10384 * bison.simple: Comment change.
10385
10386 1995-05-03 Richard Stallman <rms@gnu.org>
10387
10388 * src/version.c: Version now 1.24.
10389
10390 * src/bison.s1: Change distribution terms.
10391
10392 * src/version.c: Version now 1.23.
10393
10394 1995-05-03 Richard Stallman <rms@gnu.org>
10395
10396 * doc/bison.texinfo:
10397 Rewrite "Conditions for Using Bison".
10398 Update version to 1.24.
10399
10400 1995-05-03 Richard Stallman <rms@gnu.org>
10401
10402 * bison.simple: Change distribution terms.
10403
10404 1995-02-23 Richard Stallman <rms@gnu.org>
10405
10406 * src/files.c: Test __VMS_POSIX as well as VMS.
10407
10408 1995-02-14 Jim Meyering <meyering@gnu.org>
10409
10410 * src/bison.s1 (__yy_memcpy):
10411 Renamed from __yy_bcopy to avoid
10412 confusion. Reverse FROM and TO arguments to be consistent with
10413 those of memcpy.
10414
10415 1995-02-14 Jim Meyering <meyering@gnu.org>
10416
10417 * bison.simple (__yy_memcpy):
10418 Renamed from __yy_bcopy to avoid
10419 confusion. Reverse FROM and TO arguments to be consistent with
10420 those of memcpy.
10421
10422 1994-11-10 David J. MacKenzie <djm@gnu.org>
10423
10424 * NEWS: reformat
10425
10426 * NEWS: New file.
10427
10428 * Makefile.in (DISTFILES): Include NEWS.
10429
10430 * Makefile.in (DISTFILES):
10431 Include install-sh, not install.sh.
10432
10433 * configure.in: Update to Autoconf v2 macro names.
10434
10435 1994-10-05 David J. MacKenzie <djm@gnu.org>
10436
10437 * Makefile.in: fix typo
10438
10439 * Makefile.in (prefix, exec_prefix):
10440 Let configure set them.
10441
10442 1994-09-28 David J. MacKenzie <djm@gnu.org>
10443
10444 * Makefile.in: Set datadir to $(prefix)/share.
10445
10446 1994-09-15 Richard Stallman <rms@gnu.org>
10447
10448 * src/bison.s1:
10449 Update copyright notice and GPL version.
10450
10451 1994-09-15 Richard Stallman <rms@gnu.org>
10452
10453 * bison.simple:
10454 Update copyright notice and GPL version.
10455
10456 1994-07-12 Richard Stallman <rms@gnu.org>
10457
10458 * src/reduce.c, src/reader.c:
10459 entered into RCS
10460
10461 1994-05-05 David J. MacKenzie <djm@gnu.org>
10462
10463 * Makefile.in: entered into RCS
10464
10465 1994-03-26 Richard Stallman <rms@gnu.org>
10466
10467 * src/bison.s1: entered into RCS
10468
10469 1994-03-26 Richard Stallman <rms@gnu.org>
10470
10471 * bison.simple: entered into RCS
10472
10473 1994-03-25 Richard Stallman <rms@gnu.org>
10474
10475 * src/main.c: entered into RCS
10476
10477 1994-03-24 Richard Stallman <rms@gnu.org>
10478
10479 * src/conflicts.c: entered into RCS
10480
10481 1994-01-02 Richard Stallman <rms@gnu.org>
10482
10483 * Makefile.in: *** empty log message ***
10484
10485 1993-11-21 Richard Stallman <rms@gnu.org>
10486
10487 * src/bison.s1: *** empty log message ***
10488
10489 1993-11-21 Richard Stallman <rms@gnu.org>
10490
10491 * doc/bison.texinfo: entered into RCS
10492
10493 * doc/bison.texinfo: *** empty log message ***
10494
10495 1993-11-21 Richard Stallman <rms@gnu.org>
10496
10497 * bison.simple: *** empty log message ***
10498
10499 1993-10-25 David J. MacKenzie <djm@gnu.org>
10500
10501 * doc/bison.texinfo: *** empty log message ***
10502
10503 1993-10-19 Richard Stallman <rms@gnu.org>
10504
10505 * src/bison.s1: *** empty log message ***
10506
10507 1993-10-19 Richard Stallman <rms@gnu.org>
10508
10509 * bison.simple: *** empty log message ***
10510
10511 1993-10-14 Richard Stallman <rms@gnu.org>
10512
10513 * src/bison.s1: *** empty log message ***
10514
10515 1993-10-14 Richard Stallman <rms@gnu.org>
10516
10517 * bison.simple: *** empty log message ***
10518
10519 1993-09-14 David J. MacKenzie <djm@gnu.org>
10520
10521 * doc/bison.texinfo: *** empty log message ***
10522
10523 1993-09-13 Noah Friedman <friedman@gnu.org>
10524
10525 * Makefile.in: *** empty log message ***
10526
10527 1993-09-10 Richard Stallman <rms@gnu.org>
10528
10529 * src/conflicts.c: *** empty log message ***
10530
10531 * src/system.h: entered into RCS
10532
10533 1993-09-10 Richard Stallman <rms@gnu.org>
10534
10535 * doc/bison.1: entered into RCS
10536
10537 1993-09-06 Noah Friedman <friedman@gnu.org>
10538
10539 * src/version.c: entered into RCS
10540
10541 1993-09-06 Noah Friedman <friedman@gnu.org>
10542
10543 * Makefile.in: *** empty log message ***
10544
10545 1993-07-30 David J. MacKenzie <djm@gnu.org>
10546
10547 * Makefile.in: *** empty log message ***
10548
10549 1993-07-24 Richard Stallman <rms@gnu.org>
10550
10551 * src/bison.s1: *** empty log message ***
10552
10553 1993-07-24 Richard Stallman <rms@gnu.org>
10554
10555 * bison.simple: *** empty log message ***
10556
10557 1993-07-08 David J. MacKenzie <djm@gnu.org>
10558
10559 * Makefile.in: *** empty log message ***
10560
10561 1993-07-04 Richard Stallman <rms@gnu.org>
10562
10563 * src/bison.s1: *** empty log message ***
10564
10565 1993-07-04 Richard Stallman <rms@gnu.org>
10566
10567 * bison.simple: *** empty log message ***
10568
10569 1993-06-26 David J. MacKenzie <djm@gnu.org>
10570
10571 * src/getargs.c: entered into RCS
10572
10573 1993-06-26 David J. MacKenzie <djm@gnu.org>
10574
10575 * doc/bison.texinfo: *** empty log message ***
10576
10577 * doc/bison.1: New file.
10578
10579 1993-06-25 Richard Stallman <rms@gnu.org>
10580
10581 * src/getargs.c: New file.
10582
10583 1993-06-16 Richard Stallman <rms@gnu.org>
10584
10585 * src/bison.s1: *** empty log message ***
10586
10587 1993-06-16 Richard Stallman <rms@gnu.org>
10588
10589 * bison.simple: *** empty log message ***
10590
10591 1993-06-03 Richard Stallman <rms@gnu.org>
10592
10593 * src/bison.s1: New file.
10594
10595 1993-06-03 Richard Stallman <rms@gnu.org>
10596
10597 * doc/bison.texinfo: *** empty log message ***
10598
10599 1993-06-03 Richard Stallman <rms@gnu.org>
10600
10601 * bison.simple: New file.
10602
10603 1993-05-19 Richard Stallman <rms@gnu.org>
10604
10605 * doc/bison.texinfo: New file.
10606
10607 1993-05-07 Noah Friedman <friedman@gnu.org>
10608
10609 * Makefile.in: *** empty log message ***
10610
10611 1993-04-28 Noah Friedman <friedman@gnu.org>
10612
10613 * src/reader.c: *** empty log message ***
10614
10615 1993-04-23 Noah Friedman <friedman@gnu.org>
10616
10617 * src/alloc.h: entered into RCS
10618
10619 1993-04-20 David J. MacKenzie <djm@gnu.org>
10620
10621 * src/version.c: *** empty log message ***
10622
10623 * src/files.c, src/allocate.c:
10624 entered into RCS
10625
10626 * src/reader.c: *** empty log message ***
10627
10628 * src/lex.c: entered into RCS
10629
10630 * src/conflicts.c: New file.
10631
10632 * src/symtab.c: entered into RCS
10633
10634 * src/alloc.h: New file.
10635
10636 * src/LR0.c: entered into RCS
10637
10638 1993-04-18 Noah Friedman <friedman@gnu.org>
10639
10640 * src/reader.c: New file.
10641
10642 * src/version.c: *** empty log message ***
10643
10644 1993-04-18 Noah Friedman <friedman@gnu.org>
10645
10646 * Makefile.in: *** empty log message ***
10647
10648 1993-04-17 Noah Friedman <friedman@gnu.org>
10649
10650 * Makefile.in: *** empty log message ***
10651
10652 1993-04-15 Richard Stallman <rms@gnu.org>
10653
10654 * src/main.c, src/files.c:
10655 New file.
10656
10657 1993-04-15 Noah Friedman <friedman@gnu.org>
10658
10659 * configure.in: entered into RCS
10660
10661 * configure.in: *** empty log message ***
10662
10663 * configure.in: New file.
10664
10665 1993-04-14 Richard Stallman <rms@gnu.org>
10666
10667 * Makefile.in: New file.
10668
10669 1993-04-13 Richard Stallman <rms@gnu.org>
10670
10671 * src/version.c: New file.
10672
10673 1993-03-25 Richard Stallman <rms@gnu.org>
10674
10675 * src/output.c: entered into RCS
10676
10677 1992-09-25 Richard Stallman <rms@gnu.org>
10678
10679 * configure.bat: entered into RCS
10680
10681 1992-06-22 Richard Stallman <rms@gnu.org>
10682
10683 * src/vmsgetargs.c: entered into RCS
10684
10685 1992-06-22 Richard Stallman <rms@gnu.org>
10686
10687 * doc/bison.rnh: entered into RCS
10688
10689 1992-04-20 David J. MacKenzie <djm@gnu.org>
10690
10691 * README: entered into RCS
10692
10693 1992-01-22 Richard Stallman <rms@gnu.org>
10694
10695 * src/machine.h: entered into RCS
10696
10697 1991-12-21 Richard Stallman <rms@gnu.org>
10698
10699 * src/lalr.c, src/closure.c:
10700 entered into RCS
10701
10702 1991-12-20 Richard Stallman <rms@gnu.org>
10703
10704 * src/state.h: entered into RCS
10705
10706 1991-12-18 Richard Stallman <rms@gnu.org>
10707
10708 * src/print.c, src/nullable.c, src/derives.c:
10709 entered into RCS
10710
10711 1991-11-03 David J. MacKenzie <djm@gnu.org>
10712
10713 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
10714 entered into RCS
10715
10716 1988-09-09 Richard Stallman <rms@gnu.org>
10717
10718 * src/bison.hairy: entered into RCS
10719
10720 1987-12-16 Richard Stallman <rms@gnu.org>
10721
10722 * REFERENCES: entered into RCS
10723
10724 -----
10725
10726 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
10727 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
10728
10729 This file is part of Bison, the GNU Compiler Compiler.
10730
10731 Bison is free software; you can redistribute it and/or modify
10732 it under the terms of the GNU General Public License as published by
10733 the Free Software Foundation; either version 2, or (at your option)
10734 any later version.
10735
10736 Bison is distributed in the hope that it will be useful,
10737 but WITHOUT ANY WARRANTY; without even the implied warranty of
10738 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10739 GNU General Public License for more details.
10740
10741 You should have received a copy of the GNU General Public License
10742 along with Bison; see the file COPYING. If not, write to
10743 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
10744 Boston, MA 02111-1307, USA.