]> git.saurik.com Git - bison.git/blob - ChangeLog
Invoke wget with -C off, to disable proxy caches.
[bison.git] / ChangeLog
1 2003-01-08 Paul Eggert <eggert@twinsun.com>
2
3 * Makefile.maint (WGETFLAGS):
4 New macro, containing "-C off" to disable proxy caches.
5 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
6 (rel-check): Use $(WGET) instead of wget.
7
8 2003-01-06 Paul Eggert <eggert@twinsun.com>
9
10 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
11 the GLR paper of Scott, Johnstone and Hussain.
12
13 2003-01-04 Paul Eggert <eggert@twinsun.com>
14
15 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
16 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
17 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
18 (EXTRA_LIBRARIES): New var, for liby.a.
19 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
20 (EXTRA_SCRIPTS): New var, for yacc.
21
22 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
23 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
24 Problem reported by Nelson H. F. Beebe.
25
26 2003-01-03 Paul Eggert <eggert@twinsun.com>
27
28 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
29 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
30 when compiling Bison 1.875's `bitset bset = obstack_alloc
31 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
32
33 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
34 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
35 grow to a huge size with typical invocation.
36
37 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
38 Use the pattern recommended by Autoconf 2.57, except also protect
39 against double-definition.
40 * src/system.h: Likewise.
41 Portability issues reported by Nelson H. F. Beebe.
42
43 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
44 All uses changed. Provide a definition in both C and C++.
45 (yytrue, yyfalse): Define even if defined (__cplusplus).
46
47 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
48 Reported by Nelson H. F. Beebe.
49
50 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
51
52 2003-01-02 Paul Eggert <eggert@twinsun.com>
53
54 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
55 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
56 Bug reported by Nelson H. F. Beebe.
57
58 2003-01-01 Paul Eggert <eggert@twinsun.com>
59
60 * Version 1.875.
61
62 2002-12-30 Paul Eggert <eggert@twinsun.com>
63
64 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
65 Moved here from...
66 (<INITIAL>","): Here. This causes stray "," to be treated
67 more uniformly.
68
69 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
70 last brace in braced code when not in Yacc mode, for compatibility
71 with Bison 1.35. This resurrects the 2001-12-15 patch to
72 src/reader.c.
73
74 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
75 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
76
77 2002-12-28 Paul Eggert <eggert@twinsun.com>
78
79 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
80 that of SYM's type. This fixes Debian bug 168069, reported by
81 Thomas Olsson.
82
83 2002-12-28 Paul Eggert <eggert@twinsun.com>
84
85 Version 1.75f.
86
87 Switch back to the Yacc style of conflict reports, undoing some
88 of the 2002-07-30 change.
89 * doc/bison.texinfo (Understanding): Use Yacc style for
90 conflict reports. Also, use new way of locating rules.
91 * src/conflicts.c (conflict_report):
92 Renamed from conflict_report_yacc, removing the old
93 'conflict_report'. Translate the entire conflict report at once,
94 so that we don't assume that "," has the same interpretation in
95 all languages.
96 (conflicts_output): Use Yacc-style conflict report for each state,
97 instead of our more-complicated style.
98 (conflicts_print): Use Yacc-style conflict report, except print
99 the input file name when not emulating Yacc.
100 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
101 Conflicted Reduction, %expect not enough, %expect too much,
102 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
103 * tests/existing.at (GNU Cim Grammar): Likewise.
104 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
105
106 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
107 fatal): Don't invoke fflush; it's not needed and it might even be
108 harmful for stdout, as stdout might not be open.
109 * src/reduce.c (reduce_print): Likewise.
110
111 2002-12-27 Paul Eggert <eggert@twinsun.com>
112
113 Fix a bug where error locations were not being recorded correctly.
114 This problem was originally reported by Paul Hilfinger in
115 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001901.html>.
116
117 * data/yacc.c (yyparse): New local var yylerrsp, to record the
118 top of the location stack's error locations.
119 (yyerrlab): Set it. When discarding a token, push its location
120 onto yylerrsp so that we don't lose track of the error's end.
121 (yyerrlab1): Now is only the target of YYERROR, so that we can
122 properly record the location of the action that failed. For GCC
123 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
124 GCC warning about yyerrlab1 being unused if YYERROR is unused.
125 (yyerrlab2): New label, which yyerrlab now falls through to.
126 Compute the error's location by applying YYLLOC_DEFAULT to
127 the locations of all the symbols that went into the error.
128 * doc/bison.texinfo (Location Default Action): Mention that
129 YYLLOC_DEFAULT is also invoked for syntax errors.
130 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
131 Error locations include the locations of all the tokens that were
132 discarded, not just the last token.
133
134 2002-12-26 Paul Eggert <eggert@twinsun.com>
135
136 * src/files.c: Include quote.h.
137 (compute_output_file_names): Warn if we detect conflicting
138 outputs to the same file. This should catch the misunderstanding
139 exemplified by Debian Bug 165349, reported by Bruce Stephens..
140
141 * src/conflicts.c (conflicts_print): If the user specifies
142 "%expect N", report an error if there are any reduce/reduce
143 conflicts. This is what the manual says should happen.
144 This fixes Debian bug 130890, reported by Anthony DeRobertis.
145 * tests/conflicts.at (%expect with reduce conflicts): New test.
146
147 Don't use m4_include on relative file names, as it doesn't work as
148 desired if there happens to be a file with that name under ".".
149
150 * m4sugar/version.m4: Remove; it was included but it wasn't used.
151 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
152 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
153 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
154 * src/output.c (output_skeleton): Use full path names when
155 specifying a file to include; don't rely on include path, as
156 it's unreliable when the working file contains a file with
157 that name.
158
159 2002-12-25 Paul Eggert <eggert@twinsun.com>
160
161 Remove obsolete references to bison.simple and bison.hairy.
162 Problem mentioned by Aubin Mahe in
163 <http://mail.gnu.org/pipermail/help-bison/2002-December/001765.html>.
164 * data/glr.c: Comment fix.
165 * doc/bison.1: Remove references. Also, mention "yacc".
166
167 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
168 with -g option.
169
170 * src/parse-gram.y (declaration): Use enum "report_states" rather
171 than its numeric value 1.
172
173 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
174 opening a new one. This fixes Debian bug 165349, reported by
175 Bruce Stephens.
176
177 2002-12-24 Paul Eggert <eggert@twinsun.com>
178
179 Version 1.75e.
180
181 * Makefile.maint (cvs-update): Don't assume that the shell
182 supports $(...), as Solaris sh doesn't.
183
184 * src/parse-gram.y (lloc_default): Remove test for empty
185 nonterminals at the end, since it didn't change the result.
186
187 2002-12-24 Paul Eggert <eggert@twinsun.com>
188
189 If the user does not define YYSTYPE as a macro, Bison now declares it
190 using typedef instead of defining it as a macro. POSIX requires this.
191 For consistency, YYLTYPE is also declared instead of defined.
192
193 %union directives can now have a tag before the `{', e.g., the
194 directive `%union foo {...}' now generates the C code
195 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
196 The default union tag is `YYSTYPE', for compatibility with Solaris 9
197 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
198 instead of `yyltype'.
199
200 `yystype' and `yyltype' are now obsolescent macros instead of being
201 typedefs or tags; they are no longer documented and will be
202 withdrawn in a future release.
203
204 * data/glr.c (b4_location_type): Remove.
205 (YYSTYPE): Renamed from yystype.
206 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
207 (struct YYLTYPE): Renamed from struct yyltype.
208 (YYLTYPE): Renamed from yyltype.
209 (yyltype, yystype): New (and obsolescent) macros,
210 for backward compatibility.
211 * data/yacc.c: Likewise.
212
213 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
214 does not specify a union tag. This is for compatibility with
215 Solaris 9 yacc.
216
217 * src/parse-gram.y (add_param): 2nd arg is now char * not char
218 const *, since it is now modified by stripping surrounding { }.
219 (current_braced_code): Remove.
220 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
221 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
222 trailing " {...}". Now of type <chars>.
223 (grammar_declaration): Adjust to bundled tokens.
224 (code_content): Remove; stripping is now done by add_param.
225 (print_token_value): Print contents of bundled tokens.
226 (token_name): New function.
227
228 * src/reader.h (braced_code, current_braced_code): Remove.
229 (token_name): New decl.
230
231 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
232 token_type, not braced_code code_kind. All uses changed.
233 (SC_PRE_CODE): New state, for scanning after a keyword that
234 has (or usually has) an immediately-following braced code.
235 (token_type): New local var, to keep track of which token type
236 to return when scanning braced code.
237 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
238 <INITIAL>"%parse-param", <INITIAL>"%printer",
239 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
240 instead of returning a token type immediately.
241 (<INITIAL>"{"): Set token type.
242 (<SC_BRACED_CODE>"}"): Use it.
243 (handle_action_dollar, handle_action_at): Now returns bool
244 indicating success. Fail if ! current_rule; this prevents a core dump.
245 (handle_symbol_code_dollar, handle_symbol_code_at):
246 Remove; merge body into caller.
247 (handle_dollar, handle_at): Complain in invalid contexts.
248
249 * NEWS, doc/bison.texinfo: Document the above.
250 * NEWS: Fix years and program names in copyright notice.
251
252 2002-12-17 Paul Eggert <eggert@twinsun.com>
253
254 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
255 Reporting, Table of Symbols): Omit mentions of %lex-param and
256 %parse-param from the documentation for now.
257
258 2002-12-15 Paul Eggert <eggert@twinsun.com>
259
260 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
261 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
262 lookahead symbol, and which sets yychar in parser actions) and it
263 disagreed with the Bison documentation. Bug
264 reported by Andrew Walrond.
265
266 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
267 as the caller now does that.
268 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
269 (YYEMPTY): Parenthesize right hand side, since others use it.
270 (yyparse): Don't assume that our generated code is the only code
271 that sets yychar.
272
273 2002-12-13 Paul Eggert <eggert@twinsun.com>
274
275 Version 1.75d.
276
277 POSIX requires a "yacc" command.
278 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
279 (MOSTLYCLEANFILES): Add yacc.
280 (yacc): New rule.
281 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
282 as an alias for bison y.
283
284 * po/LINGUAS: Add da.
285
286 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
287 problem with latest <getopt.h>.
288 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
289
290 * doc/fdl.texi: Upgrade to 1.2.
291 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
292 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
293 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
294 gnulib.
295 * config/install-sh: Sync with autotools.
296
297 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
298 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001929.html>.
299 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
300 locations are requested.
301 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
302 locations are requested.
303
304 2002-12-12 Paul Eggert <eggert@twinsun.com>
305
306 Remove unportable casts and storage allocation tricks.
307 While we're at it, remove almost all casts, since they
308 usually aren't needed and are a sign of trouble.
309
310 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
311
312 * src/derives.c (derives_compute): Do not subtract NTOKENS from
313 the pointer DSET returned by malloc; this isn't portable.
314 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
315 Similarly for DERIVES.
316 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
317 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
318 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
319
320 * src/derives.c (derives_compute): Do not bother invoking
321 int_of_rule_number, since rule numbers are integers.
322
323 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
324 rather than XMALLOC (char, N).
325
326 * src/files.c (filename_split): Rewrite to avoid cast.
327
328 * src/gram.h (symbol_number_as_item_number,
329 item_number_as_symbol_number, rule_number_as_item_number,
330 item_number_as_rule_number):
331 Now inline functions rather than macros, to avoid casts.
332 * src/state.h (state_number_as_int): Likewise.
333 * src/tables.c (state_number_to_vector_number,
334 symbol_number_to_vector_number): Likewise.
335
336 * src/gram.h (int_of_rule_number): Remove; no longer used.
337
338 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
339 since the resulting storage is always stored into.
340
341 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
342 where it's needed.
343
344 * src/muscle_tab.c (muscle_m4_output):
345 Now inline. Return bool, not int.
346 * src/state.c (state_compare): Likewise.
347 * src/symtab.c (symbol_check_defined,
348 symbol_check_alias_consistency, symbol_pack, symbol_translation,
349 hash_compare_symbol, hash_symbol):
350 Likewise.
351 * src/uniqstr.c (uniqstr_print): Likewise.
352 * src/muscle_tab.c (muscle_m4_output_processor):
353 New function, to avoid casts.
354 * src/state.c (state_comparator, stage_hasher): Likewise.
355 * src/symtab.c (symbol_check_defined_processor,
356 symbol_check_alias_consistency_processor, symbol_pack_processor,
357 symbol_translation_processor, hash_symbol_comparator,
358 hash_symbol_hasher): Likewise.
359 * src/uniqstr.c (uniqstr_print_processor): Likewise.
360 * src/muscle_tab.c (muscles_m4_output):
361 Use new functions instead of casting old functions unportably.
362 * src/state.c (state_hash_new): Likewise.
363 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
364 symbols_token_translations_init):
365 Likewise.
366 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
367
368 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
369 var instead of casting to long, to avoid casts.
370 (prepare_states): Use MALLOC rather than alloca, so that we don't
371 have to worry about alloca.
372 * src/state.c (state_hash_lookup): Likewise.
373
374 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
375 local var instead of casting to unsigned char, to avoid casts.
376
377 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
378 STATE_ALLOC): Remove.
379 (transitions_new, errs_new, reductions_new, state_new): Use malloc
380 rather than calloc, and use offsetof to avoid allocating slightly
381 too much storage.
382 (state_new): Initialize all members.
383
384 * src/state.c (state_hash): Use unsigned accumulator, not signed.
385
386 * src/symtab.c (symbol_free): Remove; unused.
387 (symbol_get): Remove cast in lhs of assignment.
388 (symbols_do): Now static. Accept generic arguments, not
389 hashing-related ones.
390
391 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
392 (symbol_processor): Remove.
393 (symbols_do): Remove decl; now static.
394
395 * src/system.h (alloca): Remove; decl no longer needed.
396 (<stddef.h>): Include, for offsetof.
397 (<inttypes.>, <stdint.h>): Include if available.
398 (uintptr_t): New type, if system lacks it.
399 (CALLOC, MALLOC, REALLOC): New macros.
400 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
401 new macros.
402
403 * src/tables.c (table_size): Now int, to pacify GCC.
404 (table_grow, table_ninf_remap): Use signed table size.
405 (save_row): Don't bother initializing locals when not needed.
406 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
407 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
408
409 * src/vcg.h: Correct misspellings.
410
411 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
412
413
414 * src/getargs.c (getargs): Don't assume EOF == -1.
415
416 2002-12-09 Paul Eggert <eggert@twinsun.com>
417
418 Change identifier spellings to avoid collisions with names
419 that are reserved by POSIX.
420
421 Don't use names ending in _t, since POSIX reserves them.
422 For consistency, remove _e and _s endings -- they're weren't
423 needed to remove ambiguity. All uses changed.
424 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
425 turn was just renamed from struniq_t.
426 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
427 which in turn was just renamed from struniq_processor_t.
428 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
429 in turn was renamed from hash_compare_struniq_t.
430 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
431 (state_list): Renamed from state_list_t.
432 * src/assoc.h (assoc): Renamed from assoc_t.
433 * src/conflicts.c (enum conflict_resolution): Renamed from
434 enum conflict_resolution_e.
435 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
436 (rule_list): Renamed from rule_list_t.
437 * src/getargs.h (enum trace): Renamed from enum trace_e.
438 (enum report): Renamed from enum report_e.
439 * src/gram.h (item_number): Renamed from item_number_t.
440 (rule_number): Renamed from rule_number_t.
441 (struct rule_s): Remove the "rule_s" part; not used.
442 (rule): Renamed from rule_t.
443 (rule_filter): Renamed from rule_filter_t.
444 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
445 (goto_list): Renamed from goto_list_t.
446 * src/lalr.h (goto_number): Renamed from goto_number_t.
447 * src/location.h (location): Renamed from location_t.
448 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
449 and moved here from:
450 * src/muscle_tab.h (muscle_entry_t): here.
451 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
452 (rule_list): Renamed from rule_list_t.
453 * src/print_graph.c (static_graph): Renamed from graph.
454 * src/reader.h (braced_code): Renamed from braced_code_t.
455 Remove brace_code_e tag.
456 * src/relation.h (relation_node): Renamed from relation_node_t.
457 (relation_nodes): Renamed from relation_nodes_t.
458 (relation): Renamed from relation_t.
459 * src/state.h (state_number): Renamed from state_number_t.
460 (struct state): Renamed from struct state_s.
461 (state): Renamed from state_t.
462 (transitions): Renamed from transitions_t. Unused (and
463 misspelled) transtion_s tag removed.
464 (errs): Renamed from errs_t. Unused errs_s tag removed.
465 (reductions): Renamed from reductions_t. Unused tag
466 reductions_s removed.
467 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
468 (struct symbol_list): Renamed from struct symbol_list_s.
469 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
470 (struct symbol): Renamed from struct symbol_s.
471 (symbol): Renamed from symbol_t.
472 * src/tables.c (vector_number): Renamed from vector_number_t.
473 (action_number): Renamed from action_t.
474 * src/tables.h (base_number): Renamed from base_t.
475 * src/vcg.h (enum color): Renamed from enum color_e.
476 (enum textmode): Renamed from enum textmode_e.
477 (enum shape): Renamed from enum shape_e.
478 (struct colorentry): Renamed from struct colorentry_s.
479 (struct classname): Renamed from struct classname_s.
480 (struct infoname): Renamed from struct infoname_s.
481 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
482 (enum decision): Renamed from enum decision_e.
483 (enum orientation): Renamed from enum orientation_e.
484 (enum alignment): Renamed from enum alignment_e.
485 (enum arrow_mode): Renamed from enum arrow_mode_e.
486 (enum crossing_type): Renamed from enum crossing_type_e.
487 (enum view): Renamed from enum view_e.
488 (struct node): Renamed from struct node_s.
489 (node): Renamed from node_t.
490 (enum linestyle): Renamed from enum linestyle_e.
491 (enum arrowstyle): Renamed from enum arrowstyle_e.
492 (struct edge): Renamed from struct edge.
493 (edge): Renamed from edge_t.
494 (struct graph): Renamed from struct graph_s.
495 (graph): Renamed from graph_t.
496 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
497 Rename value_t -> value.
498 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
499 value_t_as_yystype -> value_as_yystype.
500
501 Don't include <errno.h> in the mainstream code, since it
502 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
503 * lib/get-errno.c, lib/get-errno.h: New files.
504 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
505 get-errno.c.
506 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
507 * src/output.c (output_skeleton): Likewise.
508 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
509 instead of errno.
510 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
511 Likewise.
512 (handle_action_dollar, handle_action_at): Likewise.
513 * src/system.h: Do not include <errno.h>.
514 (TAB_EXT): Renamed from EXT_TAB.
515 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
516
517 Avoid str[a-z]*, since <string.h> reserves that name space.
518 Change all instances of "struniq" in names to "uniqstr", and
519 likewise for "STRUNIQ" and "UNIQSTR".
520 * src/uniqstr.c: Renamed from src/struniq.c.
521 * src/uniqstr.h: Renamed from src/struniq.h.
522 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
523 * src/files.c (strsuffix): Remove; unused.
524 (concat2): Renamed from stringappend. Now static.
525 * src/files.h (strsuffix, stringappend): Remove; unused.
526 * src/parse-gram.y (<chars>): Renamed from <string>.
527 (<uniqstr>): Renamed from <struniq>.
528 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
529 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
530 (struct graph_s.expand): Renamed from struct graph_s.stretch.
531 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
532 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
533 (N_EXPAND): Renamed from N_STRETCH.
534
535 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
536 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
537 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
538 Remove; unused.
539 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
540 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
541 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
542 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
543 (BASE_MAXIMUM): Renamed from BASE_MAX.
544 (BASE_MINIMUM): Renamed from BASE_MIN.
545 (ACTION_MAX): Remove; unused.
546 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
547 Unnecessary casts removed from above defines.
548
549
550 Fix misspelling in names.
551 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
552 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
553 G_NODE_ALIGNEMENT.
554
555
556 * lib/timevar.c (timevar_report): Renamed from time_report,
557 for consistency with other names.
558 * lib/timevar.h (timevar_report): New decl.
559 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
560
561
562 Sort include-file uses.
563
564 Reorder all include files under src to be in the order "system.h".
565 then the ../lib include files in angle brackets (alphabetized),
566 then the . include files in double-quotes (alphabetized). Fix
567 dependency breakages encountered in this process, as follows:
568 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
569 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
570 * src/state.h: Include "symtab.h".
571
572 2002-12-08 Paul Eggert <eggert@twinsun.com>
573
574 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
575 since this causes problems when __file__ contains character
576 sequences like "@" that are treated specially by src/scan-skel.l.
577 Instead, just use the file's basename. This fixes the bug
578 reported by Martin Mokrejs in
579 <http://mail.gnu.org/pipermail/bug-bison/2002-December/001945.html>.
580
581 2002-12-06 Paul Eggert <eggert@twinsun.com>
582
583 Add support for rules that do not have trailing semicolons, as
584 POSIX requires. Improve the quality of locations in Bison
585 diagnostics.
586
587 * src/location.c: Include <quotearg.h>.
588 (empty_location): Now const.
589 (location_print): New function. Follow the recommendation of the
590 GNU Coding Standards for locations that span file boundaries.
591 * src/location.h: Do not include <quotearg.h>; no longer needed.
592 (boundary): New type.
593 (location_t): Use it. This allows locations to span file boundaries.
594 All member uses changed: file -> start.file or end.file (as needed),
595 first_line -> start.line, first_column -> start.column,
596 last_line -> end.line, last_column -> end.column.
597 (equal_boundaries): New function.
598 (LOCATION_RESET, LOCATION_STEP): Remove.
599 (LOCATION_PRINT): Remove. All callers changed to use location_print.
600 (empty_location): Now const.
601 (location_print): New decl.
602 * src/parse-gram.y (lloc_default): New function, which handles
603 empty locations more accurately.
604 (YYLLOC_DEFAULT): Use it.
605 (%token COLON): Remove.
606 (%token ID_COLON): New token.
607 (rules): Use it.
608 (declarations, rules): Remove trailing semicolon.
609 (declaration, rules_or_grammar_declaration):
610 Allow empty (";") declaration.
611 (symbol_def): Remove empty actions; no longer needed.
612 (rules_or_grammar_declaration): Remove trailing semicolon.
613 (semi_colon.opt): Remove.
614 * src/reader.h: Include location.h.
615 (scanner_cursor): New decl.
616 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
617 rolling our own.
618 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
619 of *loc.
620 (STEP): Remove. No longer needed, now that adjust_location does
621 the work. All uses removed.
622 (scanner_cursor): New var.
623 (adjust_location): Renamed from extend_location. It now sets
624 *loc and adjusts the scanner cursor. All uses changed.
625 Don't bother testing for CR.
626 (handle_syncline): Remove location arg; now updates scanner cursor.
627 All callers changed.
628 (unexpected_end_of_file): Now accepts start boundary of token or
629 comment, not location. All callers changed. Update scanner cursor,
630 not the location.
631 (SC_AFTER_IDENTIFIER): New state.
632 (context_state): Renamed from c_context. All uses changed.
633 (id_loc, code_start, token_start): New local vars.
634 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
635 processing of Yacc white space and equivalents here.
636 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
637 instead of returning ID immediately, since we need to search for
638 a subsequent colon.
639 (<INITIAL>"'", "\""): Save token_start.
640 (<INITIAL>"%{", "{", "%%"): Save code_start.
641 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
642 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
643 BEGIN context_state at end, not INITIAL.
644 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
645 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
646 Return correct token start.
647 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
648 the start of a character, string or multiline comment is found.
649 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
650 Reduction): Adjust reported locations to match the more-precise
651 results now expected.
652 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
653 * tests/reduce.at (Useless Rules, Reduced Automaton,
654 Underivable Rules): Likewise.
655 * tests/regression.at (Invalid inputs): No longer `expecting ";"
656 or "|"' now that so many other tokens are allowed by the new grammar.
657
658 * src/complain.h (current_file): Remove duplicate decl;
659 current_file is now owned by files.h.
660 * src/complain.c, src/scan-gram.l: Include files.h.
661
662 2002-12-06 Paul Eggert <eggert@twinsun.com>
663
664 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
665 promotes to int; it might be unsigned int.
666 * data/yacc.c (yy_reduce_print): Likewise.
667
668 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
669 be #defined in the prologue, not in the Bison declarations.
670 This fixes Debian Bug 102878, reported by Shaul Karl.
671
672 2002-12-02 Paul Eggert <eggert@twinsun.com>
673
674 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
675 * lib/strtoul.c: New file, from gnulib.
676 This fixes a porting bug reported by Peter Klein in
677 <http://mail.gnu.org/pipermail/bug-bison/2002-December/001944.html>.
678
679 2002-11-30 Paul Eggert <eggert@twinsun.com>
680
681 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
682 and put only a forward declaration in the prologue. This is for
683 consistency with the other scanner helper functions.
684
685 Type clashes now generate warnings, not errors, since it
686 appears that POSIX may allow some grammars with type clashes.
687 * src/reader.c (grammar_current_rule_check): Warn about
688 type clashes instead of complaining.
689 * tests/input.at (Type Clashes): Expect warnings, not complaints.
690
691 Add Yacc library, since POSIX requires it.
692 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
693 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
694 * lib/main.c, lib/yyerror.c: New files.
695
696 gram_error can be static; it need not be extern.
697 * src/reader.h (gram_error): Remove decl.
698 * src/parse-gram.y (gram_error): Now static. Add static decl.
699 (print_token_value): Omit parameter names from forward decl,
700 for consistency.
701
702 2002-11-29 Paul Eggert <eggert@twinsun.com>
703
704 * doc/bison.texinfo: Emphasize that yylex and yyerror must
705 be declared before being used. E.g., one should typically
706 declare them in the prologue. Use GNU coding style in examples.
707 Put "const" consistently after the type it modifies. Mention
708 that C99 supports "inline". Mention that yyerror traditionally
709 returns "int".
710
711 %parse-param and %lex-param now take just one argument, the
712 declaration; the argument name is deduced from the declaration.
713
714 * doc/bison.texinfo (Parser Function, Pure Calling, Error
715 Reporting, Table of Symbols): Document this.
716 * src/parse-gram.y (add_param): New function.
717 (COMMA): Remove.
718 (declaration): Implement new rule for %parse-param and %lex-param.
719 * src/scan-gram.l: "," now elicits a warning, rather than being
720 a token; this is more compatible with byacc.
721 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
722
723 2002-11-27 Paul Eggert <eggert@twinsun.com>
724
725 Rename identifiers to avoid real and potential collisions.
726
727 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
728 to avoid collision with lex macro described by Bruce Lilly in
729 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001929.html>.
730 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
731 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
732 * src/parse-gram.y (print_token_value): Renamed from yyprint.
733 All uses changed.
734 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
735 The name "yycontrol" violates the name space rules, and this stuff
736 wasn't being used anyway.
737 (input): Remove action; this stuff wasn't being used.
738 (gram_error): Rename local variable yylloc -> loc.
739 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
740 (YY_DECL): Don't use "yy" at start of local variables.
741 All uses changed, e.g., yylloc -> loc.
742 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
743 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
744 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
745 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
746
747 * src/parse-gram.y (gram_error): loc is now const *.
748 * src/reader.h (gram_error): Likewise.
749
750 2002-11-24 Paul Eggert <eggert@twinsun.com>
751
752 Version 1.75c.
753
754 * tests/actions.at (Actions after errors): Use an output format
755 more similar to that of the Printers and Destructors test.
756 Test the position of the ';' token too.
757 (Printers and Destructors): Likewise.
758 (Printers and Destructors: %glr-parser): Remove for now, to avoid
759 unnecessarily alarming people when the test fails.
760
761 * data/yacc.c (yyerrlab1): Move this label down, so that the
762 parser does not discard the lookahead token if the user code
763 invokes YYERROR. This change is required for POSIX conformance.
764
765 * lib/error.c: Sync with gnulib.
766
767 2002-11-22 Paul Eggert <eggert@twinsun.com>
768
769 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
770 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
771 * lib/xmalloc.c: Likewise.
772
773 2002-11-20 Paul Eggert <eggert@twinsun.com>
774
775 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
776
777 2002-11-20 Paul Eggert <eggert@twinsun.com>
778
779 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
780 should use `if (! x) abort ();' rather than `assert (x);', and
781 anyway it's one less thing to worry about configuring.
782
783 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
784 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
785 and replace all instances of assert with abort.
786 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
787 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
788
789 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
790 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
791 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
792 hash_find_entry, hash_rehash, hash_insert): Likewise.
793 * src/conflicts.c (resolve_sr_conflict): Likewise.
794 * src/lalr.c (set_goto_map, map_goto): Likewise.
795 * src/nullable.c (nullable_compute): Likewise.
796 * src/output.c (prepare_rules, token_definitions_output): Likewise.
797 * src/reader.c (packgram, reader): Likewise.
798 * src/state.c (state_new, state_free, state_transitions_set,
799 state_reduction_find): Likewise.
800 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
801 symbol_pack): Likewise.
802 * src/tables.c (conflict_row, pack_vector): Likewise.
803 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
804 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
805 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
806 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
807
808 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
809 (ARGMATCH_CONSTRAINT): New macro.
810 (ARGMATCH_ASSERT): Use it.
811
812 * src/system.h (verify): New macro.
813 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
814 rather than assert.
815 * src/tables.c (tables_generate): Likewise.
816
817 * src/struniq.c (struniq_assert): Now returns void, and aborts
818 if the assertion is false.
819 (struniq_assert_p): Remove.
820 * src/struniq.h: Likewise.
821
822 2002-11-18 Paul Eggert <eggert@twinsun.com>
823
824 * data/glr.c (yygetLRActions): Replace `yyindex' with
825 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
826 This fixes the regression with Sun ONE Studio 7 cc that I reported in
827 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001892.html>.
828
829 2002-11-18 Akim Demaille <akim@epita.fr>
830
831 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
832 space.
833 From Tim Van Holder.
834
835 2002-11-17 Paul Eggert <eggert@twinsun.com>
836
837 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
838 to "SyntaxError" for consistency with my 2002-11-15 change.
839
840 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
841 not define to {}, since this breaks the common use of `YYDPRINTF
842 ((...));' if a single statement is desired (e.g. before `else').
843 Work around GCC warnings by surrounding corresponding calls with
844 {} if needed.
845 (yyhasResolvedValue): Remove unused function.
846 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
847 loop body.
848 (yyreportSyntaxError): Renamed from yyreportParseError.
849 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
850 All uses changed.
851 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
852 extern when possible. Remove unused initializations.
853
854 2002-11-16 Akim Demaille <akim@epita.fr>
855
856 Augment the similarity between GLR and LALR traces.
857
858 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
859 (YY_REDUCE_PRINT): New.
860 (yyparse): Use them.
861 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
862 YYDPRINT here.
863 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
864 state reached after the reduction/recovery, since...
865 (yyparse, yyprocessOneStack): Report the state we are entering in.
866
867 2002-11-16 Akim Demaille <akim@epita.fr>
868
869 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
870 Add support for --trace=skeleton.
871 * src/scan-skel.l: %option debug.
872 Scan strings of non-@ or \n instead of character by character.
873 (scan_skel): Handle trace_skeleton.
874 (QPUTS): New.
875 (@output_parser_name@, @output_header_name@): ``Restore'' their
876 support (used to be M4 macros).
877 * data/yacc.c: Quote larger chunks, a la glr.c.
878 * data/lalr1.cc: Likewise.
879 The header guards are no longer available, so use some other
880 string than `YYLSP_NEEDED'.
881
882 2002-11-16 Akim Demaille <akim@epita.fr>
883
884 Make the ``Printers and Destructors'' test more verbose, taking
885 `yacc.c''s behavior as (possibly wrong) reference.
886
887 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
888 instead of fprint on stdout.
889 Set and report the last_line of the symbols.
890 Consistently display values and locations.
891
892 2002-11-16 Paul Eggert <eggert@twinsun.com>
893
894 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
895
896 2002-11-15 Paul Eggert <eggert@twinsun.com>
897
898 * tests/actions.at (Actions after errors): New test case.
899
900 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
901 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
902 tests/action.at, tests/calc.at, tests/conflicts.at,
903 tests/cxx-type.at, tests/regression.at:
904 "parse error" -> "syntax error" for POSIX compatibility.
905 "parsing stack overflow..." -> "parser stack overflow" so
906 that code matches Bison documentation.
907
908 2002-11-15 Akim Demaille <akim@epita.fr>
909
910 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
911 take two BRACED_CODE, not two string_content.
912 Free the scanner's obstack when we are done.
913 (code_content): New.
914 * tests/calc.at: Adjust.
915 * doc/bison.texinfo: Adjust.
916 Also, make sure to include the `,' for these declarations.
917
918 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
919
920 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
921 definition; avoids potential autoreconf problems.
922
923 2002-11-15 Akim Demaille <akim@epita.fr>
924
925 Always check the value returned by yyparse.
926
927 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
928 returned by yyparse.
929 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
930 Adjust calls.
931 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
932 returned by yyparse.
933
934 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
935
936 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
937 on input.at test.
938
939 2002-11-14 Paul Eggert <eggert@twinsun.com>
940
941 * src/output.c (output_skeleton): Call xfopen instead of
942 duplicating xfopen's body.
943
944 Fix bugs reported by Nelson H. F. Beebe in
945 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001893.html>.
946
947 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
948 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
949 Group compiler. Instead, use "$CC -E bar.c". Include the .h
950 file twice in the grammar, as an extra check.
951
952 * tests/input.at (Torturing the Scanner): Surround the
953 backslash-newline tests with "#if 0", to make it less likely that
954 we'll run into compiler bugs. Bring back solitary \ inside
955 comment, but add a closing comment to work around HP C bug. Don't
956 test backslash-newline in C character constant. This should fix
957 the input.at bug reported by Nelson H. F. Beebe in
958 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001893.html>.
959
960 2002-11-14 Akim Demaille <akim@epita.fr>
961
962 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
963 status of the compiler.
964 Calling `exit 1' is no longer needed.
965 Reported by Nelson H. F. Beebe.
966
967 2002-11-14 Akim Demaille <akim@epita.fr>
968
969 * tests/atlocal.in (CPPFLAGS): We have config.h.
970 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
971 New.
972 * tests/actions.at, tests/calc.at, tests/conflicts.at,
973 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
974 * tests/regression.at, tests/torture.at: Use them for all the
975 grammars that are to be compiled.
976 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
977 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
978 * doc/bison.texinfo (GLR Parsers): Document `inline'.
979
980 2002-11-14 Akim Demaille <akim@epita.fr>
981
982 * doc/bison.texinfo: Various formatting changes (alignments in
983 samples, additional @group/@end group, GCS in samples.
984 Use @deffn instead of simple @table to define the directives,
985 macros, variables etc.
986
987 2002-11-13 Paul Eggert <eggert@twinsun.com>
988
989 Fix some bugs reported by Albert Chin-A-Young in
990 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001881.html>.
991
992 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
993 -o c"; the HP C compiler chatters during compilation.
994 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
995 * tests/headers.at (export YYLTYPE): Likewise.
996
997 * tests/input.at (Torturing the Scanner): Remove lines containing
998 solitary backslashes, as they tickle a bug in the HP C compiler.
999
1000 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
1001 comments, since they're not portable. Use GNU coding style.
1002
1003 2002-11-13 Akim Demaille <akim@epita.fr>
1004
1005 * data/yacc.c: Leave bigger chunks of quoted text.
1006 (YYDSYMPRINTF): New.
1007 Use it to report symbol activities.
1008 * data/glr.c (YYDSYMPRINTF): New.
1009 Use it.
1010
1011 2002-11-12 Paul Eggert <eggert@twinsun.com>
1012
1013 Version 1.75b.
1014
1015 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
1016 (yyglrReduce): Return yyok, not 0.
1017 This should avoid the enumerated-type warnings reported
1018 by Nelson H. F. Beebe in
1019 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001872.html>.
1020
1021 * lib/bbitset.h (BITSET_INLINE): Remove.
1022 * lib/bitset.h [! BITSET_INLINE]: Remove.
1023 (bitset_set, bitset_reset, bitset_test): Rename local vars
1024 to avoid shadowing warnings by GCC.
1025
1026 * data/glr.c (inline): Remove #define. It's the user's
1027 responsibility to #define it away, just like 'const'.
1028 This fixes one of the bugs reported by Nelson H. F. Beebe in
1029 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001873.html>.
1030
1031 * Makefile.maint (po-check): Scan .l and .y files instead of the
1032 .c and the .h files that they generate. This fixes the bug
1033 reported by Tim Van Holder in:
1034 <http://mail.gnu.org/pipermail/bison-patches/2002-November/001352.html>
1035 Look for N_ as well as for _. Try to avoid matching #define for
1036 N_ and _.
1037 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
1038 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
1039 * src/scan-gram.l: Revamp regular expressions so that " and '
1040 do not confuse xgettext.
1041
1042 * src/struniq.h (struniq_new): Do not declare the return type
1043 to be 'const'; this violates the C standard.
1044 * src/struniq.c (struniq_new): Likewise.
1045
1046 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
1047
1048 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
1049 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
1050 linker.
1051
1052 2002-11-12 Akim Demaille <akim@epita.fr>
1053
1054 * Makefile.maint: Sync with Autoconf:
1055 (local_updates): New.
1056
1057 2002-11-12 Akim Demaille <akim@epita.fr>
1058
1059 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
1060
1061 2002-11-12 Akim Demaille <akim@epita.fr>
1062
1063 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
1064 locations.
1065
1066 2002-11-12 Akim Demaille <akim@epita.fr>
1067
1068 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
1069 not yyvalue.
1070
1071 2002-11-12 Akim Demaille <akim@epita.fr>
1072
1073 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
1074 Use it to test the GLR parser.
1075
1076 2002-11-12 Akim Demaille <akim@epita.fr>
1077
1078 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
1079 defines it.
1080 * data/glr.c (yystos): New.
1081 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
1082 (YYDSYMPRINT): New.
1083 (yyval): Don't define it, it is handled via M4.
1084 (yyrecoverParseError): Free verbosely the discarded symbols.
1085 * data/yacc.c (yysymprint): Remove, rather...
1086 (b4_yysymprint_generate): invoke.
1087 * data/c.m4 (b4_yysymprint_generate): New.
1088 Accept pointers as arguments, as opposed to the version from
1089 yacc.c.
1090 (b4_yydestruct_generate): Likewise.
1091 * tests/cations.at (Printers and Destructors): Use Bison directives
1092 instead of CPP macros.
1093 Don't rely on internal details.
1094
1095 2002-11-12 Akim Demaille <akim@epita.fr>
1096
1097 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
1098 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
1099 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
1100 it against YYEMPTY and so forth), work on yytoken (i.e., set
1101 it to YYEMPTY etc.).
1102 (yydestruct): Replace with a b4_yydestruct_generate invocation.
1103 (b4_symbol_actions): Remove.
1104 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
1105 for 0, end-of-input.
1106
1107 2002-11-12 Akim Demaille <akim@epita.fr>
1108
1109 * doc/bison.texinfo (Destructor Decl): New.
1110
1111 2002-11-12 Akim Demaille <akim@epita.fr>
1112
1113 * src/tables.c (tables_generate): Use free for pointers that
1114 cannot be NULL, not XFREE.
1115 (pack_vector): Use assert, not fatal, for bound violations.
1116 * src/state.c (state_new): Likewise.
1117 * src/reader.c (reader): Likewise.
1118 * src/lalr.c (set_goto_map): Likewise.
1119 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
1120 the file name.
1121
1122 2002-11-12 Akim Demaille <akim@epita.fr>
1123
1124 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
1125 Restore.
1126 * src/scan-gram.l (last_string): Is global to the file, not to
1127 yylex.
1128 * src/parse-gram.y (input): Don't append the epilogue here,
1129 (epilogue.opt): do it here, and free the scanner's obstack.
1130 * src/reader.c (epilogue_set): Rename as...
1131 (epilogue_augment): this.
1132 * data/c.m4 (b4_epilogue): Defaults to empty.
1133
1134 2002-11-12 Akim Demaille <akim@epita.fr>
1135
1136 * src/getargs.c (long_options): Remove duplicates.
1137 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
1138 Remove.
1139 * doc/bison.rnh: Remove.
1140 * doc/bison.texinfo (VMS Invocation): Remove.
1141
1142 2002-11-12 Akim Demaille <akim@epita.fr>
1143
1144 * src/struniq.h, src/struniq.c (struniq_t): Is const.
1145 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
1146
1147 Use struniq for symbols.
1148
1149 * src/symtab.h (symbol_t): The tag member is a struniq.
1150 (symbol_type_set): Adjust.
1151 * src/symtab.c (symbol_new): Takes a struniq.
1152 (symbol_free): Don't free the tag member.
1153 (hash_compare_symbol_t, hash_symbol_t): Rename as...
1154 (hash_compare_symbol, hash_symbol): these.
1155 Use the fact that tags as struniqs.
1156 (symbol_get): Use struniq_new.
1157 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
1158 Returns a strniq.
1159 * src/reader.h (merger_list, grammar_currentmerge_set): The name
1160 and type members are struniqs.
1161 * src/reader.c (get_merge_function)
1162 (grammar_current_rule_merge_set): Adjust.
1163 (TYPE, current_type): Are struniq.
1164
1165 Use struniq for file names.
1166
1167 * src/files.h, src/files.c (infile): Split into...
1168 (grammar_file, current_file): these.
1169 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
1170 * src/reduce.c (reduce_print): Likewise.
1171 * src/getargs.c (getargs): Likewise.
1172 * src/complain.h, src/complain.c: Likewise.
1173 * src/main.c (main): Call struniqs_new early enough to use it for
1174 file names.
1175 Don't free the input file name.
1176
1177 2002-11-12 Akim Demaille <akim@epita.fr>
1178
1179 * src/symtab.c (symbol_free): Remove dead deactivated code:
1180 type_name are properly removed.
1181 Don't use XFREE to free items that cannot be NULL.
1182 * src/struniq.h, src/struniq.c: New.
1183 * src/main.c (main): Initialize/free struniqs.
1184 * src/parse-gram.y (%union): Add astruniq member.
1185 (yyprint): Adjust.
1186 * src/scan-gram.l (<{tag}>): Return a struniq.
1187 Free the obstack bit that used to store it.
1188 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
1189
1190 2002-11-11 Paul Eggert <eggert@twinsun.com>
1191
1192 Revamp to fix many (but not all) of the C- and M4-related quoting
1193 problems. Among other things, this fixes the Bison bug reported
1194 by Jan Hubicka when processing the Bash grammar; see:
1195 <http://mail.gnu.org/pipermail/bison-patches/2002-November/001329.html>
1196
1197 Use new @ escapes consistently. Represent brackets with @{ and @}
1198 rather than @<:@ and @:>@, since this works a bit better with dumb
1199 editors like vi. Represent @ with @@, since @ is now consistently
1200 an escape. Use @oline@ and @ofile@ rather than __oline__ and
1201 __ofile__, to avoid unexpected expansions. Similarly, use @output
1202 rather than #output.
1203
1204 * data/c.m4 (b4_copyright): Omit file name from comment, since
1205 the file name could contain "*/".
1206 (b4_synclines_flag): Don't quote the 2nd argument; it should already
1207 be quoted. All uses changed.
1208
1209 * data/glr.c: Use new @ escapes consistently.
1210 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
1211 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
1212 Remove, since they couldn't handle arbitrary characters in file
1213 names.
1214 * data/lalr1.cc: Likewise.
1215 * data/yacc.c: Likewise.
1216
1217 * src/files.c (output_infix): Remove; all uses removed.
1218 * src/files.h: Likewise.
1219
1220 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
1221 mishandled funny characters in file names, and anyway it isn't
1222 needed any more.
1223 * data/yacc.c: Likewise.
1224 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
1225
1226 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
1227 * data/yacc.c: Likewise.
1228
1229 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
1230 strings now.
1231 (muscle_init): Quote filename as a C string.
1232 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
1233 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
1234 * src/output.c (escaped_file_name_output): New function.
1235 (prepare_symbols): Quote tokens for M4.
1236 (prepare): Don't insert output_infix, output_prefix,
1237 output_parser_name, output_header_name; this is now down by scan-skel.
1238 Insert skeleton as a C string.
1239
1240 * src/output.c (user_actions_output, symbol_destructors_output,
1241 symbol_printers_output): Quote filenames for C and M4.
1242 * src/reader.c (prologue_augment, epilogue_set): Likewise.
1243
1244 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
1245 escapes other than \\ and \'; this simplifies the code.
1246 (<SC_STRING>): Likewise, for \\ and \".
1247 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
1248 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
1249 Use new escapes @{ and @} for [ and ].
1250
1251 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
1252 them with auto vars.
1253 Switch to new escape scheme, where @ is the escape character uniformly.
1254 Abort if a stray escape character is found. Avoid unbounded input
1255 buffer when parsing non-escaped text.
1256
1257 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
1258 __oline__, #output, $@, and @{ do not have unintended meanings.
1259
1260 2002-11-09 Paul Eggert <eggert@twinsun.com>
1261
1262 Fix the test failure due to GCC warnings described in
1263 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001815.html>.
1264 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
1265 evaluate to 0 if it's impossible for NINF to be in the respective
1266 table.
1267 (yygetLRActions, yyrecoverParseError): Use them.
1268
1269 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
1270 counted in the token inserted at end of file. Now takes
1271 location_t *, not location_t, so that the location can be
1272 adjusted. All uses changed.
1273
1274 * tests/regression.at (Invalid inputs): Adjust wording in
1275 diagnostic to match the new behavior.
1276
1277 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
1278 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
1279 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
1280 abort ();'. This reduces the runtime of the "Many lookaheads"
1281 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
1282 GCC 3.2.
1283
1284 2002-11-07 Paul Eggert <eggert@twinsun.com>
1285
1286 * src/parse-gram.y (CHARACTER): Remove unused token.
1287 All uses removed.
1288
1289 * src/scan-gram.l: Remove stack option. We no longer use the
1290 stack, since the stack was never deeper than 1; instead, use the
1291 new auto var c_context to record the stacked value.
1292
1293 Remove nounput option. At an unexpected end of file, we now unput
1294 the minimal input necessary to end cleanly; this simplifies the
1295 code.
1296
1297 Avoid unbounded token sizes where this is easy.
1298
1299 (unexpected_end_of_file): New function.
1300 Use it to systematize the error message on unexpected EOF.
1301 (last-string): Now auto, not static.
1302 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
1303 (scanner_last_string_free): Remove; not used.
1304 (percent_percent_count): Move decl to just before use.
1305 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
1306 not the (never otherwised-used) CHARACTER.
1307
1308 2002-11-07 Akim Demaille <akim@epita.fr>
1309
1310 Let yyerror always receive the msg as last argument, so that
1311 yyerror can be variadic.
1312
1313 * data/yacc.c (b4_yyerror_args): New.
1314 Use it when calling yyerror.
1315 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
1316 Use it when calling yyerror.
1317 * doc/bison.texinfo (Error Reporting): Adjust.
1318 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
1319 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
1320
1321 2002-11-06 Akim Demaille <akim@epita.fr>
1322
1323 #line should have quoted strings.
1324 Ideally, this should be done by m4_quotearg.
1325
1326 * src/scan-skel.l: Include quotearg.h.
1327 Quote __ofile__.
1328 * src/output.c (symbol_printers_output)
1329 (symbol_destructors_output): Quote the file name.
1330
1331 2002-11-06 Akim Demaille <akim@epita.fr>
1332
1333 * tests/regression.at (Invalid inputs): Adjust to the recent
1334 messages.
1335
1336 2002-11-06 Akim Demaille <akim@epita.fr>
1337
1338 Restore --no-lines.
1339 Reported by Jim Kent.
1340
1341 * data/c.m4 (b4_syncline): New.
1342 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
1343 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
1344 * src/output.c (user_actions_output): Likewise.
1345 (prepare): Define 'b4_synclines_flag'.
1346 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
1347
1348 2002-11-06 Akim Demaille <akim@epita.fr>
1349
1350 * src/main.c (main): Free `infile'.
1351 * src/scan-gram.l (handle_syncline): New.
1352 Recognize `#line'.
1353 * src/output.c (user_actions_output, symbol_destructors_output)
1354 (symbol_printers_output): Use the location's file name, not
1355 infile.
1356 * src/reader.c (prologue_augment, epilogue_set): Likewise.
1357
1358 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1359
1360 * src/tables.c (matching_state): Don't allow states to match if
1361 either has GLR conflict entries.
1362
1363 2002-11-05 Paul Eggert <eggert@twinsun.com>
1364
1365 * src/scan-gram.l: Use more accurate diagnostics, e.g.
1366 "integer out of range" rather than "invalid value".
1367 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
1368 accordingly.
1369
1370 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
1371 Also, remove one static variable in the scanner.
1372
1373 * src/scan-gram.l (braces_level): Now auto, not static.
1374 Initialize to zero if the compiler is being picky.
1375 (INITIAL): Clear braces_level instead of incrementing it.
1376 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
1377 as POSIX 1003.1-2001 requires.
1378 * src/system.h (IF_LINT): New macro, taken from coreutils.
1379 * configure.ac: Define "lint" if --enable-gcc-warnings.
1380
1381 2002-11-05 Akim Demaille <akim@epita.fr>
1382
1383 * src/scan-gram.l: When it starts with `%', complain about the
1384 whole directive, not just that `invalid character: %'.
1385
1386 2002-11-04 Akim Demaille <akim@epita.fr>
1387
1388 * Makefile.maint: Update from Autoconf.
1389 (update, cvs-update, po-update, do-po-update): New.
1390
1391 2002-11-04 Akim Demaille <akim@epita.fr>
1392
1393 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
1394 and yyerror.
1395 Have yyerror `use' its arguments.
1396 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
1397 returns true when location & yacc & pure & parse-param.
1398 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
1399
1400 2002-11-04 Akim Demaille <akim@epita.fr>
1401
1402 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
1403 clashes.
1404 * src/scan-gram.l: Use [\'] instead of ['] to pacify
1405 font-lock-mode.
1406 Use complain_at.
1407 Use quote, not quote_n since LOCATION_PRINT no longer uses the
1408 slot 0.
1409
1410 2002-11-03 Paul Eggert <eggert@twinsun.com>
1411
1412 * src/reader.c (get_merge_function, grammar_current_rule_check):
1413 Use consistent diagnostics for reporting type name clashes.
1414 Quote the types with <>, for consistency with Yacc.
1415 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
1416
1417 2002-11-03 Akim Demaille <akim@epita.fr>
1418
1419 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
1420 New.
1421 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
1422 (b4_parse_param): Remove.
1423 Use b4_identification.
1424 Propagate b4_pure_args where needed to pass them to yyerror.
1425 * data/glr.m4 (b4_parse_param): Remove.
1426 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
1427 (b4_lpure_formals): New.
1428 Use b4_identification.
1429 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
1430 b4_user_formals and b4_user_args.
1431 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
1432 (yyreportAmbiguity): When using a pure parser, also need
1433 the location, and the parse-params.
1434 Adjust callers.
1435 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
1436 When using a pure parser, also need the parse-params.
1437 Adjust callers.
1438 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
1439 (%pure-parser + %parse-param) LALR and GLR parsers.
1440 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
1441 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
1442 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
1443 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
1444 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
1445 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
1446 * doc/bison.texinfo: Untabify the whole file.
1447 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
1448 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
1449 (Error Reporting): Adjust to these new directives.
1450 Document %error-verbose, deprecate YYERROR_VERBOSE.
1451
1452 2002-11-03 Akim Demaille <akim@epita.fr>
1453
1454 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
1455 AT_CHECK_CALC_GLR invocations to use % directives, instead of
1456 command line options.
1457 * tests/cxx-type.at: Formatting changes.
1458
1459 2002-11-03 Paul Eggert <eggert@twinsun.com>
1460
1461 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
1462 to count columns correctly, and to check for invalid inputs.
1463
1464 Use mbsnwidth to count columns correctly. Account for tabs, too.
1465 Include mbswidth.h.
1466 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
1467 (extend_location): New function.
1468 (YY_LINES): Remove.
1469
1470 Handle CRLF in C code rather than in Lex code.
1471 (YY_INPUT): New macro.
1472 (no_cr_read): New function.
1473
1474 Scan UCNs, even though we don't fully handle them yet.
1475 (convert_ucn_to_byte): New function.
1476
1477 Handle backslash-newline correctly in C code.
1478 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
1479 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
1480 all uses changed.
1481 (tag, splice): New EREs. Do not allow NUL or newline in tags.
1482 Use {splice} wherever C allows backslash-newline.
1483 YY_STEP after space, newline, vertical-tab.
1484 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
1485
1486 (letter, id): Don't assume ASCII; e.g., spell out a-z.
1487
1488 ({int}, handle_action_dollar, handle_action_at): Check for integer
1489 overflow.
1490
1491 (YY_STEP): Omit trailing semicolon, so that it's more like C.
1492
1493 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
1494 as well as \000. Check for UCHAR_MAX, not 255.
1495 Allow \x with an arbitrary positive number of digits, as in C.
1496 Check for overflow here.
1497 Allow \? and UCNs, for compatibility with C.
1498
1499 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
1500 with quote slot used by complain_at.
1501
1502 * tests/input.at: Add tests for backslash-newline, m4 quotes
1503 in symbols, long literals, and funny escapes in strings.
1504
1505 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
1506 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
1507 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
1508 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
1509 * m4/mbswidth.m4: New file, from GNU coreutils.
1510
1511 * doc/bison.texinfo (Grammar Outline): Document // comments.
1512 (Symbols): Document that trigraphs have no special meaning in Bison,
1513 nor is backslash-newline allowed.
1514 (Actions): Document that trigraphs have no special meaning.
1515
1516 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
1517 no longer used.
1518
1519 2002-11-02 Paul Eggert <eggert@twinsun.com>
1520
1521 * src/reader.c: Don't include quote.h; not needed.
1522 (get_merge_function): Reword warning to be consistent with
1523 type clash diagnostic in grammar_current_rule_check.
1524
1525 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
1526 bug in trigraph handling.
1527
1528 * src/output.c (prepare_symbols): When printing token names,
1529 escape "[" as "@<:@" and likewise for "]".
1530
1531 * src/system.h (errno): Remove declaration, as we are now
1532 assuming C89 or better, and C89 guarantees errno.
1533
1534 2002-10-30 Paul Eggert <eggert@twinsun.com>
1535
1536 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
1537 Check for close failures.
1538 * src/files.h (xfclose): Return void, not int, since it always
1539 returned zero.
1540 * src/files.c (xfclose): Likewise. Report I/O error if ferror
1541 indicates one.
1542 * src/output.c (output_skeleton): Use xfclose rather than fclose
1543 and ferror. xfclose now checks ferror.
1544
1545 * data/glr.c (YYLEFTMOST_STATE): Remove.
1546 (yyreportTree): Use a stack-based leftmost state. This avoids
1547 our continuing battles with bogus warnings about initializers.
1548
1549 2002-10-30 Akim Demaille <akim@epita.fr>
1550
1551 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
1552 #if.
1553
1554 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1555
1556 * tests/glr-regr1.at: New test for reported regressions.
1557 * tests/testsuite.at: Add glr-regr1.at test.
1558 * tests/Makefile.am: Add glr-regr1.at test.
1559
1560 2002-10-24 Paul Eggert <eggert@twinsun.com>
1561
1562 Version 1.75a.
1563
1564 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
1565 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
1566 we use malloc. Don't assume 'A' through 'Z' are contiguous.
1567 Don't assume strdup exists; POSIX says its an XSI extension.
1568 Check for buffer overflow on input.
1569
1570 2002-10-24 Akim Demaille <akim@epita.fr>
1571
1572 * src/output.c (output_skeleton): Don't disable M4sugar comments
1573 too soon: it results in comments being expanded.
1574 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
1575 first output.
1576
1577 2002-10-24 Akim Demaille <akim@epita.fr>
1578
1579 * data/yacc.c (m4_int_type): New.
1580 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
1581 char' as only yacc.c wants K&R portability.
1582 * data/glr.c (yysigned_char): Remove.
1583 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
1584 Reported by Quoc Peyrot.
1585
1586 2002-10-23 Paul Eggert <eggert@twinsun.com>
1587
1588 * src/main.c (main): With --trace=time, report times even if a
1589 non-fatal error occurs. Formerly, the times were reported in some
1590 such cases but not in others.
1591 * src/reader.c (reader): Just return if a complaint has been issued,
1592 instead of exiting, so that 'main' can report times.
1593
1594 2002-10-22 Akim Demaille <akim@epita.fr>
1595
1596 * src/system.h: Include sys/types.
1597 Reported by Bert Deknuydt.
1598
1599 2002-10-23 Paul Eggert <eggert@twinsun.com>
1600
1601 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
1602 Suggested by Art Haas.
1603
1604 2002-10-22 Paul Eggert <eggert@twinsun.com>
1605
1606 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
1607 decl; not needed any more.
1608 * src/main.c (main): Use return to exit, undoing yesterday's change.
1609 The last OS that we could find where this wouldn't work is
1610 SunOS 3.5, and that's too old to worry about now.
1611
1612 * data/glr.c (struct yyltype): Define members even when not
1613 doing locations. This is more consistent with yacc.c, and it
1614 works around the following bug reports:
1615 http://mail.gnu.org/pipermail/bug-bison/2002-October/001764.html
1616 http://mail.gnu.org/pipermail/bug-bison/2002-October/001769.html
1617 and I hope it also fixes this bug report:
1618 http://mail.gnu.org/pipermail/bug-bison/2002-October/001748.html
1619
1620 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
1621 @acronym consistently. Standardize on "Yacc" instead of "YACC",
1622 "Algol" instead of "ALGOL". Give a bit more history about BNF.
1623
1624 2002-10-22 Akim Demaille <akim@epita.fr>
1625
1626 * data/README: New.
1627
1628 2002-10-21 Paul Eggert <eggert@twinsun.com>
1629
1630 Be consistent about 'bool'; the old code used an enum in one
1631 module and an int in another, and this violates the C standard.
1632 * m4/stdbool.m4: New file, from coreutils 4.5.3.
1633 * configure.ac (AC_HEADER_STDBOOL): Add.
1634 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
1635 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
1636 * src/symtab.c (hash_compare_symbol_t): Likewise.
1637 * src/system.h (bool, false, true): Use a definition consistent
1638 with ../lib/hash.c. All uses changed.
1639
1640 * src/complain.c (warning_issued): Renamed from warn_message_count,
1641 so that we needn't worry about integer overflow (!).
1642 Now of type bool. All uses changed.
1643 (complaint_issued): Renamed from complain_message_count; likewise.
1644
1645 * src/main.c (main): Use exit to exit with failure.
1646
1647 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
1648 rather than 1 and 0.
1649 * src/main.c (main): Likewise.
1650 * src/getargs.c (getargs): Likewise.
1651 * src/reader.c (reader): Likewise.
1652
1653 * src/getarg.c (getargs): Remove duplicate code for
1654 "Try `bison --help'".
1655
1656 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
1657 What was that "2" for?
1658
1659 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
1660 * src/getargs.c (usage): Likewise.
1661
1662 * src/getargs.c (getargs): When there are too few operands, report
1663 the last one. When there are too many, report the first extra
1664 one. This is how diffutils does it.
1665
1666 2002-10-20 Paul Eggert <eggert@twinsun.com>
1667
1668 Remove K&R vestiges.
1669 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
1670 * src/complain.c (VA_START): Remove. Assume prototypes.
1671 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
1672 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
1673 fatal): Assume prototypes.
1674 * src/complain.h: Assume prototypes.
1675 * src/system.h (PARAMS): Remove.
1676 Include <limits.h> unconditionally, since it's guaranteeed even
1677 for a freestanding C89 compiler.
1678 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
1679 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
1680
1681 2002-10-20 Akim Demaille <akim@epita.fr>
1682
1683 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
1684 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
1685 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
1686 (yyresolveStates, yyresolveAction, yyresolveStack)
1687 (yyprocessOneStack): Use them.
1688 (yy_reduce_print): New.
1689 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
1690
1691 2002-10-20 Akim Demaille <akim@epita.fr>
1692
1693 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
1694 arguments and output `void'.
1695 (b4_c_function): Rename as...
1696 (b4_c_function_def): this.
1697 (b4_c_function_decl, b4_c_ansi_function_def)
1698 (b4_c_ansi_function_decl): New.
1699 Change the interpretation of the arguments: before `int, foo', now
1700 `int foo, foo'.
1701 * data/yacc.c (yyparse): Prototype and define thanks to these.
1702 Adjust b4_c_function_def uses.
1703 * data/glr.c (yyparse): Likewise, but ANSI only.
1704
1705 2002-10-20 Akim Demaille <akim@epita.fr>
1706
1707 * src/output.c (prepare): Move the definition of `tokens_number',
1708 `nterms_number', `undef_token_number', `user_token_number_max'
1709 to...
1710 (prepare_tokens): Here.
1711 (prepare_tokens): Rename as...
1712 (prepare_symbols): this.
1713 (prepare): Move the definition of `rules_number' to...
1714 (prepare_rules): here.
1715 (prepare): Move the definition of `last', `final_state_number',
1716 `states_number' to...
1717 (prepare_states): here.
1718 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
1719
1720 2002-10-20 Akim Demaille <akim@epita.fr>
1721
1722 * src/tables.h, src/tables.c, src/output.c: Comment changes.
1723
1724 2002-10-20 Akim Demaille <akim@epita.fr>
1725
1726 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
1727 * data/c.m4: here.
1728
1729 2002-10-20 Akim Demaille <akim@epita.fr>
1730
1731 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
1732 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
1733 `pair'.
1734 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
1735 `name' to...
1736 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
1737 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
1738 These.
1739
1740 2002-10-19 Paul Eggert <eggert@twinsun.com>
1741
1742 Do not create a temporary file, as that involves security and
1743 cleanup headaches. Instead, use a pair of pipes.
1744 Derived from a suggestion by Florian Krohm.
1745 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
1746 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
1747 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
1748 (BISON_PREREQ_SUBPIPE): Add.
1749 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
1750 Add subpipe.h, subpipe.c.
1751 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
1752 * po/POTFILES.in: Add lib/subpipe.c.
1753 * src/output.c: Include "subpipe.h".
1754 (m4_invoke): Remove decl.
1755 (scan_skel): New decl.
1756 (output_skeleton): Use pipe rather than temporary file for m4 input.
1757 Check that m4sugar.m4 is readable, to avoid deadlock.
1758 Check for pipe I/O error.
1759 * src/scan-skel.l (readpipe): Remove decl.
1760 (scan_skel): New function, to be used in place of m4_invoke.
1761 Read from stream rather than file.
1762
1763 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
1764 float, as this generates a warning on Solaris 8 + GCC 3.2 with
1765 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
1766 this generates a more-accurate value anyway.
1767
1768 * lib/timevar.c (timervar_accumulate): Rename locals to
1769 avoid confusion with similarly-named more-global.
1770 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
1771
1772 * src/output.c (prepare): Use xstrdup to convert char const *
1773 to char *, to avoid GCC warning.
1774
1775 2002-10-19 Akim Demaille <akim@epita.fr>
1776
1777 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
1778 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
1779 Use them to have `calc.y' ready for %pure-parser.
1780 * data/yacc.c (YYLEX): Pass a yylex return type to
1781 b4_c_function_call.
1782
1783 2002-10-19 Akim Demaille <akim@epita.fr>
1784
1785 Prototype support of %lex-param and %parse-param.
1786
1787 * src/parse-gram.y: Add the definition of the %lex-param and
1788 %parse-param tokens, plus their rules.
1789 Drop the `_' version of %glr-parser.
1790 Add the "," token.
1791 * src/scan-gram.l (INITIAL): Scan them.
1792 * src/muscle_tab.c: Comment changes.
1793 (muscle_insert, muscle_find): Rename `pair' as `probe'.
1794 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
1795 (muscle_entry_s): The `value' member is no longer const.
1796 Adjust all dependencies.
1797 * src/muscle_tab.c (muscle_init): Adjust: use
1798 MUSCLE_INSERT_STRING.
1799 Initialize the obstack earlier.
1800 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
1801 (muscle_pair_list_grow): New.
1802 * data/c.m4 (b4_c_function_call, b4_c_args): New.
1803 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
1804 * tests/calc.at: Use %locations, not --locations.
1805 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
1806
1807 2002-10-19 Akim Demaille <akim@epita.fr>
1808
1809 * src/getargs.c (usage): Take status as argument and exit
1810 accordingly.
1811 Report the traditional `Try ... --help' message when status != 0.
1812 (usage, version): Don't take a FILE * as arg, it is pointless.
1813 (getargs): When there is an incorrect number of arguments, make it
1814 an error, and report it GNUlically thanks to `usage ()'.
1815
1816 2002-10-18 Paul Eggert <eggert@twinsun.com>
1817
1818 * data/glr.c (yyreportParseError): Don't assume that sprintf
1819 yields the length of the printed string, as this is not true
1820 on SunOS 4.1.4. Reported by Peter Klein.
1821
1822 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
1823 * tests/conflicts.at (%nonassoc and eof): Likewise.
1824 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
1825
1826 2002-10-17 Akim Demaille <akim@epita.fr>
1827
1828 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
1829 * src/getargs.c (trace_types, trace_args): Adjust.
1830 * src/reader.c (grammar_current_rule_prec_set)
1831 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
1832 Standardize error messages.
1833 And s/@prec/%prec/!
1834 (reader): Use trace_flag to enable scanner/parser debugging,
1835 instead of an adhoc scheme.
1836 * src/scan-gram.l: Remove trailing debugging code.
1837
1838 2002-10-16 Paul Eggert <eggert@twinsun.com>
1839
1840 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
1841 MUSCLE_TAB_H.
1842
1843 * NEWS: Officially drop support for building Bison with K&R C,
1844 since it didn't work anyway and it's not worth worrying about.
1845 * Makefile.maint (wget_files): Remove ansi2knr.c.
1846 (ansi2knr.c-url_prefix): Remove.
1847 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
1848 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
1849 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
1850
1851 2002-10-15 Paul Eggert <eggert@twinsun.com>
1852
1853 Stop using the "enum_" trick for K&R-style function definitions;
1854 it confused me, and I was the author! Instead, assume that people
1855 who want to use K&R C compilers (when using these modules in GCC,
1856 perhaps?) will run ansi2knr.
1857
1858 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
1859 All uses of "enum_" changed to "enum ".
1860 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
1861 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
1862
1863 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
1864 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
1865 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
1866 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
1867 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
1868 abitset_not, abitset_ones, abitset_or, abitset_or_and,
1869 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
1870 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
1871 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
1872 Use function prototypes; this removes the need for declaring
1873 static functions simply to provide their prototypes.
1874 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
1875 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
1876 bitset_count_, bitset_create, bitset_dump, bitset_first,
1877 bitset_free, bitset_init, bitset_last, bitset_next,
1878 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
1879 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
1880 bitset_print, bitset_release_memory, bitset_toggle_,
1881 bitset_type_choose, bitset_type_get, bitset_type_name_get,
1882 debug_bitset): Likewise.
1883 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
1884 * lib/bitset_stats.c (bitset_log_histogram_print,
1885 bitset_percent_histogram_print, bitset_stats_and,
1886 bitset_stats_and_cmp, bitset_stats_and_or,
1887 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
1888 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
1889 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
1890 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
1891 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
1892 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
1893 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
1894 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
1895 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
1896 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
1897 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
1898 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
1899 bitset_stats_zero): Likewise.
1900 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
1901 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
1902 bitsetv_dump, debug_bitsetv): Likewise.
1903 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
1904 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
1905 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
1906 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
1907 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
1908 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
1909 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
1910 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
1911 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
1912 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
1913 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
1914 Likewise.
1915 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
1916 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
1917 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
1918 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
1919 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
1920 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
1921 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
1922 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
1923 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
1924 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
1925 lbitset_xor_cmp, lbitset_zero): Likewise.
1926
1927 2002-10-14 Akim Demaille <akim@epita.fr>
1928
1929 Version 1.75.
1930
1931 2002-10-14 Akim Demaille <akim@epita.fr>
1932
1933 * tests/Makefile.am (maintainer-check-posix): New.
1934
1935 2002-10-14 Akim Demaille <akim@epita.fr>
1936
1937 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
1938 member.
1939
1940 2002-10-14 Akim Demaille <akim@epita.fr>
1941
1942 * src/tables.c (table_ninf_remap): base -> tab.
1943 Reported by Matt Rosing.
1944
1945 2002-10-14 Paul Eggert <eggert@twinsun.com>
1946
1947 * tests/action.at, tests/calc.at, tests/conflicts.at,
1948 tests/cxx-type.at, tests/headers.at, tests/input.at,
1949 tests/regression.at, tests/synclines.at, tests/torture.at:
1950 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
1951 so that the tests still work even if POSIXLY_CORRECT is set.
1952 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
1953
1954 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
1955 for portability to K&R hosts. Fix typo: signed char is guaranteed
1956 only to 127, not to 128.
1957 * data/glr.c (yysigned_char): New type.
1958 * data/yacc.c (yysigned_char): Likewise.
1959 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
1960
1961 2002-10-13 Paul Eggert <eggert@twinsun.com>
1962
1963 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
1964 true due to limited range of data type" warning from GCC.
1965
1966 * data/c.m4 (b4_token_defines): Protect against double-inclusion
1967 by wrapping enum yytokentype's definition inside #ifndef
1968 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
1969
1970 2002-10-13 Akim Demaille <akim@epita.fr>
1971
1972 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
1973 Un yy- yyrhs to avoid the name clash with the global YYRHS.
1974
1975 2002-10-13 Akim Demaille <akim@epita.fr>
1976
1977 * Makefile.maint: Update from Autoconf 2.54.
1978 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
1979
1980 2002-10-13 Akim Demaille <akim@epita.fr>
1981
1982 * src/print.c (print_state): Separate the list of solved conflicts
1983 from the other items.
1984 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
1985
1986 2002-10-13 Akim Demaille <akim@epita.fr>
1987
1988 Let nondeterministic skeletons be usable with deterministic
1989 tables.
1990
1991 With the patch, GAWK compiled by GCC without -O2 passes its test
1992 suite using a GLR parser driven by LALR tables. It fails with -O2
1993 because `struct stat' gives two different answers on my machine:
1994 88 (definition of an auto var) and later 96 (memset on this var).
1995 Hence the stack is badly corrumpted. The headers inclusion is to
1996 blame: if I move the awk.h inclusion before GLR's system header
1997 inclusion, the two struct stat have the same size.
1998
1999 * src/tables.c (pack_table): Always create conflict_table.
2000 (token_actions): Always create conflict_list.
2001 * data/glr.c (YYFLAG): Remove, unused.
2002
2003 2002-10-13 Akim Demaille <akim@epita.fr>
2004
2005 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
2006 (O0FLAGS): New.
2007 (VALGRIND, GXX): New.
2008 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
2009 * tests/bison.in: Run $PREBISON a pre-command.
2010 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
2011 (maintainer-check-g++): New.
2012 * Makefile.am (maintainer-check): New.
2013
2014 2002-10-13 Akim Demaille <akim@epita.fr>
2015
2016 * data/glr.c: Formatting changes.
2017 Tweak some trace messages to match yacc.c's.
2018
2019 2002-10-13 Akim Demaille <akim@epita.fr>
2020
2021 GLR parsers sometimes raise parse errors instead of performing the
2022 default reduction.
2023 Reported by Charles-Henry de Boysson.
2024
2025 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
2026 check the length of the traces when %glr.
2027 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
2028 GLR's traces.
2029 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
2030 Test GLR parsers.
2031 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
2032 (yyltype): Remove the yy prefix from the member names.
2033 (yytable): Complete its comment.
2034 (yygetLRActions): Map error action number from YYTABLE from
2035 YYTABLE_NINF to 0.
2036 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
2037 (which was a bug: it should have been YYTABEL_NINF, and yet it was
2038 not satisfying as we could compare an YYACTION computed from
2039 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
2040 only value for error actions.
2041 (yyreportParseError): In verbose parse error messages, don't issue
2042 `error' in the list of expected tokens.
2043 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
2044 next action to perform to match glr.c's decoding.
2045 (yytable): Complete its comment.
2046
2047 2002-10-13 Paul Eggert <eggert@twinsun.com>
2048
2049 Fix problem reported by Henrik Grubbstroem in
2050 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001670.html>:
2051 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
2052 because the Bison parser reads the second action before reducing
2053 the first one.
2054 * src/scan-gram.l (rule_length): New static var.
2055 Use it to keep track of the rule length in the scanner, since
2056 we can't expect the parser to be in lock-step sync with the scanner.
2057 (handle_action_dollar, handle_action_at): Use this var.
2058 * tests/actions.at (Exotic Dollars): Test for the problem.
2059
2060 2002-10-12 Paul Eggert <eggert@twinsun.com>
2061
2062 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
2063 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
2064 Include <sys/time.h> when checking for clock_t and struct tms.
2065 Use same include order as source.
2066 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
2067 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001674.html>.
2068
2069 * lib/timevar.c: Update copyright date and clarify comments.
2070 (get_time) [IN_GCC]: Keep the GCC version for reference.
2071
2072 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
2073 GCC version as of today, then merge Bison's changes.
2074 Change "GCC" to "Bison" in copyright notice. timevar.def's
2075 author is Akim, so change that too.
2076
2077 * src/reader.c (grammar_current_rule_check):
2078 Don't worry about the default action if $$ is untyped.
2079 Prevents bogus warnings reported by Jim Gifford in
2080 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001673.html>.
2081
2082 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
2083 * data/glr.c, data/lalr1.cc, data/yacc.c:
2084 Output token definitions before the first part of user declarations.
2085 Fixes compatibility problem reported by Jim Gifford for kbd in
2086 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001672.html>.
2087
2088 2002-10-11 Paul Eggert <eggert@twinsun.com>
2089
2090 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
2091 (yyparse): here. This undoes some of the 2002-07-25 change.
2092 Compatibility problem reported by Ralf S. Engelschall with
2093 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
2094
2095 2002-10-11 Akim Demaille <akim@epita.fr>
2096
2097 * tests/regression.at Characters Escapes): New.
2098 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
2099 characters.
2100 Reported by Jan Nieuwenhuizen.
2101
2102 2002-10-11 Akim Demaille <akim@epita.fr>
2103
2104 * po/id.po: New.
2105
2106 2002-10-10 Paul Eggert <eggert@twinsun.com>
2107
2108 Portability fixes for bitsets; this also avoids several GCC
2109 warnings.
2110
2111 * lib/abitset.c: Include <stddef.h>, for offsetof.
2112 * lib/lbitset.c: Likewise.
2113
2114 * lib/abitset.c (abitset_bytes): Return a size that is aligned
2115 properly for vectors of objects. Do not assume that adding a
2116 header size to a multiple of a word size yields a value that is
2117 properly aligned for the whole union.
2118 * lib/bitsetv.c (bitsetv_alloc): Likewise.
2119
2120 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
2121 unique names for structures.
2122 * lib/ebitset.c (ebitset_bytes): Likewise.
2123 * lib/lbitset.c (lbitset_bytes): Likewise.
2124
2125 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
2126 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
2127 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
2128 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
2129 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
2130 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
2131 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
2132 to improve the type-checking that GCC can do.
2133 * lib/bitset.c (bitset_op4_cmp): Likewise.
2134 * lib/bitset_stats.c (bitset_stats_count,
2135 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
2136 bitset_stats_copy, bitset_stats_disjoint_p,
2137 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
2138 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
2139 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
2140 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
2141 bitset_stats_and_or_cmp, bitset_stats_andn_or,
2142 bitset_stats_andn_or_cmp, bitset_stats_or_and,
2143 bitset_stats_or_and_cmp): Likewise.
2144 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
2145 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
2146 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
2147 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
2148
2149 * lib/abitset.h: Include bitset.h, not bbitset.h.
2150 * lib/ebitset.h: Likewise.
2151 * lib/lbitset.h: Likewise.
2152
2153 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
2154 All instances of parameters of type enum bitset_opts are now of
2155 type enum_bitset_opts, to conform to the C Standard, and similarly
2156 for enum_bitset_type.
2157 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
2158 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
2159
2160 Do not use "struct bitset_struct" to mean different things in
2161 different modules. Not only is this confusing, it violates
2162 the C Standard, which requires that structure types in different
2163 modules must be compatible if one is to be passed to the other.
2164 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
2165 All instances of "struct bitset_struct *" replaced with "bitset".
2166 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
2167 (union bitset_union, struct abitset_struct, struct ebitset_struct,
2168 struct lbitset_struct, struct bitset_stats_struct): New types.
2169 All uses of struct bitset_struct changed to union bitset_union,
2170 etc.
2171 * lib/abitset.c (struct abitset_struct, abitset,
2172 struct bitset_struct): Remove.
2173 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
2174 struct bitset_struct): Remove.
2175 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
2176 bitset_struct): Remove.
2177 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
2178 Likewise.
2179
2180 Do not call a function of type T using a call that assumes the
2181 function is of a different type U. Standard C requires that a
2182 function must be called with a type that is compatible with its
2183 definition.
2184 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
2185 New decls.
2186 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
2187 New functions.
2188 * lib/ebitset.c (PFV): Remove.
2189 * lib/lbitset.c (PFV): Likewise.
2190 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
2191 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
2192 decls.
2193 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
2194 (ebitset_vtable): Use them.
2195 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
2196 lbitset_xor): New functions.
2197 (lbitset_vtable): Use them.
2198
2199 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
2200 Declare.
2201
2202 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
2203 GCC warning.
2204 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
2205 Use offsetof, for simplicity.
2206
2207 2002-10-06 Paul Eggert <eggert@twinsun.com>
2208
2209 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
2210 the same width as int. This reapplies a hunk of the 2002-08-12 patch
2211 <http://mail.gnu.org/pipermail/bison-patches/2002-August/001111.html>,
2212 which was inadvertently undone by the 2002-09-30 patch.
2213 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
2214 the same width as int.
2215
2216 2002-10-04 Paul Eggert <eggert@twinsun.com>
2217
2218 Version 1.50.
2219
2220 * configure.ac (AC_INIT), NEWS: Increment version number.
2221
2222 * doc/bison.texinfo: Minor spelling, grammar, and white space
2223 fixes.
2224 (Symbols): Mention that any negative value returned from yylex
2225 signifies end-of-input. Warn about negative chars. Mention
2226 the portable Standard C character set.
2227
2228 The GNU coding standard says CFLAGS and YFLAGS are reserved
2229 for the installer to set.
2230 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
2231 * src/Makefile.am (AM_CFLAGS): Likewise.
2232 (AM_YFLAGS): Renamed from YFLAGS.
2233
2234 Fix some MAX and MIN problems.
2235 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
2236 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
2237 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
2238 * src/reader.c (reader): Use it.
2239
2240 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
2241 POSIX 1003.1-2001 has removed fgrep.
2242
2243 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
2244
2245 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
2246 interpreted as signed.
2247 * lib/ebitset.c (ebitset_list): Fix bug.
2248
2249 2002-10-01 Paul Eggert <eggert@twinsun.com>
2250
2251 More fixes for 64-bit hosts and large bitsets.
2252
2253 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
2254 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
2255 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
2256 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
2257 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
2258 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
2259 bitset_count_): Likewise.
2260 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
2261 bitset_first, bitset_last): Likewise.
2262 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
2263 bitset_stats_list_reverse, bitset_stats_size,
2264 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
2265 Likewise.
2266 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
2267 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
2268 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
2269 bitsetv_reflexive_transitive_closure): Likewise.
2270 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
2271 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
2272 Likewise.
2273 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
2274 Likewise.
2275
2276 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
2277 Use size_t, not unsigned int, to count bytes.
2278 * lib/abitset.h (abitset_bytes): Likewise.
2279 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
2280 Likewise.
2281 * lib/bitset.h (bitset_bytes): Likewise.
2282 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
2283 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
2284 * lib/bitsetv.c (bitsetv_alloc): Likewise.
2285 * lib/ebitset.c (ebitset_bytes): Likewise.
2286 * lib/ebitset.h (ebitset_bytes): Likewise.
2287 * lib/lbitset.c (lbitset_bytes): Likewise.
2288 * lib/lbitset.h (lbitset_bytes): Likewise.
2289
2290 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
2291 abitset_subset_p, abitset_disjoint_p, abitset_and,
2292 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
2293 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
2294 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
2295 abitset_or_and, abitset_or_and_cmp):
2296 Use bitset_windex instead of unsigned int.
2297 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
2298 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
2299 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
2300 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
2301 Likewise.
2302 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
2303
2304 * lib/bitset.c (bitset_print):
2305 Use proper printf formats for widths of integer types.
2306 * lib/bitset_stats.c (bitset_percent_histogram_print,
2307 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
2308 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
2309 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
2310 * lib/lbitset.c (lbitset_bytes): Likewise.
2311
2312 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
2313 BITSET_SIZE_MAX): New macros.
2314 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
2315 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
2316 to BITSET_WINDEX_MAX.
2317
2318 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
2319 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
2320 since we now return the bitset_bindex type (not int).
2321
2322 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
2323 when computing sizes.
2324 * lib/ebitset.c (ebitset_elts_grow): Likewise.
2325
2326 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
2327 and avoid cast to unsigned.
2328
2329 2002-09-30 Akim Demaille <akim@epita.fr>
2330
2331 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
2332 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
2333 Updates from Michael Hayes.
2334
2335 2002-09-30 Art Haas <ahaas@neosoft.com>
2336
2337 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
2338 invocations.
2339 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
2340 defined.
2341
2342 2002-09-27 Akim Demaille <akim@epita.fr>
2343
2344 Version 1.49c.
2345
2346 2002-09-27 Akim Demaille <akim@epita.fr>
2347
2348 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
2349 (Because of AC_LIBSOURCE).
2350
2351 2002-09-27 Akim Demaille <akim@epita.fr>
2352
2353 Playing with Autoscan.
2354
2355 * configure.ac: Remove the old LIBOBJ tweaks.
2356 (AC_REPLACE_FUNCS): Add strrchr and strtol.
2357 * lib/strrchr.c: New.
2358 * lib/strtol.c: New, from the Coreutils 4.5.1.
2359
2360 2002-09-27 Akim Demaille <akim@epita.fr>
2361
2362 Playing with Autoscan.
2363
2364 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
2365 * lib/Makefile.am (libbison_a_SOURCES): No longer include
2366 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
2367 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
2368 Coreutils 4.5.1.
2369
2370 2002-09-24 Akim Demaille <akim@epita.fr>
2371
2372 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
2373 (Frequently Asked Questions, Parser Stack Overflow): New.
2374
2375 2002-09-13 Akim Demaille <akim@epita.fr>
2376
2377 Playing with autoscan.
2378
2379 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
2380 * src/files.c (skeleton_find): Remove, unused.
2381 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
2382 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
2383
2384 2002-09-13 Akim Demaille <akim@epita.fr>
2385
2386 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
2387 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
2388
2389 2002-09-13 Akim Demaille <akim@epita.fr>
2390
2391 * configure.ac: Require 2.54.
2392 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
2393 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
2394 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
2395 Remove, provided by Autoconf macros.
2396
2397 2002-09-12 Akim Demaille <akim@epita.fr>
2398
2399 * m4/prereq.m4: Update, from Coreutils 4.5.1.
2400
2401 2002-09-12 Akim Demaille <akim@epita.fr>
2402
2403 * m4/prereq.m4: Update, from Fileutils 4.1.5.
2404 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
2405 Reported by Martin Mokrejs.
2406
2407 2002-09-10 Akim Demaille <akim@epita.fr>
2408
2409 * src/parse-gram.y: Associate a human readable string to each
2410 token type.
2411 * tests/regression.at (Invalid inputs): Adjust.
2412
2413 2002-09-10 Gary V. Vaughan <gary@gnu.org>
2414
2415 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
2416 with an Autoconf-2.5x style configure.ac.
2417
2418 2002-09-06 Paul Eggert <eggert@twinsun.com>
2419
2420 * doc/bison.texinfo (Conditions): Make explicit that the GPL
2421 exception applies only to yacc.c. This is a modification of a
2422 patch originally suggested by Akim Demaille.
2423
2424 2002-09-06 Akim Demaille <akim@epita.fr>
2425
2426 * data/c.m4 (b4_copyright): Move the GPL exception comment from
2427 here to...
2428 * data/yacc.c: here.
2429
2430 * data/lalr1.cc (struct yyltype): Don't define it, since we use
2431 LocationType.
2432 (b4_ltype): Default to yy::Location from location.hh.
2433
2434 2002-09-04 Jim Meyering <jim@meyering.net>
2435
2436 * data/yacc.c: Guard the declaration of yytoknum also with
2437 `#ifdef YYPRINT', so it is declared only when used.
2438
2439 2002-09-04 Akim Demaille <akim@epita.fr>
2440
2441 * configure.in: Rename as...
2442 * configure.ac: this.
2443 Bump to 1.49c.
2444
2445 2002-09-04 Akim Demaille <akim@epita.fr>
2446
2447 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
2448 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
2449 translate maintainer only messages.
2450
2451 2002-08-12 Paul Eggert <eggert@twinsun.com>
2452
2453 Version 1.49b.
2454
2455 * Makefile.am (SUBDIRS): Remove intl.
2456 (DISTCLEANFILES): Remove.
2457 * NEWS: Mention that GNU M4 is now required. Clarify what is
2458 meant by "larger grammars". Mention the pt_BR translation.
2459 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
2460 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
2461 Bump version from 0.11.2 to 0.11.5.
2462 (BISON_PREREQ_STAGE): Remove.
2463 (AM_GNU_GETTEXT): Use external gettext.
2464 (AC_OUTPUT): Remove intl/Makefile.
2465
2466 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
2467
2468 * data/glr.c: Include string.h, for strlen.
2469 (yyreportParseError): Use size_t for yysize.
2470 (yy_yypstack): No longer nested inside yypstates, as nested
2471 functions are not portable. Do not assume size_t is the
2472 same width as int.
2473 (yypstates): Do not assume that ptrdiff_t is the same width
2474 as int, and similarly for yyposn and YYINDEX.
2475
2476 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
2477
2478 * lib/Makefile.am (INCLUDES): Do not include from the intl
2479 directory, which has been removed.
2480 * src/Makefile.am (INCLUDES): Likewise.
2481
2482 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
2483 (bitsets_sources, additional_bitsets_sources, timevars_sources):
2484 New vars.
2485
2486 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
2487 * tests/Makefile.am (EXTRA_DIST): Likewise.
2488
2489 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
2490 Do not assume that bitset_windex is the same width as unsigned.
2491
2492 * lib/abitset.c (abitset_unused_clear): Do not assume that
2493 bitset_word is the same width as int.
2494 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
2495 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
2496 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
2497 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
2498 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
2499
2500 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
2501 portability to one's complement hosts!).
2502 * lib/ebitset.c (ebitset_op1): Likewise.
2503 * lib/lbitset.c (lbitset_op1): Likewise.
2504
2505 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
2506 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
2507 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
2508 Sync with fileutils.
2509 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
2510 lib/gettext.h: Sync with diffutils.
2511
2512 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
2513 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
2514
2515 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
2516 PROTOTYPES to check for prototypes, and "defined __STDC__" to
2517 check for void *.
2518
2519 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
2520 size_t; the old version tried to do this but casted improperly.
2521 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
2522 (bitset_test): Now returns int, not unsigned long.
2523
2524 * lib/bitset_stats.c: Include "gettext.h".
2525 (_): New macro.
2526 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
2527 name locals "index", as it generates unnecessary warnings on some
2528 hosts that have an "index" function.
2529
2530 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
2531 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
2532 they need translation.
2533 * src/LR0.c (state_list_append, new_itemsets, get_state,
2534 append_states, generate_states): Likewise.
2535 * src/assoc.c (assoc_to_string): Likewise.
2536 * src/closure.c (print_closure, set_firsts, closure): Likewise.
2537 * src/gram.c (grammar_dump): Likewise.
2538 * src/injections.c (injections_compute): Likewise.
2539 * src/lalr.c (lookaheads_print): Likewise.
2540 * src/relation.c (relation_transpose): Likewise.
2541 * src/scan-gram.l: Likewise.
2542 * src/tables.c (table_grow, pack_vector): Likewise.
2543
2544 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
2545 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
2546 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
2547 * m4/mbstate_t.m4: Sync with fileutils.
2548 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
2549
2550 * po/LINGUAS: Add pt_BR.
2551 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
2552 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
2553 lib/timevar.c.
2554 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
2555 manual recommends.
2556 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
2557
2558 * src/complain.c (strerror_r): Remove decl; not needed.
2559 (strerror): Use same pattern as ../lib/error.c.
2560
2561 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
2562
2563 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
2564
2565 * src/main.c (main): Cast result of bindtextdomain and textdomain
2566 to void, to avoid a GCC warning when --disable-nls is in effect.
2567
2568 * src/scan-gram.l: Use strings rather than escapes when possible,
2569 to minimize the number of warnings from xgettext.
2570 (handle_action_dollar, handle_action_at): Don't use isdigit,
2571 as it mishandles negative chars and it may not work as expected
2572 outside the C locale.
2573
2574 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
2575 this is a GCC extension and is not portable to other compilers.
2576
2577 * src/system.h (alloca): Use same pattern as ../lib/error.c.
2578 Do not include <ctype.h>; no longer needed.
2579 Do not include <malloc.h>; no longer needed (and generates
2580 warnings on OpenBSD 3.0).
2581
2582 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
2583 it's not portable.
2584
2585 * tests/regression.at: Do not use 'cc -c input.c -o input';
2586 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
2587
2588 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
2589 exit status as failure, not just exit status 1. Sun C exits
2590 with status 2 sometimes.
2591
2592 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
2593 Use it for the two large tests.
2594
2595 2002-08-02 Akim Demaille <akim@epita.fr>
2596
2597 * src/conflicts.c (conflicts_output): Don't output rules never
2598 reduced here, since anyway that computation doesn't work.
2599 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
2600 (rule_useless_p, rule_never_reduced_p): New.
2601 (grammar_rules_partial_print): Use a filter instead of a range.
2602 Display the title only if needed.
2603 (grammar_rules_print): Adjust.
2604 (grammar_rules_never_reduced_report): New.
2605 * src/tables.c (action_row): Move the computation of rules never
2606 reduced to...
2607 (token_actions): here.
2608 * src/main.c (main): Make the parser before making the report, so
2609 that rules never reduced are computed.
2610 Call grammar_rules_never_reduced_report.
2611 * src/print.c (print_results): Report rules never reduced.
2612 * tests/conflicts.at, tests/reduce.at: Adjust.
2613
2614 2002-08-01 Akim Demaille <akim@epita.fr>
2615
2616 Instead of attaching lookaheads and duplicating the rules being
2617 reduced by a state, attach the lookaheads to the reductions.
2618
2619 * src/state.h (state_t): Remove the `lookaheads',
2620 `lookaheads_rule' member.
2621 (reductions_t): Add a `lookaheads' member.
2622 Use a regular array for the `rules'.
2623 * src/state.c (reductions_new): Initialize the lookaheads member
2624 to 0.
2625 (state_rule_lookaheads_print): Adjust.
2626 * src/state.h, src/state.c (state_reductions_find): New.
2627 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
2628 (count_rr_conflicts): Adjust.
2629 * src/lalr.c (LArule): Remove.
2630 (add_lookback_edge): Adjust.
2631 (state_lookaheads_count): New.
2632 (states_lookaheads_initialize): Merge into...
2633 (initialize_LA): this.
2634 (lalr_free): Adjust.
2635 * src/main.c (main): Don't free nullable and derives too early: it
2636 is used by --verbose.
2637 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
2638
2639 2002-08-01 Akim Demaille <akim@epita.fr>
2640
2641 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
2642 `rule_number_t**'.
2643 (set_derives, free_derives): Rename as...
2644 (derives_compute, derives_free): this.
2645 Adjust all dependencies.
2646 * src/nullable.c (set_nullable, free_nullable): Rename as...
2647 (nullable_compute, nullable_free): these.
2648 (rule_list_t): Store rule_t *, not rule_number_t.
2649 * src/state.c (state_rule_lookaheads_print): Directly compare rule
2650 pointers, instead of their numbers.
2651 * src/main.c (main): Call nullable_free, and derives_free earlier,
2652 as they were lo longer used.
2653
2654 2002-08-01 Akim Demaille <akim@epita.fr>
2655
2656 * lib/timevar.c (get_time): Include children time.
2657 * src/lalr.h (LA, LArule): Don't export them: used with the
2658 state_t.
2659 * src/lalr.c (LA, LArule): Static.
2660 * src/lalr.h, src/lalr.c (lalr_free): New.
2661 * src/main.c (main): Call it.
2662 * src/tables.c (pack_vector): Check whether loc is >= to the
2663 table_size, not >.
2664 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
2665 (tables_generate): do it, since that's also it which allocates
2666 them.
2667 Don't free LA and LArule, main does.
2668
2669 2002-07-31 Akim Demaille <akim@epita.fr>
2670
2671 Separate parser tables computation and output.
2672
2673 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
2674 (conflict_list, conflict_list_cnt, table, check, table_ninf)
2675 (yydefgoto, yydefact, high): Move to...
2676 * src/tables.h, src/tables.c: here.
2677 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
2678 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
2679 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
2680 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
2681 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
2682 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
2683 (action_row, save_row, token_actions, save_column, default_goto)
2684 (goto_actions, sort_actions, matching_state, pack_vector)
2685 (table_ninf_remap, pack_table, prepare_actions): Move to...
2686 * src/tables.c: here.
2687 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
2688 * src/output.c (token_actions, output_base, output_conflicts)
2689 (output_check): Merge into...
2690 (prepare_actions): this.
2691 (actions_output): Rename as...
2692 (user_actions_output): this.
2693 * src/main.c (main): Call tables_generate and tables_free.
2694
2695 2002-07-31 Akim Demaille <akim@epita.fr>
2696
2697 Steal GCC's --time-report support.
2698
2699 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
2700 stolen/adjusted from GCC.
2701 * m4/stage.m4: Remove time related checks.
2702 * m4/timevar.m4: New.
2703 * configure.in: Adjust.
2704 * src/system.h: Adjust to using timevar.h.
2705 * src/getargs.h, src/getargs.c: Support trace_time for
2706 --trace=time.
2707 * src/main.c (stage): Remove.
2708 (main): Replace `stage' invocations with timevar calls.
2709 * src/output.c: Insert pertinent timevar calls.
2710
2711 2002-07-31 Akim Demaille <akim@epita.fr>
2712
2713 Let --trace have arguments.
2714
2715 * src/getargs.h (enum trace_e): New.
2716 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
2717 (long_options, short_options): --trace/-T takes an optional
2718 argument.
2719 Change all the uses of trace_flag to reflect the new flags.
2720 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
2721
2722 Strengthen `stage' portability.
2723
2724 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
2725 * configure.in: Use it.
2726 Don't check for malloc.h and sys/times.h.
2727 * src/system.h: Include them when appropriate.
2728 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
2729 times and struct tms are available.
2730
2731 2002-07-30 Akim Demaille <akim@epita.fr>
2732
2733 In verbose parse error message, don't report `error' as an
2734 expected token.
2735 * tests/actions.at (Printers and Destructors): Adjust.
2736 * tests/calc.at (Calculator $1): Adjust.
2737 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
2738 error message, do not report the parser accepts the error token in
2739 that state.
2740
2741 2002-07-30 Akim Demaille <akim@epita.fr>
2742
2743 Normalize conflict related messages.
2744
2745 * src/complain.h, src/complain.c (warn, complain): New.
2746 * src/conflicts.c (conflicts_print): Use them.
2747 (conflict_report_yacc): New, extracted from...
2748 (conflicts_print): here.
2749 * tests/conflicts.at, tests/existing.at: Adjust.
2750
2751 2002-07-30 Akim Demaille <akim@epita.fr>
2752
2753 Report rules which are never reduced by the parser: those hidden
2754 by conflicts.
2755
2756 * src/LR0.c (save_reductions): Don't make the final state too
2757 different: save its reduction (accept) instead of having a state
2758 without any action (no shift or goto, no reduce).
2759 Note: the final state is now a ``regular'' state, i.e., the
2760 parsers now contain `reduce 0' as default reduction.
2761 Nevertheless, since they decide to `accept' when yystate =
2762 final_state, they still will not reduce rule 0.
2763 * src/print.c (print_actions, print_reduction): Adjust.
2764 * src/output.c (action_row): Track reduced rules.
2765 (token_actions): Report rules never reduced.
2766 * tests/conflicts.at, tests/regression.at: Adjust.
2767
2768 2002-07-30 Akim Demaille <akim@epita.fr>
2769
2770 `stage' was accidently included in a previous patch.
2771 Initiate its autoconfiscation.
2772
2773 * configure.in: Look for malloc.h and sys/times.h.
2774 * src/main.c (stage): Adjust.
2775 Report only when trace_flag.
2776
2777 2002-07-29 Akim Demaille <akim@epita.fr>
2778
2779 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
2780 state_number_t.
2781 (errs_t): symbol_t*, not symbol_number_t.
2782 (reductions_t): rule_t*, not rule_number_t.
2783 (FOR_EACH_SHIFT): New.
2784 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
2785 * src/print.c, src/print_graph.c: Adjust.
2786
2787 2002-07-29 Akim Demaille <akim@epita.fr>
2788
2789 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
2790
2791 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
2792 (endtoken, accept): these.
2793 * src/reader.c (reader): Set endtoken's default tag to "$end".
2794 Set undeftoken's tag to "$undefined" instead of "$undefined.".
2795 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
2796 Adjust.
2797
2798 2002-07-29 Akim Demaille <akim@epita.fr>
2799
2800 * src/reduce.c (reduce_grammar): When the language is empty,
2801 complain about the start symbol, not the axiom.
2802 Use its location.
2803 * tests/reduce.at (Empty Language): New.
2804
2805 2002-07-26 Akim Demaille <akim@epita.fr>
2806
2807 * src/reader.h, src/reader.c (gram_error): ... can't get
2808 yycontrol without making too strong assumptions on the parser
2809 itself.
2810 * src/output.c (prepare_tokens): Use the real 0th value of
2811 token_translations instead of `0'.
2812 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
2813 visible here.
2814 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
2815 for the time being: %locations ought to provide it to yyerror.
2816
2817 2002-07-25 Akim Demaille <akim@epita.fr>
2818
2819 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
2820 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
2821 * tests/regression.at (Web2c Actions): Adjust.
2822
2823 2002-07-25 Akim Demaille <akim@epita.fr>
2824
2825 Stop storing rules from 1 to nrules + 1.
2826
2827 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
2828 * src/nullable.c, src/output.c, src/print.c, src/reader.c
2829 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
2830 Iterate from 0 to nrules.
2831 Use rule_number_as_item_number and item_number_as_rule_number.
2832 Adjust to `derive' now containing possibly 0.
2833 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
2834 Handle the `- 1' part in rule numbers from/to item numbers.
2835 * src/conflicts.c (log_resolution): Fix the message which reversed
2836 shift and reduce.
2837 * src/output.c (action_row): Initialize default_rule to -1.
2838 (token_actions): Adjust.
2839 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
2840 expected output.
2841 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
2842
2843 2002-07-25 Akim Demaille <akim@epita.fr>
2844
2845 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
2846 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
2847 (b4_c_knr_arg_decl): New.
2848 * data/yacc.c: Use it to define yysymprint, yydestruct, and
2849 yyreport_parse_error.
2850
2851 2002-07-25 Akim Demaille <akim@epita.fr>
2852
2853 * data/yacc.c (yyreport_parse_error): New, extracted from...
2854 (yyparse): here.
2855 (yydestruct, yysymprint): Move above yyparse.
2856 Be K&R compliant.
2857
2858 2002-07-25 Akim Demaille <akim@epita.fr>
2859
2860 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
2861 replace...
2862 (b4_sint_type, b4_uint_type): these.
2863 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
2864 * tests/regression.at (Web2c Actions): Adjust.
2865
2866 2002-07-25 Akim Demaille <akim@epita.fr>
2867
2868 * src/gram.h (TIEM_NUMBER_MAX): New.
2869 (item_number_of_rule_number, rule_number_of_item_number): Rename
2870 as...
2871 (rule_number_as_item_number, item_number_as_rule_number): these.
2872 Adjust dependencies.
2873 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
2874 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
2875 (symbol_number_to_vector_number): New.
2876 (order): Of vector_number_t* type.
2877 (base_t, BASE_MAX, BASE_MIN): New.
2878 (froms, tos, width, pos, check): Of base_t type.
2879 (action_number_t, ACTION_MIN, ACTION_MAX): New.
2880 (actrow): Of action_number_t type.
2881 (conflrow): Of unsigned int type.
2882 (table_ninf, base_ninf): New.
2883 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
2884 (muscle_insert_int_table, muscle_insert_base_table)
2885 (muscle_insert_rule_number_table): New.
2886 (prepare_tokens): Output `toknum' as int_table.
2887 (action_row): Returns a rule_number_t.
2888 Use ACTION_MIN, not SHRT_MIN.
2889 (token_actions): yydefact is rule_number_t*.
2890 (table_ninf_remap): New.
2891 (pack_table): Use it for `base' and `table'.
2892 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
2893 replaced with...
2894 (YYPACT_NINF, YYTABLE_NINF): these.
2895 (yypact, yytable): Compute their types instead of hard-coded
2896 `short'.
2897 * tests/regression.at (Web2c Actions): Adjust.
2898
2899 2002-07-19 Akim Demaille <akim@epita.fr>
2900
2901 * src/scan-gram.l (id): Can start with an underscore.
2902
2903 2002-07-16 Akim Demaille <akim@epita.fr>
2904
2905 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
2906 Adjust all former `associativity' dependencies.
2907 * src/symtab.c (symbol_new): Default associativity is `undef', not
2908 `right'.
2909 (symbol_check_alias_consistence): Adjust.
2910
2911 2002-07-09 Akim Demaille <akim@epita.fr>
2912
2913 * doc/bison.texinfo: Properly set the ``header'' part.
2914 Use @dircategory ``GNU programming tools'' as per Texinfo's
2915 documentation.
2916 Use @copying.
2917
2918 2002-07-09 Akim Demaille <akim@epita.fr>
2919
2920 * lib/quotearg.h: Protect against multiple inclusions.
2921 * src/location.h (location_t): Add a `file' member.
2922 (LOCATION_RESET, LOCATION_PRINT): Adjust.
2923 * src/complain.c (warn_at, complain_at, fatal_at): Drop
2924 `error_one_per_line' support.
2925
2926 2002-07-09 Akim Demaille <akim@epita.fr>
2927
2928 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
2929 * src/reader.c (lineno): Remove.
2930 Adjust all dependencies.
2931 (get_merge_function): Take a location and use complain_at.
2932 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
2933 * tests/regression.at (Invalid inputs, Mixing %token styles):
2934 Adjust.
2935
2936 2002-07-09 Akim Demaille <akim@epita.fr>
2937
2938 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
2939 recovery rule, and forbid extensions when --yacc.
2940 (gram_error): Use complain_at.
2941 * src/reader.c (reader): Exit if there were parse errors.
2942
2943 2002-07-09 Akim Demaille <akim@epita.fr>
2944
2945 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
2946 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
2947 Reported by R Blake <blakers@mac.com>.
2948
2949 2002-07-09 Akim Demaille <akim@epita.fr>
2950
2951 * data/yacc.c: Output the copyright notive in the header.
2952
2953 2002-07-03 Akim Demaille <akim@epita.fr>
2954
2955 * src/output.c (froms, tos): Are state_number_t.
2956 (save_column): sp, sp1, and sp2 are state_number_t.
2957 (prepare): Rename `final' as `final_state_number', `nnts' as
2958 `nterms_number', `nrules' as `rules_number', `nstates' as
2959 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
2960 unused.
2961 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
2962 * data/lalr1.cc (nsym_): Remove, unused.
2963
2964 2002-07-03 Akim Demaille <akim@epita.fr>
2965
2966 * src/lalr.h, src/lalr.c (goto_number_t): New.
2967 * src/lalr.c (goto_list_t): New.
2968 Propagate them.
2969 * src/nullable.c (rule_list_t): New.
2970 Propagate.
2971 * src/types.h: Remove.
2972
2973 2002-07-03 Akim Demaille <akim@epita.fr>
2974
2975 * src/closure.c (print_fderives): Use rule_rhs_print.
2976 * src/derives.c (print_derives): Use rule_rhs_print.
2977 (rule_list_t): New, replaces `shorts'.
2978 (set_derives): Add comments.
2979 * tests/sets.at (Nullable, Firsts): Adjust.
2980
2981 2002-07-03 Akim Demaille <akim@epita.fr>
2982
2983 * src/output.c (prepare_actions): Free `tally' and `width'.
2984 (prepare_actions): Allocate and free `order'.
2985 * src/symtab.c (symbols_free): Free `symbols'.
2986 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
2987 * src/output.c (m4_invoke): Move to...
2988 * src/scan-skel.l: here.
2989 (<<EOF>>): Close yyout, and free its name.
2990
2991 2002-07-03 Akim Demaille <akim@epita.fr>
2992
2993 Fix some memory leaks, and fix a bug: state 0 was examined twice.
2994
2995 * src/LR0.c (new_state): Merge into...
2996 (state_list_append): this.
2997 (new_states): Merge into...
2998 (generate_states): here.
2999 (set_states): Don't ensure a proper `errs' state member here, do it...
3000 * src/conflicts.c (conflicts_solve): here.
3001 * src/state.h, src/state.c: Comment changes.
3002 (state_t): Rename member `shifts' as `transitions'.
3003 Adjust all dependencies.
3004 (errs_new): For consistency, also take the values as argument.
3005 (errs_dup): Remove.
3006 (state_errs_set): New.
3007 (state_reductions_set, state_transitions_set): Assert that no
3008 previous value was assigned.
3009 (state_free): New.
3010 (states_free): Use it.
3011 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
3012 temporary storage: use `errs' and `nerrs' as elsewhere.
3013 (set_conflicts): Allocate and free this `errs'.
3014
3015 2002-07-02 Akim Demaille <akim@epita.fr>
3016
3017 * lib/libiberty.h: New.
3018 * lib: Update the bitset implementation from upstream.
3019 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
3020 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
3021 * src/main.c: Adjust bitset stats calls.
3022
3023 2002-07-01 Paul Eggert <eggert@twinsun.com>
3024
3025 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
3026 char, so that negative chars don't collide with $.
3027
3028 2002-06-30 Akim Demaille <akim@epita.fr>
3029
3030 Have the GLR tests be `warning' checked, and fix the warnings.
3031
3032 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
3033 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
3034 (yyremoveDeletes): `yyi' and `yyj' are size_t.
3035 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
3036 (yyaddDeferredAction): static.
3037 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
3038 (yyreportParseError): yyprefix is const.
3039 yytokenp is used only when verbose.
3040 (yy__GNUC__): Replace with __GNUC__.
3041 (yypdumpstack): yyi is size_t.
3042 (yypreference): Un-yy local variables and arguments, to avoid
3043 clashes with `yyr1'. Anyway, we are not in the user name space.
3044 (yytname_size): be an int, as is compared with ints.
3045 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
3046 Use them.
3047 * tests/cxx-gram.at: Use quotation to protect $1.
3048 Use AT_COMPILE to enable warnings hunts.
3049 Prototype yylex and yyerror.
3050 `Use' argc.
3051 Include `string.h', not `strings.h'.
3052 Produce and prototype stmtMerge only when used.
3053 yylex takes a location.
3054
3055 2002-06-30 Akim Demaille <akim@epita.fr>
3056
3057 We spend a lot of time in quotearg, in particular when --verbose.
3058
3059 * src/symtab.c (symbol_get): Store a quoted version of the key.
3060 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
3061 Adjust all callers.
3062
3063 2002-06-30 Akim Demaille <akim@epita.fr>
3064
3065 * src/state.h (reductions_t): Rename member `nreds' as num.
3066 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
3067 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
3068
3069 2002-06-30 Akim Demaille <akim@epita.fr>
3070
3071 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
3072 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
3073 (shifts_to): Rename as...
3074 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
3075 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
3076 (TRANSITION_IS_DISABLED, transitions_to): these.
3077
3078 2002-06-30 Akim Demaille <akim@epita.fr>
3079
3080 * src/print.c (print_shifts, print_gotos): Merge into...
3081 (print_transitions): this.
3082 (print_transitions, print_errs, print_reductions): Align the
3083 lookaheads columns.
3084 (print_core, print_transitions, print_errs, print_state,
3085 print_grammar): Output empty lines separator before, not after.
3086 (state_default_rule_compute): Rename as...
3087 (state_default_rule): this.
3088 * tests/conflicts.at (Defaulted Conflicted Reduction),
3089 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
3090 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
3091
3092 2002-06-30 Akim Demaille <akim@epita.fr>
3093
3094 Display items as we display rules.
3095
3096 * src/gram.h, src/gram.c (rule_lhs_print): New.
3097 * src/gram.c (grammar_rules_partial_print): Use it.
3098 * src/print.c (print_core): Likewise.
3099 * tests/conflicts.at (Defaulted Conflicted Reduction),
3100 (Unresolved SR Conflicts): Adjust.
3101 (Unresolved SR Conflicts): Adjust and rename as...
3102 (Resolved SR Conflicts): this, as was meant.
3103 * tests/regression.at (Web2c Report): Adjust.
3104
3105 2002-06-30 Akim Demaille <akim@epita.fr>
3106
3107 * src/print.c (state_default_rule_compute): New, extracted from...
3108 (print_reductions): here.
3109 Pessimize, but clarify the code.
3110 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
3111
3112 2002-06-30 Akim Demaille <akim@epita.fr>
3113
3114 * src/output.c (action_row): Let default_rule be always a rule
3115 number.
3116
3117 2002-06-30 Akim Demaille <akim@epita.fr>
3118
3119 * src/closure.c (print_firsts, print_fderives, closure):
3120 Use BITSET_EXECUTE.
3121 * src/lalr.c (lookaheads_print): Likewise.
3122 * src/state.c (state_rule_lookaheads_print): Likewise.
3123 * src/print_graph.c (print_core): Likewise.
3124 * src/print.c (print_reductions): Likewise.
3125 * src/output.c (action_row): Likewise.
3126 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
3127
3128 2002-06-30 Akim Demaille <akim@epita.fr>
3129
3130 * src/print_graph.c: Use report_flag.
3131
3132 2002-06-30 Akim Demaille <akim@epita.fr>
3133
3134 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
3135 to...
3136 * src/relation.h, src/relation.c (traverse, relation_digraph)
3137 (relation_print, relation_transpose): New.
3138
3139 2002-06-30 Akim Demaille <akim@epita.fr>
3140
3141 * src/state.h, src/state.c (shifts_to): New.
3142 * src/lalr.c (build_relations): Use it.
3143
3144 2002-06-30 Akim Demaille <akim@epita.fr>
3145
3146 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
3147 (item_number_of_rule_number, rule_number_of_item_number): New.
3148 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
3149 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
3150 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
3151 Propagate their use.
3152 Much remains to be done, in particular wrt `shorts' from types.h.
3153
3154 2002-06-30 Akim Demaille <akim@epita.fr>
3155
3156 * src/symtab.c (symbol_new): Initialize the `printer' member.
3157
3158 2002-06-30 Akim Demaille <akim@epita.fr>
3159
3160 * src/LR0.c (save_reductions): Remove, replaced by...
3161 * src/state.h, src/state.c (state_reductions_set): New.
3162 (reductions, errs): Rename as...
3163 (reductions_t, errs_t): these.
3164 Adjust all dependencies.
3165
3166 2002-06-30 Akim Demaille <akim@epita.fr>
3167
3168 * src/LR0.c (state_list_t, state_list_append): New.
3169 (first_state, last_state): Now symbol_list_t.
3170 (this_state): Remove.
3171 (new_itemsets, append_states, save_reductions): Take a state_t as
3172 argument.
3173 (set_states, generate_states): Adjust.
3174 (save_shifts): Remove, replaced by...
3175 * src/state.h, src/state.c (state_shifts_set): New.
3176 (shifts): Rename as...
3177 (shifts_t): this.
3178 Adjust all dependencies.
3179 * src/state.h (state_t): Remove the `next' member.
3180
3181 2002-06-30 Akim Demaille <akim@epita.fr>
3182
3183 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
3184 escaped in slot 0.
3185
3186 2002-06-30 Akim Demaille <akim@epita.fr>
3187
3188 Use hash.h for the state hash table.
3189
3190 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
3191 (allocate_storage): Use state_hash_new.
3192 (free_storage): Use state_hash_free.
3193 (new_state, get_state): Adjust.
3194 * src/lalr.h, src/lalr.c (states): Move to...
3195 * src/states.h (state_t): Remove the `link' member, no longer
3196 used.
3197 * src/states.h, src/states.c: here.
3198 (state_hash_new, state_hash_free, state_hash_lookup)
3199 (state_hash_insert, states_free): New.
3200 * src/states.c (state_table, state_compare, state_hash): New.
3201 * src/output.c (output_actions): Do not free states now, since we
3202 still need to know the final_state number in `prepare', called
3203 afterwards. Do it...
3204 * src/main.c (main): here: call states_free after `output'.
3205
3206 2002-06-30 Akim Demaille <akim@epita.fr>
3207
3208 * src/state.h, src/state.c (state_new): New, extracted from...
3209 * src/LR0.c (new_state): here.
3210 * src/state.h (STATE_ALLOC): Move to...
3211 * src/state.c: here.
3212 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
3213 * src/state.h, src/state.c: here.
3214
3215 2002-06-30 Akim Demaille <akim@epita.fr>
3216
3217 * src/reader.c (gensym): Rename as...
3218 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
3219 (getsym): Rename as...
3220 (symbol_get): this.
3221
3222 2002-06-30 Akim Demaille <akim@epita.fr>
3223
3224 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
3225 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
3226 * src/output.c, src/print.c, src/print_graph.c: Propagate.
3227 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
3228
3229 2002-06-30 Akim Demaille <akim@epita.fr>
3230
3231 Make the test suite pass with warnings checked.
3232
3233 * tests/actions.at (Printers and Destructors): Improve.
3234 Avoid unsigned vs. signed issues.
3235 * tests/calc.at: Don't exercise the scanner here, do it...
3236 * tests/input.at (Torturing the Scanner): here.
3237
3238 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3239
3240 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
3241 reorganize first lines parallel to yacc.c.
3242
3243 2002-06-28 Akim Demaille <akim@epita.fr>
3244
3245 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
3246 (b4_token_enum, b4_token_defines): New, factored from...
3247 * data/lalr1.cc, data/yacc.c, glr.c: here.
3248
3249 2002-06-28 Akim Demaille <akim@epita.fr>
3250
3251 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
3252 unused variables.
3253 * src/output.c (merger_output): static.
3254
3255 2002-06-28 Akim Demaille <akim@epita.fr>
3256
3257 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
3258 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
3259 pacify GCC.
3260 * src/output.c (save_row): Initialize all the variables to pacify GCC.
3261
3262 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3263
3264 Accumulated changelog for new GLR parsing features.
3265
3266 * src/conflicts.c (count_total_conflicts): Change name to
3267 conflicts_total_count.
3268 * src/conflicts.h: Ditto.
3269 * src/output.c (token_actions): Use the new name.
3270 (output_conflicts): Change conflp => conflict_list_heads, and
3271 confl => conflict_list for better readability.
3272 * data/glr.c: Use the new names.
3273 * NEWS: Add self to GLR announcement.
3274
3275 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
3276
3277 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
3278 Akim Demaille.
3279
3280 * data/bison.glr: Change name to glr.c
3281 * data/glr.c: Renamed from bison.glr.
3282 * data/Makefile.am: Add glr.c
3283
3284 * src/getargs.c:
3285
3286 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
3287 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
3288
3289 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3290
3291 * data/bison.glr: Be sure to restore the
3292 current #line when returning to the skeleton contents after having
3293 exposed the input file's #line.
3294
3295 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3296
3297 * data/bison.glr: Bring up to date with changes to bison.simple.
3298
3299 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3300
3301 * data/bison.glr: Correct definitions that use b4_prefix.
3302 Various reformatting.
3303 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
3304 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
3305 yytokenp argument; now part of stack.
3306 (yychar): Define to behave as documented.
3307 (yyclearin): Ditto.
3308
3309 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3310
3311 * src/reader.h: Add declaration for free_merger_functions.
3312
3313 * src/reader.c (merge_functions): New variable.
3314 (get_merge_function): New function.
3315 (free_merger_functions): New function.
3316 (readgram): Check for %prec that is not followed by a symbol.
3317 Handle %dprec and %merge declarations.
3318 (packgram): Initialize dprec and merger fields in rules array.
3319
3320 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
3321 conflict_list_cnt, conflict_list_free): New variables.
3322 (table_grow): Also grow conflict_table.
3323 (prepare_rules): Output dprec and merger tables.
3324 (conflict_row): New function.
3325 (action_row): Output conflict lists for GLR parser. Don't use
3326 default reduction in conflicted states for GLR parser so that there
3327 are spaces for the conflict lists.
3328 (save_row): Also save conflict information.
3329 (token_actions): Allocate conflict list.
3330 (merger_output): New function.
3331 (pack_vector): Pack conflict table, too.
3332 (output_conflicts): New function to output yyconflp and yyconfl.
3333 (output_check): Allocate conflict_tos.
3334 (output_actions): Output conflict tables, also.
3335 (output_skeleton): Output b4_mergers definition.
3336 (prepare): Output b4_max_rhs_length definition.
3337 Use 'bison.glr' as default skeleton for GLR parsers.
3338
3339 * src/gram.c (glr_parser): New flag.
3340 (grammar_free): Call free_merger_functions.
3341
3342 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
3343 all pairs of conflicting reductions, rather than just all tokens
3344 causing conflicts. Needed to size conflict tables.
3345 (conflicts_output): Modify call to count_rr_conflicts for new
3346 interface.
3347 (conflicts_print): Ditto.
3348 (count_total_conflicts): New function.
3349
3350 * src/reader.h (merger_list): New type.
3351 (merge_functions): New variable.
3352
3353 * src/lex.h (tok_dprec, tok_merge): New token types.
3354
3355 * src/gram.h (rule_s): Add dprec and merger fields.
3356 (glr_parser): New flag.
3357
3358 * src/conflicts.h (count_total_conflicts): New function.
3359
3360 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
3361
3362 * doc/bison.texinfo (Generalized LR Parsing): New section.
3363 (GLR Parsers): New section.
3364 (Language and Grammar): Mention GLR parsing.
3365 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
3366 Correct typo ("tge" -> "the").
3367
3368 * data/bison.glr: New skeleton for GLR parsing.
3369
3370 * tests/cxx-gram.at: New tests for GLR parsing.
3371
3372 * tests/testsuite.at: Include cxx-gram.at.
3373
3374 * tests/Makefile.am: Add cxx-gram.at.
3375
3376 * src/parse-gram.y:
3377
3378 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
3379
3380 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
3381
3382 2002-06-27 Akim Demaille <akim@epita.fr>
3383
3384 * src/options.h, src/options.c: Remove.
3385 * src/getargs.c (short_options, long_options): New.
3386
3387 2002-06-27 Akim Demaille <akim@epita.fr>
3388
3389 * data/bison.simple, data/bison.c++: Rename as...
3390 * data/yacc.c, data/lalr1.cc: these.
3391 * doc/bison.texinfo (Environment Variables): Remove.
3392
3393 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
3394
3395 * src/getargs.c (report_argmatch): Initialize strtok().
3396
3397 2002-06-20 Akim Demaille <akim@epita.fr>
3398
3399 * data/bison.simple (b4_symbol_actions): New, replaces...
3400 (b4_symbol_destructor, b4_symbol_printer): these.
3401 (yysymprint): Be sure to call YYPRINT only for tokens, and using
3402 user token numbers.
3403
3404 2002-06-20 Akim Demaille <akim@epita.fr>
3405
3406 * data/bison.simple (yydestructor): Rename as...
3407 (yydestruct): this.
3408
3409 2002-06-20 Akim Demaille <akim@epita.fr>
3410
3411 * src/symtab.h, src/symtab.c (symbol_type_set)
3412 (symbol_destructor_set, symbol_precedence_set): The location is
3413 the last argument.
3414 Adjust all callers.
3415
3416 2002-06-20 Akim Demaille <akim@epita.fr>
3417
3418 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
3419 internals.
3420 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
3421 Takes a location.
3422 * src/symtab.h, src/symtab.c (symbol_class_set)
3423 (symbol_user_token_number_set): Likewise.
3424 Adjust all callers.
3425 Promote complain_at.
3426 * tests/input.at (Type Clashes): Adjust.
3427
3428 2002-06-20 Akim Demaille <akim@epita.fr>
3429
3430 * data/bison.simple (YYLEX): Fix the declaration when
3431 %pure-parser.
3432
3433 2002-06-20 Akim Demaille <akim@epita.fr>
3434
3435 * data/bison.simple (yysymprint): Don't print the token number,
3436 just its name.
3437 * tests/actions.at (Destructors): Rename as...
3438 (Printers and Destructors): this.
3439 Also exercise %printer.
3440
3441 2002-06-20 Akim Demaille <akim@epita.fr>
3442
3443 * data/bison.simple (YYDSYMPRINT): New.
3444 Use it to remove many of the #if YYDEBUG/if (yydebug).
3445
3446 2002-06-20 Akim Demaille <akim@epita.fr>
3447
3448 * src/symtab.h, src/symtab.c (symbol_t): printer and
3449 printer_location are new members.
3450 (symbol_printer_set): New.
3451 * src/parse-gram.y (PERCENT_PRINTER): New token.
3452 Handle its associated rule.
3453 * src/scan-gram.l: Adjust.
3454 (handle_destructor_at, handle_destructor_dollar): Rename as...
3455 (handle_symbol_code_at, handle_symbol_code_dollar): these.
3456 * src/output.c (symbol_printers_output): New.
3457 (output_skeleton): Call it.
3458 * data/bison.simple (yysymprint): New. Cannot be named yyprint
3459 since there are already many grammar files with a user `yyprint'.
3460 Replace the calls to YYPRINT to calls to yysymprint.
3461 * tests/calc.at: Adjust.
3462 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
3463 taking advantage of parser very internal details (stack size!).
3464
3465 2002-06-20 Akim Demaille <akim@epita.fr>
3466
3467 * src/scan-gram.l: Complete the scanner with the missing patterns
3468 to pacify Flex.
3469 Use `quote' and `symbol_tag_get' where appropriate.
3470
3471 2002-06-19 Akim Demaille <akim@epita.fr>
3472
3473 * tests/actions.at (Destructors): Augment to test locations.
3474 * data/bison.simple (yydestructor): Pass it the current location
3475 if locations are enabled.
3476 Prototype only when __STDC__ or C++.
3477 Change the argument names to move into the yy name space: there is
3478 user code here.
3479
3480 2002-06-19 Akim Demaille <akim@epita.fr>
3481
3482 * data/bison.simple (b4_pure_if): New.
3483 Use it instead of #ifdef YYPURE.
3484
3485 2002-06-19 Akim Demaille <akim@epita.fr>
3486
3487 * data/bison.simple (b4_location_if): New.
3488 Use it instead of #ifdef YYLSP_NEEDED.
3489
3490 2002-06-19 Akim Demaille <akim@epita.fr>
3491
3492 Prepare @$ in %destructor, but currently don't bind it in the
3493 skeleton, as %location use is not cleaned up yet.
3494
3495 * src/scan-gram.l (handle_dollar, handle_destructor_at)
3496 (handle_action_at): New.
3497 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
3498 a braced_code_t and a location as additional arguments.
3499 (handle_destructor_dollar): Instead of requiring `b4_eval', just
3500 unquote one when outputting `b4_dollar_dollar'.
3501 Adjust callers.
3502 * data/bison.simple (b4_eval): Remove.
3503 (b4_symbol_destructor): Adjust.
3504 * tests/input.at (Invalid @n): Adjust.
3505
3506 2002-06-19 Zack Weinberg <zack@codesourcery.com>
3507
3508 * doc/bison.texinfo: Document ability to have multiple
3509 prologue sections.
3510
3511 2002-06-18 Akim Demaille <akim@epita.fr>
3512
3513 * src/files.c (compute_base_names): When computing the output file
3514 names from the input file name, strip the directory part.
3515
3516 2002-06-18 Akim Demaille <akim@epita.fr>
3517
3518 * data/bison.simple.new: Comment changes.
3519 Reported by Andreas Schwab.
3520
3521 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
3522
3523 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
3524 there are no `label `yyoverflowlab' defined but not used' warnings
3525 when yyoverflow is defined.
3526
3527 2002-06-18 Akim Demaille <akim@epita.fr>
3528
3529 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
3530 new member.
3531 (symbol_destructor_set): Adjust.
3532 * src/output.c (symbol_destructors_output): Output the destructor
3533 locations.
3534 Output the symbol name.
3535 * data/bison.simple (b4_symbol_destructor): Adjust.
3536
3537 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
3538 and Akim Demaille <akim@epita.fr>
3539
3540 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
3541 what's left on the stack when the error recovery hits EOF.
3542 * tests/actions.at (Destructors): Complete to exercise this case.
3543
3544 2002-06-17 Akim Demaille <akim@epita.fr>
3545
3546 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
3547 arguments is really empty, not only equal to `[]'.
3548 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
3549 member.
3550 (symbol_destructor_set): New.
3551 * src/output.c (symbol_destructors_output): New.
3552 * src/reader.h (brace_code_t, current_braced_code): New.
3553 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
3554 (handle_dollar): Rename as...
3555 (handle_action_dollar): this.
3556 (handle_destructor_dollar): New.
3557 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
3558 (grammar_declaration): Use it.
3559 * data/bison.simple (yystos): Is always defined.
3560 (yydestructor): New.
3561 * tests/actions.at (Destructors): New.
3562 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
3563
3564 2002-06-17 Akim Demaille <akim@epita.fr>
3565
3566 * src/symlist.h, src/symlist.c (symbol_list_length): New.
3567 * src/scan-gram.l (handle_dollar, handle_at): Compute the
3568 rule_length only when needed.
3569 * src/output.c (actions_output, token_definitions_output): Output
3570 the full M4 block.
3571 * src/symtab.c: Don't access directly to the symbol tag, use
3572 symbol_tag_get.
3573 * src/parse-gram.y: Use symbol_list_free.
3574
3575 2002-06-17 Akim Demaille <akim@epita.fr>
3576
3577 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
3578 (symbol_list_prepend, get_type_name): Move to...
3579 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
3580 (symbol_list_prepend, symbol_list_n_type_name_get): here.
3581 Adjust all callers.
3582 (symbol_list_free): New.
3583 * src/scan-gram.l (handle_dollar): Takes a location.
3584 * tests/input.at (Invalid $n): Adjust.
3585
3586 2002-06-17 Akim Demaille <akim@epita.fr>
3587
3588 * src/reader.h, src/reader.c (symbol_list_new): Export it.
3589 (symbol_list_prepend): New.
3590 * src/parse-gram.y (%union): `list' is a new member.
3591 (symbols.1): New, replaces...
3592 (terms_to_prec.1, nterms_to_type.1): these.
3593 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
3594 Take a location as additional argument.
3595 Adjust all callers.
3596
3597 2002-06-15 Akim Demaille <akim@epita.fr>
3598
3599 * src/parse-gram.y: Move %token in the declaration section so that
3600 we don't depend upon CVS Bison.
3601
3602 2002-06-15 Akim Demaille <akim@epita.fr>
3603
3604 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
3605 * src/print.c (print_core): Use it.
3606
3607 2002-06-15 Akim Demaille <akim@epita.fr>
3608
3609 * src/conflicts.c (log_resolution): Accept the rule involved in
3610 the sr conflicts instead of the lookahead number that points to
3611 that rule.
3612 (flush_reduce): Accept the current lookahead vector as argument,
3613 instead of the index in LA.
3614 (resolve_sr_conflict): Accept the current number of lookahead
3615 bitset to consider for the STATE, instead of the index in LA.
3616 (set_conflicts): Adjust.
3617 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
3618
3619 2002-06-15 Akim Demaille <akim@epita.fr>
3620
3621 * src/state.h (state_t): Replace the `lookaheadsp' member, a
3622 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
3623 Adjust all dependencies.
3624 * src/lalr.c (initialize_lookaheads): Split into...
3625 (states_lookaheads_count, states_lookaheads_initialize): these.
3626 (lalr): Adjust.
3627
3628 2002-06-15 Akim Demaille <akim@epita.fr>
3629
3630 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
3631 out of...
3632 (grammar_rules_print): here.
3633 * src/reduce.c (reduce_output): Use it.
3634 * tests/reduce.at (Useless Rules, Reduced Automaton)
3635 (Underivable Rules): Adjust.
3636
3637 2002-06-15 Akim Demaille <akim@epita.fr>
3638
3639 Copy BYacc's nice way to report the grammar.
3640
3641 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
3642 New.
3643 Don't print the rules' location, it is confusing and useless.
3644 (rule_print): Use grammar_rhs_print.
3645 * src/print.c (print_grammar): Use grammar_rules_print.
3646
3647 2002-06-15 Akim Demaille <akim@epita.fr>
3648
3649 Complete and rationalize `useless thing' warnings.
3650
3651 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
3652 (symbol_tag_print): New.
3653 Use them everywhere in place of accessing directly the tag member.
3654 * src/gram.h, src/gram.c (rule_print): New.
3655 Use it where a rule used to be printed `by hand'.
3656 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
3657 (reduce_grammar_tables): Report the useless rules.
3658 (reduce_print): Useless things are a warning, not an error.
3659 Report it as such.
3660 * tests/reduce.at (Useless Nonterminals, Useless Rules):
3661 (Reduced Automaton, Underivable Rules): Adjust.
3662 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
3663 * tests/conflicts.at (Unresolved SR Conflicts)
3664 (Solved SR Conflicts): Adjust.
3665
3666 2002-06-15 Akim Demaille <akim@epita.fr>
3667
3668 Let symbols have a location.
3669
3670 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
3671 (getsym): Adjust.
3672 Adjust all callers.
3673 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
3674 Use location_t, not int.
3675 * src/symtab.c (symbol_check_defined): Take advantage of the
3676 location.
3677 * tests/regression.at (Invalid inputs): Adjust.
3678
3679 2002-06-15 Akim Demaille <akim@epita.fr>
3680
3681 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
3682 (input): Don't try to initialize yylloc here, do it in the
3683 scanner.
3684 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
3685 * src/gram.h (rule_t): Change line and action_line into location
3686 and action_location, of location_t type.
3687 Adjust all dependencies.
3688 * src/location.h, src/location.c (empty_location): New.
3689 * src/reader.h, src/reader.c (grammar_start_symbol_set)
3690 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
3691 (grammar_current_rule_symbol_append)
3692 (grammar_current_rule_action_append): Expect a location as argument.
3693 * src/reader.c (grammar_midrule_action): Adjust to attach an
3694 action's location as dummy symbol location.
3695 * src/symtab.h, src/symtab.c (startsymbol_location): New.
3696 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
3697 the line numbers.
3698
3699 2002-06-14 Akim Demaille <akim@epita.fr>
3700
3701 Grammar declarations may be found in the grammar section.
3702
3703 * src/parse-gram.y (rules_or_grammar_declaration): New.
3704 (declarations): Each declaration may end with a semicolon, not
3705 just...
3706 (grammar_declaration): `"%union"'.
3707 (grammar): Branch to rules_or_grammar_declaration.
3708
3709 2002-06-14 Akim Demaille <akim@epita.fr>
3710
3711 * src/main.c (main): Invoke scanner_free.
3712
3713 2002-06-14 Akim Demaille <akim@epita.fr>
3714
3715 * src/output.c (m4_invoke): Extracted from...
3716 (output_skeleton): here.
3717 Free tempfile.
3718
3719 2002-06-14 Akim Demaille <akim@epita.fr>
3720
3721 * src/parse-gram.y (directives, directive, gram)
3722 (grammar_directives, precedence_directives, precedence_directive):
3723 Rename as...
3724 (declarations, declaration, grammar, grammar_declaration)
3725 (precedence_declaration, precedence_declarator): these.
3726 (symbol_declaration): New.
3727
3728 2002-06-14 Akim Demaille <akim@epita.fr>
3729
3730 * src/files.c (action_obstack): Remove, unused.
3731 (output_obstack): Remove it, and all its dependencies, as it is no
3732 longer needed.
3733 * src/reader.c (epilogue_set): Build the epilogue in the
3734 muscle_obstack.
3735 * src/output.h, src/output.c (muscle_obstack): Move to...
3736 * src/muscle_tab.h, src/muscle_tab.h: here.
3737 (muscle_init): Initialize muscle_obstack.
3738 (muscle_free): New.
3739 * src/main.c (main): Call it.
3740
3741 2002-06-14 Akim Demaille <akim@epita.fr>
3742
3743 * src/location.h: New, extracted from...
3744 * src/reader.h: here.
3745 * src/Makefile.am (noinst_HEADERS): Merge into
3746 (bison_SOURCES): this.
3747 Add location.h.
3748 * src/parse-gram.y: Use location_t instead of Bison's.
3749 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
3750 Use location_t instead of ints.
3751
3752 2002-06-14 Akim Demaille <akim@epita.fr>
3753
3754 * data/bison.simple, data/bison.c++: Be sure to restore the
3755 current #line when returning to the skeleton contents after having
3756 exposed the input file's #line.
3757
3758 2002-06-12 Akim Demaille <akim@epita.fr>
3759
3760 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
3761 eager.
3762 * tests/actions.at (Exotic Dollars): New.
3763
3764 2002-06-12 Akim Demaille <akim@epita.fr>
3765
3766 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
3767 ['"/] too eagerly.
3768 * tests/input.at (Torturing the Scanner): New.
3769
3770 2002-06-11 Akim Demaille <akim@epita.fr>
3771
3772 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
3773 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
3774 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
3775 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
3776 * src/reader.c (reader): Use it.
3777
3778 2002-06-11 Akim Demaille <akim@epita.fr>
3779
3780 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
3781 Adjust all callers.
3782 (scanner_last_string_free): New.
3783
3784 2002-06-11 Akim Demaille <akim@epita.fr>
3785
3786 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
3787 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
3788 (last_string, YY_OBS_FREE): New.
3789 Use them when returning an ID.
3790
3791 2002-06-11 Akim Demaille <akim@epita.fr>
3792
3793 Have Bison grammars parsed by a Bison grammar.
3794
3795 * src/reader.c, src/reader.h (prologue_augment): New.
3796 * src/reader.c (copy_definition): Remove.
3797
3798 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
3799 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
3800 (grammar_current_rule_prec_set, grammar_current_rule_check)
3801 (grammar_current_rule_symbol_append)
3802 (grammar_current_rule_action_append): Export.
3803 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
3804 (symbol_list_action_append): Remove.
3805 Hook the routines from reader.
3806 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
3807 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
3808
3809 * src/reader.c (read_declarations): Remove, unused.
3810
3811 * src/parse-gram.y: Handle the epilogue.
3812 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
3813 (grammar_start_symbol_set): this.
3814 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
3815 * src/reader.c (readgram): Remove, unused.
3816 (reader): Adjust to insert eoftoken and axiom where appropriate.
3817
3818 * src/reader.c (copy_dollar): Replace with...
3819 * src/scan-gram.h (handle_dollar): this.
3820 * src/parse-gram.y: Remove `%thong'.
3821
3822 * src/reader.c (copy_at): Replace with...
3823 * src/scan-gram.h (handle_at): this.
3824
3825 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
3826 New.
3827
3828 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
3829 time being.
3830
3831 * src/reader.h, src/reader.c (grammar_rule_end): New.
3832
3833 * src/parse.y (current_type, current_class): New.
3834 Implement `%nterm', `%token' support.
3835 Merge `%term' into `%token'.
3836 (string_as_id): New.
3837 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
3838 type name.
3839
3840 * src/parse-gram.y: Be sure to handle properly the beginning of
3841 rules.
3842
3843 * src/parse-gram.y: Handle %type.
3844 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
3845
3846 * src/parse-gram.y: More directives support.
3847 * src/options.c: No longer handle source directives.
3848
3849 * src/parse-gram.y: Fix %output.
3850
3851 * src/parse-gram.y: Handle %union.
3852 Use the prologue locations.
3853 * src/reader.c (parse_union_decl): Remove.
3854
3855 * src/reader.h, src/reader.c (epilogue_set): New.
3856 * src/parse-gram.y: Use it.
3857
3858 * data/bison.simple, data/bison.c++: b4_stype is now either not
3859 defined, then default to int, or to the contents of %union,
3860 without `union' itself.
3861 Adjust.
3862 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
3863
3864 * src/output.c (actions_output): Don't output braces, as they are
3865 already handled by the scanner.
3866
3867 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
3868 characters to themselves.
3869
3870 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
3871 that the epilogue has a proper #line.
3872
3873 * src/parse-gram.y: Handle precedence/associativity.
3874
3875 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
3876 a terminal.
3877 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
3878 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
3879 at all to define terminals that cannot be emitted.
3880
3881 * src/scan-gram.l: Escape M4 characters.
3882
3883 * src/scan-gram.l: Working properly with escapes in user
3884 strings/characters.
3885
3886 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
3887 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
3888 grammar.
3889 Use more modest sizes, as for the time being the parser does not
3890 release memory, and therefore the process swallows a huge amount
3891 of memory.
3892
3893 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
3894 stricter %token grammar.
3895
3896 * src/symtab.h (associativity): Add `undef_assoc'.
3897 (symbol_precedence_set): Do nothing when passed an undef_assoc.
3898 * src/symtab.c (symbol_check_alias_consistence): Adjust.
3899
3900 * tests/regression.at (Invalid %directive): Remove, as it is now
3901 meaningless.
3902 (Invalid inputs): Adjust to the new error messages.
3903 (Token definitions): The new grammar doesn't allow too many
3904 eccentricities.
3905
3906 * src/lex.h, src/lex.c: Remove.
3907 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
3908 (copy_character, copy_string2, copy_string, copy_identifier)
3909 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
3910 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
3911 (parse_action): Remove.
3912 * po/POTFILES.in: Adjust.
3913
3914 2002-06-11 Akim Demaille <akim@epita.fr>
3915
3916 * src/reader.c (parse_action): Don't store directly into the
3917 rule's action member: return the action as a string.
3918 Don't require `rule_length' as an argument: compute it.
3919 (grammar_current_rule_symbol_append)
3920 (grammar_current_rule_action_append): New, eved out from
3921 (readgram): here.
3922 Remove `action_flag', `rulelength', unused now.
3923
3924 2002-06-11 Akim Demaille <akim@epita.fr>
3925
3926 * src/reader.c (grammar_current_rule_prec_set).
3927 (grammar_current_rule_check): New, eved out from...
3928 (readgram): here.
3929 Remove `xaction', `first_rhs': useless.
3930 * tests/input.at (Type clashes): New.
3931 * tests/existing.at (GNU Cim Grammar): Adjust.
3932
3933 2002-06-11 Akim Demaille <akim@epita.fr>
3934
3935 * src/reader.c (grammar_midrule_action): New, Eved out from
3936 (readgram): here.
3937
3938 2002-06-11 Akim Demaille <akim@epita.fr>
3939
3940 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
3941 New.
3942 (readgram): Use them as replacement of inlined code, crule and
3943 crule1.
3944
3945 2002-06-11 Akim Demaille <akim@epita.fr>
3946
3947 * src/reader.c (grammar_end, grammar_symbol_append): New.
3948 (readgram): Use them.
3949 Make the use of `p' as local as possible.
3950
3951 2002-06-10 Akim Demaille <akim@epita.fr>
3952
3953 GCJ's parser requires the tokens to be defined before the prologue.
3954
3955 * data/bison.simple: Output the token definition before the user's
3956 prologue.
3957 * tests/regression.at (Braces parsing, Duplicate string)
3958 (Mixing %token styles): Check the output from bison.
3959 (Early token definitions): New.
3960
3961 2002-06-10 Akim Demaille <akim@epita.fr>
3962
3963 * src/symtab.c (symbol_user_token_number_set): Don't complain when
3964 assigning twice the same user number to a token, so that we can
3965 use it in...
3966 * src/lex.c (lex): here.
3967 Also use `symbol_class_set' instead of hand written code.
3968 * src/reader.c (parse_assoc_decl): Likewise.
3969
3970 2002-06-10 Akim Demaille <akim@epita.fr>
3971
3972 * src/symtab.c, src/symtab.c (symbol_class_set)
3973 (symbol_user_token_number_set): New.
3974 * src/reader.c (parse_token_decl): Use them.
3975 Use a switch instead of ifs.
3976 Use a single argument.
3977
3978 2002-06-10 Akim Demaille <akim@epita.fr>
3979
3980 Remove `%thong' support as it is undocumented, unused, duplicates
3981 `%token's job, and creates useless e-mail traffic with people who
3982 want to know what it is, why it is undocumented, unused, and
3983 duplicates `%token's job.
3984
3985 * src/reader.c (parse_thong_decl): Remove.
3986 * src/options.c (option_table): Remove "thong".
3987 * src/lex.h (tok_thong): Remove.
3988
3989 2002-06-10 Akim Demaille <akim@epita.fr>
3990
3991 * src/symtab.c, src/symtab.c (symbol_type_set)
3992 (symbol_precedence_set): New.
3993 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
3994 (value_components_used): Remove, unused.
3995
3996 2002-06-09 Akim Demaille <akim@epita.fr>
3997
3998 Move symbols handling code out of the reader.
3999
4000 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
4001 (axiom): Move to...
4002 * src/symtab.h, src/symtab.c: here.
4003
4004 * src/gram.c (start_symbol): Remove: use startsymbol->number.
4005 * src/reader.c (startval): Rename as...
4006 * src/symtab.h, src/symtab.c (startsymbol): this.
4007 * src/reader.c: Adjust.
4008
4009 * src/reader.c (symbol_check_defined, symbol_make_alias)
4010 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
4011 (token_translations_init)
4012 Move to...
4013 * src/symtab.c: here.
4014 * src/reader.c (packsymbols): Move to...
4015 * src/symtab.h, src/symtab.c (symbols_pack): here.
4016 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
4017 argument.
4018
4019 2002-06-03 Akim Demaille <akim@epita.fr>
4020
4021 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
4022 then statements.
4023
4024 2002-06-03 Akim Demaille <akim@epita.fr>
4025
4026 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
4027 structs with non literals.
4028 * src/scan-skel.l: never-interactive.
4029 * src/conflicts.c (enum conflict_resolution_e): No trailing
4030 comma.
4031 * src/getargs.c (usage): Split long literal strings.
4032 Reported by Hans Aberg.
4033
4034 2002-05-28 Akim Demaille <akim@epita.fr>
4035
4036 * data/bison.c++: Use C++ ostreams.
4037 (cdebug_): New member.
4038
4039 2002-05-28 Akim Demaille <akim@epita.fr>
4040
4041 * src/output.c (output_skeleton): Be sure to allocate enough room
4042 for `/' _and_ for `\0' in full_skeleton.
4043
4044 2002-05-28 Akim Demaille <akim@epita.fr>
4045
4046 * data/bison.c++: Catch up with bison.simple:
4047 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4048 and Paul Eggert <eggert@twinsun.com>: `error' handing.
4049 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
4050 and popping traces.
4051
4052 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4053
4054 * src/output.c (output_skeleton): Put an explicit path in front of
4055 the skeleton file name, rather than relying on the -I directory,
4056 to partially alleviate effects of having a skeleton file lying around
4057 in the current directory.
4058
4059 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4060
4061 * src/conflicts.c (log_resolution): Correct typo:
4062 obstack_printf should be obstack_fgrow1.
4063
4064 2002-05-26 Akim Demaille <akim@epita.fr>
4065
4066 * src/state.h (state_t): `solved_conflicts' is a new member.
4067 * src/LR0.c (new_state): Set it to 0.
4068 * src/conflicts.h, src/conflicts.c (print_conflicts)
4069 (free_conflicts, solve_conflicts): Rename as...
4070 (conflicts_print, conflicts_free, conflicts_solve): these.
4071 Adjust callers.
4072 * src/conflicts.c (enum conflict_resolution_e)
4073 (solved_conflicts_obstack): New, used by...
4074 (log_resolution): this.
4075 Adjust to attach the conflict resolution to each state.
4076 Complete the description with the precedence/associativity
4077 information.
4078 (resolve_sr_conflict): Adjust.
4079 * src/print.c (print_state): Output its solved_conflicts.
4080 * tests/conflicts.at (Unresolved SR Conflicts)
4081 (Solved SR Conflicts): Exercise --report=all.
4082
4083 2002-05-26 Akim Demaille <akim@epita.fr>
4084
4085 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
4086 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
4087 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
4088 (token_number_t, item_number_as_token_number)
4089 (token_number_as_item_number, muscle_insert_token_number_table):
4090 Rename as...
4091 (symbol_number_t, item_number_as_symbol_number)
4092 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
4093 these, since it is more appropriate.
4094
4095 2002-05-26 Akim Demaille <akim@epita.fr>
4096
4097 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
4098 `Error:' lines.
4099 * data/bison.simple (yystos) [YYDEBUG]: New.
4100 (yyparse) [YYDEBUG]: Display the symbols which are popped during
4101 error recovery.
4102 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
4103
4104 2002-05-25 Akim Demaille <akim@epita.fr>
4105
4106 * doc/bison.texinfo (Debugging): Split into...
4107 (Tracing): this new section, its former contents, and...
4108 (Understanding): this new section.
4109 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
4110 by...
4111 (report_flag): this.
4112 Adjust all dependencies.
4113 (report_args, report_types, report_argmatch): New.
4114 (usage, getargs): Report/support -r, --report.
4115 * src/options.h
4116 (struct option_table_struct): Rename as..,
4117 (struct option_table_s): this.
4118 Rename the `set_flag' member to `flag' to match with getopt_long's
4119 struct.
4120 * src/options.c (option_table): Split verbose into an entry for
4121 %verbose, and another for --verbose.
4122 Support --report/-r, so remove -r from the obsolete --raw.
4123 * src/print.c: Attach full item sets and lookaheads reports to
4124 report_flag instead of trace_flag.
4125 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
4126
4127 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4128 and Paul Eggert <eggert@twinsun.com>
4129
4130 * data/bison.simple (yyparse): Correct error handling to conform to
4131 POSIX and yacc. Specifically, after syntax error is discovered,
4132 do not reduce further before shifting the error token.
4133 Clean up the code a bit by removing the labels yyerrdefault,
4134 yyerrhandle, yyerrpop.
4135 * NEWS: Document the above.
4136
4137 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4138
4139 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
4140 type; it isn't always big enough, since it doesn't necessarily
4141 include non-terminals.
4142 (yytranslate): Expand definition of yy_token_number_type, so that
4143 the latter can be removed.
4144 (yy_token_number_type): Remove, only one use.
4145 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
4146 don't use TokenNumberType as element type.
4147
4148 * tests/regression.at: Modify expected output to agree with change
4149 to yyr1 and yytranslate.
4150
4151 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
4152
4153 * src/reader.c (parse_action): Use copy_character instead of
4154 obstack_1grow.
4155
4156 2002-05-13 Akim Demaille <akim@epita.fr>
4157
4158 * tests/regression.at (Token definitions): Prototype yylex and
4159 yyerror.
4160
4161 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
4162
4163 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
4164 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
4165 32-bit arithmetic.
4166 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
4167
4168 2002-05-07 Akim Demaille <akim@epita.fr>
4169
4170 * tests/synclines.at: Be sure to prototype yylex and yyerror to
4171 avoid GCC warnings.
4172
4173 2002-05-07 Akim Demaille <akim@epita.fr>
4174
4175 Kill GCC warnings.
4176
4177 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
4178 over the RHS of each rule.
4179 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
4180 * src/state.h (state_t): Member `nitems' is unsigned short.
4181 * src/LR0.c (get_state): Adjust.
4182 * src/reader.c (packgram): Likewise.
4183 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
4184 `Type'.
4185 (muscle_insert_int_table): Remove, unused.
4186 (prepare_rules): Remove `max'.
4187
4188 2002-05-06 Akim Demaille <akim@epita.fr>
4189
4190 * src/closure.c (print_firsts): Display of the symbol tags.
4191 (bitmatrix_print): Move to...
4192 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
4193 here.
4194 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
4195
4196 2002-05-06 Akim Demaille <akim@epita.fr>
4197
4198 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
4199 hash_do_for_each.
4200
4201 2002-05-06 Akim Demaille <akim@epita.fr>
4202
4203 * src/LR0.c (new_state, get_state): Instead of using the global
4204 `kernel_size' and `kernel_base', have two new arguments:
4205 `core_size' and `core'.
4206 Adjust callers.
4207
4208 2002-05-06 Akim Demaille <akim@epita.fr>
4209
4210 * src/reader.c (packgram): No longer end `ritem' with a 0
4211 sentinel: it is not used.
4212
4213 2002-05-05 Akim Demaille <akim@epita.fr>
4214
4215 New experimental feature: display the lookaheads in the report and
4216 graph.
4217
4218 * src/print (print_core): When --trace-flag, display the rules
4219 lookaheads.
4220 * src/print_graph.c (print_core): Likewise.
4221 Swap the arguments.
4222 Adjust caller.
4223
4224 2002-05-05 Akim Demaille <akim@epita.fr>
4225
4226 * tests/torture.at (Many lookaheads): New test.
4227
4228 2002-05-05 Akim Demaille <akim@epita.fr>
4229
4230 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
4231 (GENERATE_MUSCLE_INSERT_TABLE): this.
4232 (output_int_table, output_unsigned_int_table, output_short_table)
4233 (output_token_number_table, output_item_number_table): Replace with...
4234 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
4235 (muscle_insert_short_table, muscle_insert_token_number_table)
4236 (muscle_insert_item_number_table): these.
4237 Adjust all callers.
4238 (prepare_tokens): Don't free `translations', since...
4239 * src/reader.h, src/reader.c (grammar_free): do it.
4240 Move to...
4241 * src/gram.h, src/gram.c (grammar_free): here.
4242 * data/bison.simple, data/bison.c++: b4_token_number_max is now
4243 b4_translate_max.
4244
4245 2002-05-05 Akim Demaille <akim@epita.fr>
4246
4247 * src/output.c (output_unsigned_int_table): New.
4248 (prepare_rules): `i' is unsigned.
4249 `prhs', `rline', `r2' are unsigned int.
4250 Rename muscle `rhs_number_max' as `rhs_max'.
4251 Output muscles `prhs_max', `rline_max', and `r2_max'.
4252 Free rline and r1.
4253 * data/bison.simple, data/bison.c++: Adjust to use these muscles
4254 to compute types instead of constant types.
4255 * tests/regression.at (Web2c Actions): Adjust.
4256
4257 2002-05-04 Akim Demaille <akim@epita.fr>
4258
4259 * src/symtab.h (SALIAS, SUNDEF): Rename as...
4260 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
4261 Adjust dependencies.
4262 * src/output.c (token_definitions_output): Be sure not to output a
4263 `#define 'a'' when fed with `%token 'a' "a"'.
4264 * tests/regression.at (Token definitions): New.
4265
4266 2002-05-03 Paul Eggert <eggert@twinsun.com>
4267
4268 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
4269 for K&R C.
4270
4271 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
4272
4273 * Makefile.am (SUBDIRS): Remove intl.
4274 (EXTRA_DIST): Add config/config.rpath.
4275
4276 2002-05-03 Akim Demaille <akim@epita.fr>
4277
4278 * data/bison.simple (m4_if): Don't output empty enums.
4279 And actually, output valid enum definitions :(.
4280
4281 2002-05-03 Akim Demaille <akim@epita.fr>
4282
4283 * configure.bat: Remove, completely obsolete.
4284 * Makefile.am (EXTRA_DIST): Adjust.
4285 Don't distribute config.rpath...
4286 * config/Makefile.am (EXTRA_DIST): Do it.
4287
4288 2002-05-03 Akim Demaille <akim@epita.fr>
4289
4290 * configure.in (GETTEXT_VERSION): New.
4291 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
4292
4293 2002-05-03 Akim Demaille <akim@epita.fr>
4294
4295 * data/bison.simple (b4_token_enum): New.
4296 (b4_token_defines): Use it to output tokens both as #define and
4297 enums.
4298 Suggested by Paul Eggert.
4299 * src/output.c (token_definitions_output): Don't output spurious
4300 white spaces.
4301
4302 2002-05-03 Akim Demaille <akim@epita.fr>
4303
4304 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
4305
4306 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
4307
4308 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
4309 Update the stack class, give a try to deque as the default container.
4310
4311 2002-05-02 Akim Demaille <akim@epita.fr>
4312
4313 * data/bison.simple (yyparse): Do not implement @$ = @1.
4314 (YYLLOC_DEFAULT): Adjust to do it.
4315 * doc/bison.texinfo (Location Default Action): Fix.
4316
4317 2002-05-02 Akim Demaille <akim@epita.fr>
4318
4319 * src/reader.c (parse_braces): Merge into...
4320 (parse_action): this.
4321
4322 2002-05-02 Akim Demaille <akim@epita.fr>
4323
4324 * configure.in (ALL_LINGUAS): Remove.
4325 * po/LINGUAS, hr.po: New.
4326
4327 2002-05-02 Akim Demaille <akim@epita.fr>
4328
4329 Remove the so called hairy (semantic) parsers.
4330
4331 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
4332 * src/gram.h, src/gram.c (semantic_parser): Remove.
4333 (rule_t): Remove the guard and guard_line members.
4334 * src/lex.h (token_t): remove tok_guard.
4335 * src/options.c (option_table): Remove %guard and %semantic_parser
4336 support.
4337 * src/output.c, src/output.h (guards_output): Remove.
4338 (prepare): Adjust.
4339 (token_definitions_output): Don't output the `T'
4340 tokens (???).
4341 (output_skeleton): Don't output the guards.
4342 * src/files.c, src/files.c (attrsfile): Remove.
4343 * src/reader.c (symbol_list): Remove the guard and guard_line
4344 members.
4345 Adjust dependencies.
4346 (parse_guard): Remove.
4347 * data/bison.hairy: Remove.
4348 * doc/bison.texinfo (Environment Variables): Remove occurrences of
4349 BISON_HAIRY.
4350
4351 2002-05-02 Akim Demaille <akim@epita.fr>
4352
4353 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
4354 (parse_guard): Rename the formal argument `stack_offset' as
4355 `rule_length', which is more readable.
4356 Adjust callers.
4357 (copy_at, copy_dollar): Instead of outputting the hard coded
4358 values of $$, $n and so forth, output invocation to b4_lhs_value,
4359 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
4360 Note: this patch partially drops `semantic-parser' support: it
4361 always does `rule_length - n', where semantic parsers ought to
4362 always use `-n'.
4363 * data/bison.simple, data/bison.c++ (b4_lhs_value)
4364 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
4365
4366 2002-05-02 Akim Demaille <akim@epita.fr>
4367
4368 * configure.in (AC_INIT): Bump to 1.49b.
4369 (AM_INIT_AUTOMAKE): Short invocation.
4370
4371 2002-05-02 Akim Demaille <akim@epita.fr>
4372
4373 Version 1.49a.
4374
4375 2002-05-01 Akim Demaille <akim@epita.fr>
4376
4377 * src/skeleton.h: Remove.
4378
4379 2002-05-01 Akim Demaille <akim@epita.fr>
4380
4381 * src/skeleton.h: Fix the #endif.
4382 Reported by Magnus Fromreide.
4383
4384 2002-04-26 Paul Eggert <eggert@twinsun.com>
4385
4386 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
4387 Define if we define YYSTYPE and YYLTYPE, respectively.
4388 (YYCOPY): Fix [] quoting problem in the non-GCC case.
4389
4390 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
4391
4392 * src/scan-skel.l: Postprocess quadrigraphs.
4393
4394 * src/reader.c (copy_character): New function, used to output
4395 single characters while replacing `[' and `]' with quadrigraphs, to
4396 avoid troubles with M4 quotes.
4397 (copy_comment): Output characters with copy_character.
4398 (read_additionnal_code): Likewise.
4399 (copy_string2): Likewise.
4400 (copy_definition): Likewise.
4401
4402 * tests/calc.at: Exercise M4 quoting.
4403
4404 2002-04-25 Akim Demaille <akim@epita.fr>
4405
4406 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
4407 between `!' and the command.
4408 Reported by Paul Eggert.
4409
4410 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
4411
4412 * tests/calc.at: Exercise prologue splitting.
4413
4414 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
4415 `b4_post_prologue' instead of `b4_prologue'.
4416
4417 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
4418 muscles.
4419 (output): Free pre_prologue_obstack and post_prologue_obstack.
4420 * src/files.h, src/files.c (attrs_obstack): Remove.
4421 (pre_prologue_obstack, post_prologue_obstack): New.
4422 * src/reader.c (copy_definition): Add a parameter to specify the
4423 obstack to fill, instead of using attrs_obstack unconditionally.
4424 (read_declarations): Pass pre_prologue_obstack to copy_definition if
4425 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
4426
4427 2002-04-23 Paul Eggert <eggert@twinsun.com>
4428
4429 * data/bison.simple: Remove unnecessary commentary and white
4430 space differences from 1_29-branch.
4431 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
4432
4433 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
4434 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
4435 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
4436 constructors or destructors.
4437
4438 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
4439
4440 2002-04-23 Akim Demaille <akim@epita.fr>
4441
4442 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
4443 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
4444 location with columns.
4445 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
4446 All reported by Paul Eggert.
4447
4448 2002-04-22 Akim Demaille <akim@epita.fr>
4449
4450 * src/reduce.c (dump_grammar): Move to...
4451 * src/gram.h, src/gram.c (grammar_dump): here.
4452 Be sure to separate long item numbers.
4453 Don't read the members of a rule's prec if its nil.
4454
4455 2002-04-22 Akim Demaille <akim@epita.fr>
4456
4457 * src/output.c (table_size, table_grow): New.
4458 (MAXTABLE): Remove, replace uses with table_size.
4459 (pack_vector): Instead of dying when the table is too big, grow it.
4460
4461 2002-04-22 Akim Demaille <akim@epita.fr>
4462
4463 * data/bison.simple (yyr1): Its type is that of a token number.
4464 * data/bison.c++ (r1_): Likewise.
4465 * tests/regression.at (Web2c Actions): Adjust.
4466
4467 2002-04-22 Akim Demaille <akim@epita.fr>
4468
4469 * src/reader.c (token_translations_init): 256 is now the default
4470 value for the error token, i.e., it will be assigned another
4471 number if the user assigned 256 to one of her tokens.
4472 (reader): Don't force 256 to error.
4473 * doc/bison.texinfo (Symbols): Adjust.
4474 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
4475 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
4476 etc. instead of 10, 20, 30 (which was used to `jump' over error
4477 (256) and undefined (2)).
4478
4479 2002-04-22 Akim Demaille <akim@epita.fr>
4480
4481 Propagate more token_number_t.
4482
4483 * src/gram.h (token_number_as_item_number)
4484 (item_number_as_token_number): New.
4485 * src/output.c (GENERATE_OUTPUT_TABLE): New.
4486 Use it to create output_item_number_table and
4487 output_token_number_table.
4488 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
4489 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
4490 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
4491 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
4492
4493 2002-04-22 Akim Demaille <akim@epita.fr>
4494
4495 * src/output.h, src/output.c (get_lines_number): Remove.
4496
4497 2002-04-19 Akim Demaille <akim@epita.fr>
4498
4499 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
4500 as Lex/Flex'.
4501 (Debugging): More details about enabling the debugging features.
4502 (Table of Symbols): Describe $$, $n, @$, and @n.
4503 Suggested by Tim Josling.
4504
4505 2002-04-19 Akim Demaille <akim@epita.fr>
4506
4507 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
4508
4509 2002-04-10 Akim Demaille <akim@epita.fr>
4510
4511 * src/system.h: Rely on HAVE_LIMITS_H.
4512 Suggested by Paul Eggert.
4513
4514 2002-04-09 Akim Demaille <akim@epita.fr>
4515
4516 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
4517 full stderr, and strip it according to the bison options, instead
4518 of composing the error message from different bits.
4519 This makes it easier to check for several error messages.
4520 Adjust all the invocations.
4521 Add an invocation exercising the error token.
4522 Add an invocation demonstrating a stupid error message.
4523 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
4524 Adjust the tests.
4525 Error message are for stderr, not stdout.
4526
4527 2002-04-09 Akim Demaille <akim@epita.fr>
4528
4529 * src/gram.h, src/gram.c (error_token_number): Remove, use
4530 errtoken->number.
4531 * src/reader.c (reader): Don't specify the user token number (2)
4532 for $undefined, as it uselessly prevents using it.
4533 * src/gram.h (token_number_t): Move to...
4534 * src/symtab.h: here.
4535 (state_t.number): Is a token_number_t.
4536 * src/print.c, src/reader.c: Use undeftoken->number instead of
4537 hard coded 2.
4538 (Even though this 2 is not the same as above: the number of the
4539 undeftoken remains being 2, it is its user token number which
4540 might not be 2).
4541 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
4542 `user_token_number_max'.
4543 Output `undef_token_number'.
4544 * data/bison.simple, data/bison.c++: Use them.
4545 Be sure to map invalid yylex return values to
4546 `undef_token_number'. This saves us from gratuitous SEGV.
4547
4548 * tests/conflicts.at (Solved SR Conflicts)
4549 (Unresolved SR Conflicts): Adjust.
4550 * tests/regression.at (Web2c Actions): Adjust.
4551
4552 2002-04-08 Akim Demaille <akim@epita.fr>
4553
4554 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
4555 Adding #line.
4556 Remove the duplicate `typedefs'.
4557 (RhsNumberType): Fix the declaration and various other typos.
4558 Use __ofile__.
4559 * data/bison.simple: Use __ofile__.
4560 * src/scan-skel.l: Handle __ofile__.
4561
4562 2002-04-08 Akim Demaille <akim@epita.fr>
4563
4564 * src/gram.h (item_number_t): New, the type of item numbers in
4565 RITEM. Note that it must be able to code symbol numbers as
4566 positive number, and the negation of rule numbers as negative
4567 numbers.
4568 Adjust all dependencies (pretty many).
4569 * src/reduce.c (rule): Remove this `short *' pointer: use
4570 item_number_t.
4571 * src/system.h (MINSHORT, MAXSHORT): Remove.
4572 Include `limits.h'.
4573 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
4574 (shortcpy): Remove.
4575 (MAXTABLE): Move to...
4576 * src/output.c (MAXTABLE): here.
4577 (prepare_rules): Use output_int_table to output rhs.
4578 * data/bison.simple, data/bison.c++: Adjust.
4579 * tests/torture.at (Big triangle): Move the limit from 254 to
4580 500.
4581 * tests/regression.at (Web2c Actions): Ajust.
4582
4583 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
4584 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
4585 passes, but produces negative #line number, once fixed, GCC is
4586 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
4587 C), it passes.
4588 * src/state.h (state_h): Code input lines on ints, not shorts.
4589
4590 2002-04-08 Akim Demaille <akim@epita.fr>
4591
4592 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
4593 and then the grammar.
4594
4595 2002-04-08 Akim Demaille <akim@epita.fr>
4596
4597 * src/system.h: No longer using strndup.
4598
4599 2002-04-07 Akim Demaille <akim@epita.fr>
4600
4601 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
4602 * src/output.c (output_table_data): Return the longest number.
4603 (prepare_tokens): Output `token_number_max').
4604 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
4605 New.
4606 Use them to define yy_token_number_type/TokenNumberType.
4607 Use this type for yytranslate.
4608 * tests/torture.at (Big triangle): Push the limit from 124 to
4609 253.
4610 * tests/regression.at (Web2c Actions): Adjust.
4611
4612 2002-04-07 Akim Demaille <akim@epita.fr>
4613
4614 * tests/torture.at (Big triangle): New.
4615 (GNU AWK Grammar, GNU Cim Grammar): Move to...
4616 * tests/existing.at: here.
4617
4618 2002-04-07 Akim Demaille <akim@epita.fr>
4619
4620 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
4621 nritems.
4622 Adjust dependencies.
4623
4624 2002-04-07 Akim Demaille <akim@epita.fr>
4625
4626 * src/reader.c: Normalize increments to prefix form.
4627
4628 2002-04-07 Akim Demaille <akim@epita.fr>
4629
4630 * src/reader.c, symtab.c: Remove debugging code.
4631
4632 2002-04-07 Akim Demaille <akim@epita.fr>
4633
4634 Rename all the `bucket's as `symbol_t'.
4635
4636 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
4637 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
4638 * src/symtab.c, src/symtab.h (bucket): Rename as...
4639 (symbol_t): this.
4640 (symbol_list_new, bucket_check_defined, bucket_make_alias)
4641 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
4642 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
4643 (buckets_new, buckets_free, buckets_do): Rename as...
4644 (symbol_list_new, symbol_check_defined, symbol_make_alias)
4645 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
4646 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
4647 (symbols_new, symbols_free, symbols_do): these.
4648
4649 2002-04-07 Akim Demaille <akim@epita.fr>
4650
4651 Use lib/hash for the symbol table.
4652
4653 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
4654 EOF.
4655 * src/lex.c (lex): Set the `number' member of new terminals.
4656 * src/reader.c (bucket_check_defined, bucket_make_alias)
4657 (bucket_check_alias_consistence, bucket_translation): New.
4658 (reader, grammar_free, readgram, token_translations_init)
4659 (packsymbols): Adjust.
4660 (reader): Number the predefined tokens.
4661 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
4662 for predefined tokens.
4663 * src/symtab.h (bucket): Remove all the hash table related
4664 members.
4665 * src/symtab.c (symtab): Replace by...
4666 (bucket_table): this.
4667 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
4668 (buckets_new, buckets_do): New.
4669
4670 2002-04-07 Akim Demaille <akim@epita.fr>
4671
4672 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
4673 (start_symbol, max_user_token_number, semantic_parser)
4674 (error_token_number): Initialize.
4675 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
4676 Initialize.
4677 (reader): Don't.
4678 (errtoken, eoftoken, undeftoken, axiom): Extern.
4679
4680 2002-04-07 Akim Demaille <akim@epita.fr>
4681
4682 * src/gram.h (rule_s): prec and precsym are now pointers
4683 to the bucket giving the priority/associativity.
4684 Member `associativity' removed: useless.
4685 * src/reduce.c, src/conflicts.c: Adjust.
4686
4687 2002-04-07 Akim Demaille <akim@epita.fr>
4688
4689 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
4690 Properly escape the symbols' TAG when outputting them.
4691
4692 2002-04-07 Akim Demaille <akim@epita.fr>
4693
4694 * src/lalr.h (LA): Is a bitsetv, not bitset*.
4695
4696 2002-04-07 Akim Demaille <akim@epita.fr>
4697
4698 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
4699 (LArule): this, which is an array to rule_t*.
4700 * src/print.c, src/conflicts.c: Adjust.
4701
4702 2002-04-07 Akim Demaille <akim@epita.fr>
4703
4704 * src/gram.h (rule_t): Rename `number' as `user_number'.
4705 `number' is a new member.
4706 Adjust dependencies.
4707 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
4708
4709 2002-04-07 Akim Demaille <akim@epita.fr>
4710
4711 As a result of the previous patch, it is no longer needed
4712 to reorder ritem itself.
4713
4714 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
4715
4716 2002-04-07 Akim Demaille <akim@epita.fr>
4717
4718 Be sure never to walk through RITEMS, but use only data related to
4719 the rules themselves. RITEMS should be banished.
4720
4721 * src/output.c (output_token_translations): Rename as...
4722 (prepare_tokens): this.
4723 In addition to `translate', prepare the muscles `tname' and
4724 `toknum', which were handled by...
4725 (output_rule_data): this.
4726 Remove, and move the remainder of its outputs into...
4727 (prepare_rules): this new routines, which also merges content from
4728 (output_gram): this.
4729 (prepare_rules): Be sure never to walk through RITEMS.
4730 (output_stos): Rename as...
4731 (prepare_stos): this.
4732 (output): Always invoke prepare_states, after all, just don't use it
4733 in the output if you don't need it.
4734
4735 2002-04-07 Akim Demaille <akim@epita.fr>
4736
4737 * src/LR0.c (new_state): Display `nstates' as the name of the
4738 newly created state.
4739 Adjust to initialize first_state and last_state if needed.
4740 Be sure to distinguish the initial from the final state.
4741 (new_states): Create the itemset of the initial state, and use
4742 new_state.
4743 * src/closure.c (closure): Now that the initial state has its
4744 items properly set, there is no need for a special case when
4745 creating `ruleset'.
4746
4747 As a result, now the rule 0, reducing to $axiom, is visible in the
4748 outputs. Adjust the test suite.
4749
4750 * tests/conflicts.at (Solved SR Conflicts)
4751 (Unresolved SR Conflicts): Adjust.
4752 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
4753 * tests/conflicts.at (S/R in initial): New.
4754
4755 2002-04-07 Akim Demaille <akim@epita.fr>
4756
4757 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
4758 the RHS of the rules.
4759 * src/output.c (output_gram): Likewise.
4760
4761 2002-04-07 Akim Demaille <akim@epita.fr>
4762
4763 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
4764 bucket.
4765 Adjust all dependencies.
4766 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
4767 `number' of the buckets too.
4768 * src/gram.h: Include `symtab.h'.
4769 (associativity): Move to...
4770 * src/symtab.h: here.
4771 No longer include `gram.h'.
4772
4773 2002-04-07 Akim Demaille <akim@epita.fr>
4774
4775 * src/gram.h, src/gram.c (rules_rhs_length): New.
4776 (ritem_longest_rhs): Use it.
4777 * src/gram.h (rule_t): `number' is a new member.
4778 * src/reader.c (packgram): Set it.
4779 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
4780 the end of `rules', and count them out of `nrules'.
4781 (reduce_output, dump_grammar): Adjust.
4782 * src/print.c (print_grammar): It is no longer needed to check for
4783 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
4784 * tests/reduce.at (Reduced Automaton): New test.
4785
4786 2002-04-07 Akim Demaille <akim@epita.fr>
4787
4788 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
4789 lacking `+ 1' to nrules, Bison reported as useless a token if it
4790 was used solely to set the precedence of the last rule...
4791
4792 2002-04-07 Akim Demaille <akim@epita.fr>
4793
4794 * data/bison.c++, data/bison.simple: Don't output the current file
4795 name in #line, to avoid useless diffs between two identical
4796 outputs under different names.
4797
4798 2002-04-07 Akim Demaille <akim@epita.fr>
4799
4800 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
4801 Normalize loops to using `< nrules + 1', not `<= nrules'.
4802
4803 2002-04-07 Akim Demaille <akim@epita.fr>
4804
4805 * TODO: Update.
4806
4807 2002-04-07 Akim Demaille <akim@epita.fr>
4808
4809 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
4810 bucket.value as bucket.number.
4811
4812 2002-04-07 Akim Demaille <akim@epita.fr>
4813
4814 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
4815 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
4816 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
4817 RHS, instead of being an index in RITEMS.
4818
4819 2002-04-04 Paul Eggert <eggert@twinsun.com>
4820
4821 * doc/bison.texinfo: Update copyright date.
4822 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
4823 (Symbols): Warn about running Bison in one character set,
4824 but compiling and/or running in an incompatible one.
4825 Warn about character code 256, too.
4826
4827 2002-04-03 Paul Eggert <eggert@twinsun.com>
4828
4829 * src/bison.data (YYSTACK_ALLOC): Depend on whether
4830 YYERROR_VERBOSE is nonzero, not whether it is defined.
4831
4832 Merge changes from bison-1_29-branch.
4833
4834 2002-03-20 Paul Eggert <eggert@twinsun.com>
4835
4836 Merge fixes from Debian bison_1.34-1.diff.
4837
4838 * configure.in (AC_PREREQ): 2.53.
4839
4840 2002-03-20 Akim Demaille <akim@epita.fr>
4841
4842 * src/conflicts.c (log_resolution): Argument `resolution' is const.
4843
4844 2002-03-19 Paul Eggert <eggert@twinsun.com>
4845
4846 * src/bison.simple (YYCOPY): New macro.
4847 (YYSTACK_RELOCATE): Use it.
4848 Remove Type arg; no longer needed. All callers changed.
4849 (yymemcpy): Remove; no longer needed.
4850
4851 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
4852 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
4853
4854 2002-03-19 Akim Demaille <akim@epita.fr>
4855
4856 Test and fix the #line outputs.
4857
4858 * tests/atlocal.at (GCC): New.
4859 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
4860 (Prologue synch line, ,%union synch line, Postprologue synch line)
4861 (Action synch line, Epilogue synch line): New tests.
4862 * src/reader.c (parse_union_decl): Define the muscle stype_line.
4863 * data/bison.simple, data/bison.c++: Use it.
4864
4865 2002-03-19 Akim Demaille <akim@epita.fr>
4866
4867 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
4868 (Solved SR Conflicts, %expect not enough, %expect right)
4869 (%expect too much): Move to...
4870 * tests/conflicts.at: this new file.
4871
4872 2002-03-19 Akim Demaille <akim@epita.fr>
4873
4874 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
4875 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
4876 that we can move to enums for instance.
4877 * src/output.c (token_definitions_output): Output a list of
4878 `token-name, token-number' instead of the #define.
4879 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
4880
4881 2002-03-14 Akim Demaille <akim@epita.fr>
4882
4883 Use Gettext 0.11.1.
4884
4885 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
4886
4887 * data/bison.c++: Make the user able to add members to the generated
4888 parser by subclassing.
4889
4890 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
4891
4892 * src/reader.c (read_additionnal_code): `c' should be an integer, not
4893 a character.
4894 Reported by Nicolas Tisserand and Nicolas Burrus.
4895
4896 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
4897
4898 * src/reader.c: Warn about lacking semi-colons, do not complain.
4899
4900 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
4901
4902 * data/bison.c++: Remove a debug line.
4903
4904 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
4905
4906 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
4907 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
4908 provide a default implementation.
4909
4910 2002-03-04 Akim Demaille <akim@epita.fr>
4911
4912 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
4913 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
4914 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
4915 * tests/semantic.at (Parsing Guards): Similarly.
4916 * src/reader.at (readgram): Complain if the last rule is not ended
4917 with a semi-colon.
4918
4919 2002-03-04 Akim Demaille <akim@epita.fr>
4920
4921 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
4922 * src/closure.c: here.
4923 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
4924 RTC.
4925 * src/warshall.h, src/warshall.c: Remove.
4926 * tests/sets.at (Broken Closure): Adjust.
4927
4928 2002-03-04 Akim Demaille <akim@epita.fr>
4929
4930 * src/output.c (output_skeleton): tempdir is const.
4931 bytes_read is unused.
4932
4933 2002-03-04 Akim Demaille <akim@epita.fr>
4934
4935 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
4936 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
4937 Update.
4938 From Michael Hayes.
4939
4940 2002-03-04 Akim Demaille <akim@epita.fr>
4941
4942 * src/closure.c (closure): `r' is unused.
4943
4944 2002-03-04 Akim Demaille <akim@epita.fr>
4945
4946 * tests/sets.at (Broken Closure): Add the ending `;'.
4947 * src/reader.at (readgram): Complain if a rule is not ended with a
4948 semi-colon.
4949
4950 2002-03-04 Akim Demaille <akim@epita.fr>
4951
4952 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
4953 (count_sr_conflicts): Use bitset_count.
4954 * src/reduce.c (inaccessable_symbols): Ditto.
4955 (bits_size): Remove.
4956 * src/warshall.h, src/warshall.c: Convert to bitsetv.
4957
4958 2002-03-04 Akim Demaille <akim@epita.fr>
4959
4960 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
4961 * src/reduce.c: Remove the `bitset_zero's following the
4962 `bitset_create's, as now it is performed by the latter.
4963
4964 2002-03-04 Akim Demaille <akim@epita.fr>
4965
4966 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
4967 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
4968 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
4969 latest sources from Michael.
4970
4971 2002-03-04 Akim Demaille <akim@epita.fr>
4972
4973 * src/output.c (output): Don't free the grammar.
4974 * src/reader.c (grammar_free): New.
4975 * src/main.c (main): Call it and don't free symtab here.
4976
4977 2002-03-04 Akim Demaille <akim@epita.fr>
4978
4979 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
4980 before returning.
4981 Reported by Benoit Perrot.
4982
4983 2002-03-04 Akim Demaille <akim@epita.fr>
4984
4985 Use bitset operations when possible, not loops over bits.
4986
4987 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
4988 bitset_or.
4989 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
4990 * src/reduce.c (useless_nonterminals): Formatting changes.
4991 * src/warshall.c (TC): Use bitset_or.
4992
4993 2002-03-04 Akim Demaille <akim@epita.fr>
4994
4995 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
4996 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
4997 Ditto.
4998
4999 2002-03-04 Akim Demaille <akim@epita.fr>
5000
5001 * src/lalr.c (F): Now a bitset*.
5002 Adjust all dependencies.
5003
5004 2002-03-04 Akim Demaille <akim@epita.fr>
5005
5006 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
5007 Adjust all dependencies.
5008
5009 2002-03-04 Akim Demaille <akim@epita.fr>
5010
5011 * src/L0.c, src/LR0.h (nstates): Be size_t.
5012 Adjust comparisons (signed vs unsigned).
5013 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
5014 bitset*.
5015 Adjust all dependencies.
5016
5017 2002-03-04 Akim Demaille <akim@epita.fr>
5018
5019 * src/closure.c (firsts): Now, also a bitset.
5020 Adjust all dependencies.
5021 (varsetsize): Remove, now unused.
5022 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
5023
5024 2002-03-04 Akim Demaille <akim@epita.fr>
5025
5026 * src/print.c: Convert to use bitset.h, not hand coded iterations
5027 over ints.
5028
5029 2002-03-04 Akim Demaille <akim@epita.fr>
5030
5031 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
5032
5033 2002-03-04 Akim Demaille <akim@epita.fr>
5034
5035 * src/closure.c (ruleset): Be a bitset.
5036 (rulesetsize): Remove.
5037
5038 2002-03-04 Akim Demaille <akim@epita.fr>
5039
5040 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
5041 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
5042 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
5043 * src/closure.c (fderives): Be an array of bitsets.
5044
5045 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
5046
5047 * data/bison.c++: Merge the two generated headers. Insert a copyright
5048 notice in each output file.
5049
5050 2002-02-28 Akim Demaille <akim@epita.fr>
5051
5052 * data/bison.c++: Copy the prologue of bison.simple to fetch
5053 useful M4 definitions, such as b4_header_guard.
5054
5055 2002-02-25 Akim Demaille <akim@epita.fr>
5056
5057 * src/getargs.c (version): Give the name of the authors, and use a
5058 translator friendly scheme for the bgr
5059 copyright notice.
5060
5061 2002-02-25 Akim Demaille <akim@epita.fr>
5062
5063 * src/output.c (header_output): Remove, now handled completely via
5064 M4.
5065
5066 2002-02-25 Akim Demaille <akim@epita.fr>
5067
5068 * m4/m4.m4: New, from CVS Autoconf.
5069 * configure.in: Invoke it.
5070 * src/output.c (output_skeleton): Use its result instead of the
5071 hard coded name.
5072
5073 2002-02-25 Akim Demaille <akim@epita.fr>
5074
5075 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
5076 Fileutils 4.1.5.
5077 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
5078 * src/output.c (output_skeleton): Use mkstemp to create a real
5079 temporary file.
5080 Move the filling of `skeleton' and its muscle to...
5081 (prepare): here.
5082 (output): Move the definition of the prologue muscle to...
5083 (prepare): here.
5084 * src/system.h (DEFAULT_TMPDIR): New.
5085
5086 2002-02-14 Paul Eggert <eggert@twinsun.com>
5087
5088 Remove the support for C++ namespace cleanliness; it was
5089 causing more problems than it was curing, since it didn't work
5090 properly on some nonstandard C++ compilers. This can wait
5091 for a proper C++ parser.
5092
5093 * NEWS: Document this.
5094 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
5095 of C++, as it's treated like C now.
5096 * src/bison.simple (YYSTD): Remove.
5097 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
5098 Treat C++ just like Standard C instead of trying to support
5099 namespace cleanliness.
5100
5101 2002-02-14 Akim Demaille <akim@epita.fr>
5102
5103 * tests/regression.at (else): Adjust to Andreas' change.
5104
5105 2002-02-14 Akim Demaille <akim@epita.fr>
5106
5107 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
5108
5109 2002-02-13 Andreas Schwab <schwab@suse.de>
5110
5111 * src/output.c (output_rule_data): Don't output NULL, it might
5112 not be defined yet.
5113
5114 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
5115
5116 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
5117 (Copyright notice): Update.
5118
5119 2002-02-11 Akim Demaille <akim@epita.fr>
5120
5121 * tests/regression.at (%nonassoc and eof): Don't include
5122 nonportable headers.
5123
5124 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
5125
5126 * data/bison.c++: Correct error recovery. Make the user able to
5127 initialize the starting location.
5128
5129 2002-02-07 Akim Demaille <akim@epita.fr>
5130
5131 * tests/input.at: New.
5132
5133 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
5134
5135 * data/bison.c++: Replace some direct m4 expansions by constants. Be
5136 more consistent when naming methods and variables. Put preprocessor
5137 directives around tables only needed for debugging.
5138
5139 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
5140
5141 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
5142 C++ parsers.
5143 (yy::b4_name::parse): Use print_.
5144
5145 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
5146
5147 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
5148
5149 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
5150
5151 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
5152 C++ parsers.
5153 (yy::b4_name::parse): Build verbose error messages, and use error_.
5154
5155 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
5156
5157 * data/bison.c++: Fix m4 quoting in comments.
5158
5159 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
5160
5161 * data/bison.c++: Adjust the parser code. Fix some muscles that were
5162 not expanded by m4.
5163
5164 2002-02-05 Akim Demaille <akim@epita.fr>
5165
5166 * data/bison.c++: Adjust to the M4 back end.
5167 More is certainly needed.
5168
5169 2002-02-05 Akim Demaille <akim@epita.fr>
5170
5171 Give a try to M4 as a back end.
5172
5173 * lib/readpipe.c: New, from wdiff.
5174 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
5175 BISON_HAIRY.
5176 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
5177 specific values. Now it is m4 that performs the lookup.
5178 * src/parse-skel.y: Remove.
5179 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
5180 * src/output.c (actions_output, guards_output)
5181 (token_definitions_output): No longer keeps track of the output
5182 line number, hence remove the second argument.
5183 (guards_output): Check against the guard member of a rule, not the
5184 action member.
5185 Adjust callers.
5186 (output_skeleton): Don't look for the skeleton location, let m4 do
5187 that.
5188 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
5189 file will be used.
5190 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
5191 (prepare): Given that for the time being changesyntax is not
5192 usable in M4, rename the muscles using `-' to `_'.
5193 Define `defines_flag', `output_parser_name' and `output_header_name'.
5194 * src/output.h (actions_output, guards_output)
5195 (token_definitions_output): Adjust prototypes.
5196 * src/scan-skel.l: Instead of scanning the skeletons, it now
5197 processes the output of m4: `__oline__' and `#output'.
5198 * data/bison.simple: Adjust to be used by M4(sugar).
5199 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
5200 to date.
5201 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
5202 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
5203 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
5204 shamelessly stolen from CVS Autoconf.
5205
5206 2002-02-05 Akim Demaille <akim@epita.fr>
5207
5208 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
5209 * configure.in: Check for the declarations of free and malloc.
5210 * src/muscle_tab.c: Adjust.
5211
5212 2002-02-05 Akim Demaille <akim@epita.fr>
5213
5214 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
5215 which have no values.
5216
5217 2002-02-05 Akim Demaille <akim@epita.fr>
5218
5219 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
5220 * data/: here.
5221
5222 2002-01-29 Paul Eggert <eggert@twinsun.com>
5223
5224 * src/bison.simple (YYSIZE_T): Do not define merely because
5225 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
5226 On some platforms, <alloca.h> does not declare YYSTD (size_t).
5227
5228 2002-01-27 Akim Demaille <akim@epita.fr>
5229
5230 Fix `%nonassoc and eof'.
5231
5232 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
5233 which were not properly copied! Replace
5234 memcpy (res->errs, src->errs, src->nerrs);
5235 with
5236 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
5237 !!!
5238 * tests/regression.at (%nonassoc and eof): Adjust to newest
5239 Autotest: `.' is not in the PATH.
5240
5241 2002-01-27 Akim Demaille <akim@epita.fr>
5242
5243 * tests/sets.at (AT_EXTRACT_SETS): New.
5244 (Nullable): Use it.
5245 (Firsts): New.
5246
5247 2002-01-26 Akim Demaille <akim@epita.fr>
5248
5249 * tests/actions.at, tests/calc.at, tests/headers.at,
5250 * tests/torture.at: Adjust to the newest Autotest which no longer
5251 forces `.' in the PATH.
5252
5253 2002-01-25 Akim Demaille <akim@epita.fr>
5254
5255 * tests/regression.at (%nonassoc and eof): New.
5256 Suggested by Robert Anisko.
5257
5258 2002-01-24 Akim Demaille <akim@epita.fr>
5259
5260 Bison dumps core when trying to complain about broken input files.
5261 Reported by Cris van Pelt.
5262
5263 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
5264 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
5265 into...
5266 (Invalid inputs): Strengthen: exercise parse_percent_token.
5267
5268 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
5269
5270 * src/Makefile.am: Add bison.c++.
5271 * src/bison.c++: New skeleton.
5272
5273 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
5274
5275 * po/it.po: New.
5276
5277 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
5278
5279 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
5280
5281 2002-01-20 Marc Autret <marc@gnu.org>
5282
5283 * src/files.c (compute_output_file_names): Fix
5284
5285 2002-01-20 Marc Autret <marc@gnu.org>
5286
5287 * tests/output.at: New test.
5288 * src/files.c (compute_base_names): Don't map extensions when
5289 the YACC flag is set, use defaults.
5290 Reported by Evgeny Stambulchik.
5291
5292 2002-01-20 Marc Autret <marc@gnu.org>
5293
5294 * src/system.h: Need to define __attribute__ away for non-GCC
5295 compilers as well (i.e. the vendor C compiler).
5296 Suggested by Albert Chin-A-Young.
5297
5298 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
5299
5300 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
5301 canonical definition.
5302 * src/system.h: Use the canonical definition for PARAMS (avoids
5303 a conflict with the macro from lib/hash.h).
5304
5305 2002-01-11 Akim Demaille <akim@epita.fr>
5306
5307 * configure.in: Use AC_FUNC_STRNLEN.
5308 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
5309
5310 2002-01-09 Akim Demaille <akim@epita.fr>
5311
5312 * src/files.c, src/files.h (output_infix): New.
5313 (tab_extension): Remove.
5314 (compute_base_names): Compute the former, drop the latter.
5315 * src/output.c (prepare): Insert the muscles `output-infix', and
5316 `output-suffix'.
5317 * src/parse-skel.y (string, string.1): New.
5318 (section.header): Use it.
5319 (section.yacc): Remove.
5320 (prefix): Remove too.
5321 * src/scan-skel.l: Adjust.
5322 * src/bison.simple, src/bison.hairy: Adjust.
5323
5324 2002-01-09 Akim Demaille <akim@epita.fr>
5325
5326 * configure.in (WERROR_CFLAGS): Compute it.
5327 * src/Makefile.am (CFLAGS): Pass it.
5328 * tests/atlocal.in (CFLAGS): Idem.
5329 * src/files.c: Fix a few warnings.
5330 (get_extension_index): Remove, unused.
5331
5332 2002-01-08 Akim Demaille <akim@epita.fr>
5333
5334 * src/getargs.c (AS_FILE_NAME): New.
5335 (getargs): Use it to convert DOSish file names.
5336 * src/files.c (base_name): Rename as full_base_name to avoid
5337 clashes with `base_name ()'.
5338 (filename_split): New.
5339 (compute_base_names): N-th rewrite, using filename_split.
5340
5341 2002-01-08 Akim Demaille <akim@epita.fr>
5342
5343 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
5344 New, stolen from the Fileutils 4.1.
5345 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
5346 * configure.in: Check for the presence of memrchr, and of its
5347 prototype.
5348
5349 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
5350
5351 * lib/hash.h (__P): Added definition for this macro.
5352 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
5353 BUILT_SOURCES, to ensure they are generated first.
5354 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
5355 %error-verbose to allow bootstrapping with bison 1.30x.
5356
5357 2002-01-06 Akim Demaille <akim@epita.fr>
5358
5359 * src/reader.c (parse_braces): Don't fetch the next char, the
5360 convention is to fetch on entry.
5361 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
5362 'switch' without a following semicolon.
5363 * tests/regression.at (braces parsing): New.
5364
5365 2002-01-06 Akim Demaille <akim@epita.fr>
5366
5367 Bison is dead wrong in its RR conflict reports.
5368
5369 * tests/torture.at (GNU Cim Grammar): New.
5370 * src/conflicts.c (count_rr_conflicts): Fix.
5371
5372 2002-01-06 Akim Demaille <akim@epita.fr>
5373
5374 Creating package.m4 from configure.ac causes too many problems.
5375
5376 * tests/Makefile.am (package.m4): Create it by hand,
5377 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
5378
5379 2002-01-06 Akim Demaille <akim@epita.fr>
5380
5381 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
5382 skeleton.h.
5383
5384 2002-01-04 Paul Eggert <eggert@twinsun.com>
5385
5386 * doc/bison.texinfo (Debugging):
5387 Remove YYSTDERR; it's no longer defined or used.
5388 Also, s/cstdio.h/cstdio/.
5389
5390 2002-01-03 Akim Demaille <akim@epita.fr>
5391
5392 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
5393
5394 2002-01-03 Akim Demaille <akim@epita.fr>
5395
5396 * src/parse-skel.y (process_skeleton): Don't bind the parser's
5397 tracing code to --trace, wait for a better --trace option, with
5398 args.
5399
5400 2002-01-03 Akim Demaille <akim@epita.fr>
5401
5402 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
5403 The ISO C++ standard is extremely clear about it: stderr is
5404 considered a macro, not a regular symbol (see table 94 `Header
5405 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
5406 Therefore std:: does not apply to it. It still does with fprintf.
5407 Also, s/cstdio.h/cstdio/.
5408
5409 2002-01-03 Akim Demaille <akim@epita.fr>
5410
5411 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
5412 for non system headers.
5413
5414 2002-01-02 Akim Demaille <akim@epita.fr>
5415
5416 Equip the skeleton chain with location tracking, runtime trace,
5417 pure parser and scanner.
5418
5419 * src/parse-skel.y: Request a pure parser, locations, and prefix
5420 renaming.
5421 (%union): Having several members with the same type does not help
5422 type mismatches, simplify.
5423 (YYPRINT, yyprint): New.
5424 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
5425 (skel_error): this.
5426 Handle locations.
5427 * src/scan-skel.l: Adjust to these changes.
5428 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
5429 (LOCATION_PRINT, skel_control_t): New.
5430
5431 2001-12-30 Akim Demaille <akim@epita.fr>
5432
5433 * src/parse-skel.y: Get rid of the shift/reduce conflict:
5434 replace `gb' with BLANKS.
5435 * src/scan-skel.l: Adjust.
5436
5437 2001-12-30 Akim Demaille <akim@epita.fr>
5438
5439 * src/system.h: We don't need nor want bcopy.
5440 Throw away MS-DOS crap: we don't need getpid.
5441 * configure.in: We don't need strndup. It was even causing
5442 problems: because Flex includes the headers *before* us,
5443 _GNU_SOURCE is not defined by config.h, and therefore strndup was
5444 not visible.
5445 * lib/xstrndup.c: New.
5446 * src/scan-skel.l: Use it.
5447 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
5448 * src/parse-skel.y: Use %directives instead of #defines.
5449
5450 2001-12-30 Akim Demaille <akim@epita.fr>
5451
5452 * src/skeleton.h: New.
5453 * src/output.c (output_parser, output_master_parser): Remove, dead
5454 code.
5455 * src/output.h (get_lines_number, actions_output, guards_output)
5456 (token_definitions_output): Prototype them.
5457 * src/parse-skel.y: Add the license notice.
5458 Include output.h and skeleton.h.
5459 (process_skeleton): Returns void, and takes a single parameter.
5460 * src/scan-skel.l: Add the license notice.
5461 Include skeleton.h.
5462 Don't use %option yylineno: it seems that then Flex imagines
5463 REJECT has been used, and therefore it won't reallocate its
5464 buffers (which makes no other sense to me than a bug). It results
5465 in warnings for `unused: yy_flex_realloc'.
5466
5467 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
5468
5469 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
5470 (MUSCLE_INSERT_PREFIX): ...to there.
5471 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
5472 (MUSCLE_INSERT_PREFIX): Move from here...
5473
5474 * src/bison.hairy: Add a section directive. Put braces around muscle
5475 names. This parser skeleton is still broken, but Bison should not
5476 choke on a bad muscle 'syntax'.
5477 * src/bison.simple: Add a section directive. Put braces around muscle
5478 names.
5479
5480 * src/files.h (strsuffix, stringappend): Add declarations.
5481 (tab_extension): Add declaration.
5482 (short_base_name): Add declaration.
5483
5484 * src/files.c (strsuffix, stringappend): No longer static. These
5485 functions are used in the skeleton parser.
5486 (tab_extension): New.
5487 (compute_base_names): Use the computations done in this function
5488 to guess if the generated parsers should have '.tab' in their
5489 names.
5490 (short_base_name): No longer static.
5491
5492 * src/output.c (output_skeleton): New.
5493 (output): Disable call to output_master_parser, and give a try to
5494 a new skeleton handling system.
5495 (guards_output, actions_output): No longer static.
5496 (token_definitions_output, get_lines_number): No longer static.
5497
5498 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
5499
5500 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
5501 parse-skel.y.
5502
5503 * src/parse-skel.y: New file.
5504 * src/scan-skel.l: New file.
5505
5506 2001-12-29 Akim Demaille <akim@epita.fr>
5507
5508 %name-prefix is broken.
5509
5510 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
5511 Adjust all dependencies.
5512 * tests/headers.at (export YYLTYPE): Strengthen this test: use
5513 %name-prefix.
5514
5515 Renaming yylval but not yylloc is not consistent. Now we do.
5516
5517 * src/bison.simple: Prefix yylloc if used.
5518 * doc/bison.texinfo (Decl Summary): Document that.
5519
5520 2001-12-29 Akim Demaille <akim@epita.fr>
5521
5522 * doc/bison.texinfo: Promote `%long-directive' over
5523 `%long_directive'.
5524 Remove all references to fixed-output-files, yacc is enough.
5525
5526 2001-12-29 Akim Demaille <akim@epita.fr>
5527
5528 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
5529 user prologue. These are defaults.
5530 * tests/actions.at (Mid-rule actions): Make sure the user can
5531 define YYDEBUG and YYERROR_VERBOSE.
5532
5533 2001-12-29 Akim Demaille <akim@epita.fr>
5534
5535 * src/output.c (header_output): Don't forget to export YYLTYPE and
5536 yylloc.
5537 * tests/headers.at (export YYLTYPE): New, make sure it does.
5538 * tests/regression.at (%union and --defines, Invalid CPP headers):
5539 Move to...
5540 * tests/headers.at: here.
5541
5542 2001-12-29 Akim Demaille <akim@epita.fr>
5543
5544 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
5545
5546 2001-12-29 Akim Demaille <akim@epita.fr>
5547
5548 * tests/actions.at (Mid-rule actions): Output on a single line
5549 instead of several.
5550
5551 2001-12-29 Akim Demaille <akim@epita.fr>
5552
5553 * doc/bison.texinfo: Formatting changes.
5554
5555 2001-12-29 Akim Demaille <akim@epita.fr>
5556
5557 Don't store the token defs in a muscle, just be ready to output it
5558 on command. Now possible via `symbols'. Fixes a memory leak.
5559
5560 * src/output.c (token_definitions_output): New.
5561 (output_parser, header_output): Use it.
5562 * src/reader.c (symbols_save): Remove.
5563
5564 2001-12-29 Akim Demaille <akim@epita.fr>
5565
5566 * src/bison.simple: Do not provide a default for YYSTYPE and
5567 YYLTYPE before the user's prologue. Otherwise it's hardly... a
5568 default.
5569
5570 2001-12-29 Akim Demaille <akim@epita.fr>
5571
5572 Mid-rule actions are simply... ignored!
5573
5574 * src/reader.c (readgram): Be sure to attach mid-rule actions to
5575 the empty-rule associated to the dummy symbol, not to the host
5576 rule.
5577 * tests/actions.at (Mid-rule actions): New.
5578
5579 2001-12-29 Akim Demaille <akim@epita.fr>
5580
5581 Memory leak.
5582
5583 * src/reader.c (reader): Free grammar.
5584
5585 2001-12-29 Akim Demaille <akim@epita.fr>
5586
5587 Memory leak.
5588
5589 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
5590 since it allocates it for each state, although only one is needed.
5591 (allocate_storage): Do it here.
5592
5593 2001-12-29 Akim Demaille <akim@epita.fr>
5594
5595 * src/options.h, src/options.c (create_long_option_table): Rename
5596 as...
5597 (long_option_table_new): this, with a clearer prototype.
5598 (percent_table): Remove, unused,
5599 * src/getargs.c (getargs): Adjust.
5600
5601 2001-12-29 Akim Demaille <akim@epita.fr>
5602
5603 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
5604 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
5605 as states.
5606
5607 2001-12-29 Akim Demaille <akim@epita.fr>
5608
5609 * src/lalr.c (build_relations): Rename `states' as `states1'.
5610 Sorry, I don't understand exactly what it is, no better name...
5611
5612 2001-12-29 Akim Demaille <akim@epita.fr>
5613
5614 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
5615 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
5616 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
5617 as rules.
5618
5619 2001-12-29 Akim Demaille <akim@epita.fr>
5620
5621 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
5622 ago.
5623
5624 2001-12-29 Akim Demaille <akim@epita.fr>
5625
5626 * src/reader.c, src/reader.h (user_toknums): Remove.
5627 Adjust all users to use symbols[i]->user_token_number.
5628
5629 2001-12-29 Akim Demaille <akim@epita.fr>
5630
5631 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
5632 Adjust all users to use symbols[i]->prec or ->assoc.
5633
5634 2001-12-29 Akim Demaille <akim@epita.fr>
5635
5636 * src/reader.c, src/reader.h (tags): Remove.
5637 Adjust all users to use symbols[i]->tag.
5638
5639 2001-12-29 Akim Demaille <akim@epita.fr>
5640
5641 * src/gram.h, src/gram.c (symbols): New, similar to state_table
5642 and rule_table.
5643 * src/reader.c (packsymbols): Fill this table.
5644 Drop sprec.
5645 * src/conflicts.c (resolve_sr_conflict): Adjust.
5646 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
5647 single table.
5648 Use symbols[i]->tag instead of tags[i].
5649
5650 2001-12-29 Akim Demaille <akim@epita.fr>
5651
5652 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
5653 In addition, put a comment in there, to replace...
5654 * tests/regression.at (%union and C comments): Remove.
5655
5656 2001-12-29 Akim Demaille <akim@epita.fr>
5657
5658 * tests/regression.at (Web2c Actions): Blindly move the actual
5659 output as expected output. The contents *seem* right to me, but I
5660 can't pretend reading perfectly parser tables... Nonetheless, all
5661 the other tests pass correctly, the table look OK, even though the
5662 presence of `$axiom' is to be noted: AFAICS it is useless (but
5663 harmless).
5664
5665 2001-12-29 Akim Demaille <akim@epita.fr>
5666
5667 * src/reader.c (readgram): Don't add the rule 0 if there were no
5668 rules read. In other words, add it _after_ having performed
5669 grammar sanity checks.
5670 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
5671
5672 2001-12-29 Akim Demaille <akim@epita.fr>
5673
5674 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
5675 visible, and some states have now a different number.
5676
5677 2001-12-29 Akim Demaille <akim@epita.fr>
5678
5679 * src/reader.c (readgram): Bind the initial rule's lineno to that
5680 of the first rule.
5681 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
5682 (Solved SR Conflicts): Adjust rule 0's line number.
5683
5684 2001-12-29 Akim Demaille <akim@epita.fr>
5685
5686 Fix the `GAWK Grammar' failure.
5687
5688 * src/LR0.c (final_state): Initialize to -1 so that we do compute
5689 the reductions of the first state which was mistakenly confused
5690 with the final state because precisely final_state was initialized
5691 to 0.
5692 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
5693 now noticed by Bison.
5694 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
5695 have a reduction on $default.
5696
5697 2001-12-29 Akim Demaille <akim@epita.fr>
5698
5699 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
5700 rule line numbers.
5701 * src/closure.c (print_closure): Likewise.
5702 * src/derives.c (print_derives): Likewise.
5703 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
5704 now.
5705
5706 2001-12-29 Akim Demaille <akim@epita.fr>
5707
5708 * src/lalr.c (lookaheads_print): New.
5709 (lalr): Call it when --trace-flag.
5710 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
5711 are dumped.
5712
5713 2001-12-29 Akim Demaille <akim@epita.fr>
5714
5715 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
5716 when walking through ritem, even via rule->rhs.
5717 * src/reduce.c (dump_grammar, useful_production, reduce_output)
5718 (useful_production, useless_nonterminals): Likewise.
5719 (reduce_grammar_tables): Likewise, plus update nritems.
5720 * src/nullable.c (set_nullable): Likewise.
5721 * src/lalr.c (build_relations): Likewise.
5722 * tests/sets.at (Nullable): Adjust.
5723 Fortunately, now, the $axiom is no longer nullable.
5724
5725 2001-12-29 Akim Demaille <akim@epita.fr>
5726
5727 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
5728 the 0-sentinel.
5729 * src/gram.c (ritem_longest_rhs): Likewise.
5730 * src/reduce.c (nonterminals_reduce): Likewise.
5731 * src/print_graph.c (print_graph): Likewise.
5732 * src/output.c (output_rule_data): Likewise.
5733 * src/nullable.c (set_nullable): Likewise.
5734
5735 2001-12-29 Akim Demaille <akim@epita.fr>
5736
5737 * src/output.c: Comment changes.
5738
5739 2001-12-27 Paul Eggert <eggert@twinsun.com>
5740
5741 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
5742 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
5743 Sparc, as they were causing more porting problems than the
5744 (minor) performance improvement was worth.
5745
5746 Also, catch up with 1.31's YYSTD.
5747
5748 2001-12-27 Akim Demaille <akim@epita.fr>
5749
5750 * src/output.c (output_gram): Rely on nritems, not the
5751 0-sentinel. See below.
5752 Use -1 as separator, not 0.
5753 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
5754 Rely on -1 as separator in yyrhs, instead of 0.
5755 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
5756 twice `Now at end of input', therefore there are two lines less to
5757 expect.
5758
5759 2001-12-27 Akim Demaille <akim@epita.fr>
5760
5761 * tests/regression.at (Unresolved SR Conflicts):
5762 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
5763 below.
5764
5765 2001-12-27 Akim Demaille <akim@epita.fr>
5766
5767 * src/LR0.c (new_state): Recognize the final state by the fact it
5768 is reached by eoftoken.
5769 (insert_start_shifting_state, insert_eof_shifting_state)
5770 (insert_accepting_state, augment_automaton): Remove, since now
5771 these states are automatically computed from the initial state.
5772 (generate_states): Adjust.
5773 * src/print.c: When reporting a rule number to the user, substract
5774 1, so that the axiom rule is rule 0, and the first user rule is 1.
5775 * src/reduce.c: Likewise.
5776 * src/print_graph.c (print_core): For the time being, just as for
5777 the report, depend upon --trace-flags to dump the full set of
5778 items.
5779 * src/reader.c (readgram): Once the grammar read, insert the rule
5780 0: `$axiom: START-SYMBOL $'.
5781 * tests/set.at: Adjust: rule 0 is now displayed, and since the
5782 number of the states has changed (the final state is no longer
5783 necessarily the last), catch up.
5784
5785 2001-12-27 Akim Demaille <akim@epita.fr>
5786
5787 Try to make the use of the eoftoken valid. Given that its value
5788 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
5789 is used instead of > 0 where appropriate, (ii), depend upon nritems
5790 instead of the 0-sentinel.
5791
5792 * src/gram.h, src/gram.c (nritems): New.
5793 Expected to be duplication of nitems, but for the time being...
5794 * src/reader.c (packgram): Assert nritems and nitems are equal.
5795 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
5796 * src/closure.c (print_closure, print_fderives): Likewise.
5797 * src/gram.c (ritem_print): Likewise.
5798 * src/print.c (print_core, print_grammar): Likewise.
5799 * src/print_graph.c: Likewise.
5800
5801 2001-12-27 Akim Demaille <akim@epita.fr>
5802
5803 * src/main.c (main): If there are complains after grammar
5804 reductions, then output the report anyway if requested, then die.
5805 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
5806 * src/reader.c (eoftoken): New.
5807 (parse_token_decl): If the token being defined has value `0', it
5808 is the eoftoken.
5809 (packsymbols): No longer hack `tags' to insert `$' by hand.
5810 Be sure to preserve the value of the eoftoken.
5811 (reader): Make sure eoftoken is defined.
5812 Initialize nsyms to 0: now eoftoken is created just like the others.
5813 * src/print.c (print_grammar): Don't special case the eof token.
5814 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
5815 lie anyway, albeit pleasant.
5816 * tests/calc.at: Exercise error messages with eoftoken.
5817 Change the grammar so that empty input is invalid.
5818 Adjust expectations.
5819 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
5820
5821 2001-12-27 Akim Demaille <akim@epita.fr>
5822
5823 * configure.in: Check the protos of strchr ans strspn.
5824 Replace strchr if needed.
5825 * src/system.h: Provide the protos of strchr, strspn and memchr if
5826 missing.
5827 * lib/strchr.c: New.
5828 * src/reader.c (symbols_save): Use strchr.
5829
5830 2001-12-27 Akim Demaille <akim@epita.fr>
5831
5832 * src/print.c, src/print_graph.c (escape): New.
5833 Use it to quote the TAGS outputs.
5834 * src/print_graph.c (print_state): Now errors are in red, and
5835 reductions in green.
5836 Prefer high to wide: output the state number on a line of its own.
5837
5838 2001-12-27 Akim Demaille <akim@epita.fr>
5839
5840 * src/state.h, src/state.c (reductions_new): New.
5841 * src/LR0.c (set_state_table): Let all the states have a
5842 `reductions', even if reduced to 0.
5843 (save_reductions): Adjust.
5844 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
5845 * src/print.c (print_reductions, print_actions): Adjust.
5846 * src/output.c (action_row): Adjust.
5847
5848 2001-12-27 Akim Demaille <akim@epita.fr>
5849
5850 * src/state.h, src/state.c (errs_new, errs_dup): New.
5851 * src/LR0.c (set_state_table): Let all the states have an errs,
5852 even if reduced to 0.
5853 * src/print.c (print_errs, print_reductions): Adjust.
5854 * src/output.c (output_actions, action_row): Adjust.
5855 * src/conflicts.c (resolve_sr_conflict): Adjust.
5856
5857 2001-12-27 Akim Demaille <akim@epita.fr>
5858
5859 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
5860
5861 2001-12-27 Akim Demaille <akim@epita.fr>
5862
5863 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
5864 * src/print.c: here.
5865 (lookaheadset, shiftset): New, used as additional storage by
5866 print_reductions.
5867 (print_results): Adjust.
5868 (print_shifts, print_gotos, print_errs): New, extracted from...
5869 (print_actions): here.
5870 * src/print_graph.c (print_actions): Remove dead code.
5871
5872 2001-12-27 Akim Demaille <akim@epita.fr>
5873
5874 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
5875 `$n' and `@n'.
5876
5877 2001-12-27 Akim Demaille <akim@epita.fr>
5878
5879 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
5880 (build_relations): Adjust.
5881
5882 2001-12-27 Akim Demaille <akim@epita.fr>
5883
5884 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
5885 duplication.
5886
5887 2001-12-27 Akim Demaille <akim@epita.fr>
5888
5889 * src/reader.c (packgram): Catch nitems overflows.
5890
5891 2001-12-27 Akim Demaille <akim@epita.fr>
5892
5893 * src/files.c, src/files.h (guard_obstack): Remove.
5894 * src/output.c (output): Adjust.
5895 * src/reader.c (parse_braces): New, factoring...
5896 (copy_action, copy_guard): these two which are renamed as...
5897 (parse_action, parse_guard): these.
5898 As a voluntary consequence, using braces around guards is now
5899 mandatory.
5900
5901 2001-12-27 Akim Demaille <akim@epita.fr>
5902
5903 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
5904 * src/reader.c (symbol_list): `guard' and `guard_line' are new
5905 members.
5906 (symbol_list_new): Adjust.
5907 (copy_action): action_line is the first line, not the last.
5908 (copy_guard): Just as for actions, store the `action' only, not
5909 the switch/case/break flesh.
5910 Don't parse the user action that might follow the guard, let...
5911 (readgram): do it, i.e., now, there can be an action after a
5912 guard.
5913 In other words the guard is just explicitly optional.
5914 (packgram): Adjust.
5915 * src/output.c (guards_output): New.
5916 (output_parser): Call it when needed.
5917 (output): Also free the guard and attrs obstacks.
5918 * src/files.c, src/files.h (obstack_save): Remove.
5919 (output_files): Remove.
5920 As a result, if one needs the former `.act' file, using an
5921 appropriate skeleton which requires actions and guards is now
5922 required.
5923 * src/main.c (main): Adjust.
5924 * tests/semantic.at: New.
5925 * tests/regression.at: Use `input.y' as input file name.
5926 Avoid 8+3 problems by requiring input.c when the test needs the
5927 parser.
5928
5929 2001-12-27 Akim Demaille <akim@epita.fr>
5930
5931 * src/reader.c (symbol_list_new): Be sure to initialize all the
5932 fields.
5933
5934 2001-12-27 Akim Demaille <akim@epita.fr>
5935
5936 All the hacks using a final pseudo state are now useless.
5937
5938 * src/LR0.c (set_state_table): state_table holds exactly nstates.
5939 * src/lalr.c (nLA): New.
5940 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
5941 instead of lookaheadsp from the pseudo state (nstate + 1).
5942
5943 2001-12-27 Akim Demaille <akim@epita.fr>
5944
5945 * src/output.c (action_row, token_actions): Use a state_t instead
5946 of a integer, and nlookaheads instead of the following state's
5947 lookaheadsp.
5948
5949 2001-12-27 Akim Demaille <akim@epita.fr>
5950
5951 * src/conflicts.c (log_resolution, flush_shift)
5952 (resolve_sr_conflict, set_conflicts, solve_conflicts)
5953 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
5954 (conflicts_print, print_reductions): Use a state_t instead of an
5955 integer when referring to a state.
5956 As much as possible, depend upon nlookaheads, instead of the
5957 `lookaheadsp' member of the following state (since lookaheads of
5958 successive states are successive, the difference between state n + 1
5959 and n served as the number of lookaheads for state n).
5960 * src/lalr.c (add_lookback_edge): Likewise.
5961 * src/print.c (print_core, print_actions, print_state)
5962 (print_results): Likewise.
5963 * src/print_graph.c (print_core, print_actions, print_state)
5964 (print_graph): Likewise.
5965 * src/conflicts.h: Adjust.
5966
5967 2001-12-27 Akim Demaille <akim@epita.fr>
5968
5969 * src/bison.hairy: Formatting/comment changes.
5970 ANSIfy.
5971 Remove `register' indications.
5972 Add plenty of `static'.
5973
5974 2001-12-27 Akim Demaille <akim@epita.fr>
5975
5976 * src/output.c (prepare): Drop the muscle `ntbase' which
5977 duplicates ntokens.
5978 * src/bison.simple: Formatting/comment changes.
5979 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
5980 is an undocumented synonym.
5981
5982 2001-12-22 Akim Demaille <akim@epita.fr>
5983
5984 * src/output.c (output_table_data): Change the prototype to use
5985 `int' for array ranges: some invocations do pass an int, not a
5986 short.
5987 Reported by Wayne Green.
5988
5989 2001-12-22 Akim Demaille <akim@epita.fr>
5990
5991 Some actions of web2c.y are improperly triggered.
5992 Reported by Mike Castle.
5993
5994 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
5995 * tests/regression.at (Web2c): Rename as...
5996 (Web2c Report): this.
5997 (Web2c Actions): New.
5998
5999 2001-12-22 Akim Demaille <akim@epita.fr>
6000
6001 Reductions in web2c.y are improperly reported.
6002 Reported by Mike Castle.
6003
6004 * src/conflicts.c (print_reductions): Fix.
6005 * tests/regression.at (Web2c): New.
6006
6007 2001-12-18 Akim Demaille <akim@epita.fr>
6008
6009 Some host fail on `assert (!"foo")', which expands to
6010 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
6011 Reported by Nelson Beebee.
6012
6013 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
6014 `#define it_succeeded 0' and `assert (it_succeeded)'.
6015
6016 2001-12-17 Marc Autret <autret_m@epita.fr>
6017
6018 * src/bison.simple: Don't hard code the skeleton line and filename.
6019 * src/output.c (output_parser): Rename 'line' as 'output_line'.
6020 New line counter 'skeleton_line' (skeleton-line muscle).
6021
6022 2001-12-17 Paul Eggert <eggert@twinsun.com>
6023
6024 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
6025 YYDEBUG must be defined to a nonzero value.
6026
6027 * src/bison.simple (yytname): Do not assume that the user defines
6028 YYDEBUG to a properly parenthesized expression.
6029
6030 2001-12-17 Akim Demaille <akim@epita.fr>
6031
6032 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
6033 nlookaheads is a new member.
6034 Adjust all users.
6035 * src/lalr.h (nlookaheads): Remove this orphan declaration.
6036 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
6037 state.
6038
6039 2001-12-17 Akim Demaille <akim@epita.fr>
6040
6041 * src/files.h, src/files.c (open_files, close_files): Remove.
6042 * src/main.c (main): Don't open/close files, nor invoke lex_free,
6043 let...
6044 * src/reader.c (reader): Do it.
6045
6046 2001-12-17 Akim Demaille <akim@epita.fr>
6047
6048 * src/conflicts.c (print_reductions): Formatting changes.
6049
6050 2001-12-17 Akim Demaille <akim@epita.fr>
6051
6052 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
6053 (flush_reduce): New.
6054 (resolve_sr_conflict): Adjust.
6055
6056 2001-12-17 Akim Demaille <akim@epita.fr>
6057
6058 * src/output.c (output_obstack): Be static and rename as...
6059 (format_obstack): this, to avoid any confusion with files.c's
6060 output_obstack.
6061 * src/reader.h (muscle_obstack): Move to...
6062 * src/output.h: here, since it's defined in output.c.
6063
6064 2001-12-17 Akim Demaille <akim@epita.fr>
6065
6066 * src/output.c (action_row, save_column, default_goto)
6067 (sort_actions, matching_state, pack_vector): Better variable
6068 locality.
6069
6070 2001-12-17 Akim Demaille <akim@epita.fr>
6071
6072 * src/output.c: Various formatting changes.
6073
6074 2001-12-17 Akim Demaille <akim@epita.fr>
6075
6076 * src/files.c (output_files): Free the output_obstack.
6077 * src/main.c (main): Call print and print_graph conditionally.
6078 * src/print.c (print): Work unconditionally.
6079 * src/print_graph.c (print_graph): Work unconditionally.
6080 * src/conflicts.c (log_resolution): Output only if verbose_flag.
6081
6082 2001-12-16 Marc Autret <autret_m@epita.fr>
6083
6084 * src/output.c (actions_output): Fix. When we use %no-lines,
6085 there is one less line per action.
6086
6087 2001-12-16 Marc Autret <autret_m@epita.fr>
6088
6089 * src/bison.simple: Remove a useless #line directive.
6090 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
6091 * src/output.c (get_lines_number): New.
6092 (output_parser): Adjust, now takes care about the lines of a
6093 output muscles.
6094 Fix line numbering.
6095 (actions_output): Computes the number of lines taken by actions.
6096 (output_master_parser): Insert new skeleton which is the name of
6097 the output parser file name.
6098
6099 2001-12-15 Marc Autret <autret_m@epita.fr>
6100
6101 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
6102
6103 2001-12-15 Marc Autret <autret_m@epita.fr>
6104
6105 * src/output.c (output_gram): Keep track of the hairy one.
6106
6107 2001-12-15 Akim Demaille <akim@epita.fr>
6108
6109 Make `make distcheck' work.
6110
6111 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
6112 system.h which uses libgettext.h.
6113
6114 2001-12-15 Akim Demaille <akim@epita.fr>
6115
6116 * src/nullable.c (set_nullable): Useless rules must be skipped,
6117 otherwise, since we range over their symbols, we might look at a
6118 nonterminal which no longer ``exists'', i.e., it is not counted in
6119 `nvars', hence we overflow our arrays.
6120
6121 2001-12-15 Akim Demaille <akim@epita.fr>
6122
6123 The header can also be produced directly, without any obstack!
6124 Yahoo!
6125
6126 * src/files.c, src/files.h (defines_obstack): Remove.
6127 (compute_header_macro): Global.
6128 (defines_obstack_save): Remove.
6129 * src/reader.c (parse_union_decl): No longer output to
6130 defines_obstack: its content can be found in the `stype' muscle
6131 anyway.
6132 (output_token_translations): Merge into...
6133 (symbols_output): this.
6134 Rename as...
6135 (symbols_save): this.
6136 (reader): Adjust.
6137 * src/output.c (header_output): New.
6138 (output): Call it.
6139
6140 2001-12-15 Akim Demaille <akim@epita.fr>
6141
6142 * src/reader.c (parse_union_decl): Instead of handling two obstack
6143 simultaneously, use one to define the `stype' muscle, and use the
6144 value of the latter to fill defines_obstack.
6145 (copy_comment): Remove.
6146 (copy_comment2): Work for a single obstack.
6147 Rename as...
6148 (copy_comment): this.
6149
6150 2001-12-15 Akim Demaille <akim@epita.fr>
6151
6152 * src/lex.c, src/lex.h (xgetc): No longer static.
6153 * src/reader.c (parse_union_decl): Revamp.
6154
6155 2001-12-15 Akim Demaille <akim@epita.fr>
6156
6157 Still making progress in separating Bison into (i) input, (ii)
6158 process, (iii) output: now we can directly output the parser file
6159 without using table_obstack at all.
6160
6161 * src/files.c, src/files.h (table_obstack): Bye bye.
6162 (parser_file_name): New.
6163 * src/files.c (compute_output_file_names): Compute it.
6164 * src/output.c (actions_output, output_parser)
6165 (output_master_parser): To a file instead of an obstack.
6166
6167 2001-12-15 Akim Demaille <akim@epita.fr>
6168
6169 Attach actions to rules, instead of pre-outputting them to
6170 actions_obstack.
6171
6172 * src/gram.h (rule_t): action and action_line are new members.
6173 * src/reader.c (symbol_list): Likewise.
6174 (copy_action): Save the actions within the rule.
6175 (packgram): Save them in rule_table.
6176 * src/output.c (actions_output): New.
6177 (output_parser): Use it on `%%actions'.
6178 (output_rule_data): Don't free rule_table.
6179 (output): Do it.
6180 (prepare): Don't save the `action' muscle.
6181 * src/bison.simple: s/%%action/%%actions/.
6182
6183 2001-12-15 Akim Demaille <akim@epita.fr>
6184
6185 * src/reader.c (copy_action): When --yacc, don't append a `;'
6186 to the user action: let it fail if lacking.
6187 Suggested by Arnold Robbins and Tom Tromey.
6188
6189 2001-12-14 Akim Demaille <akim@epita.fr>
6190
6191 * src/lex.c (literalchar): Simply return the char you decoded, non
6192 longer mess around with obstacks and int pointers.
6193 Adjust all callers.
6194
6195 2001-12-14 Akim Demaille <akim@epita.fr>
6196
6197 * src/lex.c (literalchar): Don't escape the special characters,
6198 just decode them, and keep them as char (before, eol was output as
6199 the 2 char string `\n' etc.).
6200 * src/output.c (output_rule_data): Use quotearg to output the
6201 token strings.
6202
6203 2001-12-13 Paul Eggert <eggert@twinsun.com>
6204
6205 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
6206 Do not infringe on the global user namespace when using C++.
6207 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
6208 All uses of `fprintf' and `stderr' changed.
6209
6210 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
6211
6212 2001-12-13 Akim Demaille <akim@epita.fr>
6213
6214 The computation of nullable is broken: it doesn't handle empty
6215 RHS's properly.
6216
6217 * tests/torture.at (GNU AWK Grammar): New.
6218 * tests/sets.at (Nullable): New.
6219 * src/nullable.c (set_nullable): Instead of blindly looping over
6220 `ritems', loop over the rules, and then over their rhs's.
6221
6222 Work around Autotest bugs.
6223
6224 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
6225 frame, because Autotest understand lines starting with a `+' as
6226 traces from the shell. Then, they are not processed properly.
6227 Admittedly an Autotest bug, but we don't have time to wait for
6228 Autotest to catch up.
6229 * tests/regression.at (Broken Closure): Adjust to the new table
6230 frames.
6231 Move to...
6232 * tests/sets.at: here.
6233
6234 2001-12-13 Akim Demaille <akim@epita.fr>
6235
6236 * src/closure.c (closure): Use nrules instead of playing tricks
6237 with BITS_PER_WORD.
6238
6239 2001-12-13 Akim Demaille <akim@epita.fr>
6240
6241 * src/print.c (print_actions): Output the handling of `$' as the
6242 traces do: shifting the token EOF. Before EOF was treated as a
6243 nonterminal.
6244 * tests/regression.at: Adjust some tests.
6245 * src/print_graph.c (print_core): Complete the set of items via
6246 closure. The next-to-final and final states are still unsatisfying,
6247 but that's to be addressed elsewhere.
6248 No longer output the rule numbers, but do output the state number.
6249 A single loop for the shifts + gotos is enough, but picked a
6250 distinct color for each.
6251 (print_graph): Initialize and finalize closure.
6252
6253 2001-12-13 Akim Demaille <akim@epita.fr>
6254
6255 * src/reader.c (readgram): Remove dead code, an strip useless
6256 braces.
6257 (get_type): Remove, unused.
6258
6259 2001-12-12 Akim Demaille <akim@epita.fr>
6260
6261 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
6262 on that of lib/error.c.
6263
6264 2001-12-12 Akim Demaille <akim@epita.fr>
6265
6266 Some hosts don't like `/' in includes.
6267
6268 * src/system.h: Include libgettext.h without qualifying the path.
6269 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
6270 $(top_srcdir).
6271
6272 2001-12-11 Marc Autret <autret_m@epita.fr>
6273
6274 * src/output.c (output_parser): Remove useless muscle.
6275
6276 2001-12-11 Marc Autret <autret_m@epita.fr>
6277
6278 * src/bison.simple: Remove #line just before %%epilogue. It
6279 is now handled in ...
6280 * src/reader.c (read_additionnal_code): Add the output of a
6281 #line for the epilogue.
6282
6283 2001-12-10 Marc Autret <autret_m@epita.fr>
6284
6285 * src/reader.c (copy_definition): Re-use CPP-outed code which
6286 replace precedent remove.
6287 * src/bison.simple: Remove #line before %%prologue because
6288 %%input-line is wrong at this time.
6289
6290 2001-12-10 Marc Autret <autret_m@epita.fr>
6291
6292 * src/reader.c (symbols_output): Clean up.
6293 * src/output.c (output_gram, output): Clean up.
6294
6295 2001-12-10 Akim Demaille <akim@epita.fr>
6296
6297 * src/lalr.c (initialize_lookaheads): New. Extracted from...
6298 * src/LR0.c (set_state_table): here.
6299 * src/lalr.c (lalr): Call it.
6300
6301 2001-12-10 Akim Demaille <akim@epita.fr>
6302
6303 * src/state.h (shifts): Remove the `number' member: shifts are
6304 attached to state, hence no longer need to be labelled with a
6305 state number.
6306
6307 2001-12-10 Akim Demaille <akim@epita.fr>
6308
6309 Now that states have a complete set of members, the linked list of
6310 shifts is useless: just fill directly the state's shifts member.
6311
6312 * src/state.h (shifts): Remove the `next' member.
6313 * src/LR0.c (first_state, last_state): Remove.
6314 Adjust the callers.
6315 (augment_automaton): Don't look for the shifts that must be added
6316 a shift on EOF: it is those of the state we looked for! But now,
6317 since shifts are attached, it is no longer needed to looking
6318 merely by its id: its number.
6319
6320 2001-12-10 Akim Demaille <akim@epita.fr>
6321
6322 * src/LR0.c (augment_automaton): Better variable locality.
6323 Remove an impossible branch: if there is a state corresponding to
6324 the start symbol being shifted, then there is shift for the start
6325 symbol from the initial state.
6326
6327 2001-12-10 Akim Demaille <akim@epita.fr>
6328
6329 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
6330 only when appropriate: when insert_start_shifting_state' is not
6331 invoked.
6332 * tests/regression.at (Rule Line Numbers): Adjust.
6333
6334 2001-12-10 Akim Demaille <akim@epita.fr>
6335
6336 * src/LR0.c (augment_automaton): Now that all states have shifts,
6337 merge the two cases addition shifts to the initial state.
6338
6339 2001-12-10 Akim Demaille <akim@epita.fr>
6340
6341 * src/lalr.c (set_state_table): Move to...
6342 * src/LR0.c: here.
6343 * src/lalr.c (lalr): Don't call it...
6344 * src/LR0.c (generate_states): do it.
6345 * src/LR0.h (first_state): Remove, only the table is used.
6346
6347 2001-12-10 Akim Demaille <akim@epita.fr>
6348
6349 * src/LR0.h (first_shift, first_reduction): Remove.
6350 * src/lalr.c: Don't use first_shift: find shifts through the
6351 states.
6352
6353 2001-12-10 Akim Demaille <akim@epita.fr>
6354
6355 * src/LR0.c: Attach shifts to states as soon as they are
6356 computed.
6357 * src/lalr.c (set_state_table): Instead of assigning shifts to
6358 state, just assert that the mapping was properly done.
6359
6360 2001-12-10 Akim Demaille <akim@epita.fr>
6361
6362 * src/LR0.c (insert_start_shift): Rename as...
6363 (insert_start_shifting_state): this.
6364 (insert_eof_shifting_state, insert_accepting_state): New.
6365 (augment_automaton): Adjust.
6366 Better locality of the variables.
6367 When looking if the start_symbol is shifted from the initial
6368 state, using `while (... symbol != start_symbol ...)' sounds
6369 better than `while (... symbol < start_symbol ...)': If fail
6370 to see how the order between symbols could be relevant!
6371
6372 2001-12-10 Akim Demaille <akim@epita.fr>
6373
6374 * src/getargs.h: Don't declare `spec_name_prefix' and
6375 `spec_file_prefix', declared by src/files.h.
6376 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
6377 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
6378 * src/output.c (prepare): Adjust.
6379 * src/reader.c (symbols_output): Likewise.
6380 * src/vmsgetargs.c: Vaguely adjust, but who cares?
6381
6382 2001-12-10 Akim Demaille <akim@epita.fr>
6383
6384 * src/muscle_tab.c (muscle_init): NULL is a better default than
6385 `"0"'.
6386
6387 2001-12-10 Akim Demaille <akim@epita.fr>
6388
6389 * src/reader.c (reader): Calling symbols_output once is enough.
6390
6391 2001-12-10 Akim Demaille <akim@epita.fr>
6392
6393 Now that states have a complete set of members, the linked list of
6394 reductions is useless: just fill directly the state's reductions
6395 member.
6396
6397 * src/state.h (struct reductions): Remove member `number' and
6398 `next'.
6399 * src/LR0.c (first_reduction, last_reduction): Remove.
6400 (save_reductions): Don't link the new reductions, store them in
6401 this_state.
6402 * src/lalr.c (set_state_table): No need to attach reductions to
6403 states, it's already done.
6404 * src/output.c (output_actions): No longer free the shifts, then
6405 the reductions, then the states: free all the states and their
6406 members.
6407
6408 2001-12-10 Akim Demaille <akim@epita.fr>
6409
6410 * src/options.c (OPTN, DRTV, BOTH): New.
6411 (option_table): Use them.
6412
6413 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
6414 the job of system.h.
6415 * src/options.c: Don't include stdio.h and xalloc.h for the same
6416 reasons.
6417
6418 2001-12-10 Akim Demaille <akim@epita.fr>
6419
6420 * src/output.c (output, prepare): Make sure the values of the
6421 muscles `action' and `prologue' are 0-terminated.
6422
6423 2001-12-10 Akim Demaille <akim@epita.fr>
6424
6425 Clean up GCC warnings.
6426
6427 * src/reader.c (copy_action): `buf' is not used.
6428 (parse_skel_decl): Be static.
6429 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
6430 * src/options.h (create_long_option_table): Have a real prototype.
6431 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
6432 (hash_delete_at): Return const void *.
6433 Adjust casts to preserve the const.
6434
6435 2001-12-10 Akim Demaille <akim@epita.fr>
6436
6437 * configure.in: Require 2.52g.
6438 M4 is not needed, but AUTOM4TE is.
6439 * m4/m4.m4: Remove.
6440 * tests/Makefile.am: Adjust.
6441
6442 2001-12-10 Akim Demaille <akim@epita.fr>
6443
6444 One structure for states is enough, even though theoretically
6445 there are LR(0) states and LALR(1) states.
6446
6447 * src/lalr.h (state_t): Remove.
6448 (state_table): Be state_t **, not state_t *.
6449 * src/state.h (core, CORE_ALLOC): Rename as...
6450 (state_t, STATE_ALLOC): this.
6451 Add the LALR(1) members: shifts, reductions, errs.
6452 * src/LR0.c (state_table): Rename as...
6453 (state_hash): this, to avoid name clashes with the global
6454 `state_table'.
6455 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
6456 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
6457
6458 2001-12-10 Akim Demaille <akim@epita.fr>
6459
6460 Bison dumps core on bash.y.
6461 Reported by Pascal Bart.
6462
6463 * src/warshall.c (bitmatrix_print): New.
6464 (TC): Use it.
6465 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
6466 j must be the outer loop.
6467 * tests/regression.at (Broken Closure): New.
6468
6469 2001-12-05 Akim Demaille <akim@epita.fr>
6470
6471 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
6472 its argument.
6473 Reported by Peter Hámorský.
6474
6475 2001-12-05 Akim Demaille <akim@epita.fr>
6476
6477 * src/conflicts.c (err_table): Remove.
6478 (resolve_sr_conflict): Adjust.
6479 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
6480 Rename as...
6481 (state_t.reductions, state_t.shifts): this.
6482
6483 2001-12-05 Akim Demaille <akim@epita.fr>
6484
6485 * src/reduce.c (reduce_grammar_tables): No longer disable the
6486 removal of useless rules via CPP but via `if (0)', so that the
6487 compiler still check the code is valid.
6488 For instance, it should have noticed `rline' no longer exists: use
6489 the `line' member of rule_t.
6490 * src/gram.c (dummy, rline): Remove, unused.
6491
6492 2001-12-05 Akim Demaille <akim@epita.fr>
6493
6494 * src/output.c (pack_vector): Use assert, not berror.
6495 * src/main.c (berror): Remove, unused.
6496
6497 2001-12-05 Akim Demaille <akim@epita.fr>
6498
6499 New experimental feature: if --verbose --trace output all the
6500 items of a state, not only its kernel.
6501
6502 * src/print.c (print_core): If `trace_flag', then invoke closure
6503 before outputting the items of the state (print_core is no longer
6504 a correct name them).
6505 (print_results): Invoke new_closure/free_closure if needed.
6506
6507 2001-12-05 Akim Demaille <akim@epita.fr>
6508
6509 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
6510 * src/closure.c, src/closure.h (itemsetsize): Rename as...
6511 (nitemset): for consistency with the rest of the project.
6512
6513 2001-12-05 Akim Demaille <akim@epita.fr>
6514
6515 * src/closure.c (print_closure): Improve.
6516 (closure): Use it for printing input and output.
6517
6518 2001-12-05 Akim Demaille <akim@epita.fr>
6519
6520 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
6521 indexed by nonterminals.
6522
6523 2001-12-05 Akim Demaille <akim@epita.fr>
6524
6525 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
6526 what it was!).
6527 * src/warshall.h: Remove accidental duplication of the content.
6528
6529 2001-12-05 Akim Demaille <akim@epita.fr>
6530
6531 * src/closure.c (set_fderives): De-obfuscate.
6532
6533 2001-12-05 Akim Demaille <akim@epita.fr>
6534
6535 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
6536
6537 2001-12-05 Akim Demaille <akim@epita.fr>
6538
6539 * src/closure.c (set_firsts): De-obfuscate.
6540
6541 2001-12-05 Akim Demaille <akim@epita.fr>
6542
6543 * src/output.c (action_row): De-obfuscate
6544 using the good o' techniques: arrays not pointers, variable
6545 locality, BITISSET, RESETBIT etc.
6546
6547 2001-12-05 Akim Demaille <akim@epita.fr>
6548
6549 Pessimize the code to simplify it: from now on, all the states
6550 have a valid SHIFTS, which NSHIFTS is possibly 0.
6551
6552 * src/LR0.c (shifts_new): Be global and move to..
6553 * src/state.c, src/state.h: here.
6554 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
6555 * src/print_graph: Adjust.
6556
6557 2001-12-05 Akim Demaille <akim@epita.fr>
6558
6559 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
6560 * src/conflicts.c: Use it.
6561 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
6562 incorrectly ``simplified''.
6563
6564 2001-12-05 Akim Demaille <akim@epita.fr>
6565
6566 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
6567 using the good o' techniques: arrays not pointers, variable
6568 locality, BITISSET, RESETBIT etc.
6569
6570 2001-12-05 Akim Demaille <akim@epita.fr>
6571
6572 * src/state.h (SHIFT_SYMBOL): New.
6573 * src/conflicts.c: Use it to deobfuscate.
6574
6575 2001-12-05 Akim Demaille <akim@epita.fr>
6576
6577 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
6578 (print_reductions): De-obfuscate using the good o' techniques:
6579 arrays not pointers, variable locality, BITISSET.
6580
6581 2001-12-05 Akim Demaille <akim@epita.fr>
6582
6583 * src/conflicts.c (print_reductions): Arrays, not pointers.
6584 Use BITISSET.
6585
6586 2001-12-05 Akim Demaille <akim@epita.fr>
6587
6588 * src/conflicts.c (print_reductions): Pessimize, but clarify.
6589
6590 2001-12-05 Akim Demaille <akim@epita.fr>
6591
6592 * src/conflicts.c (print_reductions): Improve variable locality.
6593
6594 2001-12-05 Akim Demaille <akim@epita.fr>
6595
6596 * src/conflicts.c (print_reductions): Pessimize, but clarify.
6597
6598 2001-12-05 Akim Demaille <akim@epita.fr>
6599
6600 * src/conflicts.c (print_reductions): Improve variable locality.
6601
6602 2001-12-05 Akim Demaille <akim@epita.fr>
6603
6604 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
6605 * src/lalr.c: Use them.
6606
6607 2001-12-05 Akim Demaille <akim@epita.fr>
6608
6609 * src/LR0.c (augment_automaton): Formatting changes.
6610 Better variable locality.
6611
6612 2001-12-05 Akim Demaille <akim@epita.fr>
6613
6614 * src/lalr.c (matrix_print): New.
6615 (transpose): Use it.
6616 Use arrays instead of pointers.
6617
6618 2001-12-05 Akim Demaille <akim@epita.fr>
6619
6620 * src/lalr.c (maxrhs): Move to...
6621 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
6622 * src/lalr.c (build_relations): Adjust.
6623
6624 2001-12-05 Akim Demaille <akim@epita.fr>
6625
6626 * src/lalr.c (transpose): Free the memory allocated to the
6627 argument, as it is replaced by the results by the unique caller.
6628 (build_relations): Merely invoke transpose: it handles the memory
6629 deallocation.
6630 Improve variable locality.
6631 Avoid variables used as mere abbreviations.
6632 (compute_lookaheads): Use arrays instead of pointers.
6633
6634 2001-12-05 Akim Demaille <akim@epita.fr>
6635
6636 * src/lalr.c (initialize_F): Improve variable locality.
6637 Avoid variables used as mere abbreviations.
6638
6639 2001-12-05 Akim Demaille <akim@epita.fr>
6640
6641 * src/derives.c (print_derives): Display the ruleno.
6642 * src/lalr.c (initialize_F, transpose): Better variable locality
6643 to improve readability.
6644 Avoid variables used as mere abbreviations.
6645
6646 2001-12-05 Akim Demaille <akim@epita.fr>
6647
6648 * src/lalr.c (traverse): Use arrays instead of pointers.
6649
6650 2001-12-05 Akim Demaille <akim@epita.fr>
6651
6652 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
6653 the handling of squeue.
6654 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
6655
6656 2001-12-05 Akim Demaille <akim@epita.fr>
6657
6658 Because useless nonterminals are now kept alive (instead of being
6659 `destroyed'), we now sometimes examine them, and store information
6660 related to them. Hence we need to know their number, and adjust
6661 memory allocations.
6662
6663 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
6664 static.
6665 * src/LR0.c (allocate_itemsets): The memory allocated to
6666 `symbol_count' was used for two different purpose: once to count
6667 the number of occurrences of each symbol, and later reassigned to
6668 `shift_symbol', containing the symbol that can be shifted from a
6669 given state.
6670 Deobfuscate, i.e., allocate, use and free `symbol_count' here
6671 only, and...
6672 (new_itemsets): Allocate `shift_symbol' here.
6673 (allocate_itemsets): symbol_count includes useless nonterminals.
6674 Make room for them.
6675 (free_storage): Use `free', not `XFREE', for pointers that cannot
6676 be null.
6677
6678 2001-12-05 Akim Demaille <akim@epita.fr>
6679
6680 * src/nullable.c (set_nullable): Deobfuscate the handling of
6681 ritem.
6682 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
6683
6684 2001-12-05 Akim Demaille <akim@epita.fr>
6685
6686 * src/gram.c, src/gram.h (ritem_print): New.
6687 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
6688 (This useless function was defined only to work around VMS linkers
6689 that can't handle compilation units with variables only).
6690 * src/reduce.c (dump_grammar): Use it to trace the construction of
6691 ritem.
6692
6693 2001-12-04 Paul Eggert <eggert@twinsun.com>
6694
6695 * src/bison.simple (union yyalloc): Change member names
6696 to be the same as the stack names.
6697 (yyparse): yyptr is now union yyalloc *, not char *.
6698 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
6699 and may generate better code on some machines.
6700 (yystpcpy): Use prototype if __STDC__ is defined, not just
6701 if __cplusplus is defined.
6702
6703 2001-11-30 Akim Demaille <akim@epita.fr>
6704
6705 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
6706 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
6707 Gettext doesn't compile cleanly, and dies with -Werror.
6708 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
6709 Include WARNING_CFLAGS here.
6710 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
6711 before being defined.
6712
6713 2001-11-27 Paul Eggert <eggert@twinsun.com>
6714
6715 * lib/quotearg.h (quotearg_n, quotearg_n_style):
6716 First arg is int, not unsigned.
6717 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
6718 (SIZE_MAX, UINT_MAX): New macros.
6719 (quotearg_n_options): Abort if N is negative.
6720 Avoid overflow check on hosts where size_t is 64 bits and int
6721 is 32 bits, as overflow is impossible there.
6722 Fix off-by-one typo that caused unnecessary reallocation.
6723
6724 2001-11-29 Paul Eggert <eggert@twinsun.com>
6725
6726 Name space cleanup in generated parser.
6727
6728 * doc/bison.texinfo (Bison Parser): Discuss system headers
6729 and their effect on the user name space.
6730
6731 * src/bison.simple:
6732 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
6733 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
6734 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
6735
6736 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
6737 on user names when possible.
6738
6739 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
6740 Simplify test for whather <alloca.h> exists.
6741
6742 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
6743
6744 (<stdio.h>): Include if YYDEBUG.
6745
6746 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
6747 ! defined (yyoverflow) && ! defined (yymemcpy).
6748
6749 (yymemcpy, yyparse): Rename local variables as needed so that
6750 they all begin with 'yy'.
6751
6752 (yystrlen, yystpcpy): New functions.
6753
6754 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
6755 All uses changed.
6756
6757 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
6758 instead of relying on string.h functions. Use YYSTACK_ALLOC
6759 and YYSTACK_FREE instead of malloc and free.
6760
6761 2001-11-30 Akim Demaille <akim@epita.fr>
6762
6763 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
6764 before their first uses.
6765 (YYBISON, YYPURE): Move to the top of the output.
6766
6767 2001-11-30 Akim Demaille <akim@epita.fr>
6768
6769 * tests/reduce.at (Useless Nonterminals): Fix.
6770
6771 2001-11-30 Akim Demaille <akim@epita.fr>
6772
6773 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
6774 if body instead of `;' to pacify GCC's warnings.
6775
6776 2001-11-30 Akim Demaille <akim@epita.fr>
6777
6778 Instead of mapping the LHS of unused rules to -1, keep the LHS
6779 valid, but flag the rules as invalid.
6780
6781 * src/gram.h (rule_t): `useful' is a new member.
6782 * src/print.c (print_grammar): Adjust.
6783 * src/derives.c (set_derives): Likewise.
6784 * src/reader.c (packgram, reduce_output): Likewise.
6785 * src/reduce.c (reduce_grammar_tables): Likewise.
6786 * tests/reduce.at (Underivable Rules, Useless Rules): New.
6787
6788 2001-11-30 Akim Demaille <akim@epita.fr>
6789
6790 * src/reduce.c (reduce_output): Formatting changes.
6791 * src/print.c (print_results, print_grammar): Likewise.
6792 * tests/regression.at (Rule Line Numbers)
6793 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
6794
6795 2001-11-30 Akim Demaille <akim@epita.fr>
6796
6797 * src/reduce.c (nonterminals_reduce): Instead of throwing away
6798 useless nonterminals, move them at the end of the symbol arrays.
6799 (reduce_output): Adjust.
6800 * tests/reduce.at (Useless Nonterminals): Adjust.
6801
6802 2001-11-30 Akim Demaille <akim@epita.fr>
6803
6804 * src/reduce.c: Various comment/formatting changes.
6805 (nonterminals_reduce): New, extracted from...
6806 (reduce_grammar_tables): here.
6807 (reduce_grammar): Call nonterminals_reduce.
6808
6809 2001-11-29 Paul Eggert <eggert@twinsun.com>
6810
6811 * src/bison.simple (YYSTACK_REALLOC): Remove.
6812 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
6813 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
6814 New macros.
6815 (union yyalloc): New type.
6816 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
6817 an arbitrary restriction on hosts where size_t is wider than int.
6818
6819 (yyparse): Don't dump core if alloca or malloc fails; instead, report
6820 a parser stack overflow. Allocate just one block of memory for all
6821 three stacks, instead of allocating three blocks; this typically is
6822 faster and reduces fragmentation.
6823
6824 Do not limit the number of items in the stack to a value that fits
6825 in 'int', as this is an arbitrary limit on hosts with 64-bit
6826 size_t and 32-bit int.
6827
6828 2001-11-29 Marc Autret <autret_m@epita.fr>
6829
6830 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
6831 of defining YYERROR_VERBOSE.
6832 [AT_DATA]: $4 is now out of C declarations in the prologue.
6833
6834 2001-11-28 Marc Autret <autret_m@epita.fr>
6835
6836 * src/reader.c (parse_dquoted_param): New.
6837 (parse_skel_decl): Use it.
6838 * src/lex.h: Add its prototype.
6839 * src/lex.c (literalchar): Become not static.
6840
6841 2001-11-28 Marc Autret <autret_m@epita.fr>
6842
6843 * src/output.h: And put its extern declaration here.
6844 * src/output.c (error_verbose): Define here.
6845 (prepare): Echo name modification.
6846 * src/getargs.h: Clean its extern declaration.
6847 * src/getargs.c (error_verbose_flag): Remove.
6848 (getargs): Remove case 'e'.
6849 * src/options.c (option_table): 'error-verbose' is now seen as simple
6850 percent option.
6851 Include output.h.
6852
6853 * src/reader.c (read_declarations): Remove case tok_include.
6854 (parse_include_decl): Remove.
6855 * src/lex.h (token_t): Remove tok_include.
6856 * src/options.c (option_table): 'include' is now a simple command line
6857 option.
6858
6859 2001-11-28 Marc Autret <autret_m@epita.fr>
6860
6861 * src/bison.simple: Adjust muscle names.
6862 * src/muscle_tab.c (muscle_init): Also rename the muscles.
6863 * src/output.c (prepare): s/_/-/ for the muscles names.
6864 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
6865
6866 2001-11-28 Marc Autret <autret_m@epita.fr>
6867
6868 * src/bison.simple: Fix debug.
6869 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
6870
6871 2001-11-28 Akim Demaille <akim@epita.fr>
6872
6873 * src/LR0.c (shifts_new): New.
6874 (save_shifts, insert_start_shift, augment_automaton): Use it.
6875
6876 2001-11-28 Akim Demaille <akim@epita.fr>
6877
6878 * src/closure.c (closure): `b' and `ruleno' denote the same value:
6879 keep ruleno only.
6880
6881 2001-11-28 Akim Demaille <akim@epita.fr>
6882
6883 * src/closure.c (closure): Instead of looping over word in array
6884 then bits in words, loop over bits in array.
6885
6886 2001-11-28 Akim Demaille <akim@epita.fr>
6887
6888 * src/closure.c (closure): No longer optimize the special case
6889 where all the bits of `ruleset[r]' are set to 0, to make the code
6890 clearer.
6891
6892 2001-11-28 Akim Demaille <akim@epita.fr>
6893
6894 * src/closure.c (closure): `r' and `c' are new variables, used to
6895 de-obfuscate accesses to RULESET and CORE.
6896
6897 2001-11-28 Akim Demaille <akim@epita.fr>
6898
6899 * src/reduce.c (reduce_print): Use ngettext.
6900 (dump_grammar): Improve the trace accuracy.
6901
6902 2001-11-28 Akim Demaille <akim@epita.fr>
6903
6904 * src/reduce.c (dump_grammar): Don't translate trace messages.
6905
6906 2001-11-28 Akim Demaille <akim@epita.fr>
6907
6908 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
6909 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
6910 as all tags are free'ed afterwards.
6911 From Enrico Scholz.
6912
6913 2001-11-27 Paul Eggert <eggert@twinsun.com>
6914
6915 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
6916 use alloca when we didn't want to, and vice versa.
6917
6918 2001-11-27 Marc Autret <autret_m@epita.fr>
6919
6920 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
6921 initialization.
6922 * src/output.c (prepare): Remove its update.
6923
6924 2001-11-27 Marc Autret <autret_m@epita.fr>
6925
6926 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
6927 Use %error-verbose.
6928
6929 2001-11-27 Marc Autret <autret_m@epita.fr>
6930
6931 * src/bison.simple: Remove YYERROR_VERBOSE using.
6932 Use %%error_verbose.
6933 (yyparse): Likewise.
6934 * src/output.c (prepare): Give its final value.
6935 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
6936 * src/getargs.h: Add its extern declaration.
6937 * src/getargs.c (error_verbose_flag): New int.
6938 (getargs): Update to catch new case.
6939 * src/options.c (option_table): 'error-verbose' is a new option.
6940 (shortopts): Update.
6941
6942 2001-11-27 Akim Demaille <akim@epita.fr>
6943
6944 * src/system.h: Use intl/libgettext.h.
6945 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
6946
6947 2001-11-27 Akim Demaille <akim@epita.fr>
6948
6949 * tests/torture.at (Exploding the Stack Size with Malloc):
6950 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
6951
6952 2001-11-27 Akim Demaille <akim@epita.fr>
6953
6954 * src/files.c: Include error.h.
6955 Reported by Hans Aberg.
6956
6957 2001-11-26 Marc Autret <autret_m@epita.fr>
6958
6959 * src/reader.c (parse_include_decl): New, not yet implemented.
6960 (read_declarations): Add case tok_include.
6961 * src/getargs.h (include): Add its extern definition.
6962 * src/getargs.c (include): New const char *.
6963 (getargs): Add case '-I'.
6964 * src/options.c (option_table): Add include as command line and
6965 percent option.
6966 * src/lex.h (token_t): Add tok_include.
6967
6968 2001-11-26 Akim Demaille <akim@epita.fr>
6969
6970 * src/reader.c (readgram): Make sure rules for mid-rule actions
6971 have a lineno equal to that of their host rule.
6972 Reported by Hans Aberg.
6973 * tests/regression.at (Rule Line Numbers): New.
6974
6975 2001-11-26 Akim Demaille <akim@epita.fr>
6976
6977 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
6978 size_ts.
6979
6980 2001-11-26 Akim Demaille <akim@epita.fr>
6981
6982 * src/complain.c, src/complain.h (error): Remove, provided by
6983 lib/error.[ch].
6984
6985 2001-11-26 Akim Demaille <akim@epita.fr>
6986
6987 * src/reader.c (read_declarations): Don't abort on tok_illegal,
6988 issue an error message.
6989 * tests/regression.at (Invalid %directive): New.
6990 Reported by Hans Aberg.
6991
6992 2001-11-26 Akim Demaille <akim@epita.fr>
6993
6994 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
6995 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
6996
6997 2001-11-26 Akim Demaille <akim@epita.fr>
6998
6999 * src/conflicts.c (conflicts_print): Don't complain at all when
7000 there are no reduce/reduce conflicts, and as many shift/reduce
7001 conflicts as expected.
7002 * tests/regression.at (%expect right): Adjust.
7003
7004 2001-11-23 Akim Demaille <akim@epita.fr>
7005
7006 * lib/alloca.c: Update, from fileutils.
7007
7008 2001-11-23 Akim Demaille <akim@epita.fr>
7009
7010 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
7011
7012 2001-11-23 Akim Demaille <akim@epita.fr>
7013
7014 * src/system.h: Include alloca.h.
7015 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
7016
7017 2001-11-23 Akim Demaille <akim@epita.fr>
7018
7019 * src/print_graph.c (print_actions): Remove `rule', unused.
7020 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
7021 pacify GCC's signed < unsigned warnings.
7022 * src/closure.c (itemsetsize): Likewise.
7023 * src/reader.c (symbol_list_new): Static.
7024
7025 2001-11-23 Akim Demaille <akim@epita.fr>
7026
7027 Attaching lineno to buckets is stupid, since only one copy of each
7028 symbol is kept, only the line of the first occurrence is kept too.
7029
7030 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
7031 * src/reader.c (rline_allocated): Remove, unused.
7032 (symbol_list): Have a `line' member.
7033 (symbol_list_new): New.
7034 (readgram): Use it.
7035 * src/print.c (print_grammar): Output the rule line numbers.
7036 * tests/regression.at (Solved SR Conflicts)
7037 (Unresolved SR Conflicts): Adjust.
7038 Reported by Hans Aberg.
7039
7040 2001-11-22 Marc Autret <autret_m@epita.fr>
7041
7042 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
7043
7044 2001-11-22 Marc Autret <autret_m@epita.fr>
7045
7046 * src/muscle_tab.c (muscle_init): Remove initialization of
7047 skeleton muscle.
7048 * src/output.c (output_master_parser): Do it here.
7049
7050 2001-11-20 Akim Demaille <akim@epita.fr>
7051
7052 * po/sv.po: New.
7053 * configure.in (ALL_LINGUAS): Adjust.
7054 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
7055 longer contains strings to translate.
7056
7057 2001-11-19 Akim Demaille <akim@epita.fr>
7058
7059 * src/conflicts.c (conflicts_print): Add a missing \n.
7060
7061 2001-11-19 Akim Demaille <akim@epita.fr>
7062
7063 * src/nullable.c (nullable_print): New.
7064 (set_nullable): Call it when tracing.
7065 Better locality of variables.
7066
7067 2001-11-19 Akim Demaille <akim@epita.fr>
7068
7069 * src/print.c (print_actions): Better locality of variables.
7070
7071 2001-11-19 Akim Demaille <akim@epita.fr>
7072
7073 * src/derives.c (print_derives): Fix and enrich.
7074 * src/closure.c (print_fderives): Likewise.
7075
7076 2001-11-19 Akim Demaille <akim@epita.fr>
7077
7078 * src/closure.c (itemsetend): Remove, replaced with...
7079 (itemsetsize): new.
7080
7081 2001-11-19 Akim Demaille <akim@epita.fr>
7082
7083 * src/LR0.c (kernel_end): Remove, replaced with...
7084 (kernel_size): new.
7085
7086 2001-11-19 Akim Demaille <akim@epita.fr>
7087
7088 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
7089 to clarify.
7090
7091 2001-11-19 Akim Demaille <akim@epita.fr>
7092
7093 * src/closure.c (closure): Use arrays instead of pointers to clarify.
7094
7095 2001-11-19 Akim Demaille <akim@epita.fr>
7096
7097 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
7098 trace messages.
7099 * src/LR0.c: Likewise.
7100 (allocate_itemsets): Use arrays instead of pointers to clarify.
7101
7102 2001-11-19 Akim Demaille <akim@epita.fr>
7103
7104 * src/getargs.c (statistics_flag): Replace with...
7105 (trace_flag): New.
7106 (longopts): Accept --trace instead of --statistics.
7107 * src/getargs.h, src/options.c: Adjust.
7108 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
7109 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
7110
7111 2001-11-19 Akim Demaille <akim@epita.fr>
7112
7113 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
7114 pointers to clarify the code.
7115 (save_reductions, save_shifts): Factor common parts of alternatives.
7116
7117 2001-11-19 Akim Demaille <akim@epita.fr>
7118
7119 * src/LR0.c (new_state, get_state): Complete TRACE code.
7120 * src/closure.c: Include `reader.h' to get `tags', needed by the
7121 trace code.
7122 Rename the conditional DEBUG as TRACE.
7123 Output consistently TRACEs to stderr, not stdout.
7124 * src/derives.c: Likewise.
7125 * src/reduce.c: (inaccessable_symbols): Using if is better style
7126 than goto.
7127 Use `#if TRACE' instead of `#if 0' for tracing code.
7128
7129 2001-11-19 Akim Demaille <akim@epita.fr>
7130
7131 * src/system.h (LIST_FREE, shortcpy): New.
7132 * src/LR0.c: Use them.
7133 * src/output.c (free_itemsets, free_reductions, free_shifts):
7134 Remove, replaced by LIST_FREE.
7135
7136 2001-11-19 Akim Demaille <akim@epita.fr>
7137
7138 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
7139 (REDUCTIONS_ALLOC): New.
7140 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
7141 allocation.
7142
7143 2001-11-19 Akim Demaille <akim@epita.fr>
7144
7145 * src/LR0.c (new_state): Complete trace code.
7146 * src/nullable.c (set_nullable): Don't translate traces.
7147
7148 2001-11-19 Akim Demaille <akim@epita.fr>
7149
7150 * src/print_graph.c (print_core): Better locality of variables.
7151 * src/print.c (print_core): Likewise.
7152
7153 2001-11-19 Akim Demaille <akim@epita.fr>
7154
7155 * src/vcg.c: You do the output, so you are responsible of the
7156 handling of VCG syntax, in particular: use quotearg.
7157 * src/print_graph.c: Don't.
7158 (print_actions): Don't output the actions as part of the nodes,
7159 since that's the job of the edges.
7160 (print_state): Don't output by hand: fill the node description,
7161 and ask for its output.
7162
7163 2001-11-19 Akim Demaille <akim@epita.fr>
7164
7165 * src/bison.simple (yyparse): When verbosely reporting an error,
7166 no longer put additional quotes around token names.
7167 * tests/calc.at: Adjust.
7168
7169 2001-11-19 Akim Demaille <akim@epita.fr>
7170
7171 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
7172 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
7173 * src/output.c: Adjust.
7174
7175 2001-11-19 Akim Demaille <akim@epita.fr>
7176
7177 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
7178 (rule_t): this.
7179 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
7180
7181 2001-11-19 Akim Demaille <akim@epita.fr>
7182
7183 * src/gram.h (rule_t): New.
7184 (rule_table): New.
7185 (rrhs, rlhs): Remove, part of state_t.
7186 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
7187 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
7188 * src/reader.c, src/reduce.c: Adjust.
7189
7190 2001-11-19 Akim Demaille <akim@epita.fr>
7191
7192 * src/reader.c (symbols_output): New, extracted from...
7193 (packsymbols): Here.
7194 (reader): Call it.
7195
7196 2001-11-19 Akim Demaille <akim@epita.fr>
7197
7198 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
7199 (maxrhs): this new function.
7200
7201 2001-11-19 Akim Demaille <akim@epita.fr>
7202
7203 * src/lalr.c (F): New macro to access the variable F.
7204 Adjust.
7205
7206 2001-11-19 Akim Demaille <akim@epita.fr>
7207
7208 * src/lalr.h (LA): New macro to access the variable LA.
7209 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7210 * src/lalr.c: Adjust.
7211
7212 2001-11-19 Akim Demaille <akim@epita.fr>
7213
7214 * src/lalr.c (initialize_LA): Only initialize LA. Let...
7215 (set_state_table): handle the `lookaheads' members.
7216
7217 2001-11-19 Akim Demaille <akim@epita.fr>
7218
7219 * src/lalr.h (lookaheads): Removed array, whose contents is now
7220 a member of...
7221 (state_t): this structure.
7222 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7223 Adjust.
7224
7225 2001-11-19 Akim Demaille <akim@epita.fr>
7226
7227 * src/lalr.h (consistent): Removed array, whose contents is now
7228 a member of...
7229 (state_t): this structure.
7230 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7231 Adjust.
7232
7233 2001-11-19 Akim Demaille <akim@epita.fr>
7234
7235 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
7236 contents are now members of...
7237 (state_t): this structure.
7238 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7239 Adjust.
7240
7241 2001-11-19 Akim Demaille <akim@epita.fr>
7242
7243 * src/lalr.h (state_t): New.
7244 (state_table): Be a state_t * instead of a core **.
7245 (accessing_symbol): Remove, part of state_t.
7246 * src/lalr.c: Adjust.
7247 (set_accessing_symbol): Merge into...
7248 (set_state_table): this.
7249 * src/print_graph.c, src/conflicts.c: Adjust.
7250
7251 2001-11-14 Akim Demaille <akim@epita.fr>
7252
7253 * tests/calc.at, tests/output.at, tests/regression.at,
7254 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
7255 now the tests are run in private dirs, therefore AC_CLEANUP and
7256 family can be simplified to 0-ary.
7257 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
7258 use abs. path to find config.h.
7259 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
7260 stderr, there can be way too much random noise.
7261 Instead pass -Werror to GCC and rely on the exit status.
7262 Reported by Wolfram Wagner.
7263
7264 2001-11-14 Akim Demaille <akim@epita.fr>
7265
7266 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
7267 defined only if yyoverflow is defined, to avoid `warning: unused
7268 variable `yyvs1''.
7269 Reported by The Test Suite.
7270
7271 2001-11-14 Akim Demaille <akim@epita.fr>
7272
7273 * src/print.c: Include reduce.h.
7274 Reported by Hans Aberg.
7275
7276 2001-11-14 Akim Demaille <akim@epita.fr>
7277
7278 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
7279 Revert a previous patch: these are really const.
7280 * src/conflicts.c (conflict_report): Additional useless pair of
7281 braces to pacify GCC's warnings for `if () if () {} else {}'.
7282 * src/lex.c (parse_percent_token): Replace equal_offset with
7283 arg_offset.
7284 arg is const.
7285 Be sure to strdup `arg' when used, since there is no reason for
7286 token_buffer not to change.
7287
7288 2001-11-14 Akim Demaille <akim@epita.fr>
7289
7290 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
7291 definition.
7292 * src/main.c (main): Use them.
7293 Suggested by Hans Aberg.
7294
7295 2001-11-12 Akim Demaille <akim@epita.fr>
7296
7297 * src/system.h (ngettext): Now that we use ngettext, be sure to
7298 provide a default definition when NLS are not used.
7299
7300 2001-11-12 Akim Demaille <akim@epita.fr>
7301
7302 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
7303 Use @kbd to denote user input.
7304 (Language and Grammar): ANSIfy the example.
7305 Adjust its layout for info/notinfo.
7306 (Location Tracking Calc): Output error messages to stderr.
7307 Output locations in a more GNUtically correct way.
7308 Fix a couple of Englishos.
7309 Adjust @group/@end group pairs.
7310
7311 2001-11-12 Akim Demaille <akim@epita.fr>
7312
7313 %expext was not functioning at all.
7314
7315 * src/conflicts.c (expected_conflicts): Set to -1.
7316 (conflict_report): Use ngettext.
7317 (conflicts_print): Check %expect and make its violation an error.
7318 * doc/bison.texinfo (Expect Decl): Adjust.
7319 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
7320 * tests/regression.at (%expect not enough, %expect right)
7321 (%expect too much): New.
7322
7323 2001-11-12 Akim Demaille <akim@epita.fr>
7324
7325 * tests/regression.at (Conflicts): Rename as...
7326 (Unresolved SR Conflicts): this.
7327 (Solved SR Conflicts): New.
7328
7329 2001-11-12 Akim Demaille <akim@epita.fr>
7330
7331 * src/reduce.c (print_results): Rename as...
7332 (reduce_output): This.
7333 Output to OUT, passed as argument, instead of output_obstack.
7334 (dump_grammar): Likewise.
7335 (reduce_free): New.
7336 Also free V1.
7337 (reduce_grammar): No longer call reduce_output, since...
7338 * src/print.c (print_results): do it.
7339 * src/main.c (main): Call reduce_free;
7340
7341 2001-11-12 Akim Demaille <akim@epita.fr>
7342
7343 * src/conflicts.c (print_reductions): Accept OUT as argument.
7344 Output to it, not to output_obstack.
7345 * src/print.c (print_actions): Adjust.
7346
7347 2001-11-12 Akim Demaille <akim@epita.fr>
7348
7349 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
7350 the result instead of using...
7351 (src_total, rrc_total, src_count, rrc_count): Remove.
7352 (any_conflicts): Remove.
7353 (print_conflicts): Split into...
7354 (conflicts_print, conflicts_output): New.
7355 * src/conflicts.h: Adjust.
7356 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
7357 * src/print.c (print_grammar): Issue `\n' between two rules.
7358 * tests/regression.at (Conflicts): New.
7359 Reported by Tom Lane.
7360
7361 2001-11-12 Akim Demaille <akim@epita.fr>
7362
7363 * tests/regression.at (Invalid input): Remove, duplicate with
7364 ``Invalid input: 1''.
7365
7366 2001-11-12 Akim Demaille <akim@epita.fr>
7367
7368 * tests/torture.at (AT_DATA_STACK_TORTURE)
7369 (Exploding the Stack Size with Alloca)
7370 (Exploding the Stack Size with Malloc): New.
7371
7372 2001-11-12 Akim Demaille <akim@epita.fr>
7373
7374 * src/bison.simple (YYSTACK_REALLOC): New.
7375 (yyparse) [!yyoverflow]: Use it and free the old stack.
7376 Reported by Per Allansson.
7377
7378 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
7379
7380 * src/bison.simple: Define type yystype instead of YYSTYPE, and
7381 define CPP macro, which substitute YYSTYPE by yystype.
7382 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
7383 with yyltype/YYLTYPE. This allows inclusion of the generated
7384 header within the parser if the compiler, such as GGC, accepts
7385 multiple equivalent #defines.
7386 From Akim.
7387
7388 2001-11-05 Akim Demaille <akim@epita.fr>
7389
7390 * src/reader.c (symbols_output): New, extracted from...
7391 (packsymbols): here.
7392 (reader): Adjust.
7393
7394 2001-11-05 Akim Demaille <akim@epita.fr>
7395
7396 * src/lex.c (parse_percent_token): s/quotearg/quote/.
7397
7398 2001-11-05 Akim Demaille <akim@epita.fr>
7399
7400 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
7401 pattern.
7402
7403 2001-11-05 Akim Demaille <akim@epita.fr>
7404
7405 * src/options.h (struct option_table_struct): set_flags is void*.
7406 * src/options.c (longopts): Support `--output' and `%output'.
7407 (usage): Adjust.
7408 * src/lex.h (tok_setopt): Remove, replaced with...
7409 (tok_intopt, tok_stropt): these new guys.
7410 * src/lex.c (getopt.h): Not needed.
7411 (token_buffer, unlexed_token_buffer): Not const.
7412 (percent_table): Promote `-' over `_' in directive names.
7413 Active `%name-prefix', `file-prefix', and `output'.
7414 (parse_percent_token): Accept possible arguments to directives.
7415 Promote `-' over `_' in directive names.
7416
7417 2001-11-04 Akim Demaille <akim@epita.fr>
7418
7419 * doc/bison.texinfo (Decl Summary): Split the list into
7420 `directives for grammars' and `directives for bison'.
7421 Sort'em.
7422 Add description of `%name-prefix', `file-prefix', and `output'.
7423 Promote `-' over `_' in directive names.
7424 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
7425 Simplify the description of `--name-prefix'.
7426 Promote `-' over `_' in directive names.
7427 Promote `--output' over `--output-file'.
7428 Fix the description of `--defines'.
7429 * tests/output.at: Exercise %file-prefix and %output.
7430
7431 2001-11-02 Akim Demaille <akim@epita.fr>
7432
7433 * doc/refcard.tex: Update.
7434
7435 2001-11-02 Akim Demaille <akim@epita.fr>
7436
7437 * src/symtab.h (SUNDEF): New.
7438 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
7439 stand for `uninitialized', instead of 0.
7440 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
7441 * src/lex.c (lex): Adjust.
7442
7443 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
7444 Number it 0.
7445 Let yylex return it instead of a plain 0.
7446 Reported by Dick Streefland.
7447
7448 2001-11-02 Akim Demaille <akim@epita.fr>
7449
7450 * tests/regression.at (Mixing %token styles): New test.
7451
7452 2001-11-02 Akim Demaille <akim@epita.fr>
7453
7454 * src/reader.c (parse_thong_decl): Formatting changes.
7455 (token_translations_init): New, extracted from...
7456 (packsymbols): Here.
7457 Adjust.
7458
7459 2001-11-01 Akim Demaille <akim@epita.fr>
7460
7461 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
7462 Check that `9foo.y' produces correct cpp guards.
7463 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
7464 guards.
7465 Reported by Wwp.
7466
7467 2001-11-01 Akim Demaille <akim@epita.fr>
7468
7469 * tests/regression.at (Invalid input: 2): New.
7470 * src/lex.c (unlexed_token_buffer): New.
7471 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
7472 too.
7473 Reported by Wwp.
7474
7475 2001-11-01 Akim Demaille <akim@epita.fr>
7476
7477 * tests/calc.at: Catch up with 1.30.
7478 * configure.in: Bump to 1.49a.
7479 Adjust to newer Autotest.
7480
7481 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
7482
7483 * src/conflicts.c: Move global variables rrc_total and src_total ...
7484 (print_conflicts): here.
7485 * src/output.c (output): Free global variable user_toknums.
7486 * src/lex.c (token_obstack): Become static.
7487
7488 2001-10-18 Akim Demaille <akim@epita.fr>
7489
7490 * tests/atlocal.in (GCC): Add.
7491 * tests/calc.at: s/m4_match/m4_bmatch/.
7492 s/m4_patsubst/m4_bpatsubst/.
7493 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
7494 * configure.in: AC_SUBST(GCC).
7495
7496 2001-10-14 Marc Autret <autret_m@epita.fr>
7497
7498 * src/options.c (create_long_option_table): Fix.
7499
7500 2001-10-10 Akim Demaille <akim@epita.fr>
7501
7502 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
7503
7504 2001-10-04 Akim Demaille <akim@epita.fr>
7505
7506 * src/reader.c (parse_union_decl): Push the caracters in
7507 union_obstack, not attrs_obstack.
7508
7509 2001-10-04 Akim Demaille <akim@epita.fr>
7510
7511 Merge in the branch 1.29.
7512
7513 * src/reader.c (packsymbols): Use a temporary obstack for
7514 `%%tokendef', since output_stack is already used elsewhere.
7515
7516 2001-10-02 Akim Demaille <akim@epita.fr>
7517
7518 Bump 1.29d.
7519
7520 2001-10-02 Akim Demaille <akim@epita.fr>
7521
7522 Version 1.29c.
7523
7524 2001-10-02 Akim Demaille <akim@epita.fr>
7525
7526 * tests/regression.at (Invalid CPP headers): New.
7527 From Alexander Belopolsky.
7528 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
7529
7530 2001-10-02 Akim Demaille <akim@epita.fr>
7531
7532 * tests/regression.at (Invalid input): New.
7533 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
7534 Reported by Shura.
7535
7536 2001-10-02 Akim Demaille <akim@epita.fr>
7537
7538 * tests/calc.at: Now that --debug works, the tests must be adjusted.
7539
7540 2001-10-02 Akim Demaille <akim@epita.fr>
7541
7542 * src/output.c (output_parser): Assert `skeleton'.
7543 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
7544 systems.
7545 From Shura.
7546
7547 2001-10-01 Marc Autret <autret_m@epita.fr>
7548
7549 * src/lex.h: Echo modifications.
7550 * src/lex.c (unlex): Parameter is now token_t.
7551 From Hans Aberg.
7552
7553 2001-10-01 Marc Autret <autret_m@epita.fr>
7554
7555 * src/main.c: Include lex.h.
7556 From Hans Aberg.
7557
7558 2001-09-29 Akim Demaille <akim@epita.fr>
7559
7560 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
7561
7562 2001-09-28 Akim Demaille <akim@epita.fr>
7563
7564 * tests/testsuite.at: Update to newer Autotest.
7565 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
7566
7567 2001-09-27 Akim Demaille <akim@epita.fr>
7568
7569 Position independent wrapper.
7570
7571 * tests/bison: Remove.
7572 * tests/bison.in: New.
7573 * configure.in: Adjust.
7574
7575 2001-09-27 Paul Eggert <eggert@twinsun.com>
7576
7577 Port quotearg fixes from tar 1.13.24.
7578
7579 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
7580 tm to be declared.
7581 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
7582 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
7583
7584 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
7585 * m4/mbrtowc.m4: New file.
7586 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
7587 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
7588
7589 2001-09-27 Akim Demaille <akim@epita.fr>
7590
7591 Bump to 1.29c.
7592
7593 2001-09-27 Akim Demaille <akim@epita.fr>
7594
7595 Version 1.29b.
7596
7597 2001-09-25 Akim Demaille <akim@epita.fr>
7598
7599 * src/system.h: Include `xalloc.h'.
7600 Remove it from the C files.
7601 * src/files.c (output_files): Free the obstacks.
7602 * src/lex.c (init_lex): Rename as...
7603 (lex_init): this.
7604 (lex_free): New.
7605 * src/main.c (main): Use it.
7606
7607 2001-09-24 Marc Autret <autret_m@epita.fr>
7608
7609 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
7610 to output informations in fout (FILE*).
7611 (open_graph, close_graph): Likewise.
7612 (output_graph, output_edge, output_node): Likewise.
7613 * src/vcg.h: Update function prototypes.
7614 * src/print_graph.c (print_graph): Open output graph file.
7615 (print_actions): Adjust.
7616 * src/files.h: Remove extern declaration.
7617 * src/files.c: Remove graph_obstack declaration.
7618 (open_files): Remove graph_obstack initialization.
7619 (output_files): Remove graph_obstack saving.
7620
7621 2001-09-24 Marc Autret <autret_m@epita.fr>
7622
7623 * src/files.c (compute_output_file_names): Fix.
7624
7625 2001-09-24 Marc Autret <autret_m@epita.fr>,
7626 Akim Demaille <akim@epita.fr>
7627
7628 * src/reader.c (reader): Remove call to free_symtab ().
7629 * src/main.c (main): Call it here.
7630 Include symtab.h.
7631 * src/conflicts.c (initialize_conflicts): Rename as...
7632 (solve_conflicts): this.
7633 * src/print.c (print_core, print_actions, print_state)
7634 (print_grammar): Dump to a file instead a `output_obstack'.
7635 (print_results): Dump `output_obstack', and then proceed with the
7636 FILE *.
7637 * src/files.c (compute_output_file_names, close_files): New.
7638 (output_files): Adjust.
7639 * src/main.c (main): Adjust.
7640
7641 2001-09-23 Marc Autret <autret_m@epita.fr>
7642
7643 * src/files.c (compute_header_macro): Computes header macro name
7644 from spec_defines_file when given.
7645
7646 2001-09-23 Marc Autret <autret_m@epita.fr>
7647
7648 * src/files.c (output_files): Add default extensions.
7649
7650 2001-09-22 Akim Demaille <akim@epita.fr>
7651
7652 * src/conflicts.c (finalize_conflicts): Rename as...
7653 (free_conflicts): this.
7654
7655 2001-09-22 Akim Demaille <akim@epita.fr>
7656
7657 * src/gram.c (gram_free): Rename back as...
7658 (dummy): this.
7659 (output_token_translations): Free `token_translations'.
7660 * src/symtab.c (free_symtab): Free the tag field.
7661
7662 2001-09-22 Akim Demaille <akim@epita.fr>
7663
7664 Remove `translations' as it is always set to true.
7665
7666 * src/gram.h: Adjust.
7667 * src/reader.c (packsymbols, parse_token_decl): Adjust
7668 * src/print.c (print_grammar): Adjust.
7669 * src/output.c (output_token_translations): Adjust.
7670 * src/lex.c (lex): Adjust.
7671 * src/gram.c: Be sure the set pointers to NULL.
7672 (dummy): Rename as...
7673 (gram_free): this.
7674
7675 2001-09-22 Akim Demaille <akim@epita.fr>
7676
7677 * configure.in: Invoke AM_LIB_DMALLOC.
7678 * src/system.h: Use dmalloc.
7679 * src/LR0.c: Be sure to have pointers initialized to NULL.
7680 (allocate_itemsets): Allocate kernel_items only if needed.
7681
7682 2001-09-22 Akim Demaille <akim@epita.fr>
7683
7684 * configure.in: Bump to 1.29b.
7685 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
7686 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
7687 need xmalloc.c in calc.y.
7688 From Pascal Bart.
7689
7690 2001-09-21 Akim Demaille <akim@epita.fr>
7691
7692 Version 1.29a.
7693 * Makefile.maint, config/config.guess, config/config.sub,
7694 * config/missing: Update from masters.
7695 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
7696 upon package.m4.
7697 * configure.in (ALL_LINGUAS): Add `tr'.
7698
7699 2001-09-21 Akim Demaille <akim@epita.fr>
7700
7701 * tests/Makefile.am (package.m4): Move to...
7702 ($(srcdir)/$(TESTSUITE)): here.
7703
7704 2001-09-20 Akim Demaille <akim@epita.fr>
7705
7706 * src/complain.c: No longer try to be standalone: use system.h.
7707 Don't assume __STDC__ is defined to 1. Just test if it is defined.
7708 * src/complain.h: Likewise.
7709 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
7710 Remove the unused variable `n'.
7711 From Albert Chin-A-Young.
7712
7713 2001-09-18 Marc Autret <autret_m@epita.fr>
7714
7715 * doc/bison.1: Update.
7716 * doc/bison.texinfo (Bison Options): Update --defines and --graph
7717 descriptions.
7718 (Option Cross Key): Update.
7719 Add --graph.
7720
7721 2001-09-18 Marc Autret <autret_m@epita.fr>
7722
7723 * tests/regression.at: New test (comment in %union).
7724
7725 2001-09-18 Marc Autret <autret_m@epita.fr>
7726
7727 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
7728 do that.
7729 Reported by Keith Browne.
7730
7731 2001-09-18 Marc Autret <autret_m@epita.fr>
7732
7733 * tests/output.at: Add tests for --defines and --graph.
7734
7735 2001-09-18 Marc Autret <autret_m@epita.fr>
7736
7737 * tests/output.at: Removes tests of %{header,src}_extension features.
7738
7739 2001-09-18 Akim Demaille <akim@epita.fr>
7740
7741 * tests/Makefile.am (package.m4): New.
7742 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
7743 (_AT_CHECK_CALC_ERROR): Likewise.
7744 Factor the `, ' part of verbose error messages.
7745
7746 2001-09-18 Marc Autret <autret_m@epita.fr>
7747
7748 * src/getargs.c (longopts): Declare --defines and --graph as options
7749 with optional arguments.
7750 * src/files.h: Add extern declarations.
7751 * src/files.c (spec_graph_file, spec_defines_file): New.
7752 (output_files): Update.
7753 Remove CPP-outed code.
7754
7755 2001-09-18 Marc Autret <autret_m@epita.fr>
7756
7757 Turn off %{source,header}_extension feature.
7758
7759 * src/files.c (compute_exts_from_gf): Update.
7760 (compute_exts_from_src): Update.
7761 (output_files): CPP-out useless code.
7762 * src/files.h: Remove {header,source}_extension extern declarations.
7763 * src/reader.c (parse_dquoted_param): CPP-out.
7764 (parse_header_extension_decl): Remove.
7765 (parse_source_extension_decl): Remove.
7766 (read_declarations): Remove cases tok_{hdrext,srcext}.
7767 * src/lex.c (percent_table): Remove {header,source}_extension entries.
7768 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
7769
7770 2001-09-10 Akim Demaille <akim@epita.fr>
7771
7772 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
7773 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
7774 (AT_CHECK_OUTPUT): this.
7775 Merely check ls' exit status, its output is useless.
7776
7777 2001-09-10 Akim Demaille <akim@epita.fr>
7778
7779 * tests/calc.at: Use m4_match.
7780 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
7781
7782 2001-09-10 Marc Autret <autret_m@epita.fr>,
7783 Akim Demaille <akim@epita.fr>
7784
7785 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
7786 enum color_e.
7787 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
7788 to `normal'.
7789 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
7790 * src/lex.h: Adjust prototype.
7791 (token_t): Add `tok_undef'.
7792 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
7793 (parse_percent_token): Now returns token_t.
7794 Add default statement in switch.
7795 (lex): Separate `c' as an input variable, from the token_t result
7796 part.
7797 (unlexed): Is a token_t.
7798
7799 2001-09-10 Akim Demaille <akim@epita.fr>
7800
7801 * configure.in: Bump to 1.29a.
7802
7803 2001-09-07 Akim Demaille <akim@epita.fr>
7804
7805 Version 1.29.
7806
7807 2001-08-30 Akim Demaille <akim@epita.fr>
7808
7809 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
7810 * m4/atconfig.m4: Remove.
7811 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
7812 * tests/bison: New.
7813 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
7814 m4_if, m4_patsubst, and m4_regexp.
7815 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
7816 `input' file instead of echo.
7817
7818 2001-08-29 Akim Demaille <akim@epita.fr>
7819
7820 Bump to 1.28e.
7821
7822 2001-08-29 Akim Demaille <akim@epita.fr>
7823
7824 Version 1.28d.
7825
7826 2001-08-29 Paul Eggert <eggert@twinsun.com>
7827
7828 * src/bison.simple (yyparse): Don't take the address of an
7829 item before the start of an array, as that doesn't conform to
7830 the C Standard.
7831
7832 2001-08-29 Robert Anisko <anisko_r@epita.fr>
7833
7834 * doc/bison.texinfo (Location Tracking Calc): New node.
7835
7836 2001-08-29 Paul Eggert <eggert@twinsun.com>
7837
7838 * src/output.c (output): Do not define const, as this now
7839 causes more problems than it cures.
7840
7841 2001-08-29 Akim Demaille <akim@epita.fr>
7842
7843 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
7844 the nodes.
7845 Be sure to tag the `detailmenu'.
7846
7847 2001-08-29 Akim Demaille <akim@epita.fr>
7848
7849 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
7850 download in a tmp dir.
7851
7852 2001-08-28 Marc Autret <autret_m@epita.fr>
7853
7854 * config/depcomp: New file.
7855
7856 2001-08-28 Marc Autret <autret_m@epita.fr>
7857
7858 * doc/bison.1 (mandoc): Adjust.
7859 From Juan Manuel Guerrero.
7860
7861 2001-08-28 Marc Autret <autret_m@epita.fr>
7862
7863 * src/print_graph.c (print_state): Fix.
7864
7865 2001-08-27 Marc Autret <autret_m@epita.fr>
7866
7867 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
7868 char * members.
7869 Echo modifications to the functions prototypes.
7870 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
7871
7872 2001-08-27 Marc Autret <autret_m@epita.fr>
7873
7874 * src/vcg.c: Include `xalloc.h'.
7875 (add_colorentry): New.
7876 (add_classname): New.
7877 (add_infoname): New.
7878 * src/vcg.h: Add new prototypes.
7879
7880 2001-08-27 Akim Demaille <akim@epita.fr>
7881
7882 * Makefile.maint: Sync. again with CVS Autoconf.
7883
7884 2001-08-27 Akim Demaille <akim@epita.fr>
7885
7886 * Makefile.maint: Formatting changes.
7887 (po-update, cvs-update, update): New targets.
7888 (AMTAR): Remove.
7889
7890 2001-08-27 Akim Demaille <akim@epita.fr>
7891
7892 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
7893 * Makefile.maint: Sync. with CVS Autoconf.
7894
7895 2001-08-27 Marc Autret <autret_m@epita.fr>
7896
7897 * src/vcg.h (struct infoname_s): New.
7898 (struct colorentry_s): New.
7899 (graph_s): New fields {vertical,horizontal}_order in structure.
7900 Add `infoname' field.
7901 Add `colorentry' field;
7902 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
7903 (G_HORIZONTAL_ORDER): New.
7904 (G_INFONAME): New.
7905 (G_COLORENTRY): New.
7906 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
7907 Add output of `infoname'.
7908 Add output of `colorentry'.
7909
7910 2001-08-27 Marc Autret <autret_m@epita.fr>
7911
7912 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
7913 This one shadowed a global parameter.
7914
7915 2001-08-24 Marc Autret <autret_m@epita.fr>
7916
7917 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
7918 instead of `unsigned'.
7919 (print_state): Do not call obstack_object_size () in obstack_grow ()
7920 to avoid macro variables shadowing.
7921
7922 2001-08-23 Marc Autret <autret_m@epita.fr>
7923
7924 * src/lex.c (percent_table): Typo: s/naem/name/.
7925 Add graph option.
7926 Normalize new options declarations.
7927
7928 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
7929
7930 * tests/suite.at: Exercise %header_extension and %source_extension.
7931
7932 2001-08-16 Marc Autret <autret_m@epita.fr>
7933
7934 * src/reader.c (parse_dquoted_param): New.
7935 (parse_header_extension_decl): Use it.
7936 (parse_source_extension_decl): Likewise.
7937
7938 2001-08-16 Marc Autret <autret_m@epita.fr>
7939
7940 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
7941 (get_xxxx_str): Use assert () instead of complain ().
7942 Remove return invokations in default cases.
7943 (get_decision_str): Modify default behaviour. Remove second argument.
7944 Echo modifications on calls.
7945 (output_graph): Fix.
7946
7947 2001-08-16 Marc Autret <autret_m@epita.fr>
7948
7949 * src/getargs.c (usage): Update with ``-g, --graph''.
7950
7951 2001-08-16 Marc Autret <autret_m@epita.fr>
7952
7953 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
7954 (Option Cross Key): Likewise.
7955 * doc/bison.1: Update.
7956
7957 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
7958
7959 * src/output.c (output_master_parser): Don't finish action_obstack.
7960 (output_parser): Don't care about the muscle action, here.
7961 (prepare): Copy the action_obstack in the action muscle.
7962 (output): Free action_obstack.
7963
7964 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
7965
7966 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
7967 will contain `%union' declaration.
7968 (parse_union_decl): Delete #line directive output.
7969 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
7970 informations about %union.
7971 (parse_union_decl): Copy the union_obstack in the muscle stype.
7972 * src/bison.simple: Add new #line directive.
7973 Add typdef %%stype YYSTYPE.
7974
7975 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
7976
7977 * src/bison.simple: Add new `#line' directive.
7978
7979 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
7980
7981 * src/bison.simple: New `#line' directive.
7982 * src/output.c (output_parser): Support new dynamic muscle input_line.
7983
7984 2001-09-22 Marc Autret <autret_m@epita.fr>
7985
7986 * src/output.c (output_master_parser): New.
7987 (output_parser): Be more re-entrant.
7988
7989 2001-09-21 Marc Autret <autret_m@epita.fr>
7990
7991 * src/reader.c (copy_definition, parse_union_decl): Update and use
7992 `linef' muscle.
7993 (copy_action): Likewise.
7994 Use obstack_1grow ().
7995 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
7996
7997 2001-09-21 Marc Autret <autret_m@epita.fr>
7998
7999 * src/options.c (option_table): Adjust.
8000 * src/lex.c (parse_percent_token): Fix.
8001
8002 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
8003
8004 * src/options.c (symtab.h): Include it, need by lex.h.
8005
8006 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
8007
8008 * src/lex.c (parse_percent_token): Change type of variable `tx', which
8009 is now an option_table_struct*.
8010 (option_strcmp): New function option_strcmp.
8011 (parse_percent_token): Call option_strcmp.
8012 * src/getargs.c (xalloc.h, options.h): Include it.
8013 (getargs): Call create_long_option_table.
8014 (getargs): Free longopts at the end of the function.
8015 (shortopts): Move in options.c.
8016 * src/options.c (create_long_option_table): New function. Convert
8017 information from option_table to option structure.
8018 * src/reader.c (options.h): Include it.
8019
8020 * src/Makefile.am: Adjust.
8021 * src/options.c (option_table): Create from longopts and percent_table.
8022 * src/getargs.c (longopts): Delete.
8023 * src/lex.c (struct percent_table_struct): Delete.
8024 (percent_table): Delete.
8025 (options.h): Include it.
8026 * src/options.c: Create.
8027 * src/options.h: Create.
8028 Declare enum opt_access_e.
8029 Define struct option_table_struct.
8030
8031 2001-09-20 Marc Autret <autret_m@epita.fr>
8032
8033 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
8034 sections of Bison.
8035
8036 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
8037
8038 * src/bison.simple: s/%%filename/%%skeleton.
8039 * src/muscle_tab.c (getargs.h): Include it.
8040 (muscle_init): Insert new muscle skeleton.
8041
8042 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
8043
8044 * src/output.c (output_parser): Delete unused variable actions_dumped.
8045
8046 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
8047
8048 * src/output.c (output): Delete call to reader_output_yylsp.
8049 * src/reader.c (reader): Likewise.
8050 * src/reader.h: Delete declaration of reader_output_yylsp.
8051
8052 2001-09-02 Marc Autret <autret_m@epita.fr>
8053
8054 * src/reader.c: Include muscle_tab.h.
8055 (parse_union_decl): Update.
8056 (parse_macro_decl): Rename parse_muscle_decl.
8057 Update to use renamed functions and variable.
8058 (read_declarations, copy_action, read_additionnal_code, : Updated
8059 with correct variables and functions names.
8060 (packsymbols, reader): Likewise.
8061
8062 * src/reader.h (muscle_obstack): Extern declaration update.
8063
8064 * src/output.c: Include muscle_tab.h
8065 In all functions using macro_insert, change by using muscle_insert ().
8066 (macro_obstack): Rename muscle_obstack.
8067 Echo modifications in the whole file.
8068 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
8069 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
8070 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
8071
8072 * src/muscle_tab.h: Update double inclusion macros.
8073 (macro_entry_s): Rename muscle_entry_s.
8074 Update prototypes.
8075
8076 * src/muscle_tab.c: Include muscle_tab.h.
8077 Rename macro_tabble to muscle_table.
8078 (mhash1, mhash2, mcmp): Use muscle_entry.
8079 (macro_init): Rename muscle_init. Update.
8080 (macro_insert): Rename muscle_insert. Update.
8081 (macro_find): Rename muscle_find. Update.
8082
8083 * src/main.c: Include muscle_tab.h.
8084 (main): Call muscle_init ().
8085 * src/Makefile.am (bison_SOURCES): Echo modifications.
8086
8087 2001-09-02 Marc Autret <autret_m@epita.fr>
8088
8089 Now the files macro_tab.[ch] are named muscle_tab.[ch].
8090
8091 * src/muscle_tab.c, src/muscle_tab.h: Add files.
8092
8093 2001-09-02 Marc Autret <autret_m@epita.fr>
8094
8095 * src/macrotab.c, src/macrotab.h: Remove.
8096
8097 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
8098
8099 * src/reader.c (copy_guard): Use muscle to specify the `#line'
8100 filename.
8101
8102 2001-09-01 Marc Autret <autret_m@epita.fr>
8103
8104 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
8105 to an explicit value to activate the feature. We do it here.
8106
8107 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
8108
8109 * src/output.c (prepare): Delete the `filename' muscule insertion.
8110 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
8111 (parse_union_decl): Likewise.
8112 * src/macrotab.c (macro_init): Initialize filename by infile.
8113
8114 2001-08-31 Marc Autret <autret_m@epita.fr>
8115
8116 * src/bison.simple (YYLSP_NEEDED): New definition.
8117 * src/output.c (prepare): Add macro insertion of `locations_flag'
8118
8119 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
8120
8121 * src/output.c (prepare): Delete insertion of previous muscles,
8122 and insert the `prefix' muscles.
8123 * src/macrotab.c (macro_init): Likewise.
8124 (macro_init): Initialization prefix directive by `yy'.
8125 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
8126 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
8127 yylval, yydebug, yyerror, yynerrs and yyparse.
8128 New directive `#define' to substitute yydebug, ... with option
8129 name_prefix.
8130
8131 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
8132
8133 * src/main.c (main): Standardize.
8134 * src/output.c (output_table_data, output_parser): Likewise.
8135 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
8136
8137 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
8138
8139 * src/reader.c (read_additionnal_code): Rename %%user_code to
8140 %%epilogue.
8141 * src/output.c (output): Rename %%declarations to %%prologue.
8142 * src/bison.simple: Echo modifications.
8143
8144 2001-08-31 Marc Autret <autret_m@epita.fr>
8145
8146 * src/reader.c (readgram): CleanUp.
8147 (output_token_defines): Likewise.
8148 (packsymbols): Likewise.
8149 (reader): Likewise.
8150 * src/output.c (output): CPP-out useless code.
8151
8152 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
8153
8154 * src/reader.c (reader): Delete obsolete call to function
8155 output_trailers and output_headers.
8156 * src/output.h: Remove obsolete functions prototypes of output_headers
8157 and output_trailers.
8158
8159 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
8160
8161 * src/main.c: Include macrotab.h.
8162 * src/macrotab.h (macro_entry_s): Constify fields.
8163 Adjust functions prototypes.
8164 * src/macrotab.c (macro_insert): Constify key and value.
8165 (macro_find): Constify key.
8166 (macro_insert): Include 'xalloc.h'
8167 (macro_insert): Use XMALLOC.
8168 (macro_find): Constify return value.
8169 * src/output.c (output_table_data): Rename table to table_data.
8170 (output_parser): Constify macro_key, macro_value.
8171
8172 2001-08-30 Marc Autret <autret_m@epita.fr>
8173
8174 * src/reader.c (parse_skel_decl): New.
8175 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
8176 * src/lex.h (token_t): New token `tok_skel'.
8177 * src/lex.c (percent_table): Add skeleton option entry.
8178 Standardize.
8179
8180 2001-08-29 Marc Autret <autret_m@epita.fr>
8181
8182 * src/bison.simple: Add %%user_code directive at the end.
8183 * src/reader.c (read_additionnal_code): New.
8184 (reader): Use it.
8185 * src/output.c (output_program): Remove.
8186 (output): Update.
8187
8188 2001-08-28 Marc Autret <autret_m@epita.fr>
8189
8190 * src/output.c (output_actions): Clean up.
8191 (output_gram): CPP-out useless code.
8192 * src/reader.c (reader): Clean up, CPP-out useless code.
8193
8194 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
8195
8196 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
8197 directive.
8198 * src/bison.simple: Add `%%definitions'.
8199
8200 2001-08-28 Marc Autret <autret_m@epita.fr>
8201
8202 * config/depcomp: New file.
8203
8204 2001-08-27 Paul Eggert <eggert@twinsun.com>
8205
8206 * src/bison.simple (yyparse): Don't take the address of an
8207 item before the start of an array, as that doesn't conform to
8208 the C Standard.
8209
8210 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
8211
8212 * src/output.c (output): Remove the initialization of the macro
8213 obstack. It was done too late here.
8214
8215 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
8216 completely wrong.
8217 (reader): Initialize the macro obstack here, since we need it to grow
8218 '%define' directives.
8219
8220 * src/reader.h: Declare the macro obstack as extern.
8221
8222 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
8223
8224 * src/output.c (output_parser): Fix. Store single '%' characters in
8225 the output obstack instead of throwing them away.
8226
8227 2001-08-27 Akim Demaille <akim@epita.fr>
8228
8229 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
8230
8231 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8232
8233 * lib/Makefile.am: Adjust.
8234
8235 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8236
8237 * src/bison.simple: Update and add '%%' directives.
8238
8239 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8240
8241 * src/reader.c (reader): Remove calls to 'output_headers' and
8242 'output_trailers'. Remove some C output.
8243 (readgram): Disable a piece of code that was writing a default
8244 definition for 'YYSTYPE'.
8245 (reader_output_yylsp): Remove.
8246 (packsymbols): Output token defintions to a macro.
8247 (copy_definition): Disable C output.
8248
8249 * src/reader.c (parse_macro_decl): New function used to parse macro
8250 declarations.
8251 (copy_string2): Put the body of copy_string into this new function.
8252 Add a parameter to let the caller choose whether he wants to copy the
8253 string delimiters or not.
8254 (copy_string): Be a simple call to copy_string2 with the last argument
8255 bound to true.
8256 (read_declarations): Add case for macro definition.
8257 (copy_identifier): New.
8258 (parse_macro_decl): Read macro identifiers using copy_identifier
8259 rather than lex.
8260
8261 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8262
8263 * src/output.c (prepare): Add prefixed names.
8264 (output_parser): Output semantic actions.
8265 (output_parser): Fix bug on '%%line' directives.
8266
8267 * src/output.c (output_headers): Remove. The C code printed by this
8268 function should now be in the skeletons.
8269 (output_trailers): Remove.
8270 (output): Disable call to 'reader_output_yylsp'.
8271 (output_rule_data): Do not output tables to the table obstack.
8272
8273 * src/output.c: Remove some C dedicated output.
8274 Improve the use of macro and output obstacks.
8275 (output_defines): Remove.
8276
8277 * src/output.c (output_token_translations): Associate 'translate'
8278 table with a macro. No output to the table obstack.
8279 (output_gram): Same for 'rhs' and 'prhs'.
8280 (output_stos): Same for 'stos'.
8281 (output_rule_data): Same for 'r1' and 'r2'.
8282 (token_actions): Same for 'defact'.
8283 (goto_actions): Same for 'defgoto'.
8284 (output_base): Same for 'pact' and 'pgoto'.
8285 (output_table): Same for 'table'.
8286 (output_check): Same for 'check'.
8287
8288 * src/output.c (output_table_data): New function.
8289 (output_short_table): Remove.
8290 (output_short_or_char_table): Remove.
8291
8292 * src/output.c (output_parser): Replace most of the skeleton copy code
8293 with something new. Skeletons are now processed character by character
8294 rather than line by line, and Bison looks for '%%' macros. This is the
8295 first step in making Bison's output process (a lot) more flexible.
8296 (output_parser): Use the macro table.
8297
8298 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8299
8300 * src/main.c (main): Initialize the macro table.
8301
8302 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8303
8304 * src/lex.c (percent_table): Add tok_define.
8305 * src/lex.h: Add tok_define.
8306
8307 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8308
8309 * src/macrotab.c: New file.
8310 * src/macrotab.h: New file.
8311 * src/Makefile.am: Update.
8312
8313 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8314
8315 * lib/hash.c: New file.
8316 * lib/hash.h: New file.
8317 * lib/Makefile.am: Update.
8318
8319 2001-08-15 Akim Demaille <akim@epita.fr>
8320
8321 Version 1.28c.
8322
8323 2001-08-15 Marc Autret <autret_m@epita.fr>
8324
8325 * src/reader.c (readgram): Indent output macro YYSTYPE.
8326 (packsymbols): Likewise.
8327 (output_token_defines): Likewise.
8328 * src/files.c: Standardize.
8329 (compute_header_macro): New.
8330 (defines_obstack_save): New. Use compute_header_macro.
8331 (output_files): Update. Use defines_obstack_save.
8332
8333 2001-08-15 Akim Demaille <akim@epita.fr>
8334
8335 * doc/bison.texinfo (Table of Symbols): Document
8336 YYSTACK_USE_ALLOCA.
8337
8338 2001-08-15 Akim Demaille <akim@epita.fr>
8339
8340 * missing: Update from CVS Automake.
8341 * config/config.guess, config/config.sub, config/texinfo.tex:
8342 Update from gnu.org.
8343
8344 2001-08-15 Akim Demaille <akim@epita.fr>
8345
8346 * Makefile.maint: Sync with CVS Autoconf.
8347
8348 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
8349
8350 * doc/bison.texinfo: Include GNU Free Documentation License from
8351 `fdl.texi'.
8352 * doc/fdl.texi: Add to package.
8353
8354 2001-08-14 Marc Autret <autret_m@epita.fr>
8355
8356 Turn on %{source,header}_extension features.
8357
8358 * src/lex.c (percent_table): Un-CPP out header_extension and
8359 source_extension.
8360 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
8361 (compute_exts_from_src): Remove conditions. It restores priorities
8362 between options.
8363
8364 2001-08-14 Marc Autret <autret_m@epita.fr>
8365
8366 * src/files.c (compute_base_names): Add extensions computing when
8367 `--file-prefix' used.
8368 Standardize function calls.
8369
8370 2001-08-13 Marc Autret <autret_m@epita.fr>
8371
8372 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
8373 defining it (defined but null disables alloca).
8374
8375 2001-08-13 Marc Autret <autret_m@epita.fr>
8376
8377 * src/bison.simple (_yy_memcpy): CPP reformat.
8378
8379 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
8380
8381 * tests/atconfig.in (CPPFLAGS): Fix.
8382
8383 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
8384
8385 * doc/bison.texinfo: Include GNU General Public License from
8386 `gpl.texi'.
8387 * doc/gpl.texi: Add to package.
8388
8389 2001-08-10 Marc Autret <autret_m@epita.fr>
8390
8391 * src/print_graph.h: Fix.
8392 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
8393
8394 2001-08-10 Akim Demaille <akim@epita.fr>
8395
8396 * src/system.h: Provide default declarations for stpcpy, strndup,
8397 and strnlen.
8398
8399 2001-08-10 Robert Anisko <anisko_r@epita.fr>
8400
8401 * doc/bison.texinfo (Locations): Update @$ stuff.
8402
8403 2001-08-09 Robert Anisko <anisko_r@epita.fr>
8404
8405 * src/bison.simple (YYLLOC_DEFAULT): Update.
8406 (yyparse): Adjust.
8407
8408 2001-08-08 Marc Autret <autret_m@epita.fr>
8409
8410 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
8411 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
8412 Reported by Fabrice Bauzac.
8413
8414 2001-08-08 Marc Autret <autret_m@epita.fr>
8415
8416 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
8417 * src/vcg.c (output_node): Fix.
8418 * src/vcg.h: Cleanup.
8419 * src/print_graph.c: Add comments.
8420 (node_output_size): New global variable. Simplify the formatting of
8421 the VCG graph output.
8422 (print_actions): Unused code is now used. It notifies the final state
8423 and no action states in the VCG graph. It also give the reduce actions.
8424 The `shift and goto' edges are red and the `go to state' edges are
8425 blue.
8426 Get the current node name and node_obstack by argument.
8427 (node_obstack): New variable.
8428 (print_state): Manage node_obstack.
8429 (print_core): Use node_obstack given by argument.
8430 A node is not only computed here but in print_actions also.
8431 (print_graph): CPP out useless code instead of commenting it.
8432
8433 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
8434
8435 * tests/atconfig.in (CPPFLAGS): Fix.
8436
8437 2001-08-07 Akim Demaille <akim@epita.fr>
8438
8439 * src/print_graph.c (quote): New.
8440 (print_core): Use it.
8441
8442 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
8443
8444 * src/vcg.c (complain.h): Include it.
8445 Unepitaize `return' invocations.
8446 [NDEBUG] (main): Remove.
8447 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
8448 * src/files.c (open_files): Initialize graph_obstack.
8449 * src/print_graph.c (print_actions): CPP out useless code.
8450 (print_core): Don't output the last `\n' in labels.
8451 Use `quote'.
8452 * src/files.c (output_files): Output the VCG file.
8453 * src/main.c (main): Invoke print_graph ();
8454
8455 2001-08-06 Marc Autret <autret_m@epita.fr>
8456
8457 Automaton VCG graph output.
8458 Using option ``-g'' or long option ``--graph'', you can generate
8459 a gram_filename.vcg file containing a VCG description of the LALR (1)
8460 automaton of your grammar.
8461
8462 * src/main.c: Call to print_graph() function.
8463 * src/getargs.h: Update.
8464 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
8465 (graph_flag): New flag.
8466 (longopts): Update.
8467 (getargs): Add case `g'.
8468 * src/files.c (graph_obstack): New obstack struct.
8469 (open_files): Initialize new obstack.
8470 (output_files): Saves graph_obstack if required.
8471 * src/files.h (graph_obstack): New extern declaration.
8472 * src/Makefile.am: Add new source files.
8473
8474 2001-08-06 Marc Autret <autret_m@epita.fr>
8475
8476 * src/print_graph.c, src/print_graph.h (graph): New.
8477 * src/vcg.h: New file.
8478 * src/vcg.c: New file, VCG graph handling.
8479
8480 2001-08-06 Marc Autret <autret_m@epita.fr>
8481
8482 Add of %source_extension and %header_extension which specify
8483 the source or/and the header output file extension.
8484
8485 * src/files.c (compute_base_names): Remove initialisation of
8486 src_extension and header_extension.
8487 (compute_exts_from_gf): Update.
8488 (compute_exts_from_src): Update.
8489 (output_files): Update.
8490 * src/reader.c (parse_header_extension_decl): New.
8491 (parse_source_extension_decl): New.
8492 (read_declarations): New case statements for the new tokens.
8493 * src/lex.c (percent_table): Add entries for %source_extension
8494 and %header_extension.
8495 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
8496
8497 2001-08-06 Marc Autret <autret_m@epita.fr>
8498
8499 * configure.in: Bump to 1.28c.
8500 * doc/bison.texinfo: Texinfo thingies.
8501
8502 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
8503
8504 * tests/atconfig.in (CPPFLAGS): Add.
8505 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
8506
8507 2001-08-03 Akim Demaille <akim@epita.fr>
8508
8509 Version 1.28b.
8510
8511 2001-08-03 Akim Demaille <akim@epita.fr>
8512
8513 * tests/Makefile.am (check-local): Ship testsuite.
8514 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
8515 Include `string.h'.
8516
8517 2001-08-03 Akim Demaille <akim@epita.fr>
8518
8519 * configure.in: Try using -Wformat when compiling.
8520
8521 2001-08-03 Akim Demaille <akim@epita.fr>
8522
8523 * configure.in: Bump to 1.28b.
8524
8525 2001-08-03 Akim Demaille <akim@epita.fr>
8526
8527 * src/complain.c: Adjust strerror_r portability issues.
8528
8529 2001-08-03 Akim Demaille <akim@epita.fr>
8530
8531 Version 1.28a.
8532
8533 2001-08-03 Akim Demaille <akim@epita.fr>
8534
8535 * src/getargs.c, src/getarg.h (skeleton)): Constify.
8536 * src/lex.c (literalchar): Avoid name clashes on `buf'.
8537 * src/getargs.c: Include complain.h.
8538 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
8539 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
8540
8541 2001-08-03 Akim Demaille <akim@epita.fr>
8542
8543 * src/reader.c (readgram): Display hidden chars in error messages.
8544
8545 2001-08-03 Akim Demaille <akim@epita.fr>
8546
8547 Update to gettext 0.10.39.
8548
8549 2001-08-03 Akim Demaille <akim@epita.fr>
8550
8551 * lib/strspn.c: New.
8552
8553 2001-08-01 Marc Autret <autret_m@epita.fr>
8554
8555 * doc/bison.texinfo: Update.
8556 * doc/bison.1 (mandoc): Update.
8557 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
8558 * src/files.c: Support output files extensions computing.
8559 (src_extension): New static variable.
8560 (header_extension): New static variable.
8561 (tr): New function.
8562 (get_extension_index): New function, gets the index of an extension
8563 filename in a string.
8564 (compute_exts_from_gf): New function, computes extensions from the
8565 grammar file extension.
8566 (compute_exts_from_src): New functions, computes extensions from the
8567 C source file extension, file given by ``-o'' option.
8568 (compute_base_names): Update.
8569 (output_files): Update.
8570
8571 2001-08-01 Robert Anisko <anisko_r@epita.fr>
8572
8573 * doc/bison.texi: Document @$.
8574 (Locations): New section.
8575
8576 2001-07-18 Akim Demaille <akim@epita.fr>
8577
8578 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
8579 * config/prev-version.txt, config/move-if-change: New.
8580 * Makefile.am: Adjust.
8581
8582 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
8583
8584 * src/bison.simple (yyparse): Suppress warning `comparaison
8585 between signed and unsigned'.
8586
8587 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
8588
8589 * src/getargs.h (raw_flag): Remove.
8590 * src/getargs.c: Die on `-r'/`--raw'.
8591 * src/lex.c (parse_percent_token): Die on `%raw'.
8592 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
8593 * tests/calc.at: Suppress test with option `--raw'.
8594
8595 2001-07-14 Akim Demaille <akim@epita.fr>
8596
8597 * config/: New.
8598 * configure.in: Require Autoconf 2.50.
8599 Update to gettext 0.10.38.
8600
8601 2001-03-16 Akim Demaille <akim@epita.fr>
8602
8603 * doc/bison.texinfo: ANSIfy the examples.
8604
8605 2001-03-16 Akim Demaille <akim@epita.fr>
8606
8607 * getargs.c (skeleton): New variable.
8608 (longopts): --skeleton is a new option.
8609 (shortopts, getargs): -S is a new option.
8610 * getargs.h: Declare skeleton.
8611 * output.c (output_parser): Use it.
8612
8613 2001-03-16 Akim Demaille <akim@epita.fr>
8614
8615 * m4/strerror_r.m4: New.
8616 * m4/error.m4: Run AC_FUNC_STRERROR_R.
8617 * lib/error.h, lib/error.c: Update.
8618
8619 2001-03-16 Akim Demaille <akim@epita.fr>
8620
8621 * src/getargs.c (longopts): Clean up.
8622
8623 2001-02-21 Akim Demaille <akim@epita.fr>
8624
8625 * src/reader.c (gensym): `gensym_count' is your own.
8626 Use a static buf to create the symbol name, as token_buffer is no
8627 longer a buffer.
8628
8629 2001-02-08 Akim Demaille <akim@epita.fr>
8630
8631 * src/conflicts.c (conflict_report): Be sure not to append to res
8632 between two calls, which could happen if both first sprintf were
8633 skipped, but not the first cp += strlen.
8634
8635 2001-02-08 Akim Demaille <akim@epita.fr>
8636
8637 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
8638 New, from fileutils 4.0.37.
8639 * configure.in: Require Autoconf 2.49c. I took some time before
8640 making this decision. This is the only way out for portability
8641 issues in Bison, it would mean way too much duplicate effort to
8642 import in Bison features implemented in 2.49c since 2.13.
8643 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
8644
8645 2001-02-02 Akim Demaille <akim@epita.fr>
8646
8647 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
8648 * lib/xalloc.h, lib/xmalloc.c: Update.
8649
8650 2001-01-19 Akim Demaille <akim@epita.fr>
8651
8652 Get rid of the ad hoc handling of token_buffer in the scanner: use
8653 the obstacks.
8654
8655 * src/lex.c (token_obstack): New.
8656 (init_lex): Initialize it. No longer call...
8657 (grow_token_buffer): this. Remove it.
8658 Adjust all the places which used it to use the obstack.
8659
8660 2001-01-19 Akim Demaille <akim@epita.fr>
8661
8662 * src/lex.h: Rename all the tokens:
8663 s/\bENDFILE\b/tok_eof/g;
8664 s/\bIDENTIFIER\b/tok_identifier/g;
8665 etc.
8666 Let them be enums, not #define, to ease debugging.
8667 Adjust all the code.
8668
8669 2001-01-18 Akim Demaille <akim@epita.fr>
8670
8671 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
8672 * src/lex.c (maxtoken, grow_token_buffer): Static.
8673
8674 2001-01-18 Akim Demaille <akim@epita.fr>
8675
8676 Since we now use obstacks, more % directives can be enabled.
8677
8678 * src/lex.c (percent_table): Also accept `%yacc',
8679 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
8680 `%debug'.
8681 Handle the actions for `%semantic_parser' and `%pure_parser' here,
8682 instead of returning a token.
8683 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
8684 * src/reader.c (read_declarations): Adjust.
8685 * src/files.c (open_files): Don't call `compute_base_names', don't
8686 compute `attrsfile' since they depend upon data which might be
8687 *in* the input file now.
8688 (output_files): Do it here.
8689 * src/output.c (output_headers): Document the fact that this patch
8690 introduces a guaranteed SEGV for semantic parsers.
8691 * doc/bison.texinfo: Document them.
8692 * tests/suite.at: Exercise these %options.
8693
8694 2000-12-20 Akim Demaille <akim@epita.fr>
8695
8696 Also handle the output file (--verbose) with obstacks.
8697
8698 * files.c (foutput): Remove.
8699 (output_obstack): New.
8700 Adjust all dependencies.
8701 * src/conflicts.c: Return a string.
8702 * src/system.h (obstack_grow_string): Rename as...
8703 (obstack_sgrow): this. Be ready to work with non literals.
8704 (obstack_fgrow4): New.
8705
8706 2000-12-20 Akim Demaille <akim@epita.fr>
8707
8708 * src/files.c (open_files): Fix the computation of short_base_name
8709 in the case of `-o foo.tab.c'.
8710
8711 2000-12-20 Akim Demaille <akim@epita.fr>
8712
8713 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
8714 (copy_dollar): Now that everything uses obstacks, get rid of the
8715 FILE * parameters.
8716
8717 2000-12-20 Akim Demaille <akim@epita.fr>
8718
8719 * src/files.c (open_files): Actually the `.output' file is based
8720 on the short_base_name, not base_name.
8721 * tests/suite.at (Checking output file names): Adjust.
8722
8723 2000-12-20 Akim Demaille <akim@epita.fr>
8724
8725 * src/bison.s1: Remove, we now use directly...
8726 * src/bison.simple: this.
8727 * src/Makefile.am: Use pkgdata instead of data.
8728
8729 2000-12-20 Akim Demaille <akim@epita.fr>
8730
8731 * src/files.c (guard_obstack): New.
8732 (open_files): Initialize it.
8733 (output_files): Dump it...
8734 * src/files.h: Export it.
8735 * src/reader.c (copy_guard): Use it.
8736
8737 2000-12-19 Akim Demaille <akim@epita.fr>
8738
8739 * src/files.c (outfile, defsfile, actfile): Removed as global
8740 vars.
8741 (open_files): Don't compute them.
8742 (output_files): Adjust.
8743 (base_name, short_base_name): Be global.
8744 Adjust dependencies.
8745
8746 2000-12-19 Akim Demaille <akim@epita.fr>
8747
8748 * src/files.c (strsuffix): New.
8749 (stringappend): Be just like strcat but allocate.
8750 (base_names): Eve out from open_files.
8751 Try to simplify the rather hairy computation of base_name and
8752 short_base_name.
8753 (open_files): Use it.
8754 * tests/suite.at (Checking output file names): New test.
8755
8756 2000-12-19 Akim Demaille <akim@epita.fr>
8757
8758 * src/system.h (obstack_grow_literal_string): Rename as...
8759 (obstack_grow_string): this.
8760 * src/output.c (output_parser): Recognize `%% actions' instead of
8761 `$'.
8762 * src/bison.s1: s/$/%% actions/.
8763 * src/bison.hairy: Likewise.
8764
8765 2000-12-19 Akim Demaille <akim@epita.fr>
8766
8767 * src/output.c (output_parser): Compute the `#line' lines when
8768 there are.
8769 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
8770 Suggested by Hans Aberg.
8771
8772 2000-12-19 Akim Demaille <akim@epita.fr>
8773
8774 Let the handling of the skeleton files be local to the procedures
8775 that use it.
8776
8777 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
8778 longer static.
8779 (fparser, open_extra_files): Remove.
8780 (open_files, output_files): Don't take care of fparser.
8781 * src/files.h: Adjust.
8782 * src/output.c (output_parser): Open and close the file to the
8783 skeleton.
8784 * src/reader.c (read_declarations): When %semantic_parser, open
8785 fguard.
8786
8787 2000-12-19 Akim Demaille <akim@epita.fr>
8788
8789 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
8790 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
8791
8792 2000-12-19 Akim Demaille <akim@epita.fr>
8793
8794 * src/files.c (open_files): Yipee! We no longer need all the code
8795 looking for `/tmp' since we have no tmp file.
8796
8797 2000-12-19 Akim Demaille <akim@epita.fr>
8798
8799 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
8800 New macros.
8801 * src/files.c (open_files): Less dependency on MSDOS etc.
8802
8803 2000-12-14 Akim Demaille <akim@epita.fr>
8804
8805 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
8806 Provide a default definition.
8807 Use it when executing the default @ action.
8808 * src/reader.c (reader_output_yylsp): No longer include
8809 `timestamp' and `text' in the default YYLTYPE.
8810
8811 2000-12-12 Akim Demaille <akim@epita.fr>
8812
8813 * src/reader.c (copy_definition, parse_union_decl, copy_action)
8814 (copy_guard): Quote the file names.
8815 Reported by Laurent Mascherpa.
8816
8817 2000-12-12 Akim Demaille <akim@epita.fr>
8818
8819 * src/output.c (output_headers, output_program, output): Be sure
8820 to escape special characters when outputting filenames.
8821 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
8822 (output_headers): Don't depend on them, Use ACTSTR.
8823
8824 2000-11-17 Akim Demaille <akim@epita.fr>
8825
8826 * lib/obstack.h: Formatting changes.
8827 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
8828 prevents type checking.
8829 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
8830 cast the value to (void *): assigning a `foo *' to a `void *'
8831 variable is valid.
8832 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
8833 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
8834 append characters.
8835
8836 2000-11-17 Akim Demaille <akim@epita.fr>
8837
8838 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
8839 as...
8840 (suite.m4, regression.m4, calc.m4): these.
8841 * tests/atgeneral.m4: Update from CVS Autoconf.
8842
8843 2000-11-17 Akim Demaille <akim@epita.fr>
8844
8845 * tests/regression.m4 (%union and --defines): New test,
8846 demonstrating a current bug in the obstack implementation.
8847
8848 2000-11-17 Akim Demaille <akim@epita.fr>
8849
8850 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
8851 macros.
8852 Use them to declare the variables which are global or local to
8853 `yyparse'.
8854
8855 2000-11-17 Akim Demaille <akim@epita.fr>
8856
8857 * acconfig.h: Remove, no longer used.
8858
8859 2000-11-07 Akim Demaille <akim@epita.fr>
8860
8861 * src: s/Copyright (C)/Copyright/g.
8862
8863 2000-11-07 Akim Demaille <akim@epita.fr>
8864
8865 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
8866 defining.
8867 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
8868
8869 2000-11-07 Akim Demaille <akim@epita.fr>
8870
8871 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
8872 Merge in a single CPP if/else.
8873
8874 2000-11-07 Akim Demaille <akim@epita.fr>
8875
8876 * src/output.c (output): Remove useless variables.
8877 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
8878 argument `data' for consistency with the prototypes.
8879 Qualify it `const'.
8880 (obstack_copy, obstack_copy0): Rename the second argument as
8881 `address' for consistency. Qualify it `const'.
8882 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
8883 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
8884 `const' their input argument (`data' or `address').
8885 Adjust the corresponding macros to include `const' in casts.
8886
8887 2000-11-03 Akim Demaille <akim@epita.fr>
8888
8889 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
8890 s/PFILE1/BISON_HAIRY/.
8891 Adjust dependencies.
8892
8893 2000-11-03 Akim Demaille <akim@epita.fr>
8894
8895 For some reason, this was not applied.
8896
8897 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
8898 `unlink': it's no longer used.
8899
8900 2000-11-03 Akim Demaille <akim@epita.fr>
8901
8902 * src/files.c (skeleton_find): New function, eved out of...
8903 (open_files, open_extra_files): here.
8904
8905 2000-11-03 Akim Demaille <akim@epita.fr>
8906
8907 Don't use `atexit'.
8908
8909 * src/files.c (obstack_save): New function.
8910 (done): Rename as...
8911 (output_files): this.
8912 Use `obstack_save'.
8913 * src/main.c (main): Don't use `atexit' to register `done', since
8914 it no longer has to remove tmp files, just call `output_files'
8915 when there are no errors.
8916
8917 2000-11-02 Akim Demaille <akim@epita.fr>
8918
8919 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
8920 `unlink': it's no longer used.
8921 * src/files.h: Formatting changes.
8922
8923 2000-11-02 Akim Demaille <akim@epita.fr>
8924
8925 Remove the last uses of mktemp and unlink/delete.
8926
8927 * src/files.c (fdefines, ftable): Removed.
8928 (defines_ostack, table_obstack): New.
8929 Adjust dependencies of the former into uses of the latter.
8930 * src/output.c (output_short_or_char_table, output_short_table):
8931 Convert to using obstacks.
8932 * src/reader.c (copy_comment2): Accept one FILE * and two
8933 obstacks.
8934 (output_token_defines, reader_output_yylsp): Use obstacks.
8935 * src/system.h (obstack_fgrow3): New.
8936
8937 2000-11-01 Akim Demaille <akim@epita.fr>
8938
8939 Change each use of `fattrs' into a use of `attrs_obstack'.
8940
8941 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
8942 * src/files.c (fattrs): Remove.
8943 (attrs_obstack): New.
8944 Adjust all dependencies.
8945 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
8946
8947 2000-11-01 Akim Demaille <akim@epita.fr>
8948
8949 Introduce obstacks.
8950 Change each use of `faction' into a use of `action_obstack'.
8951
8952 * lib/obstack.h, lib/obstack.c: New files.
8953 * src/files.c (faction): Remove.
8954 (action_obstack): New.
8955 Adjust all dependencies.
8956
8957 2000-10-20 Akim Demaille <akim@epita.fr>
8958
8959 * lib/quote.h (PARAMS): New macro. Use it.
8960
8961 2000-10-16 Akim Demaille <akim@epita.fr>
8962
8963 * src/output.c (output_short_or_char_table): New function.
8964 (output_short_table, output_token_translations): Use it.
8965 (goto_actions): Use output_short_table.
8966
8967 2000-10-16 Akim Demaille <akim@epita.fr>
8968
8969 * src/symtab.c (bucket_new): New function.
8970 (getsym): Use it.
8971
8972 * src/output.c (output_short_table): New argument to display the
8973 comment associated with the table.
8974 Adjust dependencies.
8975 (output_gram): Use it.
8976 (output_rule_data): Nicer output layout for YYTNAME.
8977
8978 2000-10-16 Akim Demaille <akim@epita.fr>
8979
8980 * src/lex.c (read_typename): New function.
8981 (lex): Use it.
8982 * src/reader.c (copy_dollar): Likewise.
8983
8984 2000-10-16 Akim Demaille <akim@epita.fr>
8985
8986 * src/reader.c (copy_comment2): Expect the input stream to be on
8987 the `/' which is suspected to open a comment, instead of being
8988 called after `//' or `/*' was read.
8989 (copy_comment, copy_definition, parse_union_decl, copy_action)
8990 (copy_guard): Adjust.
8991
8992 2000-10-16 Akim Demaille <akim@epita.fr>
8993
8994 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
8995 `read_signed_integer'.
8996
8997 2000-10-16 Akim Demaille <akim@epita.fr>
8998
8999 * src/reader.c (copy_dollar): New function.
9000 (copy_guard, copy_action): Use it.
9001
9002 2000-10-16 Akim Demaille <akim@epita.fr>
9003
9004 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
9005 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
9006 New files, from Fileutils 4.0.27.
9007 * src/main.c (printable_version): Remove.
9008 * src/lex.c, src/reader.c: Use `quote'.
9009
9010 2000-10-04 Akim Demaille <akim@epita.fr>
9011
9012 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
9013
9014 2000-10-04 Akim Demaille <akim@epita.fr>
9015
9016 * doc/bison.texinfo: Various typos spotted by Neil Booth.
9017
9018 2000-10-04 Akim Demaille <akim@epita.fr>
9019
9020 When a literal string is used to define two different tokens,
9021 `bison -v' segfaults.
9022 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
9023
9024 * tests/regression.m4: New file.
9025 Include the core of the sample provided by Piotr Gackiewicz.
9026 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
9027 properly.
9028
9029 2000-10-04 Akim Demaille <akim@epita.fr>
9030
9031 * src/reader.c (parse_expect_decl): Keep `count' within the size
9032 of `buffer'.
9033 From Neil Booth.
9034
9035 2000-10-02 Paul Eggert <eggert@twinsun.com>
9036
9037 * bison.s1 (yyparse): Assign the default value
9038 unconditionally, to avoid a GCC warning and make the parser a
9039 tad smaller.
9040
9041 2000-10-02 Akim Demaille <akim@epita.fr>
9042
9043 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
9044 options.
9045
9046 2000-10-02 Akim Demaille <akim@epita.fr>
9047
9048 * src/derives.c, src/print.c, src/reduce.c: To ease the
9049 translation, move some `\n' out of the translated strings.
9050
9051 2000-10-02 Akim Demaille <akim@epita.fr>
9052
9053 The location tracking mechanism is precious for parse error
9054 messages. Nevertheless, it is enabled only when `@n' is used in
9055 the grammar, which is a different issue (you can use it in error
9056 message, but not in the grammar per se). Therefore, there should
9057 be another means to enable it.
9058
9059 * src/getargs.c (getargs): Support `--locations'.
9060 (usage): Report it.
9061 * src/getargs.h (locationsflag): Export it.
9062 * src/lex.c (percent_table): Support `%locations'.
9063 * src/reader.c (yylsp_needed): Remove this variable, now replaced
9064 with `locationsflag'.
9065 * doc/bison.texinfo: Document `--locations' and `%locations'.
9066 Sort the options.
9067 * tests/calc.m4: Test it.
9068
9069 For regularity of the names, replace each
9070 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
9071 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
9072 In addition replace each `flag' with `_flag'.
9073
9074 2000-10-02 Akim Demaille <akim@epita.fr>
9075
9076 Also test parse error messages, including with YYERROR_VERBOSE.
9077
9078 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
9079 associative).
9080 Use it to check the computations.
9081 Use it to check `nonassoc' is honored.
9082 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
9083 `--yyerror-verbose'.
9084 (_AT_CHECK_CALC): Adjust to this option.
9085 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
9086
9087 2000-10-02 Akim Demaille <akim@epita.fr>
9088
9089 Test also `--verbose', `--defines' and `--name-prefix'. Testing
9090 the latter demonstrates a flaw in the handling of non debugging
9091 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
9092 was used in order to simplify:
9093
9094 #if YYDEBUG
9095 if (yydebug)
9096 {
9097 ...
9098 }
9099 #endif
9100
9101 into
9102
9103 if (yydebug)
9104 {
9105 ...
9106 }
9107
9108 unfortunately this leads to a CPP conflict when
9109 `--name-prefix=foo' is used since it produces `#define yydebug
9110 foodebug'.
9111
9112 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
9113 (YYDPRINTF): New macro.
9114 Spread its use.
9115 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
9116 the bison options.
9117 Also test `--verbose', `--defines' and `--name-prefix'.
9118
9119 2000-10-02 Akim Demaille <akim@epita.fr>
9120
9121 Improve the readability of the produced parsers.
9122
9123 * src/bison.s1: Formatting changes.
9124 Improve the comment related to the `$' mark.
9125 (yydefault): Don't fall through to `yyresume': `goto' there.
9126 * src/output.c (output_parser): When the `$' is met, skip the end
9127 of its line.
9128 New variable, `number_of_dollar_signs', to check there's exactly
9129 one `$' in the parser skeleton.
9130
9131 2000-10-02 Akim Demaille <akim@epita.fr>
9132
9133 * lib/xstrdup.c: New file, from the fileutils.
9134 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
9135 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
9136 instead of strlen + xmalloc + strcpy.
9137 * src/symtab.c (copys): Remove, use xstrdup instead.
9138
9139 2000-10-02 Akim Demaille <akim@epita.fr>
9140
9141 * src/gram.h (associativity): New enum type which replaces the
9142 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
9143 `right_assoc', `left_assoc' and `non_assoc'.
9144 Adjust all dependencies.
9145 * src/reader.c: Formatting changes.
9146 (LTYPESTR): Don't define it, use it as a literal in
9147 `reader_output_yylsp'.
9148 * src/symtab.h (symbol_class): New enum type which replaces the
9149 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
9150 `sunknown', `stoken and `snterm'.
9151
9152 2000-10-02 Akim Demaille <akim@epita.fr>
9153
9154 * src/getargs.c (fixed_outfiles): Rename as...
9155 (yaccflag): for consistency and accuracy.
9156 Adjust dependencies.
9157
9158 2000-10-02 Akim Demaille <akim@epita.fr>
9159
9160 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
9161 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
9162 difficult and introduced a lot of core dump. It turns out that
9163 Bison used an implementation of `xmalloc' based on `calloc', and
9164 at various places it does depend upon the initialization to 0. I
9165 have not tried to isolate the pertinent places, and all the former
9166 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
9167 someone should address this issue.
9168
9169 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
9170 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
9171 files.
9172 Adjust dependencies.
9173 * src/warshall.h: New file.
9174 Propagate.
9175
9176 2000-10-02 Akim Demaille <akim@epita.fr>
9177
9178 Various anti-`extern in *.c' changes.
9179
9180 * src/system.h: Include `assert.h'.
9181
9182 2000-10-02 Akim Demaille <akim@epita.fr>
9183
9184 * src/state.h (nstates, final_state, first_state, first_shift)
9185 (first_reduction): Move their exportation from here...
9186 * src/LR0.h: to here.
9187 Adjust dependencies.
9188 * src/getargs.c (statisticsflag): New variable.
9189 Add support for `--statistics'.
9190 Adjust dependencies.
9191
9192 Remove a lot of now useless `extern' statements in most files.
9193
9194 2000-10-02 Akim Demaille <akim@epita.fr>
9195
9196 * src/LR0.h: New file.
9197 Propagate its use.
9198
9199 2000-10-02 Akim Demaille <akim@epita.fr>
9200
9201 * src/print.h: New file.
9202 Propagate its use.
9203 * src/print.c: Formatting and ordering changes.
9204 (verbose, terse): Replace with...
9205 (print_results): this new function.
9206 Adjust dependencies.
9207
9208 2000-10-02 Akim Demaille <akim@epita.fr>
9209
9210 * src/conflicts.c (conflict_report): New function.
9211 (conflict_log, verbose_conflict_log): Replace with...
9212 (print_conflicts): this function.
9213 Adjust dependencies.
9214 * src/conflicts.h: New file.
9215 Propagate its inclusion.
9216
9217 2000-10-02 Akim Demaille <akim@epita.fr>
9218
9219 * src/nullable.h: New file.
9220 Propagate its inclusion.
9221 * src/nullable.c: Formatting changes.
9222
9223 2000-10-02 Akim Demaille <akim@epita.fr>
9224
9225 * src/reduce.h: New file.
9226 Propagate its inclusion.
9227 * src/reduce.c: Topological sort and other formatting changes.
9228 (bool, TRUE, FALSE): Move their definition to...
9229 * src/system.h: here.
9230
9231 2000-10-02 Akim Demaille <akim@epita.fr>
9232
9233 * src/files.c: Formatting changes.
9234 (tryopen, tryclose, openfiles): Rename as...
9235 (xfopen, xfclose, open_files): this.
9236 (stringappend): static.
9237 * src/files.h: Complete the list of exported symbols.
9238 Propagate its use.
9239
9240 2000-10-02 Akim Demaille <akim@epita.fr>
9241
9242 * src/reader.h: New file.
9243 Propagate its use instead of tedious list of `extern' and
9244 prototypes.
9245 * src/reader.c: Formatting changes, topological sort,
9246 s/register//.
9247
9248 2000-10-02 Akim Demaille <akim@epita.fr>
9249
9250 * src/lex.h: Prototype `lex.c' exported functions.
9251 * src/reader.c: Adjust.
9252 * src/lex.c: Formatting changes.
9253 (safegetc): Rename as...
9254 (xgetc): this.
9255
9256 2000-10-02 Akim Demaille <akim@epita.fr>
9257
9258 * src/lalr.h: New file.
9259 Propagate its inclusion instead of prototypes and `extern'.
9260 * src/lalr.c: Formatting changes, topological sorting etc.
9261
9262 2000-10-02 Akim Demaille <akim@epita.fr>
9263
9264 * src/output.c (token_actions): Introduce a temporary array,
9265 YYDEFACT, that makes it possible for this function to use
9266 output_short_table.
9267
9268 2000-10-02 Akim Demaille <akim@epita.fr>
9269
9270 `user_toknums' is output as a `short[]' in `output.c', while it is
9271 defined as a `int[]' in `reader.c'. For consistency with the
9272 other output tables, `user_toknums' is now defined as a table of
9273 shorts.
9274
9275 * src/reader.c (user_toknums): Be a short table instead of an int
9276 table.
9277 Adjust dependencies.
9278
9279 Factor the short table outputs.
9280
9281 * src/output.c (output_short_table): New function.
9282 * src/output.c (output_gram, output_stos, output_rule_data)
9283 (output_base, output_table, output_check): Use it.
9284
9285 2000-10-02 Akim Demaille <akim@epita.fr>
9286
9287 * src/output.c (output): Topological sort of the functions, in
9288 order to get rid of the `static' prototypes.
9289 No longer use `register'.
9290 * src/output.h: New file.
9291 Propagate its inclusion in files explicitly prototyping functions
9292 from output.c.
9293
9294 2000-09-21 Akim Demaille <akim@epita.fr>
9295
9296 * src/atgeneral.m4: Update from Autoconf.
9297
9298 2000-09-21 Akim Demaille <akim@epita.fr>
9299
9300 * src/closure.h: New file.
9301 * src/closure.c: Formatting changes, topological sort over the
9302 functions, use of closure.h.
9303 (initialize_closure, finalize_closure): Rename as...
9304 (new_closure, free_closure): these. Adjust dependencies.
9305 * src/LR0.c: Formatting changes, topological sort, use of
9306 cloture.h.
9307 (initialize_states): Rename as...
9308 (new_states): this.
9309 * src/Makefile.am (noinst_HEADERS): Adjust.
9310
9311 2000-09-20 Akim Demaille <akim@epita.fr>
9312
9313 * src/acconfig.h: Don't protect config.h against multiple
9314 inclusion.
9315 Don't define PARAMS.
9316 * src/system.h: Define PARAMS.
9317 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
9318 purpose of config.h. system.h must not try to fix wrong
9319 definitions in config.h.
9320
9321 2000-09-20 Akim Demaille <akim@epita.fr>
9322
9323 * src/derives.h: New file.
9324 * src/main.c, src/derives.h: Use it.
9325 Formatting changes.
9326 * src/Makefile.am (noinst_HEADERS): Adjust.
9327
9328 2000-09-20 Akim Demaille <akim@epita.fr>
9329
9330 * tests/atgeneral.m4: Update from Autoconf.
9331 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
9332 (AT_CHECK_CALC): New macros.
9333 Use these macros to test bison with options `', `--raw',
9334 `--debug', `--yacc', `--yacc --debug'.
9335
9336 2000-09-19 Akim Demaille <akim@epita.fr>
9337
9338 * src/output.c: Formatting changes.
9339 * src/machine.h: Remove, leaving its contents in...
9340 * src/system.h: here.
9341 Include stdio.h.
9342 Adjust all dependencies on stdio.h and machine.h.
9343 * src/getargs.h: New file.
9344 Let all `extern' declarations about getargs.c be replaced with
9345 inclusion of `getargs.h'.
9346 * src/Makefile.am (noinst_HEADERS): Adjust.
9347
9348 * tests/calc.m4 (yyin): Be initialized in main, not on the global
9349 scope.
9350 (yyerror): Returns void, not int.
9351 * doc/bison.texinfo: Formatting changes.
9352
9353 2000-09-19 Akim Demaille <akim@epita.fr>
9354
9355 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
9356 portable.
9357
9358 2000-09-18 Akim Demaille <akim@epita.fr>
9359
9360 * configure.in: Append WARNING_CFLAGS to CFLAGS.
9361 * src/Makefile.am (INCLUDES): Don't.
9362 Be ready to fetch headers in lib/.
9363
9364 2000-09-18 Akim Demaille <akim@epita.fr>
9365
9366 * doc/bison.texinfo: Update the copyright.
9367 ANSIfy and GNUify the examples.
9368 Remove the old menu.
9369
9370 2000-09-18 Akim Demaille <akim@epita.fr>
9371
9372 First set of tests: use the `calc' example from the documentation.
9373
9374 * src/bison.s1 (yyparse): Condition the code using `yytname' which
9375 is defined only when YYDEBUG is.
9376 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
9377 * src/files.c (tryopen, tryclose): Formatting changes.
9378 Move to the top and be static.
9379 * src/reader.c (read_signed_integer): Likewise.
9380 * tests/calc.m4: New file.
9381 * Makefile.am, suite.m4: Adjust.
9382 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
9383
9384 2000-09-18 Akim Demaille <akim@epita.fr>
9385
9386 Add support for an Autotest test suite for Bison.
9387
9388 * m4/m4.m4, m4/atconfig.m4: New files.
9389 * m4/Makefile.am (EXTRA_DIST): Adjust.
9390 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
9391 files.
9392 * src/getargs.c: Display a more standard --version message.
9393 * src/reader.c (reader): Formatting changes.
9394 No longer depend upon VERSION_STRING.
9395 * configure.in: No longer use `dnl'.
9396 Set up the test suite and the new directory `tests/.
9397 (VERSION_STRING): Remove.
9398
9399 2000-04-14 Akim Demaille <akim@epita.fr>
9400
9401 * src/reader.c (copy_comment2): New function, same as former
9402 `copy_comment', but outputs into two FILE *.
9403 (copy_comment): Use it.
9404 (parse_union_decl): Use it.
9405 (get_type, parse_start_decl): Use the same `invalid' message.
9406 (parse_start_decl, parse_union_decl): Use the same `multiple'
9407 message.
9408 (parse_union_decl, copy_guard, copy_action): Use the same
9409 `unmatched' message.
9410 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
9411
9412 2000-03-31 Akim Demaille <akim@epita.fr>
9413
9414 * src/files.c (tryopen, tryclose): Move to the top.
9415 Be static.
9416
9417 2000-03-31 Akim Demaille <akim@epita.fr>
9418
9419 * src/main.c (main): Don't call `done', exit does it.
9420
9421 2000-03-31 Akim Demaille <akim@epita.fr>
9422
9423 * allocate.c: s/return (foo)/return foo/.
9424 * lalr.c: Likewise.
9425 * LR0.c: Likewise.
9426 * output.c: Likewise.
9427 * reader.c: Likewise.
9428 * symtab.c: Likewise.
9429 * vmsgetargs.c: Likewise.
9430
9431 2000-03-31 Akim Demaille <akim@epita.fr>
9432
9433 Clean up the error reporting functions.
9434
9435 * src/report.c: New file.
9436 * src/report.h: Likewise.
9437 * src/Makefile.am: Adjust.
9438 * m4/error.m4: New file.
9439 * m4/Makefile.am: Adjust.
9440 * configure.in (jm_PREREQ_ERROR): Call it.
9441 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
9442 Remove.
9443 (fatal, fatals): Remove. All callers use complain.c::fatal.
9444 (warn, warni, warns, warnss, warnss): Remove. All callers use
9445 complain.c::complain.
9446 (toomany): Remove, use fatal instead.
9447 * src/files.c (done): No argument, use complain_message_count.
9448 * src/main.c (main): Register `done' to `atexit'.
9449
9450 * src/getargs.c (usage): More `fputs', less `fprintf'.
9451
9452 2000-03-28 Akim Demaille <akim@epita.fr>
9453
9454 * lib/: New directory.
9455 * Makefile.am (SUBDIRS): Adjust.
9456 * configure.in: Adjust.
9457 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
9458 useless.
9459 * src/alloca.c: Moved to lib/.
9460 * src/getopt.c: Likewise.
9461 * src/getopt1.c: Likewise.
9462 * src/getopt.h: Likewise.
9463 * src/ansi2knr.c: Likewise.
9464 * src/ansi2knr.1: Likewise.
9465 * src/Makefile.am: Adjust.
9466 * lib/Makefile.am: New file.
9467
9468 2000-03-28 Akim Demaille <akim@epita.fr>
9469
9470 * src/getargs.c (usage): Refresh the help message.
9471
9472 2000-03-17 Akim Demaille <akim@epita.fr>
9473
9474 * src/getopt1.c: Updated from textutils 2.0e
9475 * src/getopt.c: Likewise.
9476 * src/getopt.h: Likewise.
9477
9478 2000-03-17 Akim Demaille <akim@epita.fr>
9479
9480 * src/Makefile.am (bison.simple): Fix the awk program: quote only
9481 the file name, not the whole `#line LINE FILE'.
9482
9483 2000-03-17 Akim Demaille <akim@epita.fr>
9484
9485 On syntax errors, report the token on which we choked.
9486
9487 * src/bison.s1 (yyparse): In the label yyerrlab, when
9488 YYERROR_VERBOSE, add yychar in msg.
9489
9490 2000-03-17 Akim Demaille <akim@epita.fr>
9491
9492 * src/reader.c (copy_at): New function.
9493 (copy_guard): Use it.
9494 (copy_action): Use it.
9495
9496 2000-03-17 Akim Demaille <akim@epita.fr>
9497
9498 Be kind to translators, save some useless translations.
9499
9500 * src/main.c (banner): New function.
9501 (fatal_banner): Use it.
9502 (warn_banner): Use it.
9503
9504 2000-03-17 Akim Demaille <akim@epita.fr>
9505
9506 * src/reader.c (copy_definition): Use copy_string and
9507 copy_comment. Removed now unused `match', `ended',
9508 `cplus_comment'.
9509 (copy_comment, copy_string): Moved, to be visible from
9510 copy_definition.
9511
9512 2000-03-17 Akim Demaille <akim@epita.fr>
9513
9514 * src/reader.c (copy_string): Declare `static inline'. No
9515 problems with inline, since it is checked by configure.
9516 (copy_comment): Likewise.
9517
9518 2000-03-17 Akim Demaille <akim@epita.fr>
9519
9520 * src/reader.c (packsymbols): Formatting changes.
9521
9522 2000-03-17 Akim Demaille <akim@epita.fr>
9523
9524 * src/reader.c (copy_comment): New function, factored out from:
9525 (copy_action): Use it. Removed now unused `match', `ended',
9526 `cplus_comment'.
9527 (copy_guard): Likewise.
9528
9529 2000-03-17 Akim Demaille <akim@epita.fr>
9530
9531 * src/reader.c (copy_string): New function, factored out from:
9532 (copy_action): Use it.
9533 (copy_guard): Likewise.
9534
9535 2000-03-17 Akim Demaille <akim@epita.fr>
9536
9537 Change the handling of @s so that they behave exactly like $s.
9538 There is now a pseudo variable @$ (readble and writable), location
9539 of the lhs of the rule (by default ranging from the location of
9540 the first symbol of the rhs, to the location of the last symbol,
9541 or, if the rhs is empty, YYLLOC).
9542
9543 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
9544 yyval.
9545 (yyparse): When providing a default semantic action, provide a
9546 default location action.
9547 (after the $): No longer change `*YYLSP', just stack YYLOC the
9548 same way you stack YYVAL.
9549 * src/reader.c (read_declarations): Use warns.
9550 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
9551 (copy_action, case '@'): Likewise.
9552 Use a standard error message, to save useless work from
9553 translators.
9554
9555 2000-03-17 Akim Demaille <akim@epita.fr>
9556
9557 * src/bison.s1: Formatting and cosmetics changes.
9558 * src/reader.c: Likewise.
9559 Update the Copyright notice.
9560
9561 2000-03-17 Akim Demaille <akim@epita.fr>
9562
9563 * src/bison.s1 (#line): All set to `#line' only, since the
9564 Makefile now handles them.
9565
9566 2000-03-16 Akim Demaille <akim@epita.fr>
9567
9568 * src/output.c (output_rule_data): Output the documentation of
9569 some of the tables.
9570 (Copyright notice): Update.
9571 Formatting changes.
9572
9573 2000-03-16 Akim Demaille <akim@epita.fr>
9574
9575 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
9576 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
9577 One `#if YYDEBUG' remains, since it uses variables which are
9578 defined only if `YYDEBUG != 0'.
9579
9580 2000-03-16 Akim Demaille <akim@epita.fr>
9581
9582 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
9583 and related variables so that the similarities are highlighted.
9584
9585 2000-03-16 Akim Demaille <akim@epita.fr>
9586
9587 * src/bison.s1: Properly indent CPP directives.
9588
9589 2000-03-16 Akim Demaille <akim@epita.fr>
9590
9591 * src/bison.s1: Properly indent the `alloca' CPP section.
9592
9593 2000-03-16 Akim Demaille <akim@epita.fr>
9594
9595 Do not hard code values of directories in `configure.in'.
9596 Update the `configure' tool chain.
9597
9598 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
9599 src/makefile.am.
9600 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
9601 (AC_OUTPUT): Add m4/Makefile.
9602 Bump to bison 1.28a, 1.29 has never been released.
9603 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
9604 handled via src/Makefile.am.
9605 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
9606 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
9607 autoheader.
9608 * Makefile.am (SUBDIRS): Add m4.
9609 (ACLOCAL_AM_FLAGS): New variable.
9610 (AUTOMAKE_OPTIONS): Add check-news.
9611 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
9612 the proper line number and file name.
9613 (DEFS): Propagate the location of bison library files and of the
9614 locale files.
9615 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
9616 builddir.
9617 * acinclude.m4: Remove, replaced by the directory m4.
9618 * m4/Makefile.am (EXTRA_DIST): New variable.
9619 * m4/gettext.m4: New file, from the fileutils.
9620 * m4/lcmessage.m4: Likewise
9621 * m4/progtest.m4: Likewise.
9622 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
9623
9624 2000-03-10 Akim Demaille <akim@epita.fr>
9625
9626 * src/closure.c:
9627 Formatting changes of various comments.
9628 Respect the GNU coding standards at various places.
9629 Don't use `_()' when no translation is needed.
9630
9631 1999-12-13 Jesse Thilo <jthilo@gnu.org>
9632
9633 * src/files.c:
9634 OS/2 honors TMPDIR environment variable.
9635
9636 1999-12-13 Jesse Thilo <jthilo@gnu.org>
9637
9638 * doc/bison.texinfo: Tweaked spelling and grammar.
9639 Updated ISBN.
9640 Removed reference to price of printed copy.
9641 Mention BISON_SIMPLE and BISON_HAIRY.
9642
9643 1999-12-13 Jesse Thilo <jthilo@gnu.org>
9644
9645 * configure.in, NEWS:
9646 Bison 1.29 released.
9647
9648 1999-10-27 Jesse Thilo <jthilo@gnu.org>
9649
9650 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
9651 Added reference card.
9652
9653 1999-07-26 Jesse Thilo <jthilo@gnu.org>
9654
9655 * po/ru.po: Added Russian translation.
9656
9657 1999-07-26 Jesse Thilo <jthilo@gnu.org>
9658
9659 * configure.in: Added Russian translation.
9660
9661 1999-07-06 Jesse Thilo <jthilo@gnu.org>
9662
9663 * configure.in, NEWS, README:
9664 Released version 1.28.
9665
9666 1999-06-14 Jesse Thilo <jthilo@gnu.org>
9667
9668 * src/system.h:
9669 Squashed redefinition warning on some systems.
9670
9671 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
9672 Have configure build version string instead of relying on ANSI string
9673 concatentation.
9674
9675 1999-06-14 Jesse Thilo <jthilo@gnu.org>
9676
9677 * po/POTFILES.in: Got rid of version.c.
9678
9679 1999-06-14 Jesse Thilo <jthilo@gnu.org>
9680
9681 * acconfig.h, configure.in:
9682 Have configure build version string instead of relying on ANSI string
9683 concatentation.
9684
9685 1999-06-08 Jesse Thilo <jthilo@gnu.org>
9686
9687 * doc/bison.1:
9688 Dropped mention of `+' for long-named options.
9689
9690 1999-05-30 Jesse Thilo <jthilo@gnu.org>
9691
9692 * src/files.c: Added <unistd.h> for unlink().
9693
9694 * src/Makefile.am, src/system.h:
9695 I18n fixes.
9696
9697 1999-05-30 Jesse Thilo <jthilo@gnu.org>
9698
9699 * README: Added a FAQ list.
9700
9701 * configure.in, acconfig.h:
9702 I18n fixes.
9703
9704 1999-05-30 Jesse Thilo <jthilo@gnu.org>
9705
9706 * doc/FAQ, doc/Makefile.am:
9707 Added a FAQ list.
9708
9709 1999-05-19 Jesse Thilo <jthilo@gnu.org>
9710
9711 * src/alloc.h, src/symtab.h, src/version.c:
9712 Protected inclusion of "config.h" with HAVE_CONFIG_H.
9713
9714 1999-04-18 Jesse Thilo <jthilo@gnu.org>
9715
9716 * src/.cvsignore, src/Makefile.am:
9717 Reorganized: sources in `src', documentation in `doc'.
9718
9719 * src/lex.c (literalchar):
9720 fixed the code for escaping double quotes (thanks
9721 Jonathan Czisny.)
9722
9723 1999-04-18 Jesse Thilo <jthilo@gnu.org>
9724
9725 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
9726 Adjusted paths to reflect directory reorganization.
9727
9728 1999-04-18 Jesse Thilo <jthilo@gnu.org>
9729
9730 * doc/.cvsignore, doc/Makefile.am:
9731 Reorganized: sources in `src', documentation in `doc'.
9732
9733 1999-04-18 Jesse Thilo <jthilo@gnu.org>
9734
9735 * configure.in:
9736 Updated AC_INIT file to reflect directory reorganization.
9737
9738 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
9739 Reorganized: sources in `src', documentation in `doc'.
9740
9741 1999-04-13 Jesse Thilo <jthilo@gnu.org>
9742
9743 * src/allocate.c:
9744 Don't declare calloc() and realloc() if not necessary.
9745
9746 1999-04-13 Jesse Thilo <jthilo@gnu.org>
9747
9748 * configure.in, acconfig.h, acinclude.m4:
9749 Don't declare calloc() and realloc() if not necessary.
9750
9751 1999-03-23 Jesse Thilo <jthilo@gnu.org>
9752
9753 * po/.cvsignore: Added i18n support.
9754
9755 1999-03-23 Jesse Thilo <jthilo@gnu.org>
9756
9757 * acconfig.h, configure.in, Makefile.am:
9758 Added i18n support.
9759
9760 1999-03-22 Jesse Thilo <jthilo@gnu.org>
9761
9762 * src/bison.s1: Fixed #line numbers.
9763
9764 1999-03-15 Jesse Thilo <jthilo@gnu.org>
9765
9766 * po/es.po, po/fr.po, po/nl.po, po/de.po:
9767 Added PO files from Translation Project.
9768
9769 1999-03-03 Jesse Thilo <jthilo@gnu.org>
9770
9771 * Makefile.am:
9772 Added support for non-ANSI compilers (ansi2knr).
9773
9774 1999-02-16 Jesse Thilo <jthilo@gnu.org>
9775
9776 * configure.in: Bumped version number to 1.27.
9777
9778 * Makefile.am:
9779 Added `bison.simple' to list of files removed by `make distclean'.
9780
9781 1999-02-12 Jesse Thilo <jthilo@gnu.org>
9782
9783 * src/files.c, src/files.h:
9784 Defined locations of parser files in config.h instead of Makefile.
9785
9786 1999-02-12 Jesse Thilo <jthilo@gnu.org>
9787
9788 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
9789 Defined locations of parser files in config.h instead of Makefile.
9790
9791 1999-02-09 Jesse Thilo <jthilo@gnu.org>
9792
9793 * Makefile.am:
9794 Removed inappropriate use of $< macro.
9795
9796 1999-02-05 Jesse Thilo <jthilo@gnu.org>
9797
9798 * po/Makefile.in.in, po/POTFILES.in:
9799 Add `po' directory skeleton.
9800
9801 1999-01-27 Jesse Thilo <jthilo@gnu.org>
9802
9803 * README: Document help-bison list.
9804
9805 * configure.in: Add check for mkstemp().
9806
9807 1999-01-20 Jesse Thilo <jthilo@gnu.org>
9808
9809 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
9810 Hush a few compiler warnings.
9811
9812 * src/files.c:
9813 Add tryclose(), which verifies that fclose was successful.
9814 Hush a couple of compiler warnings.
9815
9816 1999-01-20 Jesse Thilo <jthilo@gnu.org>
9817
9818 * Makefile.am, OChangeLog:
9819 ChangeLog is now automatically generated. Include the old version as
9820 OChangeLog.
9821
9822 1999-01-14 Jesse Thilo <jthilo@gnu.org>
9823
9824 * 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:
9825 Update FSF address.
9826
9827 1999-01-14 Jesse Thilo <jthilo@gnu.org>
9828
9829 * doc/bison.texinfo: Fix formatting glitch.
9830
9831 * doc/bison.texinfo: Update FSF address.
9832
9833 1999-01-14 Jesse Thilo <jthilo@gnu.org>
9834
9835 * acconfig.h: Update FSF address.
9836
9837 1999-01-08 Jesse Thilo <jthilo@gnu.org>
9838
9839 * src/system.h:
9840 Don't define PACKAGE here, since config.h defines it.
9841
9842 1998-12-30 Jesse Thilo <jthilo@gnu.org>
9843
9844 * src/reader.c: Update copyright date.
9845
9846 * src/main.c:
9847 Ditch sprintf to statically-sized buffers in fatal/warn functions in
9848 favor of output directly to stderr (avoids buffer overruns).
9849
9850 * src/reader.c: Some checks for premature EOF.
9851
9852 * 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:
9853 Use prototypes if the compiler understands them.
9854
9855 * src/files.c: Honor TMPDIR on Unix hosts.
9856 Use prototypes if the compiler understands them.
9857
9858 * src/reader.c:
9859 Fix a couple of buffer overrun bugs.
9860 Use prototypes if the compiler understands them.
9861
9862 * src/system.h: Include unistd.h and ctype.h.
9863 Use #ifdef instead of #if for NLS symbols.
9864
9865 1998-12-30 Jesse Thilo <jthilo@gnu.org>
9866
9867 * doc/bison.texinfo:
9868 Delete comment "consider using @set for edition number, etc..." since
9869 we now are doing so.
9870
9871 1998-12-30 Jesse Thilo <jthilo@gnu.org>
9872
9873 * configure.in:
9874 Use prototypes if the compiler understands them.
9875
9876 * NEWS: Document 1.26 highlights.
9877
9878 * Makefile.am: Require Automake 1.3 or later.
9879
9880 * acconfig.h:
9881 Use prototypes if the compiler understands them.
9882
9883 1998-12-29 Jesse Thilo <jthilo@gnu.org>
9884
9885 * src/version.c:
9886 Use VERSION symbol from automake for version number.
9887
9888 1998-12-29 Jesse Thilo <jthilo@gnu.org>
9889
9890 * acconfig.h, configure.in, version.cin:
9891 Use VERSION symbol from automake for version number.
9892
9893 1998-11-28 Jesse Thilo <jthilo@gnu.org>
9894
9895 * Makefile.am:
9896 Distribute original version of simple parser (bison.s1), not built
9897 version (bison.simple).
9898
9899 1998-11-28 Jesse Thilo <jthilo@gnu.org>
9900
9901 * doc/bison.texinfo: Add info dir entry.
9902
9903 * doc/bison.texinfo:
9904 Let automake put version number into documentation.
9905
9906 1998-11-26 Jesse Thilo <jthilo@gnu.org>
9907
9908 * src/bison.cld, src/build.com, src/vmshlp.mar:
9909 Add non-RCS files from /gd/gnu/bison.
9910
9911 1998-11-26 Jesse Thilo <jthilo@gnu.org>
9912
9913 * doc/bison.1:
9914 Document the BISON_HAIRY and BISON_SIMPLE variables.
9915
9916 1998-11-25 Jesse Thilo <jthilo@gnu.org>
9917
9918 * src/version.c: Build version.c automatically.
9919
9920 * src/reader.c:
9921 Fix token numbering (used to start at 258, not 257).
9922
9923 * src/system.h: Include config.h.
9924
9925 * src/getargs.c: Update bug report address.
9926
9927 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
9928 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
9929
9930 1998-11-25 Jesse Thilo <jthilo@gnu.org>
9931
9932 * Makefile.am:
9933 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
9934
9935 * configure.in, version.cin:
9936 Build version.c automatically.
9937
9938 * AUTHORS: Add AUTHORS file.
9939
9940 * README: Update bug report address.
9941
9942 * bison.simple:
9943 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
9944
9945 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
9946 Add automake stuff.
9947
9948 1998-11-25 Jesse Thilo <jthilo@gnu.org>
9949
9950 * doc/bison.texinfo: Clean up some formatting.
9951
9952 1998-05-05 Richard Stallman <rms@gnu.org>
9953
9954 * doc/bison.texinfo:
9955 Explain better why to make a pure parser.
9956
9957 1998-01-05 Richard Stallman <rms@gnu.org>
9958
9959 * src/files.c (openfiles):
9960 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
9961 find a temporary directory, if possible. Do not unlink files while
9962 they are open.
9963
9964 1997-08-25 Richard Stallman <rms@gnu.org>
9965
9966 * src/reader.c (stack_offset;):
9967 Change some warni to warns.
9968
9969 * src/lex.c (literalchar): Use warns, not warni.
9970
9971 1997-06-28 Richard Stallman <rms@gnu.org>
9972
9973 * src/bison.s1: Add a Bison version comment.
9974
9975 * src/main.c (fatal, warn, berror):
9976 Use program_name.
9977
9978 1997-06-28 Richard Stallman <rms@gnu.org>
9979
9980 * Makefile.in (bison_version): New variable.
9981 (dist): Use that variable.
9982 (bison.s1): Substitute the Bison version into bison.simple.
9983
9984 * bison.simple: Add a Bison version comment.
9985
9986 1997-06-18 Richard Stallman <rms@gnu.org>
9987
9988 * src/main.c (fatal, warn, berror):
9989 Make error messages standard.
9990 (toomany): Improve error message text.
9991
9992 * 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:
9993 new.h renamed to alloc.h.
9994
9995 1997-06-18 Richard Stallman <rms@gnu.org>
9996
9997 * Makefile.in: new.h renamed to alloc.h.
9998
9999 1997-05-24 Richard Stallman <rms@gnu.org>
10000
10001 * src/lex.c (literalchar):
10002 Fix the code for escaping \, " and '.
10003
10004 (lex): Avoid trouble when there are many chars
10005 to discard in a char literal with just several chars in it.
10006
10007 1997-05-17 Richard Stallman <rms@gnu.org>
10008
10009 * src/bison.s1:
10010 Use malloc, if using alloca is troublesome.
10011 (YYSTACK_USE_ALLOCA): New flag macro.
10012 Define it for some systems and compilers.
10013 (YYSTACK_ALLOC): New macro.
10014 (yyparse): Use YYSTACK_ALLOC to allocate stack.
10015 If it was malloc'd, free it.
10016
10017 1997-05-17 Richard Stallman <rms@gnu.org>
10018
10019 * bison.simple:
10020 Use malloc, if using alloca is troublesome.
10021 (YYSTACK_USE_ALLOCA): New flag macro.
10022 Define it for some systems and compilers.
10023 (YYSTACK_ALLOC): New macro.
10024 (yyparse): Use YYSTACK_ALLOC to allocate stack.
10025 If it was malloc'd, free it.
10026
10027 1997-04-23 Richard Stallman <rms@gnu.org>
10028
10029 * src/bison.s1:
10030 (alloca) [__hpux]: Always define as __builtin_alloca.
10031
10032 1997-04-23 Richard Stallman <rms@gnu.org>
10033
10034 * bison.simple:
10035 (alloca) [__hpux]: Always define as __builtin_alloca.
10036
10037 1997-04-22 Richard Stallman <rms@gnu.org>
10038
10039 * src/bison.s1:
10040 [__hpux]: Include alloca.h (right for HPUX 10)
10041 instead of declaring alloca (right for HPUX 9).
10042
10043 * src/bison.s1 (__yy_memcpy):
10044 Declare arg `count' as unsigned int.
10045 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
10046
10047 1997-04-22 Richard Stallman <rms@gnu.org>
10048
10049 * bison.simple:
10050 [__hpux]: Include alloca.h (right for HPUX 10)
10051 instead of declaring alloca (right for HPUX 9).
10052
10053 * bison.simple (__yy_memcpy):
10054 Declare arg `count' as unsigned int.
10055 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
10056
10057 1997-01-03 Richard Stallman <rms@gnu.org>
10058
10059 * src/allocate.c: [__STDC__ or _MSC_VER]:
10060 Declare calloc and realloc to return void *.
10061
10062 1997-01-02 Richard Stallman <rms@gnu.org>
10063
10064 * src/system.h:
10065 [_MSC_VER]: Include stdlib.h and process.h.
10066 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
10067
10068 * src/main.c (main): Return FAILURE as a value.
10069 (printable_version): Declare arg as int, not char.
10070
10071 1997-01-02 Richard Stallman <rms@gnu.org>
10072
10073 * Makefile.in (dist):
10074 Explicitly check for symlinks, and copy them.
10075
10076 1996-12-19 Richard Stallman <rms@gnu.org>
10077
10078 * src/files.c:
10079 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
10080
10081 1996-12-18 Paul Eggert <eggert@gnu.org>
10082
10083 * src/bison.s1 (yyparse):
10084 If __GNUC__ and YYPARSE_PARAM are both defined,
10085 declare yyparse to have a void * argument.
10086
10087 1996-12-18 Paul Eggert <eggert@gnu.org>
10088
10089 * bison.simple (yyparse):
10090 If __GNUC__ and YYPARSE_PARAM are both defined,
10091 declare yyparse to have a void * argument.
10092
10093 1996-12-17 Richard Stallman <rms@gnu.org>
10094
10095 * src/reduce.c (nbits): Add some casts.
10096
10097 1996-08-12 Richard Stallman <rms@gnu.org>
10098
10099 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
10100
10101 1996-08-12 Richard Stallman <rms@gnu.org>
10102
10103 * bison.simple: Test _MSDOS as well as _MSDOS_.
10104
10105 1996-07-31 Richard Stallman <rms@gnu.org>
10106
10107 * src/bison.s1:
10108 [__sun && __i386]: Include alloca.h.
10109
10110 1996-07-31 Richard Stallman <rms@gnu.org>
10111
10112 * bison.simple:
10113 [__sun && __i386]: Include alloca.h.
10114
10115 1996-07-30 Richard Stallman <rms@gnu.org>
10116
10117 * src/bison.s1: Comment change.
10118
10119 * src/bison.s1: Test _MSDOS_, not MSDOS.
10120
10121 1996-07-30 Richard Stallman <rms@gnu.org>
10122
10123 * bison.simple: Comment change.
10124
10125 * bison.simple: Test _MSDOS_, not MSDOS.
10126
10127 1996-06-01 Richard Stallman <rms@gnu.org>
10128
10129 * 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:
10130 Insert `_' macro around many string constants.
10131
10132 * src/main.c:
10133 Insert `_' macro around many string constants.
10134
10135 (main): Call setlocale, bindtextdomain and textdomain.
10136
10137 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
10138 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
10139 [ENABLE_NLS]: Include libintl.h.
10140 [ENABLE_NLS] (gettext): Define.
10141 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
10142 (N_, PACKAGE, LOCALEDIR): New macros.
10143
10144 1996-06-01 Richard Stallman <rms@gnu.org>
10145
10146 * POTFILES.in: New file.
10147
10148 * Makefile.in (allocate.o):
10149 Define target explicitly.
10150
10151 * Makefile.in (CFLAGS): Set to @CFLAGS@.
10152 (LDFLAGS): Set to @LDFLAGS@.
10153 (configure): Run autoconf only if preceding `cd' succeeds.
10154 (bison.s1): Redirect output to temporary file then move the
10155 temporary to the target, rather than redirecting directly to bison.s1.
10156 (clean): Remove config.status and config.log.
10157 (distclean): Don't remove config.status here.
10158
10159 1996-05-12 Richard Stallman <rms@gnu.org>
10160
10161 * src/bison.s1:
10162 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
10163
10164 1996-05-12 Richard Stallman <rms@gnu.org>
10165
10166 * bison.simple:
10167 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
10168
10169 1996-05-11 Richard Stallman <rms@gnu.org>
10170
10171 * src/bison.s1 (__yy_memcpy):
10172 Really reorder the args, as was supposedly done on Feb 14 1995.
10173 (yyparse): Calls changed accordingly.
10174
10175 1996-05-11 Richard Stallman <rms@gnu.org>
10176
10177 * Makefile.in (dist): Don't use $(srcdir).
10178
10179 * bison.simple (__yy_memcpy):
10180 Really reorder the args, as was supposedly done on Feb 14 1995.
10181 (yyparse): Calls changed accordingly.
10182
10183 1996-01-27 Richard Stallman <rms@gnu.org>
10184
10185 * src/output.c (output_rule_data):
10186 Test YYERROR_VERBOSE in the conditional
10187 around the definition of ttyname.
10188
10189 1995-12-29 Richard Stallman <rms@gnu.org>
10190
10191 * src/bison.s1:
10192 Fix line numbers in #line commands.
10193
10194 1995-12-29 Richard Stallman <rms@gnu.org>
10195
10196 * bison.simple:
10197 Fix line numbers in #line commands.
10198
10199 1995-12-27 Richard Stallman <rms@gnu.org>
10200
10201 * src/bison.s1 (YYPARSE_PARAM_DECL):
10202 In C++, make it always null.
10203 (YYPARSE_PARAM_ARG): New macro.
10204 (yyparse): Use YYPARSE_PARAM_ARG.
10205
10206 1995-12-27 Richard Stallman <rms@gnu.org>
10207
10208 * bison.simple (YYPARSE_PARAM_DECL):
10209 In C++, make it always null.
10210 (YYPARSE_PARAM_ARG): New macro.
10211 (yyparse): Use YYPARSE_PARAM_ARG.
10212
10213 1995-11-29 Richard Stallman <rms@gnu.org>
10214
10215 * doc/bison.texinfo:
10216 Describe literal string tokens, %raw, %no_lines, %token_table.
10217
10218 1995-11-29 Daniel Hagerty <hag@gnu.org>
10219
10220 * doc/bison.texinfo: Fixed update date
10221
10222 1995-10-16 Richard Stallman <rms@gnu.org>
10223
10224 * src/version.c: Version 1.25.
10225
10226 1995-10-16 Richard Stallman <rms@gnu.org>
10227
10228 * NEWS: *** empty log message ***
10229
10230 1995-10-16 Richard Stallman <rms@gnu.org>
10231
10232 * doc/bison.1, doc/bison.rnh:
10233 Add new options.
10234
10235 1995-10-15 Richard Stallman <rms@gnu.org>
10236
10237 * src/vmsgetargs.c, src/getargs.c:
10238 Added -n, -k, and -raw switches.
10239 (noparserflag, toknumflag, rawtoknumflag): New variables.
10240
10241 * src/symtab.h (SALIAS):
10242 New #define for adding aliases to %token.
10243 (struct bucket): Added `alias' field.
10244
10245 * src/reduce.c (reduce_grammar):
10246 Revise error message.
10247 (print_notices): Remove final `.' from error message.
10248
10249 * src/reader.c (reader_output_yylsp):
10250 New function.
10251 (readgram): Use `#if 0' around code that accepted %command
10252 inside grammar rules: The documentation doesn't allow it,
10253 and it will fail since the %command processors scan for the next %.
10254 (parse_token_decl): Extended the %token
10255 declaration to allow a multi-character symbol as an alias.
10256 (parse_thong_decl): New function.
10257 (read_declarations): Added %thong declarations.
10258 (read_declarations): Handle NOOP to deal with allowing
10259 % declarations as another means to specify the flags.
10260 (readgram): Allow %prec prior to semantics embedded in a rule.
10261 (skip_to_char, read_declarations, copy_definition)
10262 (parse_token_decl, parse_start_decl, parse_type_decl)
10263 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
10264 (get_type_name, copy_guard, copy_action, readgram)
10265 (get_type, packsymbols): Revised most error messages.
10266 Changed `fatal' to `warnxxx' to avoid aborting for error.
10267 Revised and use multiple warnxxx functions to avoid using VARARGS1.
10268 (read_declarations): Improve the error message for
10269 an invalid character. Do not abort.
10270 (read_declarations, copy_guard, copy_action): Use
10271 printable_version to avoid unprintable characters in printed output.
10272 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
10273 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
10274 Allow the type of a non-terminal can be given
10275 more than once, as long as all specifications give the same type.
10276
10277 * src/output.c:
10278 (output_headers, output_trailers, output, output_gram)
10279 (output_rule_data): Implement noparserflag variable.
10280 Implement toknumflag variable.
10281 (output): Call reader_output_yylsp to output LTYPESTR.
10282
10283 * src/main.c (main):
10284 If reader sees an error, don't process the grammar.
10285 (fatals): Updated to not use VARARGS1.
10286 (printable_version, int_to_string, warn, warni, warns, warnss)
10287 (warnsss): New error reporting functions. Avoid abort for error.
10288
10289 * src/lex.h:
10290 Added THONG and NOOP for alias processing.
10291 Added SETOPT for the new code that allows setting options with %flags.
10292
10293 * src/lex.c:
10294 Include getopt.h. Add some extern decls.
10295 (safegetc): New function to deal with EOF gracefully.
10296 (literalchar); new function to deal with reading \ escapes.
10297 (lex): Use literalchar.
10298 (lex): Implemented "..." tokens.
10299 (literalchar, lex, parse_percent_token): Made tokenbuffer
10300 always contain the token. This includes growing the token
10301 buffer while reading an integer.
10302 (parse_percent_token): Replaced if-else statement with percent_table.
10303 (parse_percent_token): Added % declarations as another
10304 way to specify the flags -n, -l, and -r. Also added hooks for
10305 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
10306 major changes to files.c.
10307 (lex) Retain in the incoming stream a character following
10308 an incorrect '/'.
10309 (skip_white_space, lex): Revised most error messages
10310 and changed fatal to warn to avoid aborting.
10311 (percent_table): Added %thong declarations.
10312
10313 * src/gram.h: Comment changes.
10314
10315 * src/files.c (openfiles, open_extra_files, done):
10316 Add faction flag
10317 and actfile file. Handle noparserflag. Both for -n switch.
10318
10319 * src/conflicts.c (resolve_sr_conflict):
10320 Remove use of alloca.
10321
10322 1995-06-01 Jim Meyering <meyering@gnu.org>
10323
10324 * doc/bison.texinfo: *** empty log message ***
10325
10326 1995-05-06 Richard Stallman <rms@gnu.org>
10327
10328 * src/bison.s1: Comment change.
10329
10330 1995-05-06 Richard Stallman <rms@gnu.org>
10331
10332 * bison.simple: Comment change.
10333
10334 1995-05-03 Richard Stallman <rms@gnu.org>
10335
10336 * src/version.c: Version now 1.24.
10337
10338 * src/bison.s1: Change distribution terms.
10339
10340 * src/version.c: Version now 1.23.
10341
10342 1995-05-03 Richard Stallman <rms@gnu.org>
10343
10344 * doc/bison.texinfo:
10345 Rewrite "Conditions for Using Bison".
10346 Update version to 1.24.
10347
10348 1995-05-03 Richard Stallman <rms@gnu.org>
10349
10350 * bison.simple: Change distribution terms.
10351
10352 1995-02-23 Richard Stallman <rms@gnu.org>
10353
10354 * src/files.c: Test __VMS_POSIX as well as VMS.
10355
10356 1995-02-14 Jim Meyering <meyering@gnu.org>
10357
10358 * src/bison.s1 (__yy_memcpy):
10359 Renamed from __yy_bcopy to avoid
10360 confusion. Reverse FROM and TO arguments to be consistent with
10361 those of memcpy.
10362
10363 1995-02-14 Jim Meyering <meyering@gnu.org>
10364
10365 * bison.simple (__yy_memcpy):
10366 Renamed from __yy_bcopy to avoid
10367 confusion. Reverse FROM and TO arguments to be consistent with
10368 those of memcpy.
10369
10370 1994-11-10 David J. MacKenzie <djm@gnu.org>
10371
10372 * NEWS: reformat
10373
10374 * NEWS: New file.
10375
10376 * Makefile.in (DISTFILES): Include NEWS.
10377
10378 * Makefile.in (DISTFILES):
10379 Include install-sh, not install.sh.
10380
10381 * configure.in: Update to Autoconf v2 macro names.
10382
10383 1994-10-05 David J. MacKenzie <djm@gnu.org>
10384
10385 * Makefile.in: fix typo
10386
10387 * Makefile.in (prefix, exec_prefix):
10388 Let configure set them.
10389
10390 1994-09-28 David J. MacKenzie <djm@gnu.org>
10391
10392 * Makefile.in: Set datadir to $(prefix)/share.
10393
10394 1994-09-15 Richard Stallman <rms@gnu.org>
10395
10396 * src/bison.s1:
10397 Update copyright notice and GPL version.
10398
10399 1994-09-15 Richard Stallman <rms@gnu.org>
10400
10401 * bison.simple:
10402 Update copyright notice and GPL version.
10403
10404 1994-07-12 Richard Stallman <rms@gnu.org>
10405
10406 * src/reduce.c, src/reader.c:
10407 entered into RCS
10408
10409 1994-05-05 David J. MacKenzie <djm@gnu.org>
10410
10411 * Makefile.in: entered into RCS
10412
10413 1994-03-26 Richard Stallman <rms@gnu.org>
10414
10415 * src/bison.s1: entered into RCS
10416
10417 1994-03-26 Richard Stallman <rms@gnu.org>
10418
10419 * bison.simple: entered into RCS
10420
10421 1994-03-25 Richard Stallman <rms@gnu.org>
10422
10423 * src/main.c: entered into RCS
10424
10425 1994-03-24 Richard Stallman <rms@gnu.org>
10426
10427 * src/conflicts.c: entered into RCS
10428
10429 1994-01-02 Richard Stallman <rms@gnu.org>
10430
10431 * Makefile.in: *** empty log message ***
10432
10433 1993-11-21 Richard Stallman <rms@gnu.org>
10434
10435 * src/bison.s1: *** empty log message ***
10436
10437 1993-11-21 Richard Stallman <rms@gnu.org>
10438
10439 * doc/bison.texinfo: entered into RCS
10440
10441 * doc/bison.texinfo: *** empty log message ***
10442
10443 1993-11-21 Richard Stallman <rms@gnu.org>
10444
10445 * bison.simple: *** empty log message ***
10446
10447 1993-10-25 David J. MacKenzie <djm@gnu.org>
10448
10449 * doc/bison.texinfo: *** empty log message ***
10450
10451 1993-10-19 Richard Stallman <rms@gnu.org>
10452
10453 * src/bison.s1: *** empty log message ***
10454
10455 1993-10-19 Richard Stallman <rms@gnu.org>
10456
10457 * bison.simple: *** empty log message ***
10458
10459 1993-10-14 Richard Stallman <rms@gnu.org>
10460
10461 * src/bison.s1: *** empty log message ***
10462
10463 1993-10-14 Richard Stallman <rms@gnu.org>
10464
10465 * bison.simple: *** empty log message ***
10466
10467 1993-09-14 David J. MacKenzie <djm@gnu.org>
10468
10469 * doc/bison.texinfo: *** empty log message ***
10470
10471 1993-09-13 Noah Friedman <friedman@gnu.org>
10472
10473 * Makefile.in: *** empty log message ***
10474
10475 1993-09-10 Richard Stallman <rms@gnu.org>
10476
10477 * src/conflicts.c: *** empty log message ***
10478
10479 * src/system.h: entered into RCS
10480
10481 1993-09-10 Richard Stallman <rms@gnu.org>
10482
10483 * doc/bison.1: entered into RCS
10484
10485 1993-09-06 Noah Friedman <friedman@gnu.org>
10486
10487 * src/version.c: entered into RCS
10488
10489 1993-09-06 Noah Friedman <friedman@gnu.org>
10490
10491 * Makefile.in: *** empty log message ***
10492
10493 1993-07-30 David J. MacKenzie <djm@gnu.org>
10494
10495 * Makefile.in: *** empty log message ***
10496
10497 1993-07-24 Richard Stallman <rms@gnu.org>
10498
10499 * src/bison.s1: *** empty log message ***
10500
10501 1993-07-24 Richard Stallman <rms@gnu.org>
10502
10503 * bison.simple: *** empty log message ***
10504
10505 1993-07-08 David J. MacKenzie <djm@gnu.org>
10506
10507 * Makefile.in: *** empty log message ***
10508
10509 1993-07-04 Richard Stallman <rms@gnu.org>
10510
10511 * src/bison.s1: *** empty log message ***
10512
10513 1993-07-04 Richard Stallman <rms@gnu.org>
10514
10515 * bison.simple: *** empty log message ***
10516
10517 1993-06-26 David J. MacKenzie <djm@gnu.org>
10518
10519 * src/getargs.c: entered into RCS
10520
10521 1993-06-26 David J. MacKenzie <djm@gnu.org>
10522
10523 * doc/bison.texinfo: *** empty log message ***
10524
10525 * doc/bison.1: New file.
10526
10527 1993-06-25 Richard Stallman <rms@gnu.org>
10528
10529 * src/getargs.c: New file.
10530
10531 1993-06-16 Richard Stallman <rms@gnu.org>
10532
10533 * src/bison.s1: *** empty log message ***
10534
10535 1993-06-16 Richard Stallman <rms@gnu.org>
10536
10537 * bison.simple: *** empty log message ***
10538
10539 1993-06-03 Richard Stallman <rms@gnu.org>
10540
10541 * src/bison.s1: New file.
10542
10543 1993-06-03 Richard Stallman <rms@gnu.org>
10544
10545 * doc/bison.texinfo: *** empty log message ***
10546
10547 1993-06-03 Richard Stallman <rms@gnu.org>
10548
10549 * bison.simple: New file.
10550
10551 1993-05-19 Richard Stallman <rms@gnu.org>
10552
10553 * doc/bison.texinfo: New file.
10554
10555 1993-05-07 Noah Friedman <friedman@gnu.org>
10556
10557 * Makefile.in: *** empty log message ***
10558
10559 1993-04-28 Noah Friedman <friedman@gnu.org>
10560
10561 * src/reader.c: *** empty log message ***
10562
10563 1993-04-23 Noah Friedman <friedman@gnu.org>
10564
10565 * src/alloc.h: entered into RCS
10566
10567 1993-04-20 David J. MacKenzie <djm@gnu.org>
10568
10569 * src/version.c: *** empty log message ***
10570
10571 * src/files.c, src/allocate.c:
10572 entered into RCS
10573
10574 * src/reader.c: *** empty log message ***
10575
10576 * src/lex.c: entered into RCS
10577
10578 * src/conflicts.c: New file.
10579
10580 * src/symtab.c: entered into RCS
10581
10582 * src/alloc.h: New file.
10583
10584 * src/LR0.c: entered into RCS
10585
10586 1993-04-18 Noah Friedman <friedman@gnu.org>
10587
10588 * src/reader.c: New file.
10589
10590 * src/version.c: *** empty log message ***
10591
10592 1993-04-18 Noah Friedman <friedman@gnu.org>
10593
10594 * Makefile.in: *** empty log message ***
10595
10596 1993-04-17 Noah Friedman <friedman@gnu.org>
10597
10598 * Makefile.in: *** empty log message ***
10599
10600 1993-04-15 Richard Stallman <rms@gnu.org>
10601
10602 * src/main.c, src/files.c:
10603 New file.
10604
10605 1993-04-15 Noah Friedman <friedman@gnu.org>
10606
10607 * configure.in: entered into RCS
10608
10609 * configure.in: *** empty log message ***
10610
10611 * configure.in: New file.
10612
10613 1993-04-14 Richard Stallman <rms@gnu.org>
10614
10615 * Makefile.in: New file.
10616
10617 1993-04-13 Richard Stallman <rms@gnu.org>
10618
10619 * src/version.c: New file.
10620
10621 1993-03-25 Richard Stallman <rms@gnu.org>
10622
10623 * src/output.c: entered into RCS
10624
10625 1992-09-25 Richard Stallman <rms@gnu.org>
10626
10627 * configure.bat: entered into RCS
10628
10629 1992-06-22 Richard Stallman <rms@gnu.org>
10630
10631 * src/vmsgetargs.c: entered into RCS
10632
10633 1992-06-22 Richard Stallman <rms@gnu.org>
10634
10635 * doc/bison.rnh: entered into RCS
10636
10637 1992-04-20 David J. MacKenzie <djm@gnu.org>
10638
10639 * README: entered into RCS
10640
10641 1992-01-22 Richard Stallman <rms@gnu.org>
10642
10643 * src/machine.h: entered into RCS
10644
10645 1991-12-21 Richard Stallman <rms@gnu.org>
10646
10647 * src/lalr.c, src/closure.c:
10648 entered into RCS
10649
10650 1991-12-20 Richard Stallman <rms@gnu.org>
10651
10652 * src/state.h: entered into RCS
10653
10654 1991-12-18 Richard Stallman <rms@gnu.org>
10655
10656 * src/print.c, src/nullable.c, src/derives.c:
10657 entered into RCS
10658
10659 1991-11-03 David J. MacKenzie <djm@gnu.org>
10660
10661 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
10662 entered into RCS
10663
10664 1988-09-09 Richard Stallman <rms@gnu.org>
10665
10666 * src/bison.hairy: entered into RCS
10667
10668 1987-12-16 Richard Stallman <rms@gnu.org>
10669
10670 * REFERENCES: entered into RCS
10671
10672 -----
10673
10674 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
10675 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
10676
10677 This file is part of Bison, the GNU Compiler Compiler.
10678
10679 Bison is free software; you can redistribute it and/or modify
10680 it under the terms of the GNU General Public License as published by
10681 the Free Software Foundation; either version 2, or (at your option)
10682 any later version.
10683
10684 Bison is distributed in the hope that it will be useful,
10685 but WITHOUT ANY WARRANTY; without even the implied warranty of
10686 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10687 GNU General Public License for more details.
10688
10689 You should have received a copy of the GNU General Public License
10690 along with Bison; see the file COPYING. If not, write to
10691 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
10692 Boston, MA 02111-1307, USA.