]> git.saurik.com Git - bison.git/blob - ChangeLog
Bump version number.
[bison.git] / ChangeLog
1 2002-12-24 Paul Eggert <eggert@twinsun.com>
2
3 Version 1.75e.
4
5 * Makefile.maint (cvs-update): Don't assume that the shell
6 supports $(...), as Solaris sh doesn't.
7
8 * src/parse-gram.y (lloc_default): Remove test for empty
9 nonterminals at the end, since it didn't change the result.
10
11 2002-12-24 Paul Eggert <eggert@twinsun.com>
12
13 If the user does not define YYSTYPE as a macro, Bison now declares it
14 using typedef instead of defining it as a macro. POSIX requires this.
15 For consistency, YYLTYPE is also declared instead of defined.
16
17 %union directives can now have a tag before the `{', e.g., the
18 directive `%union foo {...}' now generates the C code
19 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
20 The default union tag is `YYSTYPE', for compatibility with Solaris 9
21 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
22 instead of `yyltype'.
23
24 `yystype' and `yyltype' are now obsolescent macros instead of being
25 typedefs or tags; they are no longer documented and will be
26 withdrawn in a future release.
27
28 * data/glr.c (b4_location_type): Remove.
29 (YYSTYPE): Renamed from yystype.
30 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
31 (struct YYLTYPE): Renamed from struct yyltype.
32 (YYLTYPE): Renamed from yyltype.
33 (yyltype, yystype): New (and obsolescent) macros,
34 for backward compatibility.
35 * data/yacc.c: Likewise.
36
37 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
38 does not specify a union tag. This is for compatibility with
39 Solaris 9 yacc.
40
41 * src/parse-gram.y (add_param): 2nd arg is now char * not char
42 const *, since it is now modified by stripping surrounding { }.
43 (current_braced_code): Remove.
44 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
45 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
46 trailing " {...}". Now of type <chars>.
47 (grammar_declaration): Adjust to bundled tokens.
48 (code_content): Remove; stripping is now done by add_param.
49 (print_token_value): Print contents of bundled tokens.
50 (token_name): New function.
51
52 * src/reader.h (braced_code, current_braced_code): Remove.
53 (token_name): New decl.
54
55 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
56 token_type, not braced_code code_kind. All uses changed.
57 (SC_PRE_CODE): New state, for scanning after a keyword that
58 has (or usually has) an immediately-following braced code.
59 (token_type): New local var, to keep track of which token type
60 to return when scanning braced code.
61 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
62 <INITIAL>"%parse-param", <INITIAL>"%printer,
63 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
64 instead of returning a token type immediately.
65 (<INITIAL>"{"): Set token type.
66 (<SC_BRACED_CODE>"}"): Use it.
67 (handle_action_dollar, handle_action_at): Now returns bool
68 indicating success. Fail if ! current_rule; this prevents a core dump.
69 (handle_symbol_code_dollar, handle_symbol_code_at):
70 Remove; merge body into caller.
71 (handle_dollar, handle_at): Complain in invalid contexts.
72
73 * NEWS, doc/bison.texinfo: Document the above.
74 * NEWS: Fix years and program names in copyright notice.
75
76 2002-12-17 Paul Eggert <eggert@twinsun.com>
77
78 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
79 Reporting, Table of Symbols): Omit mentions of %lex-param and
80 %parse-param from the documentation for now.
81
82 2002-12-15 Paul Eggert <eggert@twinsun.com>
83
84 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
85 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
86 lookahead symbol, and which sets yychar in parser actions) and it
87 disagreed with the Bison documentation. This should fix the bug
88 reported by Andrew Walrond in
89 <http://mail.gnu.org/pipermail/bug-bison/2002-December/001949.html>.
90
91 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
92 as the caller now does that.
93 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
94 (YYEMPTY): Parenthesize right hand side, since others use it.
95 (yyparse): Don't assume that our generated code is the only code
96 that sets yychar.
97
98 2002-12-13 Paul Eggert <eggert@twinsun.com>
99
100 Version 1.75d.
101
102 POSIX requires a "yacc" command.
103 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
104 (MOSTLYCLEANFILES): Add yacc.
105 (yacc): New rule.
106 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
107 as an alias for bison y.
108
109 * po/LINGUAS: Add da.
110
111 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
112 problem with latest <getopt.h>.
113 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
114
115 * doc/fdl.texi: Upgrade to 1.2.
116 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
117 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
118 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
119 gnulib.
120 * config/install-sh: Sync with autotools.
121
122 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
123 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001929.html>.
124 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
125 locations are requested.
126 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
127 locations are requested.
128
129 2002-12-12 Paul Eggert <eggert@twinsun.com>
130
131 Remove unportable casts and storage allocation tricks.
132 While we're at it, remove almost all casts, since they
133 usually aren't needed and are a sign of trouble.
134
135 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
136
137 * src/derives.c (derives_compute): Do not subtract NTOKENS from
138 the pointer DSET returned by malloc; this isn't portable.
139 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
140 Similarly for DERIVES.
141 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
142 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
143 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
144
145 * src/derives.c (derives_compute): Do not bother invoking
146 int_of_rule_number, since rule numbers are integers.
147
148 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
149 rather than XMALLOC (char, N).
150
151 * src/files.c (filename_split): Rewrite to avoid cast.
152
153 * src/gram.h (symbol_number_as_item_number,
154 item_number_as_symbol_number, rule_number_as_item_number,
155 item_number_as_rule_number):
156 Now inline functions rather than macros, to avoid casts.
157 * src/state.h (state_number_as_int): Likewise.
158 * src/tables.c (state_number_to_vector_number,
159 symbol_number_to_vector_number): Likewise.
160
161 * src/gram.h (int_of_rule_number): Remove; no longer used.
162
163 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
164 since the resulting storage is always stored into.
165
166 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
167 where it's needed.
168
169 * src/muscle_tab.c (muscle_m4_output):
170 Now inline. Return bool, not int.
171 * src/state.c (state_compare): Likewise.
172 * src/symtab.c (symbol_check_defined,
173 symbol_check_alias_consistency, symbol_pack, symbol_translation,
174 hash_compare_symbol, hash_symbol):
175 Likewise.
176 * src/uniqstr.c (uniqstr_print): Likewise.
177 * src/muscle_tab.c (muscle_m4_output_processor):
178 New function, to avoid casts.
179 * src/state.c (state_comparator, stage_hasher): Likewise.
180 * src/symtab.c (symbol_check_defined_processor,
181 symbol_check_alias_consistency_processor, symbol_pack_processor,
182 symbol_translation_processor, hash_symbol_comparator,
183 hash_symbol_hasher): Likewise.
184 * src/uniqstr.c (uniqstr_print_processor): Likewise.
185 * src/muscle_tab.c (muscles_m4_output):
186 Use new functions instead of casting old functions unportably.
187 * src/state.c (state_hash_new): Likewise.
188 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
189 symbols_token_translations_init):
190 Likewise.
191 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
192
193 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
194 var instead of casting to long, to avoid casts.
195 (prepare_states): Use MALLOC rather than alloca, so that we don't
196 have to worry about alloca.
197 * src/state.c (state_hash_lookup): Likewise.
198
199 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
200 local var instead of casting to unsigned char, to avoid casts.
201
202 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
203 STATE_ALLOC): Remove.
204 (transitions_new, errs_new, reductions_new, state_new): Use malloc
205 rather than calloc, and use offsetof to avoid allocating slightly
206 too much storage.
207 (state_new): Initialize all members.
208
209 * src/state.c (state_hash): Use unsigned accumulator, not signed.
210
211 * src/symtab.c (symbol_free): Remove; unused.
212 (symbol_get): Remove cast in lhs of assignment.
213 (symbols_do): Now static. Accept generic arguments, not
214 hashing-related ones.
215
216 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
217 (symbol_processor): Remove.
218 (symbols_do): Remove decl; now static.
219
220 * src/system.h (alloca): Remove; decl no longer needed.
221 (<stddef.h>): Include, for offsetof.
222 (<inttypes.>, <stdint.h>): Include if available.
223 (uintptr_t): New type, if system lacks it.
224 (CALLOC, MALLOC, REALLOC): New macros.
225 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
226 new macros.
227
228 * src/tables.c (table_size): Now int, to pacify GCC.
229 (table_grow, table_ninf_remap): Use signed table size.
230 (save_row): Don't bother initializing locals when not needed.
231 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
232 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
233
234 * src/vcg.h: Correct misspellings.
235
236 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
237
238
239 * src/getargs.c (getargs): Don't assume EOF == -1.
240
241 2002-12-09 Paul Eggert <eggert@twinsun.com>
242
243 Change identifier spellings to avoid collisions with names
244 that are reserved by POSIX.
245
246 Don't use names ending in _t, since POSIX reserves them.
247 For consistency, remove _e and _s endings -- they're weren't
248 needed to remove ambiguity. All uses changed.
249 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
250 turn was just renamed from struniq_t.
251 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
252 which in turn was just renamed from struniq_processor_t.
253 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
254 in turn was renamed from hash_compare_struniq_t.
255 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
256 (state_list): Renamed from state_list_t.
257 * src/assoc.h (assoc): Renamed from assoc_t.
258 * src/conflicts.c (enum conflict_resolution): Renamed from
259 enum conflict_resolution_e.
260 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
261 (rule_list): Renamed from rule_list_t.
262 * src/getargs.h (enum trace): Renamed from enum trace_e.
263 (enum report): Renamed from enum report_e.
264 * src/gram.h (item_number): Renamed from item_number_t.
265 (rule_number): Renamed from rule_number_t.
266 (struct rule_s): Remove the "rule_s" part; not used.
267 (rule): Renamed from rule_t.
268 (rule_filter): Renamed from rule_filter_t.
269 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
270 (goto_list): Renamed from goto_list_t.
271 * src/lalr.h (goto_number): Renamed from goto_number_t.
272 * src/location.h (location): Renamed from location_t.
273 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
274 and moved here from:
275 * src/muscle_tab.h (muscle_entry_t): here.
276 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
277 (rule_list): Renamed from rule_list_t.
278 * src/print_graph.c (static_graph): Renamed from graph.
279 * src/reader.h (braced_code): Renamed from braced_code_t.
280 Remove brace_code_e tag.
281 * src/relation.h (relation_node): Renamed from relation_node_t.
282 (relation_nodes): Renamed from relation_nodes_t.
283 (relation): Renamed from relation_t.
284 * src/state.h (state_number): Renamed from state_number_t.
285 (struct state): Renamed from struct state_s.
286 (state): Renamed from state_t.
287 (transitions): Renamed from transitions_t. Unused (and
288 misspelled) transtion_s tag removed.
289 (errs): Renamed from errs_t. Unused errs_s tag removed.
290 (reductions): Renamed from reductions_t. Unused tag
291 reductions_s removed.
292 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
293 (struct symbol_list): Renamed from struct symbol_list_s.
294 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
295 (struct symbol): Renamed from struct symbol_s.
296 (symbol): Renamed from symbol_t.
297 * src/tables.c (vector_number): Renamed from vector_number_t.
298 (action_number): Renamed from action_t.
299 * src/tables.h (base_number): Renamed from base_t.
300 * src/vcg.h (enum color): Renamed from enum color_e.
301 (enum textmode): Renamed from enum textmode_e.
302 (enum shape): Renamed from enum shape_e.
303 (struct colorentry): Renamed from struct colorentry_s.
304 (struct classname): Renamed from struct classname_s.
305 (struct infoname): Renamed from struct infoname_s.
306 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
307 (enum decision): Renamed from enum decision_e.
308 (enum orientation): Renamed from enum orientation_e.
309 (enum alignment): Renamed from enum alignment_e.
310 (enum arrow_mode): Renamed from enum arrow_mode_e.
311 (enum crossing_type): Renamed from enum crossing_type_e.
312 (enum view): Renamed from enum view_e.
313 (struct node): Renamed from struct node_s.
314 (node): Renamed from node_t.
315 (enum linestyle): Renamed from enum linestyle_e.
316 (enum arrowstyle): Renamed from enum arrowstyle_e.
317 (struct edge): Renamed from struct edge.
318 (edge): Renamed from edge_t.
319 (struct graph): Renamed from struct graph_s.
320 (graph): Renamed from graph_t.
321 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
322 Rename value_t -> value.
323 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
324 value_t_as_yystype -> value_as_yystype.
325
326 Don't include <errno.h> in the mainstream code, since it
327 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
328 * lib/get-errno.c, lib/get-errno.h: New files.
329 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
330 get-errno.c.
331 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
332 * src/output.c (output_skeleton): Likewise.
333 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
334 instead of errno.
335 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
336 Likewise.
337 (handle_action_dollar, handle_action_at): Likewise.
338 * src/system.h: Do not include <errno.h>.
339 (TAB_EXT): Renamed from EXT_TAB.
340 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
341
342 Avoid str[a-z]*, since <string.h> reserves that name space.
343 Change all instances of "struniq" in names to "uniqstr", and
344 likewise for "STRUNIQ" and "UNIQSTR".
345 * src/uniqstr.c: Renamed from src/struniq.c.
346 * src/uniqstr.h: Renamed from src/struniq.h.
347 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
348 * src/files.c (strsuffix): Remove; unused.
349 (concat2): Renamed from stringappend. Now static.
350 * src/files.h (strsuffix, stringappend): Remove; unused.
351 * src/parse-gram.y (<chars>): Renamed from <string>.
352 (<uniqstr>): Renamed from <struniq>.
353 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
354 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
355 (struct graph_s.expand): Renamed from struct graph_s.stretch.
356 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
357 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
358 (N_EXPAND): Renamed from N_STRETCH.
359
360 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
361 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
362 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
363 Remove; unused.
364 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
365 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
366 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
367 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
368 (BASE_MAXIMUM): Renamed from BASE_MAX.
369 (BASE_MINIMUM): Renamed from BASE_MIN.
370 (ACTION_MAX): Remove; unused.
371 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
372 Unnecessary casts removed from above defines.
373
374
375 Fix misspelling in names.
376 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
377 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
378 G_NODE_ALIGNEMENT.
379
380
381 * lib/timevar.c (timevar_report): Renamed from time_report,
382 for consistency with other names.
383 * lib/timevar.h (timevar_report): New decl.
384 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
385
386
387 Sort include-file uses.
388
389 Reorder all include files under src to be in the order "system.h".
390 then the ../lib include files in angle brackets (alphabetized),
391 then the . include files in double-quotes (alphabetized). Fix
392 dependency breakages encountered in this process, as follows:
393 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
394 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
395 * src/state.h: Include "symtab.h".
396
397 2002-12-08 Paul Eggert <eggert@twinsun.com>
398
399 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
400 since this causes problems when __file__ contains character
401 sequences like "@" that are treated specially by src/scan-skel.l.
402 Instead, just use the file's basename. This fixes the bug
403 reported by Martin Mokrejs in
404 <http://mail.gnu.org/pipermail/bug-bison/2002-December/001945.html>.
405
406 2002-12-06 Paul Eggert <eggert@twinsun.com>
407
408 Add support for rules that do not have trailing semicolons, as
409 POSIX requires. Improve the quality of locations in Bison
410 diagnostics.
411
412 * src/location.c: Include <quotearg.h>.
413 (empty_location): Now const.
414 (location_print): New function. Follow the recommendation of the
415 GNU Coding Standards for locations that span file boundaries.
416 * src/location.h: Do not include <quotearg.h>; no longer needed.
417 (boundary): New type.
418 (location_t): Use it. This allows locations to span file boundaries.
419 All member uses changed: file -> start.file or end.file (as needed),
420 first_line -> start.line, first_column -> start.column,
421 last_line -> end.line, last_column -> end.column.
422 (equal_boundaries): New function.
423 (LOCATION_RESET, LOCATION_STEP): Remove.
424 (LOCATION_PRINT): Remove. All callers changed to use location_print.
425 (empty_location): Now const.
426 (location_print): New decl.
427 * src/parse-gram.y (lloc_default): New function, which handles
428 empty locations more accurately.
429 (YYLLOC_DEFAULT): Use it.
430 (%token COLON): Remove.
431 (%token ID_COLON): New token.
432 (rules): Use it.
433 (declarations, rules): Remove trailing semicolon.
434 (declaration, rules_or_grammar_declaration):
435 Allow empty (";") declaration.
436 (symbol_def): Remove empty actions; no longer needed.
437 (rules_or_grammar_declaration): Remove trailing semicolon.
438 (semi_colon.opt): Remove.
439 * src/reader.h: Include location.h.
440 (scanner_cursor): New decl.
441 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
442 rolling our own.
443 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
444 of *loc.
445 (STEP): Remove. No longer needed, now that adjust_location does
446 the work. All uses removed.
447 (scanner_cursor): New var.
448 (adjust_location): Renamed from extend_location. It now sets
449 *loc and adjusts the scanner cursor. All uses changed.
450 Don't bother testing for CR.
451 (handle_syncline): Remove location arg; now updates scanner cursor.
452 All callers changed.
453 (unexpected_end_of_file): Now accepts start boundary of token or
454 comment, not location. All callers changed. Update scanner cursor,
455 not the location.
456 (SC_AFTER_IDENTIFIER): New state.
457 (context_state): Renamed from c_context. All uses changed.
458 (id_loc, code_start, token_start): New local vars.
459 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
460 processing of Yacc white space and equivalents here.
461 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
462 instead of returning ID immediately, since we need to search for
463 a subsequent colon.
464 (<INITIAL>"'", "\""): Save token_start.
465 (<INITIAL>"%{", "{", "%%"): Save code_start.
466 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
467 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
468 BEGIN context_state at end, not INITIAL.
469 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
470 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
471 Return correct token start.
472 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
473 the start of a character, string or multiline comment is found.
474 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
475 Reduction): Adjust reported locations to match the more-precise
476 results now expected.
477 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
478 * tests/reduce.at (Useless Rules, Reduced Automaton,
479 Underivable Rules): Likewise.
480 * tests/regression.at (Invalid inputs): No longer `expecting ";"
481 or "|"' now that so many other tokens are allowed by the new grammar.
482
483 * src/complain.h (current_file): Remove duplicate decl;
484 current_file is now owned by files.h.
485 * src/complain.c, src/scan-gram.l: Include files.h.
486
487 2002-12-06 Paul Eggert <eggert@twinsun.com>
488
489 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
490 promotes to int; it might be unsigned int.
491 * data/yacc.c (yy_reduce_print): Likewise.
492
493 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
494 be #defined in the prologue, not in the Bison declarations.
495 This fixes Debian Bug 102878, reported by Shaul Karl.
496
497 2002-12-02 Paul Eggert <eggert@twinsun.com>
498
499 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
500 * lib/strtoul.c: New file, from gnulib.
501 This fixes a porting bug reported by Peter Klein in
502 <http://mail.gnu.org/pipermail/bug-bison/2002-December/001944.html>.
503
504 2002-11-30 Paul Eggert <eggert@twinsun.com>
505
506 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
507 and put only a forward declaration in the prologue. This is for
508 consistency with the other scanner helper functions.
509
510 Type clashes now generate warnings, not errors, since it
511 appears that POSIX may allow some grammars with type clashes.
512 * src/reader.c (grammar_current_rule_check): Warn about
513 type clashes instead of complaining.
514 * tests/input.at (Type Clashes): Expect warnings, not complaints.
515
516 Add Yacc library, since POSIX requires it.
517 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
518 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
519 * lib/main.c, lib/yyerror.c: New files.
520
521 gram_error can be static; it need not be extern.
522 * src/reader.h (gram_error): Remove decl.
523 * src/parse-gram.y (gram_error): Now static. Add static decl.
524 (print_token_value): Omit parameter names from forward decl,
525 for consistency.
526
527 2002-11-29 Paul Eggert <eggert@twinsun.com>
528
529 * doc/bison.texinfo: Emphasize that yylex and yyerror must
530 be declared before being used. E.g., one should typically
531 declare them in the prologue. Use GNU coding style in examples.
532 Put "const" consistently after the type it modifies. Mention
533 that C99 supports "inline". Mention that yyerror traditionally
534 returns "int".
535
536 %parse-param and %lex-param now take just one argument, the
537 declaration; the argument name is deduced from the declaration.
538
539 * doc/bison.texinfo (Parser Function, Pure Calling, Error
540 Reporting, Table of Symbols): Document this.
541 * src/parse-gram.y (add_param): New function.
542 (COMMA): Remove.
543 (declaration): Implement new rule for %parse-param and %lex-param.
544 * src/scan-gram.l: "," now elicits a warning, rather than being
545 a token; this is more compatible with byacc.
546 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
547
548 2002-11-27 Paul Eggert <eggert@twinsun.com>
549
550 Rename identifiers to avoid real and potential collisions.
551
552 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
553 to avoid collision with lex macro described by Bruce Lilly in
554 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001929.html>.
555 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
556 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
557 * src/parse-gram.y (print_token_value): Renamed from yyprint.
558 All uses changed.
559 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
560 The name "yycontrol" violates the name space rules, and this stuff
561 wasn't being used anyway.
562 (input): Remove action; this stuff wasn't being used.
563 (gram_error): Rename local variable yylloc -> loc.
564 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
565 (YY_DECL): Don't use "yy" at start of local variables.
566 All uses changed, e.g., yylloc -> loc.
567 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
568 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
569 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
570 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
571
572 * src/parse-gram.y (gram_error): loc is now const *.
573 * src/reader.h (gram_error): Likewise.
574
575 2002-11-24 Paul Eggert <eggert@twinsun.com>
576
577 Version 1.75c.
578
579 * tests/actions.at (Actions after errors): Use an output format
580 more similar to that of the Printers and Destructors test.
581 Test the position of the ';' token too.
582 (Printers and Destructors): Likewise.
583 (Printers and Destructors: %glr-parser): Remove for now, to avoid
584 unnecessarily alarming people when the test fails.
585
586 * data/yacc.c (yyerrlab1): Move this label down, so that the
587 parser does not discard the lookahead token if the user code
588 invokes YYERROR. This change is required for POSIX conformance.
589
590 * lib/error.c: Sync with gnulib.
591
592 2002-11-22 Paul Eggert <eggert@twinsun.com>
593
594 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
595 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
596 * lib/xmalloc.c: Likewise.
597
598 2002-11-20 Paul Eggert <eggert@twinsun.com>
599
600 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
601
602 2002-11-20 Paul Eggert <eggert@twinsun.com>
603
604 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
605 should use `if (! x) abort ();' rather than `assert (x);', and
606 anyway it's one less thing to worry about configuring.
607
608 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
609 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
610 and replace all instances of assert with abort.
611 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
612 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
613
614 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
615 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
616 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
617 hash_find_entry, hash_rehash, hash_insert): Likewise.
618 * src/conflicts.c (resolve_sr_conflict): Likewise.
619 * src/lalr.c (set_goto_map, map_goto): Likewise.
620 * src/nullable.c (nullable_compute): Likewise.
621 * src/output.c (prepare_rules, token_definitions_output): Likewise.
622 * src/reader.c (packgram, reader): Likewise.
623 * src/state.c (state_new, state_free, state_transitions_set,
624 state_reduction_find): Likewise.
625 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
626 symbol_pack): Likewise.
627 * src/tables.c (conflict_row, pack_vector): Likewise.
628 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
629 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
630 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
631 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
632
633 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
634 (ARGMATCH_CONSTRAINT): New macro.
635 (ARGMATCH_ASSERT): Use it.
636
637 * src/system.h (verify): New macro.
638 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
639 rather than assert.
640 * src/tables.c (tables_generate): Likewise.
641
642 * src/struniq.c (struniq_assert): Now returns void, and aborts
643 if the assertion is false.
644 (struniq_assert_p): Remove.
645 * src/struniq.h: Likewise.
646
647 2002-11-18 Paul Eggert <eggert@twinsun.com>
648
649 * data/glr.c (yygetLRActions): Replace `yyindex' with
650 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
651 This fixes the regression with Sun ONE Studio 7 cc that I reported in
652 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001892.html>.
653
654 2002-11-18 Akim Demaille <akim@epita.fr>
655
656 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
657 space.
658 From Tim Van Holder.
659
660 2002-11-17 Paul Eggert <eggert@twinsun.com>
661
662 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
663 to "SyntaxError" for consistency with my 2002-11-15 change.
664
665 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
666 not define to {}, since this breaks the common use of `YYDPRINTF
667 ((...));' if a single statement is desired (e.g. before `else').
668 Work around GCC warnings by surrounding corresponding calls with
669 {} if needed.
670 (yyhasResolvedValue): Remove unused function.
671 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
672 loop body.
673 (yyreportSyntaxError): Renamed from yyreportParseError.
674 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
675 All uses changed.
676 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
677 extern when possible. Remove unused initializations.
678
679 2002-11-16 Akim Demaille <akim@epita.fr>
680
681 Augment the similarity between GLR and LALR traces.
682
683 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
684 (YY_REDUCE_PRINT): New.
685 (yyparse): Use them.
686 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
687 YYDPRINT here.
688 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
689 state reached after the reduction/recovery, since...
690 (yyparse, yyprocessOneStack): Report the state we are entering in.
691
692 2002-11-16 Akim Demaille <akim@epita.fr>
693
694 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
695 Add support for --trace=skeleton.
696 * src/scan-skel.l: %option debug.
697 Scan strings of non-@ or \n instead of character by character.
698 (scan_skel): Handle trace_skeleton.
699 (QPUTS): New.
700 (@output_parser_name@, @output_header_name@): ``Restore'' their
701 support (used to be M4 macros).
702 * data/yacc.c: Quote larger chunks, a la glr.c.
703 * data/lalr1.cc: Likewise.
704 The header guards are no longer available, so use some other
705 string than `YYLSP_NEEDED'.
706
707 2002-11-16 Akim Demaille <akim@epita.fr>
708
709 Make the ``Printers and Destructors'' test more verbose, taking
710 `yacc.c''s behavior as (possibly wrong) reference.
711
712 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
713 instead of fprint on stdout.
714 Set and report the last_line of the symbols.
715 Consistently display values and locations.
716
717 2002-11-16 Paul Eggert <eggert@twinsun.com>
718
719 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
720
721 2002-11-15 Paul Eggert <eggert@twinsun.com>
722
723 * tests/actions.at (Actions after errors): New test case.
724
725 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
726 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
727 tests/action.at, tests/calc.at, tests/conflicts.at,
728 tests/cxx-type.at, tests/regression.at:
729 "parse error" -> "syntax error" for POSIX compatibility.
730 "parsing stack overflow..." -> "parser stack overflow" so
731 that code matches Bison documentation.
732
733 2002-11-15 Akim Demaille <akim@epita.fr>
734
735 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
736 take two BRACED_CODE, not two string_content.
737 Free the scanner's obstack when we are done.
738 (code_content): New.
739 * tests/calc.at: Adjust.
740 * doc/bison.texinfo: Adjust.
741 Also, make sure to include the `,' for these declarations.
742
743 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
744
745 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
746 definition; avoids potential autoreconf problems.
747
748 2002-11-15 Akim Demaille <akim@epita.fr>
749
750 Always check the value returned by yyparse.
751
752 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
753 returned by yyparse.
754 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
755 Adjust calls.
756 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
757 returned by yyparse.
758
759 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
760
761 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
762 on input.at test.
763
764 2002-11-14 Paul Eggert <eggert@twinsun.com>
765
766 * src/output.c (output_skeleton): Call xfopen instead of
767 duplicating xfopen's body.
768
769 Fix bugs reported by Nelson H. F. Beebe in
770 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001893.html>.
771
772 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
773 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
774 Group compiler. Instead, use "$CC -E bar.c". Include the .h
775 file twice in the grammar, as an extra check.
776
777 * tests/input.at (Torturing the Scanner): Surround the
778 backslash-newline tests with "#if 0", to make it less likely that
779 we'll run into compiler bugs. Bring back solitary \ inside
780 comment, but add a closing comment to work around HP C bug. Don't
781 test backslash-newline in C character constant. This should fix
782 the input.at bug reported by Nelson H. F. Beebe in
783 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001893.html>.
784
785 2002-11-14 Akim Demaille <akim@epita.fr>
786
787 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
788 status of the compiler.
789 Calling `exit 1' is no longer needed.
790 Reported by Nelson H. F. Beebe.
791
792 2002-11-14 Akim Demaille <akim@epita.fr>
793
794 * tests/atlocal.in (CPPFLAGS): We have config.h.
795 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
796 New.
797 * tests/actions.at, tests/calc.at, tests/conflicts.at,
798 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
799 * tests/regression.at, tests/torture.at: Use them for all the
800 grammars that are to be compiled.
801 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
802 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
803 * doc/bison.texinfo (GLR Parsers): Document `inline'.
804
805 2002-11-14 Akim Demaille <akim@epita.fr>
806
807 * doc/bison.texinfo: Various formatting changes (alignments in
808 samples, additional @group/@end group, GCS in samples.
809 Use @deffn instead of simple @table to define the directives,
810 macros, variables etc.
811
812 2002-11-13 Paul Eggert <eggert@twinsun.com>
813
814 Fix some bugs reported by Albert Chin-A-Young in
815 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001881.html>.
816
817 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
818 -o c"; the HP C compiler chatters during compilation.
819 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
820 * tests/headers.at (export YYLTYPE): Likewise.
821
822 * tests/input.at (Torturing the Scanner): Remove lines containing
823 solitary backslashes, as they tickle a bug in the HP C compiler.
824
825 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
826 comments, since they're not portable. Use GNU coding style.
827
828 2002-11-13 Akim Demaille <akim@epita.fr>
829
830 * data/yacc.c: Leave bigger chunks of quoted text.
831 (YYDSYMPRINTF): New.
832 Use it to report symbol activities.
833 * data/glr.c (YYDSYMPRINTF): New.
834 Use it.
835
836 2002-11-12 Paul Eggert <eggert@twinsun.com>
837
838 Version 1.75b.
839
840 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
841 (yyglrReduce): Return yyok, not 0.
842 This should avoid the enumerated-type warnings reported
843 by Nelson H.F. Beebe in
844 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001872.html>.
845
846 * lib/bbitset.h (BITSET_INLINE): Remove.
847 * lib/bitset.h [! BITSET_INLINE]: Remove.
848 (bitset_set, bitset_reset, bitset_test): Rename local vars
849 to avoid shadowing warnings by GCC.
850
851 * data/glr.c (inline): Remove #define. It's the user's
852 responsibility to #define it away, just like 'const'.
853 This fixes one of the bugs reported by Nelson H.F. Beebe in
854 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001873.html>.
855
856 * Makefile.maint (po-check): Scan .l and .y files instead of the
857 .c and the .h files that they generate. This fixes the bug
858 reported by Tim Van Holder in:
859 <http://mail.gnu.org/pipermail/bison-patches/2002-November/001352.html>
860 Look for N_ as well as for _. Try to avoid matching #define for
861 N_ and _.
862 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
863 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
864 * src/scan-gram.l: Revamp regular expressions so that " and '
865 do not confuse xgettext.
866
867 * src/struniq.h (struniq_new): Do not declare the return type
868 to be 'const'; this violates the C standard.
869 * src/struniq.c (struniq_new): Likewise.
870
871 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
872
873 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
874 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
875 linker.
876
877 2002-11-12 Akim Demaille <akim@epita.fr>
878
879 * Makefile.maint: Sync with Autoconf:
880 (local_updates): New.
881
882 2002-11-12 Akim Demaille <akim@epita.fr>
883
884 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
885
886 2002-11-12 Akim Demaille <akim@epita.fr>
887
888 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
889 locations.
890
891 2002-11-12 Akim Demaille <akim@epita.fr>
892
893 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
894 not yyvalue.
895
896 2002-11-12 Akim Demaille <akim@epita.fr>
897
898 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
899 Use it to test the GLR parser.
900
901 2002-11-12 Akim Demaille <akim@epita.fr>
902
903 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
904 defines it.
905 * data/glr.c (yystos): New.
906 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
907 (YYDSYMPRINT): New.
908 (yyval): Don't define it, it is handled via M4.
909 (yyrecoverParseError): Free verbosely the discarded symbols.
910 * data/yacc.c (yysymprint): Remove, rather...
911 (b4_yysymprint_generate): invoke.
912 * data/c.m4 (b4_yysymprint_generate): New.
913 Accept pointers as arguments, as opposed to the version from
914 yacc.c.
915 (b4_yydestruct_generate): Likewise.
916 * tests/cations.at (Printers and Destructors): Use Bison directives
917 instead of CPP macros.
918 Don't rely on internal details.
919
920 2002-11-12 Akim Demaille <akim@epita.fr>
921
922 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
923 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
924 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
925 it against YYEMPTY and so forth), work on yytoken (i.e., set
926 it to YYEMPTY etc.).
927 (yydestruct): Replace with a b4_yydestruct_generate invocation.
928 (b4_symbol_actions): Remove.
929 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
930 for 0, end-of-input.
931
932 2002-11-12 Akim Demaille <akim@epita.fr>
933
934 * doc/bison.texinfo (Destructor Decl): New.
935
936 2002-11-12 Akim Demaille <akim@epita.fr>
937
938 * src/tables.c (tables_generate): Use free for pointers that
939 cannot be NULL, not XFREE.
940 (pack_vector): Use assert, not fatal, for bound violations.
941 * src/state.c (state_new): Likewise.
942 * src/reader.c (reader): Likewise.
943 * src/lalr.c (set_goto_map): Likewise.
944 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
945 the file name.
946
947 2002-11-12 Akim Demaille <akim@epita.fr>
948
949 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
950 Restore.
951 * src/scan-gram.l (last_string): Is global to the file, not to
952 yylex.
953 * src/parse-gram.y (input): Don't append the epilogue here,
954 (epilogue.opt): do it here, and free the scanner's obstack.
955 * src/reader.c (epilogue_set): Rename as...
956 (epilogue_augment): this.
957 * data/c.m4 (b4_epilogue): Defaults to empty.
958
959 2002-11-12 Akim Demaille <akim@epita.fr>
960
961 * src/getargs.c (long_options): Remove duplicates.
962 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
963 Remove.
964 * doc/bison.rnh: Remove.
965 * doc/bison.texinfo (VMS Invocation): Remove.
966
967 2002-11-12 Akim Demaille <akim@epita.fr>
968
969 * src/struniq.h, src/struniq.c (struniq_t): Is const.
970 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
971
972 Use struniq for symbols.
973
974 * src/symtab.h (symbol_t): The tag member is a struniq.
975 (symbol_type_set): Adjust.
976 * src/symtab.c (symbol_new): Takes a struniq.
977 (symbol_free): Don't free the tag member.
978 (hash_compare_symbol_t, hash_symbol_t): Rename as...
979 (hash_compare_symbol, hash_symbol): these.
980 Use the fact that tags as struniqs.
981 (symbol_get): Use struniq_new.
982 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
983 Returns a strniq.
984 * src/reader.h (merger_list, grammar_currentmerge_set): The name
985 and type members are struniqs.
986 * src/reader.c (get_merge_function)
987 (grammar_current_rule_merge_set): Adjust.
988 (TYPE, current_type): Are struniq.
989
990 Use struniq for file names.
991
992 * src/files.h, src/files.c (infile): Split into...
993 (grammar_file, current_file): these.
994 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
995 * src/reduce.c (reduce_print): Likewise.
996 * src/getargs.c (getargs): Likewise.
997 * src/complain.h, src/complain.c: Likewise.
998 * src/main.c (main): Call struniqs_new early enough to use it for
999 file names.
1000 Don't free the input file name.
1001
1002 2002-11-12 Akim Demaille <akim@epita.fr>
1003
1004 * src/symtab.c (symbol_free): Remove dead deactivated code:
1005 type_name are properly removed.
1006 Don't use XFREE to free items that cannot be NULL.
1007 * src/struniq.h, src/struniq.c: New.
1008 * src/main.c (main): Initialize/free struniqs.
1009 * src/parse-gram.y (%union): Add astruniq member.
1010 (yyprint): Adjust.
1011 * src/scan-gram.l (<{tag}>): Return a struniq.
1012 Free the obstack bit that used to store it.
1013 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
1014
1015 2002-11-11 Paul Eggert <eggert@twinsun.com>
1016
1017 Revamp to fix many (but not all) of the C- and M4-related quoting
1018 problems. Among other things, this fixes the Bison bug reported
1019 by Jan Hubicka when processing the Bash grammar; see:
1020 <http://mail.gnu.org/pipermail/bison-patches/2002-November/001329.html>
1021
1022 Use new @ escapes consistently. Represent brackets with @{ and @}
1023 rather than @<:@ and @:>@, since this works a bit better with dumb
1024 editors like vi. Represent @ with @@, since @ is now consistently
1025 an escape. Use @oline@ and @ofile@ rather than __oline__ and
1026 __ofile__, to avoid unexpected expansions. Similarly, use @output
1027 rather than #output.
1028
1029 * data/c.m4 (b4_copyright): Omit file name from comment, since
1030 the file name could contain "*/".
1031 (b4_synclines_flag): Don't quote the 2nd argument; it should already
1032 be quoted. All uses changed.
1033
1034 * data/glr.c: Use new @ escapes consistently.
1035 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
1036 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
1037 Remove, since they couldn't handle arbitrary characters in file
1038 names.
1039 * data/lalr1.cc: Likewise.
1040 * data/yacc.c: Likewise.
1041
1042 * src/files.c (output_infix): Remove; all uses removed.
1043 * src/files.h: Likewise.
1044
1045 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
1046 mishandled funny characters in file names, and anyway it isn't
1047 needed any more.
1048 * data/yacc.c: Likewise.
1049 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
1050
1051 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
1052 * data/yacc.c: Likewise.
1053
1054 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
1055 strings now.
1056 (muscle_init): Quote filename as a C string.
1057 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
1058 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
1059 * src/output.c (escaped_file_name_output): New function.
1060 (prepare_symbols): Quote tokens for M4.
1061 (prepare): Don't insert output_infix, output_prefix,
1062 output_parser_name, output_header_name; this is now down by scan-skel.
1063 Insert skeleton as a C string.
1064
1065 * src/output.c (user_actions_output, symbol_destructors_output,
1066 symbol_printers_output): Quote filenames for C and M4.
1067 * src/reader.c (prologue_augment, epilogue_set): Likewise.
1068
1069 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
1070 escapes other than \\ and \'; this simplifies the code.
1071 (<SC_STRING>): Likewise, for \\ and \".
1072 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
1073 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
1074 Use new escapes @{ and @} for [ and ].
1075
1076 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
1077 them with auto vars.
1078 Switch to new escape scheme, where @ is the escape character uniformly.
1079 Abort if a stray escape character is found. Avoid unbounded input
1080 buffer when parsing non-escaped text.
1081
1082 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
1083 __oline__, #output, $@, and @{ do not have unintended meanings.
1084
1085 2002-11-09 Paul Eggert <eggert@twinsun.com>
1086
1087 Fix the test failure due to GCC warnings described in
1088 <http://mail.gnu.org/pipermail/bug-bison/2002-November/001815.html>.
1089 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
1090 evaluate to 0 if it's impossible for NINF to be in the respective
1091 table.
1092 (yygetLRActions, yyrecoverParseError): Use them.
1093
1094 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
1095 counted in the token inserted at end of file. Now takes
1096 location_t *, not location_t, so that the location can be
1097 adjusted. All uses changed.
1098
1099 * tests/regression.at (Invalid inputs): Adjust wording in
1100 diagnostic to match the new behavior.
1101
1102 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
1103 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
1104 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
1105 abort ();'. This reduces the runtime of the "Many lookaheads"
1106 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
1107 GCC 3.2.
1108
1109 2002-11-07 Paul Eggert <eggert@twinsun.com>
1110
1111 * src/parse-gram.y (CHARACTER): Remove unused token.
1112 All uses removed.
1113
1114 * src/scan-gram.l: Remove stack option. We no longer use the
1115 stack, since the stack was never deeper than 1; instead, use the
1116 new auto var c_context to record the stacked value.
1117
1118 Remove nounput option. At an unexpected end of file, we now unput
1119 the minimal input necessary to end cleanly; this simplifies the
1120 code.
1121
1122 Avoid unbounded token sizes where this is easy.
1123
1124 (unexpected_end_of_file): New function.
1125 Use it to systematize the error message on unexpected EOF.
1126 (last-string): Now auto, not static.
1127 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
1128 (scanner_last_string_free): Remove; not used.
1129 (percent_percent_count): Move decl to just before use.
1130 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
1131 not the (never otherwised-used) CHARACTER.
1132
1133 2002-11-07 Akim Demaille <akim@epita.fr>
1134
1135 Let yyerror always receive the msg as last argument, so that
1136 yyerror can be variadic.
1137
1138 * data/yacc.c (b4_yyerror_args): New.
1139 Use it when calling yyerror.
1140 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
1141 Use it when calling yyerror.
1142 * doc/bison.texinfo (Error Reporting): Adjust.
1143 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
1144 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
1145
1146 2002-11-06 Akim Demaille <akim@epita.fr>
1147
1148 #line should have quoted strings.
1149 Ideally, this should be done by m4_quotearg.
1150
1151 * src/scan-skel.l: Include quotearg.h.
1152 Quote __ofile__.
1153 * src/output.c (symbol_printers_output)
1154 (symbol_destructors_output): Quote the file name.
1155
1156 2002-11-06 Akim Demaille <akim@epita.fr>
1157
1158 * tests/regression.at (Invalid inputs): Adjust to the recent
1159 messages.
1160
1161 2002-11-06 Akim Demaille <akim@epita.fr>
1162
1163 Restore --no-lines.
1164 Reported by Jim Kent.
1165
1166 * data/c.m4 (b4_syncline): New.
1167 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
1168 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
1169 * src/output.c (user_actions_output): Likewise.
1170 (prepare): Define 'b4_synclines_flag'.
1171 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
1172
1173 2002-11-06 Akim Demaille <akim@epita.fr>
1174
1175 * src/main.c (main): Free `infile'.
1176 * src/scan-gram.l (handle_syncline): New.
1177 Recognize `#line'.
1178 * src/output.c (user_actions_output, symbol_destructors_output)
1179 (symbol_printers_output): Use the location's file name, not
1180 infile.
1181 * src/reader.c (prologue_augment, epilogue_set): Likewise.
1182
1183 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1184
1185 * src/tables.c (matching_state): Don't allow states to match if
1186 either has GLR conflict entries.
1187
1188 2002-11-05 Paul Eggert <eggert@twinsun.com>
1189
1190 * src/scan-gram.l: Use more accurate diagnostics, e.g.
1191 "integer out of range" rather than "invalid value".
1192 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
1193 accordingly.
1194
1195 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
1196 Also, remove one static variable in the scanner.
1197
1198 * src/scan-gram.l (braces_level): Now auto, not static.
1199 Initialize to zero if the compiler is being picky.
1200 (INITIAL): Clear braces_level instead of incrementing it.
1201 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
1202 as POSIX 1003.1-2001 requires.
1203 * src/system.h (IF_LINT): New macro, taken from coreutils.
1204 * configure.ac: Define "lint" if --enable-gcc-warnings.
1205
1206 2002-11-05 Akim Demaille <akim@epita.fr>
1207
1208 * src/scan-gram.l: When it starts with `%', complain about the
1209 whole directive, not just that `invalid character: %'.
1210
1211 2002-11-04 Akim Demaille <akim@epita.fr>
1212
1213 * Makefile.maint: Update from Autoconf.
1214 (update, cvs-update, po-update, do-po-update): New.
1215
1216 2002-11-04 Akim Demaille <akim@epita.fr>
1217
1218 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
1219 and yyerror.
1220 Have yyerror `use' its arguments.
1221 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
1222 returns true when location & yacc & pure & parse-param.
1223 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
1224
1225 2002-11-04 Akim Demaille <akim@epita.fr>
1226
1227 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
1228 clashes.
1229 * src/scan-gram.l: Use [\'] instead of ['] to pacify
1230 font-lock-mode.
1231 Use complain_at.
1232 Use quote, not quote_n since LOCATION_PRINT no longer uses the
1233 slot 0.
1234
1235 2002-11-03 Paul Eggert <eggert@twinsun.com>
1236
1237 * src/reader.c (get_merge_function, grammar_current_rule_check):
1238 Use consistent diagnostics for reporting type name clashes.
1239 Quote the types with <>, for consistency with Yacc.
1240 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
1241
1242 2002-11-03 Akim Demaille <akim@epita.fr>
1243
1244 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
1245 New.
1246 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
1247 (b4_parse_param): Remove.
1248 Use b4_identification.
1249 Propagate b4_pure_args where needed to pass them to yyerror.
1250 * data/glr.m4 (b4_parse_param): Remove.
1251 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
1252 (b4_lpure_formals): New.
1253 Use b4_identification.
1254 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
1255 b4_user_formals and b4_user_args.
1256 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
1257 (yyreportAmbiguity): When using a pure parser, also need
1258 the location, and the parse-params.
1259 Adjust callers.
1260 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
1261 When using a pure parser, also need the parse-params.
1262 Adjust callers.
1263 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
1264 (%pure-parser + %parse-param) LALR and GLR parsers.
1265 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
1266 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
1267 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
1268 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
1269 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
1270 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
1271 * doc/bison.texinfo: Untabify the whole file.
1272 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
1273 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
1274 (Error Reporting): Adjust to these new directives.
1275 Document %error-verbose, deprecate YYERROR_VERBOSE.
1276
1277 2002-11-03 Akim Demaille <akim@epita.fr>
1278
1279 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
1280 AT_CHECK_CALC_GLR invocations to use % directives, instead of
1281 command line options.
1282 * tests/cxx-type.at: Formatting changes.
1283
1284 2002-11-03 Paul Eggert <eggert@twinsun.com>
1285
1286 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
1287 to count columns correctly, and to check for invalid inputs.
1288
1289 Use mbsnwidth to count columns correctly. Account for tabs, too.
1290 Include mbswidth.h.
1291 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
1292 (extend_location): New function.
1293 (YY_LINES): Remove.
1294
1295 Handle CRLF in C code rather than in Lex code.
1296 (YY_INPUT): New macro.
1297 (no_cr_read): New function.
1298
1299 Scan UCNs, even though we don't fully handle them yet.
1300 (convert_ucn_to_byte): New function.
1301
1302 Handle backslash-newline correctly in C code.
1303 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
1304 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
1305 all uses changed.
1306 (tag, splice): New EREs. Do not allow NUL or newline in tags.
1307 Use {splice} wherever C allows backslash-newline.
1308 YY_STEP after space, newline, vertical-tab.
1309 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
1310
1311 (letter, id): Don't assume ASCII; e.g., spell out a-z.
1312
1313 ({int}, handle_action_dollar, handle_action_at): Check for integer
1314 overflow.
1315
1316 (YY_STEP): Omit trailing semicolon, so that it's more like C.
1317
1318 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
1319 as well as \000. Check for UCHAR_MAX, not 255.
1320 Allow \x with an arbitrary positive number of digits, as in C.
1321 Check for overflow here.
1322 Allow \? and UCNs, for compatibility with C.
1323
1324 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
1325 with quote slot used by complain_at.
1326
1327 * tests/input.at: Add tests for backslash-newline, m4 quotes
1328 in symbols, long literals, and funny escapes in strings.
1329
1330 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
1331 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
1332 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
1333 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
1334 * m4/mbswidth.m4: New file, from GNU coreutils.
1335
1336 * doc/bison.texinfo (Grammar Outline): Document // comments.
1337 (Symbols): Document that trigraphs have no special meaning in Bison,
1338 nor is backslash-newline allowed.
1339 (Actions): Document that trigraphs have no special meaning.
1340
1341 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
1342 no longer used.
1343
1344 2002-11-02 Paul Eggert <eggert@twinsun.com>
1345
1346 * src/reader.c: Don't include quote.h; not needed.
1347 (get_merge_function): Reword warning to be consistent with
1348 type clash diagnostic in grammar_current_rule_check.
1349
1350 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
1351 bug in trigraph handling.
1352
1353 * src/output.c (prepare_symbols): When printing token names,
1354 escape "[" as "@<:@" and likewise for "]".
1355
1356 * src/system.h (errno): Remove declaration, as we are now
1357 assuming C89 or better, and C89 guarantees errno.
1358
1359 2002-10-30 Paul Eggert <eggert@twinsun.com>
1360
1361 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
1362 Check for close failures.
1363 * src/files.h (xfclose): Return void, not int, since it always
1364 returned zero.
1365 * src/files.c (xfclose): Likewise. Report I/O error if ferror
1366 indicates one.
1367 * src/output.c (output_skeleton): Use xfclose rather than fclose
1368 and ferror. xfclose now checks ferror.
1369
1370 * data/glr.c (YYLEFTMOST_STATE): Remove.
1371 (yyreportTree): Use a stack-based leftmost state. This avoids
1372 our continuing battles with bogus warnings about initializers.
1373
1374 2002-10-30 Akim Demaille <akim@epita.fr>
1375
1376 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
1377 #if.
1378
1379 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
1380
1381 * tests/glr-regr1.at: New test for reported regressions.
1382 * tests/testsuite.at: Add glr-regr1.at test.
1383 * tests/Makefile.am: Add glr-regr1.at test.
1384
1385 2002-10-24 Paul Eggert <eggert@twinsun.com>
1386
1387 Version 1.75a.
1388
1389 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
1390 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
1391 we use malloc. Don't assume 'A' through 'Z' are contiguous.
1392 Don't assume strdup exists; POSIX says its an XSI extension.
1393 Check for buffer overflow on input.
1394
1395 2002-10-24 Akim Demaille <akim@epita.fr>
1396
1397 * src/output.c (output_skeleton): Don't disable M4sugar comments
1398 too soon: it results in comments being expanded.
1399 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
1400 first output.
1401
1402 2002-10-24 Akim Demaille <akim@epita.fr>
1403
1404 * data/yacc.c (m4_int_type): New.
1405 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
1406 char' as only yacc.c wants K&R portability.
1407 * data/glr.c (yysigned_char): Remove.
1408 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
1409 Reported by Quoc Peyrot.
1410
1411 2002-10-23 Paul Eggert <eggert@twinsun.com>
1412
1413 * src/main.c (main): With --trace=time, report times even if a
1414 non-fatal error occurs. Formerly, the times were reported in some
1415 such cases but not in others.
1416 * src/reader.c (reader): Just return if a complaint has been issued,
1417 instead of exiting, so that 'main' can report times.
1418
1419 2002-10-22 Akim Demaille <akim@epita.fr>
1420
1421 * src/system.h: Include sys/types.
1422 Reported by Bert Deknuydt.
1423
1424 2002-10-23 Paul Eggert <eggert@twinsun.com>
1425
1426 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
1427 Suggested by Art Haas.
1428
1429 2002-10-22 Paul Eggert <eggert@twinsun.com>
1430
1431 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
1432 decl; not needed any more.
1433 * src/main.c (main): Use return to exit, undoing yesterday's change.
1434 The last OS that we could find where this wouldn't work is
1435 SunOS 3.5, and that's too old to worry about now.
1436
1437 * data/glr.c (struct yyltype): Define members even when not
1438 doing locations. This is more consistent with yacc.c, and it
1439 works around the following bug reports:
1440 http://mail.gnu.org/pipermail/bug-bison/2002-October/001764.html
1441 http://mail.gnu.org/pipermail/bug-bison/2002-October/001769.html
1442 and I hope it also fixes this bug report:
1443 http://mail.gnu.org/pipermail/bug-bison/2002-October/001748.html
1444
1445 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
1446 @acronym consistently. Standardize on "Yacc" instead of "YACC",
1447 "Algol" instead of "ALGOL". Give a bit more history about BNF.
1448
1449 2002-10-22 Akim Demaille <akim@epita.fr>
1450
1451 * data/README: New.
1452
1453 2002-10-21 Paul Eggert <eggert@twinsun.com>
1454
1455 Be consistent about 'bool'; the old code used an enum in one
1456 module and an int in another, and this violates the C standard.
1457 * m4/stdbool.m4: New file, from coreutils 4.5.3.
1458 * configure.ac (AC_HEADER_STDBOOL): Add.
1459 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
1460 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
1461 * src/symtab.c (hash_compare_symbol_t): Likewise.
1462 * src/system.h (bool, false, true): Use a definition consistent
1463 with ../lib/hash.c. All uses changed.
1464
1465 * src/complain.c (warning_issued): Renamed from warn_message_count,
1466 so that we needn't worry about integer overflow (!).
1467 Now of type bool. All uses changed.
1468 (complaint_issued): Renamed from complain_message_count; likewise.
1469
1470 * src/main.c (main): Use exit to exit with failure.
1471
1472 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
1473 rather than 1 and 0.
1474 * src/main.c (main): Likewise.
1475 * src/getargs.c (getargs): Likewise.
1476 * src/reader.c (reader): Likewise.
1477
1478 * src/getarg.c (getargs): Remove duplicate code for
1479 "Try `bison --help'".
1480
1481 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
1482 What was that "2" for?
1483
1484 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
1485 * src/getargs.c (usage): Likewise.
1486
1487 * src/getargs.c (getargs): When there are too few operands, report
1488 the last one. When there are too many, report the first extra
1489 one. This is how diffutils does it.
1490
1491 2002-10-20 Paul Eggert <eggert@twinsun.com>
1492
1493 Remove K&R vestiges.
1494 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
1495 * src/complain.c (VA_START): Remove. Assume prototypes.
1496 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
1497 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
1498 fatal): Assume prototypes.
1499 * src/complain.h: Assume prototypes.
1500 * src/system.h (PARAMS): Remove.
1501 Include <limits.h> unconditionally, since it's guaranteeed even
1502 for a freestanding C89 compiler.
1503 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
1504 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
1505
1506 2002-10-20 Akim Demaille <akim@epita.fr>
1507
1508 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
1509 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
1510 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
1511 (yyresolveStates, yyresolveAction, yyresolveStack)
1512 (yyprocessOneStack): Use them.
1513 (yy_reduce_print): New.
1514 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
1515
1516 2002-10-20 Akim Demaille <akim@epita.fr>
1517
1518 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
1519 arguments and output `void'.
1520 (b4_c_function): Rename as...
1521 (b4_c_function_def): this.
1522 (b4_c_function_decl, b4_c_ansi_function_def)
1523 (b4_c_ansi_function_decl): New.
1524 Change the interpretation of the arguments: before `int, foo', now
1525 `int foo, foo'.
1526 * data/yacc.c (yyparse): Prototype and define thanks to these.
1527 Adjust b4_c_function_def uses.
1528 * data/glr.c (yyparse): Likewise, but ANSI only.
1529
1530 2002-10-20 Akim Demaille <akim@epita.fr>
1531
1532 * src/output.c (prepare): Move the definition of `tokens_number',
1533 `nterms_number', `undef_token_number', `user_token_number_max'
1534 to...
1535 (prepare_tokens): Here.
1536 (prepare_tokens): Rename as...
1537 (prepare_symbols): this.
1538 (prepare): Move the definition of `rules_number' to...
1539 (prepare_rules): here.
1540 (prepare): Move the definition of `last', `final_state_number',
1541 `states_number' to...
1542 (prepare_states): here.
1543 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
1544
1545 2002-10-20 Akim Demaille <akim@epita.fr>
1546
1547 * src/tables.h, src/tables.c, src/output.c: Comment changes.
1548
1549 2002-10-20 Akim Demaille <akim@epita.fr>
1550
1551 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
1552 * data/c.m4: here.
1553
1554 2002-10-20 Akim Demaille <akim@epita.fr>
1555
1556 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
1557 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
1558 `pair'.
1559 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
1560 `name' to...
1561 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
1562 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
1563 These.
1564
1565 2002-10-19 Paul Eggert <eggert@twinsun.com>
1566
1567 Do not create a temporary file, as that involves security and
1568 cleanup headaches. Instead, use a pair of pipes.
1569 Derived from a suggestion by Florian Krohm.
1570 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
1571 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
1572 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
1573 (BISON_PREREQ_SUBPIPE): Add.
1574 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
1575 Add subpipe.h, subpipe.c.
1576 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
1577 * po/POTFILES.in: Add lib/subpipe.c.
1578 * src/output.c: Include "subpipe.h".
1579 (m4_invoke): Remove decl.
1580 (scan_skel): New decl.
1581 (output_skeleton): Use pipe rather than temporary file for m4 input.
1582 Check that m4sugar.m4 is readable, to avoid deadlock.
1583 Check for pipe I/O error.
1584 * src/scan-skel.l (readpipe): Remove decl.
1585 (scan_skel): New function, to be used in place of m4_invoke.
1586 Read from stream rather than file.
1587
1588 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
1589 float, as this generates a warning on Solaris 8 + GCC 3.2 with
1590 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
1591 this generates a more-accurate value anyway.
1592
1593 * lib/timevar.c (timervar_accumulate): Rename locals to
1594 avoid confusion with similarly-named more-global.
1595 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
1596
1597 * src/output.c (prepare): Use xstrdup to convert char const *
1598 to char *, to avoid GCC warning.
1599
1600 2002-10-19 Akim Demaille <akim@epita.fr>
1601
1602 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
1603 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
1604 Use them to have `calc.y' ready for %pure-parser.
1605 * data/yacc.c (YYLEX): Pass a yylex return type to
1606 b4_c_function_call.
1607
1608 2002-10-19 Akim Demaille <akim@epita.fr>
1609
1610 Prototype support of %lex-param and %parse-param.
1611
1612 * src/parse-gram.y: Add the definition of the %lex-param and
1613 %parse-param tokens, plus their rules.
1614 Drop the `_' version of %glr-parser.
1615 Add the "," token.
1616 * src/scan-gram.l (INITIAL): Scan them.
1617 * src/muscle_tab.c: Comment changes.
1618 (muscle_insert, muscle_find): Rename `pair' as `probe'.
1619 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
1620 (muscle_entry_s): The `value' member is no longer const.
1621 Adjust all dependencies.
1622 * src/muscle_tab.c (muscle_init): Adjust: use
1623 MUSCLE_INSERT_STRING.
1624 Initialize the obstack earlier.
1625 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
1626 (muscle_pair_list_grow): New.
1627 * data/c.m4 (b4_c_function_call, b4_c_args): New.
1628 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
1629 * tests/calc.at: Use %locations, not --locations.
1630 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
1631
1632 2002-10-19 Akim Demaille <akim@epita.fr>
1633
1634 * src/getargs.c (usage): Take status as argument and exit
1635 accordingly.
1636 Report the traditional `Try ... --help' message when status != 0.
1637 (usage, version): Don't take a FILE * as arg, it is pointless.
1638 (getargs): When there is an incorrect number of arguments, make it
1639 an error, and report it GNUlically thanks to `usage ()'.
1640
1641 2002-10-18 Paul Eggert <eggert@twinsun.com>
1642
1643 * data/glr.c (yyreportParseError): Don't assume that sprintf
1644 yields the length of the printed string, as this is not true
1645 on SunOS 4.1.4. Reported by Peter Klein.
1646
1647 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
1648 * tests/conflicts.at (%nonassoc and eof): Likewise.
1649 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
1650
1651 2002-10-17 Akim Demaille <akim@epita.fr>
1652
1653 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
1654 * src/getargs.c (trace_types, trace_args): Adjust.
1655 * src/reader.c (grammar_current_rule_prec_set)
1656 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
1657 Standardize error messages.
1658 And s/@prec/%prec/!
1659 (reader): Use trace_flag to enable scanner/parser debugging,
1660 instead of an adhoc scheme.
1661 * src/scan-gram.l: Remove trailing debugging code.
1662
1663 2002-10-16 Paul Eggert <eggert@twinsun.com>
1664
1665 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
1666 MUSCLE_TAB_H.
1667
1668 * NEWS: Officially drop support for building Bison with K&R C,
1669 since it didn't work anyway and it's not worth worrying about.
1670 * Makefile.maint (wget_files): Remove ansi2knr.c.
1671 (ansi2knr.c-url_prefix): Remove.
1672 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
1673 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
1674 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
1675
1676 2002-10-15 Paul Eggert <eggert@twinsun.com>
1677
1678 Stop using the "enum_" trick for K&R-style function definitions;
1679 it confused me, and I was the author! Instead, assume that people
1680 who want to use K&R C compilers (when using these modules in GCC,
1681 perhaps?) will run ansi2knr.
1682
1683 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
1684 All uses of "enum_" changed to "enum ".
1685 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
1686 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
1687
1688 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
1689 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
1690 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
1691 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
1692 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
1693 abitset_not, abitset_ones, abitset_or, abitset_or_and,
1694 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
1695 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
1696 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
1697 Use function prototypes; this removes the need for declaring
1698 static functions simply to provide their prototypes.
1699 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
1700 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
1701 bitset_count_, bitset_create, bitset_dump, bitset_first,
1702 bitset_free, bitset_init, bitset_last, bitset_next,
1703 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
1704 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
1705 bitset_print, bitset_release_memory, bitset_toggle_,
1706 bitset_type_choose, bitset_type_get, bitset_type_name_get,
1707 debug_bitset): Likewise.
1708 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
1709 * lib/bitset_stats.c (bitset_log_histogram_print,
1710 bitset_percent_histogram_print, bitset_stats_and,
1711 bitset_stats_and_cmp, bitset_stats_and_or,
1712 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
1713 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
1714 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
1715 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
1716 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
1717 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
1718 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
1719 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
1720 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
1721 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
1722 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
1723 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
1724 bitset_stats_zero): Likewise.
1725 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
1726 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
1727 bitsetv_dump, debug_bitsetv): Likewise.
1728 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
1729 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
1730 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
1731 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
1732 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
1733 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
1734 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
1735 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
1736 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
1737 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
1738 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
1739 Likewise.
1740 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
1741 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
1742 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
1743 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
1744 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
1745 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
1746 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
1747 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
1748 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
1749 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
1750 lbitset_xor_cmp, lbitset_zero): Likewise.
1751
1752 2002-10-14 Akim Demaille <akim@epita.fr>
1753
1754 Version 1.75.
1755
1756 2002-10-14 Akim Demaille <akim@epita.fr>
1757
1758 * tests/Makefile.am (maintainer-check-posix): New.
1759
1760 2002-10-14 Akim Demaille <akim@epita.fr>
1761
1762 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
1763 member.
1764
1765 2002-10-14 Akim Demaille <akim@epita.fr>
1766
1767 * src/tables.c (table_ninf_remap): base -> tab.
1768 Reported by Matt Rosing.
1769
1770 2002-10-14 Paul Eggert <eggert@twinsun.com>
1771
1772 * tests/action.at, tests/calc.at, tests/conflicts.at,
1773 tests/cxx-type.at, tests/headers.at, tests/input.at,
1774 tests/regression.at, tests/synclines.at, tests/torture.at:
1775 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
1776 so that the tests still work even if POSIXLY_CORRECT is set.
1777 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
1778
1779 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
1780 for portability to K&R hosts. Fix typo: signed char is guaranteed
1781 only to 127, not to 128.
1782 * data/glr.c (yysigned_char): New type.
1783 * data/yacc.c (yysigned_char): Likewise.
1784 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
1785
1786 2002-10-13 Paul Eggert <eggert@twinsun.com>
1787
1788 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
1789 true due to limited range of data type" warning from GCC.
1790
1791 * data/c.m4 (b4_token_defines): Protect against double-inclusion
1792 by wrapping enum yytokentype's definition inside #ifndef
1793 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
1794
1795 2002-10-13 Akim Demaille <akim@epita.fr>
1796
1797 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
1798 Un yy- yyrhs to avoid the name clash with the global YYRHS.
1799
1800 2002-10-13 Akim Demaille <akim@epita.fr>
1801
1802 * Makefile.maint: Update from Autoconf 2.54.
1803 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
1804
1805 2002-10-13 Akim Demaille <akim@epita.fr>
1806
1807 * src/print.c (print_state): Separate the list of solved conflicts
1808 from the other items.
1809 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
1810
1811 2002-10-13 Akim Demaille <akim@epita.fr>
1812
1813 Let nondeterministic skeletons be usable with deterministic
1814 tables.
1815
1816 With the patch, GAWK compiled by GCC without -O2 passes its test
1817 suite using a GLR parser driven by LALR tables. It fails with -O2
1818 because `struct stat' gives two different answers on my machine:
1819 88 (definition of an auto var) and later 96 (memset on this var).
1820 Hence the stack is badly corrumpted. The headers inclusion is to
1821 blame: if I move the awk.h inclusion before GLR's system header
1822 inclusion, the two struct stat have the same size.
1823
1824 * src/tables.c (pack_table): Always create conflict_table.
1825 (token_actions): Always create conflict_list.
1826 * data/glr.c (YYFLAG): Remove, unused.
1827
1828 2002-10-13 Akim Demaille <akim@epita.fr>
1829
1830 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
1831 (O0FLAGS): New.
1832 (VALGRIND, GXX): New.
1833 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
1834 * tests/bison.in: Run $PREBISON a pre-command.
1835 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
1836 (maintainer-check-g++): New.
1837 * Makefile.am (maintainer-check): New.
1838
1839 2002-10-13 Akim Demaille <akim@epita.fr>
1840
1841 * data/glr.c: Formatting changes.
1842 Tweak some trace messages to match yacc.c's.
1843
1844 2002-10-13 Akim Demaille <akim@epita.fr>
1845
1846 GLR parsers sometimes raise parse errors instead of performing the
1847 default reduction.
1848 Reported by Charles-Henry de Boysson.
1849
1850 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
1851 check the length of the traces when %glr.
1852 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
1853 GLR's traces.
1854 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
1855 Test GLR parsers.
1856 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
1857 (yyltype): Remove the yy prefix from the member names.
1858 (yytable): Complete its comment.
1859 (yygetLRActions): Map error action number from YYTABLE from
1860 YYTABLE_NINF to 0.
1861 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
1862 (which was a bug: it should have been YYTABEL_NINF, and yet it was
1863 not satisfying as we could compare an YYACTION computed from
1864 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
1865 only value for error actions.
1866 (yyreportParseError): In verbose parse error messages, don't issue
1867 `error' in the list of expected tokens.
1868 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
1869 next action to perform to match glr.c's decoding.
1870 (yytable): Complete its comment.
1871
1872 2002-10-13 Paul Eggert <eggert@twinsun.com>
1873
1874 Fix problem reported by Henrik Grubbstroem in
1875 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001670.html>:
1876 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
1877 because the Bison parser reads the second action before reducing
1878 the first one.
1879 * src/scan-gram.l (rule_length): New static var.
1880 Use it to keep track of the rule length in the scanner, since
1881 we can't expect the parser to be in lock-step sync with the scanner.
1882 (handle_action_dollar, handle_action_at): Use this var.
1883 * tests/actions.at (Exotic Dollars): Test for the problem.
1884
1885 2002-10-12 Paul Eggert <eggert@twinsun.com>
1886
1887 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
1888 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
1889 Include <sys/time.h> when checking for clock_t and struct tms.
1890 Use same include order as source.
1891 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
1892 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001674.html>.
1893
1894 * lib/timevar.c: Update copyright date and clarify comments.
1895 (get_time) [IN_GCC]: Keep the GCC version for reference.
1896
1897 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
1898 GCC version as of today, then merge Bison's changes.
1899 Change "GCC" to "Bison" in copyright notice. timevar.def's
1900 author is Akim, so change that too.
1901
1902 * src/reader.c (grammar_current_rule_check):
1903 Don't worry about the default action if $$ is untyped.
1904 Prevents bogus warnings reported by Jim Gifford in
1905 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001673.html>.
1906
1907 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
1908 * data/glr.c, data/lalr1.cc, data/yacc.c:
1909 Output token definitions before the first part of user declarations.
1910 Fixes compatibility problem reported by Jim Gifford for kbd in
1911 <http://mail.gnu.org/pipermail/bug-bison/2002-October/001672.html>.
1912
1913 2002-10-11 Paul Eggert <eggert@twinsun.com>
1914
1915 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
1916 (yyparse): here. This undoes some of the 2002-07-25 change.
1917 Compatibility problem reported by Ralf S. Engelschall with
1918 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
1919
1920 2002-10-11 Akim Demaille <akim@epita.fr>
1921
1922 * tests/regression.at Characters Escapes): New.
1923 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
1924 characters.
1925 Reported by Jan Nieuwenhuizen.
1926
1927 2002-10-11 Akim Demaille <akim@epita.fr>
1928
1929 * po/id.po: New.
1930
1931 2002-10-10 Paul Eggert <eggert@twinsun.com>
1932
1933 Portability fixes for bitsets; this also avoids several GCC
1934 warnings.
1935
1936 * lib/abitset.c: Include <stddef.h>, for offsetof.
1937 * lib/lbitset.c: Likewise.
1938
1939 * lib/abitset.c (abitset_bytes): Return a size that is aligned
1940 properly for vectors of objects. Do not assume that adding a
1941 header size to a multiple of a word size yields a value that is
1942 properly aligned for the whole union.
1943 * lib/bitsetv.c (bitsetv_alloc): Likewise.
1944
1945 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
1946 unique names for structures.
1947 * lib/ebitset.c (ebitset_bytes): Likewise.
1948 * lib/lbitset.c (lbitset_bytes): Likewise.
1949
1950 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
1951 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
1952 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
1953 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
1954 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
1955 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
1956 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
1957 to improve the type-checking that GCC can do.
1958 * lib/bitset.c (bitset_op4_cmp): Likewise.
1959 * lib/bitset_stats.c (bitset_stats_count,
1960 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
1961 bitset_stats_copy, bitset_stats_disjoint_p,
1962 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
1963 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
1964 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
1965 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
1966 bitset_stats_and_or_cmp, bitset_stats_andn_or,
1967 bitset_stats_andn_or_cmp, bitset_stats_or_and,
1968 bitset_stats_or_and_cmp): Likewise.
1969 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
1970 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
1971 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
1972 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
1973
1974 * lib/abitset.h: Include bitset.h, not bbitset.h.
1975 * lib/ebitset.h: Likewise.
1976 * lib/lbitset.h: Likewise.
1977
1978 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
1979 All instances of parameters of type enum bitset_opts are now of
1980 type enum_bitset_opts, to conform to the C Standard, and similarly
1981 for enum_bitset_type.
1982 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
1983 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
1984
1985 Do not use "struct bitset_struct" to mean different things in
1986 different modules. Not only is this confusing, it violates
1987 the C Standard, which requires that structure types in different
1988 modules must be compatible if one is to be passed to the other.
1989 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
1990 All instances of "struct bitset_struct *" replaced with "bitset".
1991 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
1992 (union bitset_union, struct abitset_struct, struct ebitset_struct,
1993 struct lbitset_struct, struct bitset_stats_struct): New types.
1994 All uses of struct bitset_struct changed to union bitset_union,
1995 etc.
1996 * lib/abitset.c (struct abitset_struct, abitset,
1997 struct bitset_struct): Remove.
1998 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
1999 struct bitset_struct): Remove.
2000 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
2001 bitset_struct): Remove.
2002 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
2003 Likewise.
2004
2005 Do not call a function of type T using a call that assumes the
2006 function is of a different type U. Standard C requires that a
2007 function must be called with a type that is compatible with its
2008 definition.
2009 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
2010 New decls.
2011 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
2012 New functions.
2013 * lib/ebitset.c (PFV): Remove.
2014 * lib/lbitset.c (PFV): Likewise.
2015 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
2016 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
2017 decls.
2018 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
2019 (ebitset_vtable): Use them.
2020 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
2021 lbitset_xor): New functions.
2022 (lbitset_vtable): Use them.
2023
2024 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
2025 Declare.
2026
2027 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
2028 GCC warning.
2029 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
2030 Use offsetof, for simplicity.
2031
2032 2002-10-06 Paul Eggert <eggert@twinsun.com>
2033
2034 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
2035 the same width as int. This reapplies a hunk of the 2002-08-12 patch
2036 <http://mail.gnu.org/pipermail/bison-patches/2002-August/001111.html>,
2037 which was inadvertently undone by the 2002-09-30 patch.
2038 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
2039 the same width as int.
2040
2041 2002-10-04 Paul Eggert <eggert@twinsun.com>
2042
2043 Version 1.50.
2044
2045 * configure.ac (AC_INIT), NEWS: Increment version number.
2046
2047 * doc/bison.texinfo: Minor spelling, grammar, and white space
2048 fixes.
2049 (Symbols): Mention that any negative value returned from yylex
2050 signifies end-of-input. Warn about negative chars. Mention
2051 the portable Standard C character set.
2052
2053 The GNU coding standard says CFLAGS and YFLAGS are reserved
2054 for the installer to set.
2055 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
2056 * src/Makefile.am (AM_CFLAGS): Likewise.
2057 (AM_YFLAGS): Renamed from YFLAGS.
2058
2059 Fix some MAX and MIN problems.
2060 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
2061 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
2062 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
2063 * src/reader.c (reader): Use it.
2064
2065 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
2066 POSIX 1003.1-2001 has removed fgrep.
2067
2068 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
2069
2070 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
2071 interpreted as signed.
2072 * lib/ebitset.c (ebitset_list): Fix bug.
2073
2074 2002-10-01 Paul Eggert <eggert@twinsun.com>
2075
2076 More fixes for 64-bit hosts and large bitsets.
2077
2078 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
2079 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
2080 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
2081 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
2082 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
2083 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
2084 bitset_count_): Likewise.
2085 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
2086 bitset_first, bitset_last): Likewise.
2087 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
2088 bitset_stats_list_reverse, bitset_stats_size,
2089 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
2090 Likewise.
2091 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
2092 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
2093 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
2094 bitsetv_reflexive_transitive_closure): Likewise.
2095 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
2096 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
2097 Likewise.
2098 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
2099 Likewise.
2100
2101 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
2102 Use size_t, not unsigned int, to count bytes.
2103 * lib/abitset.h (abitset_bytes): Likewise.
2104 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
2105 Likewise.
2106 * lib/bitset.h (bitset_bytes): Likewise.
2107 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
2108 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
2109 * lib/bitsetv.c (bitsetv_alloc): Likewise.
2110 * lib/ebitset.c (ebitset_bytes): Likewise.
2111 * lib/ebitset.h (ebitset_bytes): Likewise.
2112 * lib/lbitset.c (lbitset_bytes): Likewise.
2113 * lib/lbitset.h (lbitset_bytes): Likewise.
2114
2115 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
2116 abitset_subset_p, abitset_disjoint_p, abitset_and,
2117 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
2118 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
2119 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
2120 abitset_or_and, abitset_or_and_cmp):
2121 Use bitset_windex instead of unsigned int.
2122 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
2123 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
2124 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
2125 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
2126 Likewise.
2127 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
2128
2129 * lib/bitset.c (bitset_print):
2130 Use proper printf formats for widths of integer types.
2131 * lib/bitset_stats.c (bitset_percent_histogram_print,
2132 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
2133 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
2134 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
2135 * lib/lbitset.c (lbitset_bytes): Likewise.
2136
2137 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
2138 BITSET_SIZE_MAX): New macros.
2139 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
2140 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
2141 to BITSET_WINDEX_MAX.
2142
2143 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
2144 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
2145 since we now return the bitset_bindex type (not int).
2146
2147 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
2148 when computing sizes.
2149 * lib/ebitset.c (ebitset_elts_grow): Likewise.
2150
2151 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
2152 and avoid cast to unsigned.
2153
2154 2002-09-30 Akim Demaille <akim@epita.fr>
2155
2156 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
2157 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
2158 Updates from Michael Hayes.
2159
2160 2002-09-30 Art Haas <ahaas@neosoft.com>
2161
2162 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
2163 invocations.
2164 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
2165 defined.
2166
2167 2002-09-27 Akim Demaille <akim@epita.fr>
2168
2169 Version 1.49c.
2170
2171 2002-09-27 Akim Demaille <akim@epita.fr>
2172
2173 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
2174 (Because of AC_LIBSOURCE).
2175
2176 2002-09-27 Akim Demaille <akim@epita.fr>
2177
2178 Playing with Autoscan.
2179
2180 * configure.ac: Remove the old LIBOBJ tweaks.
2181 (AC_REPLACE_FUNCS): Add strrchr and strtol.
2182 * lib/strrchr.c: New.
2183 * lib/strtol.c: New, from the Coreutils 4.5.1.
2184
2185 2002-09-27 Akim Demaille <akim@epita.fr>
2186
2187 Playing with Autoscan.
2188
2189 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
2190 * lib/Makefile.am (libbison_a_SOURCES): No longer include
2191 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
2192 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
2193 Coreutils 4.5.1.
2194
2195 2002-09-24 Akim Demaille <akim@epita.fr>
2196
2197 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
2198 (Frequently Asked Questions, Parser Stack Overflow): New.
2199
2200 2002-09-13 Akim Demaille <akim@epita.fr>
2201
2202 Playing with autoscan.
2203
2204 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
2205 * src/files.c (skeleton_find): Remove, unused.
2206 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
2207 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
2208
2209 2002-09-13 Akim Demaille <akim@epita.fr>
2210
2211 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
2212 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
2213
2214 2002-09-13 Akim Demaille <akim@epita.fr>
2215
2216 * configure.ac: Require 2.54.
2217 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
2218 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
2219 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
2220 Remove, provided by Autoconf macros.
2221
2222 2002-09-12 Akim Demaille <akim@epita.fr>
2223
2224 * m4/prereq.m4: Update, from Coreutils 4.5.1.
2225
2226 2002-09-12 Akim Demaille <akim@epita.fr>
2227
2228 * m4/prereq.m4: Update, from Fileutils 4.1.5.
2229 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
2230 Reported by Martin Mokrejs.
2231
2232 2002-09-10 Akim Demaille <akim@epita.fr>
2233
2234 * src/parse-gram.y: Associate a human readable string to each
2235 token type.
2236 * tests/regression.at (Invalid inputs): Adjust.
2237
2238 2002-09-10 Gary V. Vaughan <gary@gnu.org>
2239
2240 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
2241 with an Autoconf-2.5x style configure.ac.
2242
2243 2002-09-06 Paul Eggert <eggert@twinsun.com>
2244
2245 * doc/bison.texinfo (Conditions): Make explicit that the GPL
2246 exception applies only to yacc.c. This is a modification of a
2247 patch originally suggested by Akim Demaille.
2248
2249 2002-09-06 Akim Demaille <akim@epita.fr>
2250
2251 * data/c.m4 (b4_copyright): Move the GPL exception comment from
2252 here to...
2253 * data/yacc.c: here.
2254
2255 * data/lalr1.cc (struct yyltype): Don't define it, since we use
2256 LocationType.
2257 (b4_ltype): Default to yy::Location from location.hh.
2258
2259 2002-09-04 Jim Meyering <jim@meyering.net>
2260
2261 * data/yacc.c: Guard the declaration of yytoknum also with
2262 `#ifdef YYPRINT', so it is declared only when used.
2263
2264 2002-09-04 Akim Demaille <akim@epita.fr>
2265
2266 * configure.in: Rename as...
2267 * configure.ac: this.
2268 Bump to 1.49c.
2269
2270 2002-09-04 Akim Demaille <akim@epita.fr>
2271
2272 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
2273 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
2274 translate maintainer only messages.
2275
2276 2002-08-12 Paul Eggert <eggert@twinsun.com>
2277
2278 Version 1.49b.
2279
2280 * Makefile.am (SUBDIRS): Remove intl.
2281 (DISTCLEANFILES): Remove.
2282 * NEWS: Mention that GNU M4 is now required. Clarify what is
2283 meant by "larger grammars". Mention the pt_BR translation.
2284 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
2285 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
2286 Bump version from 0.11.2 to 0.11.5.
2287 (BISON_PREREQ_STAGE): Remove.
2288 (AM_GNU_GETTEXT): Use external gettext.
2289 (AC_OUTPUT): Remove intl/Makefile.
2290
2291 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
2292
2293 * data/glr.c: Include string.h, for strlen.
2294 (yyreportParseError): Use size_t for yysize.
2295 (yy_yypstack): No longer nested inside yypstates, as nested
2296 functions are not portable. Do not assume size_t is the
2297 same width as int.
2298 (yypstates): Do not assume that ptrdiff_t is the same width
2299 as int, and similarly for yyposn and YYINDEX.
2300
2301 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
2302
2303 * lib/Makefile.am (INCLUDES): Do not include from the intl
2304 directory, which has been removed.
2305 * src/Makefile.am (INCLUDES): Likewise.
2306
2307 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
2308 (bitsets_sources, additional_bitsets_sources, timevars_sources):
2309 New vars.
2310
2311 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
2312 * tests/Makefile.am (EXTRA_DIST): Likewise.
2313
2314 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
2315 Do not assume that bitset_windex is the same width as unsigned.
2316
2317 * lib/abitset.c (abitset_unused_clear): Do not assume that
2318 bitset_word is the same width as int.
2319 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
2320 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
2321 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
2322 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
2323 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
2324
2325 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
2326 portability to one's complement hosts!).
2327 * lib/ebitset.c (ebitset_op1): Likewise.
2328 * lib/lbitset.c (lbitset_op1): Likewise.
2329
2330 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
2331 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
2332 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
2333 Sync with fileutils.
2334 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
2335 lib/gettext.h: Sync with diffutils.
2336
2337 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
2338 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
2339
2340 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
2341 PROTOTYPES to check for prototypes, and "defined __STDC__" to
2342 check for void *.
2343
2344 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
2345 size_t; the old version tried to do this but casted improperly.
2346 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
2347 (bitset_test): Now returns int, not unsigned long.
2348
2349 * lib/bitset_stats.c: Include "gettext.h".
2350 (_): New macro.
2351 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
2352 name locals "index", as it generates unnecessary warnings on some
2353 hosts that have an "index" function.
2354
2355 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
2356 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
2357 they need translation.
2358 * src/LR0.c (state_list_append, new_itemsets, get_state,
2359 append_states, generate_states): Likewise.
2360 * src/assoc.c (assoc_to_string): Likewise.
2361 * src/closure.c (print_closure, set_firsts, closure): Likewise.
2362 * src/gram.c (grammar_dump): Likewise.
2363 * src/injections.c (injections_compute): Likewise.
2364 * src/lalr.c (lookaheads_print): Likewise.
2365 * src/relation.c (relation_transpose): Likewise.
2366 * src/scan-gram.l: Likewise.
2367 * src/tables.c (table_grow, pack_vector): Likewise.
2368
2369 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
2370 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
2371 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
2372 * m4/mbstate_t.m4: Sync with fileutils.
2373 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
2374
2375 * po/LINGUAS: Add pt_BR.
2376 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
2377 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
2378 lib/timevar.c.
2379 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
2380 manual recommends.
2381 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
2382
2383 * src/complain.c (strerror_r): Remove decl; not needed.
2384 (strerror): Use same pattern as ../lib/error.c.
2385
2386 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
2387
2388 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
2389
2390 * src/main.c (main): Cast result of bindtextdomain and textdomain
2391 to void, to avoid a GCC warning when --disable-nls is in effect.
2392
2393 * src/scan-gram.l: Use strings rather than escapes when possible,
2394 to minimize the number of warnings from xgettext.
2395 (handle_action_dollar, handle_action_at): Don't use isdigit,
2396 as it mishandles negative chars and it may not work as expected
2397 outside the C locale.
2398
2399 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
2400 this is a GCC extension and is not portable to other compilers.
2401
2402 * src/system.h (alloca): Use same pattern as ../lib/error.c.
2403 Do not include <ctype.h>; no longer needed.
2404 Do not include <malloc.h>; no longer needed (and generates
2405 warnings on OpenBSD 3.0).
2406
2407 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
2408 it's not portable.
2409
2410 * tests/regression.at: Do not use 'cc -c input.c -o input';
2411 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
2412
2413 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
2414 exit status as failure, not just exit status 1. Sun C exits
2415 with status 2 sometimes.
2416
2417 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
2418 Use it for the two large tests.
2419
2420 2002-08-02 Akim Demaille <akim@epita.fr>
2421
2422 * src/conflicts.c (conflicts_output): Don't output rules never
2423 reduced here, since anyway that computation doesn't work.
2424 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
2425 (rule_useless_p, rule_never_reduced_p): New.
2426 (grammar_rules_partial_print): Use a filter instead of a range.
2427 Display the title only if needed.
2428 (grammar_rules_print): Adjust.
2429 (grammar_rules_never_reduced_report): New.
2430 * src/tables.c (action_row): Move the computation of rules never
2431 reduced to...
2432 (token_actions): here.
2433 * src/main.c (main): Make the parser before making the report, so
2434 that rules never reduced are computed.
2435 Call grammar_rules_never_reduced_report.
2436 * src/print.c (print_results): Report rules never reduced.
2437 * tests/conflicts.at, tests/reduce.at: Adjust.
2438
2439 2002-08-01 Akim Demaille <akim@epita.fr>
2440
2441 Instead of attaching lookaheads and duplicating the rules being
2442 reduced by a state, attach the lookaheads to the reductions.
2443
2444 * src/state.h (state_t): Remove the `lookaheads',
2445 `lookaheads_rule' member.
2446 (reductions_t): Add a `lookaheads' member.
2447 Use a regular array for the `rules'.
2448 * src/state.c (reductions_new): Initialize the lookaheads member
2449 to 0.
2450 (state_rule_lookaheads_print): Adjust.
2451 * src/state.h, src/state.c (state_reductions_find): New.
2452 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
2453 (count_rr_conflicts): Adjust.
2454 * src/lalr.c (LArule): Remove.
2455 (add_lookback_edge): Adjust.
2456 (state_lookaheads_count): New.
2457 (states_lookaheads_initialize): Merge into...
2458 (initialize_LA): this.
2459 (lalr_free): Adjust.
2460 * src/main.c (main): Don't free nullable and derives too early: it
2461 is used by --verbose.
2462 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
2463
2464 2002-08-01 Akim Demaille <akim@epita.fr>
2465
2466 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
2467 `rule_number_t**'.
2468 (set_derives, free_derives): Rename as...
2469 (derives_compute, derives_free): this.
2470 Adjust all dependencies.
2471 * src/nullable.c (set_nullable, free_nullable): Rename as...
2472 (nullable_compute, nullable_free): these.
2473 (rule_list_t): Store rule_t *, not rule_number_t.
2474 * src/state.c (state_rule_lookaheads_print): Directly compare rule
2475 pointers, instead of their numbers.
2476 * src/main.c (main): Call nullable_free, and derives_free earlier,
2477 as they were lo longer used.
2478
2479 2002-08-01 Akim Demaille <akim@epita.fr>
2480
2481 * lib/timevar.c (get_time): Include children time.
2482 * src/lalr.h (LA, LArule): Don't export them: used with the
2483 state_t.
2484 * src/lalr.c (LA, LArule): Static.
2485 * src/lalr.h, src/lalr.c (lalr_free): New.
2486 * src/main.c (main): Call it.
2487 * src/tables.c (pack_vector): Check whether loc is >= to the
2488 table_size, not >.
2489 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
2490 (tables_generate): do it, since that's also it which allocates
2491 them.
2492 Don't free LA and LArule, main does.
2493
2494 2002-07-31 Akim Demaille <akim@epita.fr>
2495
2496 Separate parser tables computation and output.
2497
2498 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
2499 (conflict_list, conflict_list_cnt, table, check, table_ninf)
2500 (yydefgoto, yydefact, high): Move to...
2501 * src/tables.h, src/tables.c: here.
2502 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
2503 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
2504 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
2505 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
2506 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
2507 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
2508 (action_row, save_row, token_actions, save_column, default_goto)
2509 (goto_actions, sort_actions, matching_state, pack_vector)
2510 (table_ninf_remap, pack_table, prepare_actions): Move to...
2511 * src/tables.c: here.
2512 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
2513 * src/output.c (token_actions, output_base, output_conflicts)
2514 (output_check): Merge into...
2515 (prepare_actions): this.
2516 (actions_output): Rename as...
2517 (user_actions_output): this.
2518 * src/main.c (main): Call tables_generate and tables_free.
2519
2520 2002-07-31 Akim Demaille <akim@epita.fr>
2521
2522 Steal GCC's --time-report support.
2523
2524 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
2525 stolen/adjusted from GCC.
2526 * m4/stage.m4: Remove time related checks.
2527 * m4/timevar.m4: New.
2528 * configure.in: Adjust.
2529 * src/system.h: Adjust to using timevar.h.
2530 * src/getargs.h, src/getargs.c: Support trace_time for
2531 --trace=time.
2532 * src/main.c (stage): Remove.
2533 (main): Replace `stage' invocations with timevar calls.
2534 * src/output.c: Insert pertinent timevar calls.
2535
2536 2002-07-31 Akim Demaille <akim@epita.fr>
2537
2538 Let --trace have arguments.
2539
2540 * src/getargs.h (enum trace_e): New.
2541 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
2542 (long_options, short_options): --trace/-T takes an optional
2543 argument.
2544 Change all the uses of trace_flag to reflect the new flags.
2545 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
2546
2547 Strengthen `stage' portability.
2548
2549 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
2550 * configure.in: Use it.
2551 Don't check for malloc.h and sys/times.h.
2552 * src/system.h: Include them when appropriate.
2553 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
2554 times and struct tms are available.
2555
2556 2002-07-30 Akim Demaille <akim@epita.fr>
2557
2558 In verbose parse error message, don't report `error' as an
2559 expected token.
2560 * tests/actions.at (Printers and Destructors): Adjust.
2561 * tests/calc.at (Calculator $1): Adjust.
2562 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
2563 error message, do not report the parser accepts the error token in
2564 that state.
2565
2566 2002-07-30 Akim Demaille <akim@epita.fr>
2567
2568 Normalize conflict related messages.
2569
2570 * src/complain.h, src/complain.c (warn, complain): New.
2571 * src/conflicts.c (conflicts_print): Use them.
2572 (conflict_report_yacc): New, extracted from...
2573 (conflicts_print): here.
2574 * tests/conflicts.at, tests/existing.at: Adjust.
2575
2576 2002-07-30 Akim Demaille <akim@epita.fr>
2577
2578 Report rules which are never reduced by the parser: those hidden
2579 by conflicts.
2580
2581 * src/LR0.c (save_reductions): Don't make the final state too
2582 different: save its reduction (accept) instead of having a state
2583 without any action (no shift or goto, no reduce).
2584 Note: the final state is now a ``regular'' state, i.e., the
2585 parsers now contain `reduce 0' as default reduction.
2586 Nevertheless, since they decide to `accept' when yystate =
2587 final_state, they still will not reduce rule 0.
2588 * src/print.c (print_actions, print_reduction): Adjust.
2589 * src/output.c (action_row): Track reduced rules.
2590 (token_actions): Report rules never reduced.
2591 * tests/conflicts.at, tests/regression.at: Adjust.
2592
2593 2002-07-30 Akim Demaille <akim@epita.fr>
2594
2595 `stage' was accidently included in a previous patch.
2596 Initiate its autoconfiscation.
2597
2598 * configure.in: Look for malloc.h and sys/times.h.
2599 * src/main.c (stage): Adjust.
2600 Report only when trace_flag.
2601
2602 2002-07-29 Akim Demaille <akim@epita.fr>
2603
2604 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
2605 state_number_t.
2606 (errs_t): symbol_t*, not symbol_number_t.
2607 (reductions_t): rule_t*, not rule_number_t.
2608 (FOR_EACH_SHIFT): New.
2609 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
2610 * src/print.c, src/print_graph.c: Adjust.
2611
2612 2002-07-29 Akim Demaille <akim@epita.fr>
2613
2614 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
2615
2616 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
2617 (endtoken, accept): these.
2618 * src/reader.c (reader): Set endtoken's default tag to "$end".
2619 Set undeftoken's tag to "$undefined" instead of "$undefined.".
2620 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
2621 Adjust.
2622
2623 2002-07-29 Akim Demaille <akim@epita.fr>
2624
2625 * src/reduce.c (reduce_grammar): When the language is empty,
2626 complain about the start symbol, not the axiom.
2627 Use its location.
2628 * tests/reduce.at (Empty Language): New.
2629
2630 2002-07-26 Akim Demaille <akim@epita.fr>
2631
2632 * src/reader.h, src/reader.c (gram_error): ... can't get
2633 yycontrol without making too strong assumptions on the parser
2634 itself.
2635 * src/output.c (prepare_tokens): Use the real 0th value of
2636 token_translations instead of `0'.
2637 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
2638 visible here.
2639 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
2640 for the time being: %locations ought to provide it to yyerror.
2641
2642 2002-07-25 Akim Demaille <akim@epita.fr>
2643
2644 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
2645 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
2646 * tests/regression.at (Web2c Actions): Adjust.
2647
2648 2002-07-25 Akim Demaille <akim@epita.fr>
2649
2650 Stop storing rules from 1 to nrules + 1.
2651
2652 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
2653 * src/nullable.c, src/output.c, src/print.c, src/reader.c
2654 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
2655 Iterate from 0 to nrules.
2656 Use rule_number_as_item_number and item_number_as_rule_number.
2657 Adjust to `derive' now containing possibly 0.
2658 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
2659 Handle the `- 1' part in rule numbers from/to item numbers.
2660 * src/conflicts.c (log_resolution): Fix the message which reversed
2661 shift and reduce.
2662 * src/output.c (action_row): Initialize default_rule to -1.
2663 (token_actions): Adjust.
2664 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
2665 expected output.
2666 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
2667
2668 2002-07-25 Akim Demaille <akim@epita.fr>
2669
2670 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
2671 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
2672 (b4_c_knr_arg_decl): New.
2673 * data/yacc.c: Use it to define yysymprint, yydestruct, and
2674 yyreport_parse_error.
2675
2676 2002-07-25 Akim Demaille <akim@epita.fr>
2677
2678 * data/yacc.c (yyreport_parse_error): New, extracted from...
2679 (yyparse): here.
2680 (yydestruct, yysymprint): Move above yyparse.
2681 Be K&R compliant.
2682
2683 2002-07-25 Akim Demaille <akim@epita.fr>
2684
2685 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
2686 replace...
2687 (b4_sint_type, b4_uint_type): these.
2688 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
2689 * tests/regression.at (Web2c Actions): Adjust.
2690
2691 2002-07-25 Akim Demaille <akim@epita.fr>
2692
2693 * src/gram.h (TIEM_NUMBER_MAX): New.
2694 (item_number_of_rule_number, rule_number_of_item_number): Rename
2695 as...
2696 (rule_number_as_item_number, item_number_as_rule_number): these.
2697 Adjust dependencies.
2698 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
2699 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
2700 (symbol_number_to_vector_number): New.
2701 (order): Of vector_number_t* type.
2702 (base_t, BASE_MAX, BASE_MIN): New.
2703 (froms, tos, width, pos, check): Of base_t type.
2704 (action_number_t, ACTION_MIN, ACTION_MAX): New.
2705 (actrow): Of action_number_t type.
2706 (conflrow): Of unsigned int type.
2707 (table_ninf, base_ninf): New.
2708 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
2709 (muscle_insert_int_table, muscle_insert_base_table)
2710 (muscle_insert_rule_number_table): New.
2711 (prepare_tokens): Output `toknum' as int_table.
2712 (action_row): Returns a rule_number_t.
2713 Use ACTION_MIN, not SHRT_MIN.
2714 (token_actions): yydefact is rule_number_t*.
2715 (table_ninf_remap): New.
2716 (pack_table): Use it for `base' and `table'.
2717 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
2718 replaced with...
2719 (YYPACT_NINF, YYTABLE_NINF): these.
2720 (yypact, yytable): Compute their types instead of hard-coded
2721 `short'.
2722 * tests/regression.at (Web2c Actions): Adjust.
2723
2724 2002-07-19 Akim Demaille <akim@epita.fr>
2725
2726 * src/scan-gram.l (id): Can start with an underscore.
2727
2728 2002-07-16 Akim Demaille <akim@epita.fr>
2729
2730 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
2731 Adjust all former `associativity' dependencies.
2732 * src/symtab.c (symbol_new): Default associativity is `undef', not
2733 `right'.
2734 (symbol_check_alias_consistence): Adjust.
2735
2736 2002-07-09 Akim Demaille <akim@epita.fr>
2737
2738 * doc/bison.texinfo: Properly set the ``header'' part.
2739 Use @dircategory ``GNU programming tools'' as per Texinfo's
2740 documentation.
2741 Use @copying.
2742
2743 2002-07-09 Akim Demaille <akim@epita.fr>
2744
2745 * lib/quotearg.h: Protect against multiple inclusions.
2746 * src/location.h (location_t): Add a `file' member.
2747 (LOCATION_RESET, LOCATION_PRINT): Adjust.
2748 * src/complain.c (warn_at, complain_at, fatal_at): Drop
2749 `error_one_per_line' support.
2750
2751 2002-07-09 Akim Demaille <akim@epita.fr>
2752
2753 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
2754 * src/reader.c (lineno): Remove.
2755 Adjust all dependencies.
2756 (get_merge_function): Take a location and use complain_at.
2757 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
2758 * tests/regression.at (Invalid inputs, Mixing %token styles):
2759 Adjust.
2760
2761 2002-07-09 Akim Demaille <akim@epita.fr>
2762
2763 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
2764 recovery rule, and forbid extensions when --yacc.
2765 (gram_error): Use complain_at.
2766 * src/reader.c (reader): Exit if there were parse errors.
2767
2768 2002-07-09 Akim Demaille <akim@epita.fr>
2769
2770 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
2771 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
2772 Reported by R Blake <blakers@mac.com>.
2773
2774 2002-07-09 Akim Demaille <akim@epita.fr>
2775
2776 * data/yacc.c: Output the copyright notive in the header.
2777
2778 2002-07-03 Akim Demaille <akim@epita.fr>
2779
2780 * src/output.c (froms, tos): Are state_number_t.
2781 (save_column): sp, sp1, and sp2 are state_number_t.
2782 (prepare): Rename `final' as `final_state_number', `nnts' as
2783 `nterms_number', `nrules' as `rules_number', `nstates' as
2784 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
2785 unused.
2786 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
2787 * data/lalr1.cc (nsym_): Remove, unused.
2788
2789 2002-07-03 Akim Demaille <akim@epita.fr>
2790
2791 * src/lalr.h, src/lalr.c (goto_number_t): New.
2792 * src/lalr.c (goto_list_t): New.
2793 Propagate them.
2794 * src/nullable.c (rule_list_t): New.
2795 Propagate.
2796 * src/types.h: Remove.
2797
2798 2002-07-03 Akim Demaille <akim@epita.fr>
2799
2800 * src/closure.c (print_fderives): Use rule_rhs_print.
2801 * src/derives.c (print_derives): Use rule_rhs_print.
2802 (rule_list_t): New, replaces `shorts'.
2803 (set_derives): Add comments.
2804 * tests/sets.at (Nullable, Firsts): Adjust.
2805
2806 2002-07-03 Akim Demaille <akim@epita.fr>
2807
2808 * src/output.c (prepare_actions): Free `tally' and `width'.
2809 (prepare_actions): Allocate and free `order'.
2810 * src/symtab.c (symbols_free): Free `symbols'.
2811 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
2812 * src/output.c (m4_invoke): Move to...
2813 * src/scan-skel.l: here.
2814 (<<EOF>>): Close yyout, and free its name.
2815
2816 2002-07-03 Akim Demaille <akim@epita.fr>
2817
2818 Fix some memory leaks, and fix a bug: state 0 was examined twice.
2819
2820 * src/LR0.c (new_state): Merge into...
2821 (state_list_append): this.
2822 (new_states): Merge into...
2823 (generate_states): here.
2824 (set_states): Don't ensure a proper `errs' state member here, do it...
2825 * src/conflicts.c (conflicts_solve): here.
2826 * src/state.h, src/state.c: Comment changes.
2827 (state_t): Rename member `shifts' as `transitions'.
2828 Adjust all dependencies.
2829 (errs_new): For consistency, also take the values as argument.
2830 (errs_dup): Remove.
2831 (state_errs_set): New.
2832 (state_reductions_set, state_transitions_set): Assert that no
2833 previous value was assigned.
2834 (state_free): New.
2835 (states_free): Use it.
2836 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
2837 temporary storage: use `errs' and `nerrs' as elsewhere.
2838 (set_conflicts): Allocate and free this `errs'.
2839
2840 2002-07-02 Akim Demaille <akim@epita.fr>
2841
2842 * lib/libiberty.h: New.
2843 * lib: Update the bitset implementation from upstream.
2844 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
2845 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
2846 * src/main.c: Adjust bitset stats calls.
2847
2848 2002-07-01 Paul Eggert <eggert@twinsun.com>
2849
2850 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
2851 char, so that negative chars don't collide with $.
2852
2853 2002-06-30 Akim Demaille <akim@epita.fr>
2854
2855 Have the GLR tests be `warning' checked, and fix the warnings.
2856
2857 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
2858 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
2859 (yyremoveDeletes): `yyi' and `yyj' are size_t.
2860 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
2861 (yyaddDeferredAction): static.
2862 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
2863 (yyreportParseError): yyprefix is const.
2864 yytokenp is used only when verbose.
2865 (yy__GNUC__): Replace with __GNUC__.
2866 (yypdumpstack): yyi is size_t.
2867 (yypreference): Un-yy local variables and arguments, to avoid
2868 clashes with `yyr1'. Anyway, we are not in the user name space.
2869 (yytname_size): be an int, as is compared with ints.
2870 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
2871 Use them.
2872 * tests/cxx-gram.at: Use quotation to protect $1.
2873 Use AT_COMPILE to enable warnings hunts.
2874 Prototype yylex and yyerror.
2875 `Use' argc.
2876 Include `string.h', not `strings.h'.
2877 Produce and prototype stmtMerge only when used.
2878 yylex takes a location.
2879
2880 2002-06-30 Akim Demaille <akim@epita.fr>
2881
2882 We spend a lot of time in quotearg, in particular when --verbose.
2883
2884 * src/symtab.c (symbol_get): Store a quoted version of the key.
2885 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
2886 Adjust all callers.
2887
2888 2002-06-30 Akim Demaille <akim@epita.fr>
2889
2890 * src/state.h (reductions_t): Rename member `nreds' as num.
2891 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
2892 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
2893
2894 2002-06-30 Akim Demaille <akim@epita.fr>
2895
2896 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
2897 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
2898 (shifts_to): Rename as...
2899 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
2900 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
2901 (TRANSITION_IS_DISABLED, transitions_to): these.
2902
2903 2002-06-30 Akim Demaille <akim@epita.fr>
2904
2905 * src/print.c (print_shifts, print_gotos): Merge into...
2906 (print_transitions): this.
2907 (print_transitions, print_errs, print_reductions): Align the
2908 lookaheads columns.
2909 (print_core, print_transitions, print_errs, print_state,
2910 print_grammar): Output empty lines separator before, not after.
2911 (state_default_rule_compute): Rename as...
2912 (state_default_rule): this.
2913 * tests/conflicts.at (Defaulted Conflicted Reduction),
2914 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
2915 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
2916
2917 2002-06-30 Akim Demaille <akim@epita.fr>
2918
2919 Display items as we display rules.
2920
2921 * src/gram.h, src/gram.c (rule_lhs_print): New.
2922 * src/gram.c (grammar_rules_partial_print): Use it.
2923 * src/print.c (print_core): Likewise.
2924 * tests/conflicts.at (Defaulted Conflicted Reduction),
2925 (Unresolved SR Conflicts): Adjust.
2926 (Unresolved SR Conflicts): Adjust and rename as...
2927 (Resolved SR Conflicts): this, as was meant.
2928 * tests/regression.at (Web2c Report): Adjust.
2929
2930 2002-06-30 Akim Demaille <akim@epita.fr>
2931
2932 * src/print.c (state_default_rule_compute): New, extracted from...
2933 (print_reductions): here.
2934 Pessimize, but clarify the code.
2935 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
2936
2937 2002-06-30 Akim Demaille <akim@epita.fr>
2938
2939 * src/output.c (action_row): Let default_rule be always a rule
2940 number.
2941
2942 2002-06-30 Akim Demaille <akim@epita.fr>
2943
2944 * src/closure.c (print_firsts, print_fderives, closure):
2945 Use BITSET_EXECUTE.
2946 * src/lalr.c (lookaheads_print): Likewise.
2947 * src/state.c (state_rule_lookaheads_print): Likewise.
2948 * src/print_graph.c (print_core): Likewise.
2949 * src/print.c (print_reductions): Likewise.
2950 * src/output.c (action_row): Likewise.
2951 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
2952
2953 2002-06-30 Akim Demaille <akim@epita.fr>
2954
2955 * src/print_graph.c: Use report_flag.
2956
2957 2002-06-30 Akim Demaille <akim@epita.fr>
2958
2959 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
2960 to...
2961 * src/relation.h, src/relation.c (traverse, relation_digraph)
2962 (relation_print, relation_transpose): New.
2963
2964 2002-06-30 Akim Demaille <akim@epita.fr>
2965
2966 * src/state.h, src/state.c (shifts_to): New.
2967 * src/lalr.c (build_relations): Use it.
2968
2969 2002-06-30 Akim Demaille <akim@epita.fr>
2970
2971 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
2972 (item_number_of_rule_number, rule_number_of_item_number): New.
2973 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
2974 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
2975 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
2976 Propagate their use.
2977 Much remains to be done, in particular wrt `shorts' from types.h.
2978
2979 2002-06-30 Akim Demaille <akim@epita.fr>
2980
2981 * src/symtab.c (symbol_new): Initialize the `printer' member.
2982
2983 2002-06-30 Akim Demaille <akim@epita.fr>
2984
2985 * src/LR0.c (save_reductions): Remove, replaced by...
2986 * src/state.h, src/state.c (state_reductions_set): New.
2987 (reductions, errs): Rename as...
2988 (reductions_t, errs_t): these.
2989 Adjust all dependencies.
2990
2991 2002-06-30 Akim Demaille <akim@epita.fr>
2992
2993 * src/LR0.c (state_list_t, state_list_append): New.
2994 (first_state, last_state): Now symbol_list_t.
2995 (this_state): Remove.
2996 (new_itemsets, append_states, save_reductions): Take a state_t as
2997 argument.
2998 (set_states, generate_states): Adjust.
2999 (save_shifts): Remove, replaced by...
3000 * src/state.h, src/state.c (state_shifts_set): New.
3001 (shifts): Rename as...
3002 (shifts_t): this.
3003 Adjust all dependencies.
3004 * src/state.h (state_t): Remove the `next' member.
3005
3006 2002-06-30 Akim Demaille <akim@epita.fr>
3007
3008 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
3009 escaped in slot 0.
3010
3011 2002-06-30 Akim Demaille <akim@epita.fr>
3012
3013 Use hash.h for the state hash table.
3014
3015 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
3016 (allocate_storage): Use state_hash_new.
3017 (free_storage): Use state_hash_free.
3018 (new_state, get_state): Adjust.
3019 * src/lalr.h, src/lalr.c (states): Move to...
3020 * src/states.h (state_t): Remove the `link' member, no longer
3021 used.
3022 * src/states.h, src/states.c: here.
3023 (state_hash_new, state_hash_free, state_hash_lookup)
3024 (state_hash_insert, states_free): New.
3025 * src/states.c (state_table, state_compare, state_hash): New.
3026 * src/output.c (output_actions): Do not free states now, since we
3027 still need to know the final_state number in `prepare', called
3028 afterwards. Do it...
3029 * src/main.c (main): here: call states_free after `output'.
3030
3031 2002-06-30 Akim Demaille <akim@epita.fr>
3032
3033 * src/state.h, src/state.c (state_new): New, extracted from...
3034 * src/LR0.c (new_state): here.
3035 * src/state.h (STATE_ALLOC): Move to...
3036 * src/state.c: here.
3037 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
3038 * src/state.h, src/state.c: here.
3039
3040 2002-06-30 Akim Demaille <akim@epita.fr>
3041
3042 * src/reader.c (gensym): Rename as...
3043 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
3044 (getsym): Rename as...
3045 (symbol_get): this.
3046
3047 2002-06-30 Akim Demaille <akim@epita.fr>
3048
3049 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
3050 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
3051 * src/output.c, src/print.c, src/print_graph.c: Propagate.
3052 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
3053
3054 2002-06-30 Akim Demaille <akim@epita.fr>
3055
3056 Make the test suite pass with warnings checked.
3057
3058 * tests/actions.at (Printers and Destructors): Improve.
3059 Avoid unsigned vs. signed issues.
3060 * tests/calc.at: Don't exercise the scanner here, do it...
3061 * tests/input.at (Torturing the Scanner): here.
3062
3063 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3064
3065 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
3066 reorganize first lines parallel to yacc.c.
3067
3068 2002-06-28 Akim Demaille <akim@epita.fr>
3069
3070 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
3071 (b4_token_enum, b4_token_defines): New, factored from...
3072 * data/lalr1.cc, data/yacc.c, glr.c: here.
3073
3074 2002-06-28 Akim Demaille <akim@epita.fr>
3075
3076 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
3077 unused variables.
3078 * src/output.c (merger_output): static.
3079
3080 2002-06-28 Akim Demaille <akim@epita.fr>
3081
3082 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
3083 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
3084 pacify GCC.
3085 * src/output.c (save_row): Initialize all the variables to pacify GCC.
3086
3087 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3088
3089 Accumulated changelog for new GLR parsing features.
3090
3091 * src/conflicts.c (count_total_conflicts): Change name to
3092 conflicts_total_count.
3093 * src/conflicts.h: Ditto.
3094 * src/output.c (token_actions): Use the new name.
3095 (output_conflicts): Change conflp => conflict_list_heads, and
3096 confl => conflict_list for better readability.
3097 * data/glr.c: Use the new names.
3098 * NEWS: Add self to GLR announcement.
3099
3100 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
3101
3102 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
3103 Akim Demaille.
3104
3105 * data/bison.glr: Change name to glr.c
3106 * data/glr.c: Renamed from bison.glr.
3107 * data/Makefile.am: Add glr.c
3108
3109 * src/getargs.c:
3110
3111 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
3112 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
3113
3114 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3115
3116 * data/bison.glr: Be sure to restore the
3117 current #line when returning to the skeleton contents after having
3118 exposed the input file's #line.
3119
3120 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3121
3122 * data/bison.glr: Bring up to date with changes to bison.simple.
3123
3124 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3125
3126 * data/bison.glr: Correct definitions that use b4_prefix.
3127 Various reformatting.
3128 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
3129 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
3130 yytokenp argument; now part of stack.
3131 (yychar): Define to behave as documented.
3132 (yyclearin): Ditto.
3133
3134 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3135
3136 * src/reader.h: Add declaration for free_merger_functions.
3137
3138 * src/reader.c (merge_functions): New variable.
3139 (get_merge_function): New function.
3140 (free_merger_functions): New function.
3141 (readgram): Check for %prec that is not followed by a symbol.
3142 Handle %dprec and %merge declarations.
3143 (packgram): Initialize dprec and merger fields in rules array.
3144
3145 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
3146 conflict_list_cnt, conflict_list_free): New variables.
3147 (table_grow): Also grow conflict_table.
3148 (prepare_rules): Output dprec and merger tables.
3149 (conflict_row): New function.
3150 (action_row): Output conflict lists for GLR parser. Don't use
3151 default reduction in conflicted states for GLR parser so that there
3152 are spaces for the conflict lists.
3153 (save_row): Also save conflict information.
3154 (token_actions): Allocate conflict list.
3155 (merger_output): New function.
3156 (pack_vector): Pack conflict table, too.
3157 (output_conflicts): New function to output yyconflp and yyconfl.
3158 (output_check): Allocate conflict_tos.
3159 (output_actions): Output conflict tables, also.
3160 (output_skeleton): Output b4_mergers definition.
3161 (prepare): Output b4_max_rhs_length definition.
3162 Use 'bison.glr' as default skeleton for GLR parsers.
3163
3164 * src/gram.c (glr_parser): New flag.
3165 (grammar_free): Call free_merger_functions.
3166
3167 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
3168 all pairs of conflicting reductions, rather than just all tokens
3169 causing conflicts. Needed to size conflict tables.
3170 (conflicts_output): Modify call to count_rr_conflicts for new
3171 interface.
3172 (conflicts_print): Ditto.
3173 (count_total_conflicts): New function.
3174
3175 * src/reader.h (merger_list): New type.
3176 (merge_functions): New variable.
3177
3178 * src/lex.h (tok_dprec, tok_merge): New token types.
3179
3180 * src/gram.h (rule_s): Add dprec and merger fields.
3181 (glr_parser): New flag.
3182
3183 * src/conflicts.h (count_total_conflicts): New function.
3184
3185 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
3186
3187 * doc/bison.texinfo (Generalized LR Parsing): New section.
3188 (GLR Parsers): New section.
3189 (Language and Grammar): Mention GLR parsing.
3190 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
3191 Correct typo ("tge" -> "the").
3192
3193 * data/bison.glr: New skeleton for GLR parsing.
3194
3195 * tests/cxx-gram.at: New tests for GLR parsing.
3196
3197 * tests/testsuite.at: Include cxx-gram.at.
3198
3199 * tests/Makefile.am: Add cxx-gram.at.
3200
3201 * src/parse-gram.y:
3202
3203 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
3204
3205 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
3206
3207 2002-06-27 Akim Demaille <akim@epita.fr>
3208
3209 * src/options.h, src/options.c: Remove.
3210 * src/getargs.c (short_options, long_options): New.
3211
3212 2002-06-27 Akim Demaille <akim@epita.fr>
3213
3214 * data/bison.simple, data/bison.c++: Rename as...
3215 * data/yacc.c, data/lalr1.cc: these.
3216 * doc/bison.texinfo (Environment Variables): Remove.
3217
3218 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
3219
3220 * src/getargs.c (report_argmatch): Initialize strtok().
3221
3222 2002-06-20 Akim Demaille <akim@epita.fr>
3223
3224 * data/bison.simple (b4_symbol_actions): New, replaces...
3225 (b4_symbol_destructor, b4_symbol_printer): these.
3226 (yysymprint): Be sure to call YYPRINT only for tokens, and using
3227 user token numbers.
3228
3229 2002-06-20 Akim Demaille <akim@epita.fr>
3230
3231 * data/bison.simple (yydestructor): Rename as...
3232 (yydestruct): this.
3233
3234 2002-06-20 Akim Demaille <akim@epita.fr>
3235
3236 * src/symtab.h, src/symtab.c (symbol_type_set)
3237 (symbol_destructor_set, symbol_precedence_set): The location is
3238 the last argument.
3239 Adjust all callers.
3240
3241 2002-06-20 Akim Demaille <akim@epita.fr>
3242
3243 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
3244 internals.
3245 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
3246 Takes a location.
3247 * src/symtab.h, src/symtab.c (symbol_class_set)
3248 (symbol_user_token_number_set): Likewise.
3249 Adjust all callers.
3250 Promote complain_at.
3251 * tests/input.at (Type Clashes): Adjust.
3252
3253 2002-06-20 Akim Demaille <akim@epita.fr>
3254
3255 * data/bison.simple (YYLEX): Fix the declaration when
3256 %pure-parser.
3257
3258 2002-06-20 Akim Demaille <akim@epita.fr>
3259
3260 * data/bison.simple (yysymprint): Don't print the token number,
3261 just its name.
3262 * tests/actions.at (Destructors): Rename as...
3263 (Printers and Destructors): this.
3264 Also exercise %printer.
3265
3266 2002-06-20 Akim Demaille <akim@epita.fr>
3267
3268 * data/bison.simple (YYDSYMPRINT): New.
3269 Use it to remove many of the #if YYDEBUG/if (yydebug).
3270
3271 2002-06-20 Akim Demaille <akim@epita.fr>
3272
3273 * src/symtab.h, src/symtab.c (symbol_t): printer and
3274 printer_location are new members.
3275 (symbol_printer_set): New.
3276 * src/parse-gram.y (PERCENT_PRINTER): New token.
3277 Handle its associated rule.
3278 * src/scan-gram.l: Adjust.
3279 (handle_destructor_at, handle_destructor_dollar): Rename as...
3280 (handle_symbol_code_at, handle_symbol_code_dollar): these.
3281 * src/output.c (symbol_printers_output): New.
3282 (output_skeleton): Call it.
3283 * data/bison.simple (yysymprint): New. Cannot be named yyprint
3284 since there are already many grammar files with a user `yyprint'.
3285 Replace the calls to YYPRINT to calls to yysymprint.
3286 * tests/calc.at: Adjust.
3287 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
3288 taking advantage of parser very internal details (stack size!).
3289
3290 2002-06-20 Akim Demaille <akim@epita.fr>
3291
3292 * src/scan-gram.l: Complete the scanner with the missing patterns
3293 to pacify Flex.
3294 Use `quote' and `symbol_tag_get' where appropriate.
3295
3296 2002-06-19 Akim Demaille <akim@epita.fr>
3297
3298 * tests/actions.at (Destructors): Augment to test locations.
3299 * data/bison.simple (yydestructor): Pass it the current location
3300 if locations are enabled.
3301 Prototype only when __STDC__ or C++.
3302 Change the argument names to move into the yy name space: there is
3303 user code here.
3304
3305 2002-06-19 Akim Demaille <akim@epita.fr>
3306
3307 * data/bison.simple (b4_pure_if): New.
3308 Use it instead of #ifdef YYPURE.
3309
3310 2002-06-19 Akim Demaille <akim@epita.fr>
3311
3312 * data/bison.simple (b4_location_if): New.
3313 Use it instead of #ifdef YYLSP_NEEDED.
3314
3315 2002-06-19 Akim Demaille <akim@epita.fr>
3316
3317 Prepare @$ in %destructor, but currently don't bind it in the
3318 skeleton, as %location use is not cleaned up yet.
3319
3320 * src/scan-gram.l (handle_dollar, handle_destructor_at)
3321 (handle_action_at): New.
3322 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
3323 a braced_code_t and a location as additional arguments.
3324 (handle_destructor_dollar): Instead of requiring `b4_eval', just
3325 unquote one when outputting `b4_dollar_dollar'.
3326 Adjust callers.
3327 * data/bison.simple (b4_eval): Remove.
3328 (b4_symbol_destructor): Adjust.
3329 * tests/input.at (Invalid @n): Adjust.
3330
3331 2002-06-19 Zack Weinberg <zack@codesourcery.com>
3332
3333 * doc/bison.texinfo: Document ability to have multiple
3334 prologue sections.
3335
3336 2002-06-18 Akim Demaille <akim@epita.fr>
3337
3338 * src/files.c (compute_base_names): When computing the output file
3339 names from the input file name, strip the directory part.
3340
3341 2002-06-18 Akim Demaille <akim@epita.fr>
3342
3343 * data/bison.simple.new: Comment changes.
3344 Reported by Andreas Schwab.
3345
3346 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
3347
3348 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
3349 there are no `label `yyoverflowlab' defined but not used' warnings
3350 when yyoverflow is defined.
3351
3352 2002-06-18 Akim Demaille <akim@epita.fr>
3353
3354 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
3355 new member.
3356 (symbol_destructor_set): Adjust.
3357 * src/output.c (symbol_destructors_output): Output the destructor
3358 locations.
3359 Output the symbol name.
3360 * data/bison.simple (b4_symbol_destructor): Adjust.
3361
3362 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
3363 and Akim Demaille <akim@epita.fr>
3364
3365 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
3366 what's left on the stack when the error recovery hits EOF.
3367 * tests/actions.at (Destructors): Complete to exercise this case.
3368
3369 2002-06-17 Akim Demaille <akim@epita.fr>
3370
3371 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
3372 arguments is really empty, not only equal to `[]'.
3373 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
3374 member.
3375 (symbol_destructor_set): New.
3376 * src/output.c (symbol_destructors_output): New.
3377 * src/reader.h (brace_code_t, current_braced_code): New.
3378 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
3379 (handle_dollar): Rename as...
3380 (handle_action_dollar): this.
3381 (handle_destructor_dollar): New.
3382 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
3383 (grammar_declaration): Use it.
3384 * data/bison.simple (yystos): Is always defined.
3385 (yydestructor): New.
3386 * tests/actions.at (Destructors): New.
3387 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
3388
3389 2002-06-17 Akim Demaille <akim@epita.fr>
3390
3391 * src/symlist.h, src/symlist.c (symbol_list_length): New.
3392 * src/scan-gram.l (handle_dollar, handle_at): Compute the
3393 rule_length only when needed.
3394 * src/output.c (actions_output, token_definitions_output): Output
3395 the full M4 block.
3396 * src/symtab.c: Don't access directly to the symbol tag, use
3397 symbol_tag_get.
3398 * src/parse-gram.y: Use symbol_list_free.
3399
3400 2002-06-17 Akim Demaille <akim@epita.fr>
3401
3402 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
3403 (symbol_list_prepend, get_type_name): Move to...
3404 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
3405 (symbol_list_prepend, symbol_list_n_type_name_get): here.
3406 Adjust all callers.
3407 (symbol_list_free): New.
3408 * src/scan-gram.l (handle_dollar): Takes a location.
3409 * tests/input.at (Invalid $n): Adjust.
3410
3411 2002-06-17 Akim Demaille <akim@epita.fr>
3412
3413 * src/reader.h, src/reader.c (symbol_list_new): Export it.
3414 (symbol_list_prepend): New.
3415 * src/parse-gram.y (%union): `list' is a new member.
3416 (symbols.1): New, replaces...
3417 (terms_to_prec.1, nterms_to_type.1): these.
3418 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
3419 Take a location as additional argument.
3420 Adjust all callers.
3421
3422 2002-06-15 Akim Demaille <akim@epita.fr>
3423
3424 * src/parse-gram.y: Move %token in the declaration section so that
3425 we don't depend upon CVS Bison.
3426
3427 2002-06-15 Akim Demaille <akim@epita.fr>
3428
3429 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
3430 * src/print.c (print_core): Use it.
3431
3432 2002-06-15 Akim Demaille <akim@epita.fr>
3433
3434 * src/conflicts.c (log_resolution): Accept the rule involved in
3435 the sr conflicts instead of the lookahead number that points to
3436 that rule.
3437 (flush_reduce): Accept the current lookahead vector as argument,
3438 instead of the index in LA.
3439 (resolve_sr_conflict): Accept the current number of lookahead
3440 bitset to consider for the STATE, instead of the index in LA.
3441 (set_conflicts): Adjust.
3442 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
3443
3444 2002-06-15 Akim Demaille <akim@epita.fr>
3445
3446 * src/state.h (state_t): Replace the `lookaheadsp' member, a
3447 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
3448 Adjust all dependencies.
3449 * src/lalr.c (initialize_lookaheads): Split into...
3450 (states_lookaheads_count, states_lookaheads_initialize): these.
3451 (lalr): Adjust.
3452
3453 2002-06-15 Akim Demaille <akim@epita.fr>
3454
3455 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
3456 out of...
3457 (grammar_rules_print): here.
3458 * src/reduce.c (reduce_output): Use it.
3459 * tests/reduce.at (Useless Rules, Reduced Automaton)
3460 (Underivable Rules): Adjust.
3461
3462 2002-06-15 Akim Demaille <akim@epita.fr>
3463
3464 Copy BYacc's nice way to report the grammar.
3465
3466 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
3467 New.
3468 Don't print the rules' location, it is confusing and useless.
3469 (rule_print): Use grammar_rhs_print.
3470 * src/print.c (print_grammar): Use grammar_rules_print.
3471
3472 2002-06-15 Akim Demaille <akim@epita.fr>
3473
3474 Complete and rationalize `useless thing' warnings.
3475
3476 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
3477 (symbol_tag_print): New.
3478 Use them everywhere in place of accessing directly the tag member.
3479 * src/gram.h, src/gram.c (rule_print): New.
3480 Use it where a rule used to be printed `by hand'.
3481 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
3482 (reduce_grammar_tables): Report the useless rules.
3483 (reduce_print): Useless things are a warning, not an error.
3484 Report it as such.
3485 * tests/reduce.at (Useless Nonterminals, Useless Rules):
3486 (Reduced Automaton, Underivable Rules): Adjust.
3487 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
3488 * tests/conflicts.at (Unresolved SR Conflicts)
3489 (Solved SR Conflicts): Adjust.
3490
3491 2002-06-15 Akim Demaille <akim@epita.fr>
3492
3493 Let symbols have a location.
3494
3495 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
3496 (getsym): Adjust.
3497 Adjust all callers.
3498 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
3499 Use location_t, not int.
3500 * src/symtab.c (symbol_check_defined): Take advantage of the
3501 location.
3502 * tests/regression.at (Invalid inputs): Adjust.
3503
3504 2002-06-15 Akim Demaille <akim@epita.fr>
3505
3506 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
3507 (input): Don't try to initialize yylloc here, do it in the
3508 scanner.
3509 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
3510 * src/gram.h (rule_t): Change line and action_line into location
3511 and action_location, of location_t type.
3512 Adjust all dependencies.
3513 * src/location.h, src/location.c (empty_location): New.
3514 * src/reader.h, src/reader.c (grammar_start_symbol_set)
3515 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
3516 (grammar_current_rule_symbol_append)
3517 (grammar_current_rule_action_append): Expect a location as argument.
3518 * src/reader.c (grammar_midrule_action): Adjust to attach an
3519 action's location as dummy symbol location.
3520 * src/symtab.h, src/symtab.c (startsymbol_location): New.
3521 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
3522 the line numbers.
3523
3524 2002-06-14 Akim Demaille <akim@epita.fr>
3525
3526 Grammar declarations may be found in the grammar section.
3527
3528 * src/parse-gram.y (rules_or_grammar_declaration): New.
3529 (declarations): Each declaration may end with a semicolon, not
3530 just...
3531 (grammar_declaration): `"%union"'.
3532 (grammar): Branch to rules_or_grammar_declaration.
3533
3534 2002-06-14 Akim Demaille <akim@epita.fr>
3535
3536 * src/main.c (main): Invoke scanner_free.
3537
3538 2002-06-14 Akim Demaille <akim@epita.fr>
3539
3540 * src/output.c (m4_invoke): Extracted from...
3541 (output_skeleton): here.
3542 Free tempfile.
3543
3544 2002-06-14 Akim Demaille <akim@epita.fr>
3545
3546 * src/parse-gram.y (directives, directive, gram)
3547 (grammar_directives, precedence_directives, precedence_directive):
3548 Rename as...
3549 (declarations, declaration, grammar, grammar_declaration)
3550 (precedence_declaration, precedence_declarator): these.
3551 (symbol_declaration): New.
3552
3553 2002-06-14 Akim Demaille <akim@epita.fr>
3554
3555 * src/files.c (action_obstack): Remove, unused.
3556 (output_obstack): Remove it, and all its dependencies, as it is no
3557 longer needed.
3558 * src/reader.c (epilogue_set): Build the epilogue in the
3559 muscle_obstack.
3560 * src/output.h, src/output.c (muscle_obstack): Move to...
3561 * src/muscle_tab.h, src/muscle_tab.h: here.
3562 (muscle_init): Initialize muscle_obstack.
3563 (muscle_free): New.
3564 * src/main.c (main): Call it.
3565
3566 2002-06-14 Akim Demaille <akim@epita.fr>
3567
3568 * src/location.h: New, extracted from...
3569 * src/reader.h: here.
3570 * src/Makefile.am (noinst_HEADERS): Merge into
3571 (bison_SOURCES): this.
3572 Add location.h.
3573 * src/parse-gram.y: Use location_t instead of Bison's.
3574 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
3575 Use location_t instead of ints.
3576
3577 2002-06-14 Akim Demaille <akim@epita.fr>
3578
3579 * data/bison.simple, data/bison.c++: Be sure to restore the
3580 current #line when returning to the skeleton contents after having
3581 exposed the input file's #line.
3582
3583 2002-06-12 Akim Demaille <akim@epita.fr>
3584
3585 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
3586 eager.
3587 * tests/actions.at (Exotic Dollars): New.
3588
3589 2002-06-12 Akim Demaille <akim@epita.fr>
3590
3591 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
3592 ['"/] too eagerly.
3593 * tests/input.at (Torturing the Scanner): New.
3594
3595 2002-06-11 Akim Demaille <akim@epita.fr>
3596
3597 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
3598 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
3599 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
3600 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
3601 * src/reader.c (reader): Use it.
3602
3603 2002-06-11 Akim Demaille <akim@epita.fr>
3604
3605 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
3606 Adjust all callers.
3607 (scanner_last_string_free): New.
3608
3609 2002-06-11 Akim Demaille <akim@epita.fr>
3610
3611 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
3612 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
3613 (last_string, YY_OBS_FREE): New.
3614 Use them when returning an ID.
3615
3616 2002-06-11 Akim Demaille <akim@epita.fr>
3617
3618 Have Bison grammars parsed by a Bison grammar.
3619
3620 * src/reader.c, src/reader.h (prologue_augment): New.
3621 * src/reader.c (copy_definition): Remove.
3622
3623 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
3624 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
3625 (grammar_current_rule_prec_set, grammar_current_rule_check)
3626 (grammar_current_rule_symbol_append)
3627 (grammar_current_rule_action_append): Export.
3628 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
3629 (symbol_list_action_append): Remove.
3630 Hook the routines from reader.
3631 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
3632 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
3633
3634 * src/reader.c (read_declarations): Remove, unused.
3635
3636 * src/parse-gram.y: Handle the epilogue.
3637 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
3638 (grammar_start_symbol_set): this.
3639 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
3640 * src/reader.c (readgram): Remove, unused.
3641 (reader): Adjust to insert eoftoken and axiom where appropriate.
3642
3643 * src/reader.c (copy_dollar): Replace with...
3644 * src/scan-gram.h (handle_dollar): this.
3645 * src/parse-gram.y: Remove `%thong'.
3646
3647 * src/reader.c (copy_at): Replace with...
3648 * src/scan-gram.h (handle_at): this.
3649
3650 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
3651 New.
3652
3653 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
3654 time being.
3655
3656 * src/reader.h, src/reader.c (grammar_rule_end): New.
3657
3658 * src/parse.y (current_type, current_class): New.
3659 Implement `%nterm', `%token' support.
3660 Merge `%term' into `%token'.
3661 (string_as_id): New.
3662 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
3663 type name.
3664
3665 * src/parse-gram.y: Be sure to handle properly the beginning of
3666 rules.
3667
3668 * src/parse-gram.y: Handle %type.
3669 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
3670
3671 * src/parse-gram.y: More directives support.
3672 * src/options.c: No longer handle source directives.
3673
3674 * src/parse-gram.y: Fix %output.
3675
3676 * src/parse-gram.y: Handle %union.
3677 Use the prologue locations.
3678 * src/reader.c (parse_union_decl): Remove.
3679
3680 * src/reader.h, src/reader.c (epilogue_set): New.
3681 * src/parse-gram.y: Use it.
3682
3683 * data/bison.simple, data/bison.c++: b4_stype is now either not
3684 defined, then default to int, or to the contents of %union,
3685 without `union' itself.
3686 Adjust.
3687 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
3688
3689 * src/output.c (actions_output): Don't output braces, as they are
3690 already handled by the scanner.
3691
3692 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
3693 characters to themselves.
3694
3695 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
3696 that the epilogue has a proper #line.
3697
3698 * src/parse-gram.y: Handle precedence/associativity.
3699
3700 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
3701 a terminal.
3702 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
3703 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
3704 at all to define terminals that cannot be emitted.
3705
3706 * src/scan-gram.l: Escape M4 characters.
3707
3708 * src/scan-gram.l: Working properly with escapes in user
3709 strings/characters.
3710
3711 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
3712 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
3713 grammar.
3714 Use more modest sizes, as for the time being the parser does not
3715 release memory, and therefore the process swallows a huge amount
3716 of memory.
3717
3718 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
3719 stricter %token grammar.
3720
3721 * src/symtab.h (associativity): Add `undef_assoc'.
3722 (symbol_precedence_set): Do nothing when passed an undef_assoc.
3723 * src/symtab.c (symbol_check_alias_consistence): Adjust.
3724
3725 * tests/regression.at (Invalid %directive): Remove, as it is now
3726 meaningless.
3727 (Invalid inputs): Adjust to the new error messages.
3728 (Token definitions): The new grammar doesn't allow too many
3729 eccentricities.
3730
3731 * src/lex.h, src/lex.c: Remove.
3732 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
3733 (copy_character, copy_string2, copy_string, copy_identifier)
3734 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
3735 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
3736 (parse_action): Remove.
3737 * po/POTFILES.in: Adjust.
3738
3739 2002-06-11 Akim Demaille <akim@epita.fr>
3740
3741 * src/reader.c (parse_action): Don't store directly into the
3742 rule's action member: return the action as a string.
3743 Don't require `rule_length' as an argument: compute it.
3744 (grammar_current_rule_symbol_append)
3745 (grammar_current_rule_action_append): New, eved out from
3746 (readgram): here.
3747 Remove `action_flag', `rulelength', unused now.
3748
3749 2002-06-11 Akim Demaille <akim@epita.fr>
3750
3751 * src/reader.c (grammar_current_rule_prec_set).
3752 (grammar_current_rule_check): New, eved out from...
3753 (readgram): here.
3754 Remove `xaction', `first_rhs': useless.
3755 * tests/input.at (Type clashes): New.
3756 * tests/existing.at (GNU Cim Grammar): Adjust.
3757
3758 2002-06-11 Akim Demaille <akim@epita.fr>
3759
3760 * src/reader.c (grammar_midrule_action): New, Eved out from
3761 (readgram): here.
3762
3763 2002-06-11 Akim Demaille <akim@epita.fr>
3764
3765 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
3766 New.
3767 (readgram): Use them as replacement of inlined code, crule and
3768 crule1.
3769
3770 2002-06-11 Akim Demaille <akim@epita.fr>
3771
3772 * src/reader.c (grammar_end, grammar_symbol_append): New.
3773 (readgram): Use them.
3774 Make the use of `p' as local as possible.
3775
3776 2002-06-10 Akim Demaille <akim@epita.fr>
3777
3778 GCJ's parser requires the tokens to be defined before the prologue.
3779
3780 * data/bison.simple: Output the token definition before the user's
3781 prologue.
3782 * tests/regression.at (Braces parsing, Duplicate string)
3783 (Mixing %token styles): Check the output from bison.
3784 (Early token definitions): New.
3785
3786 2002-06-10 Akim Demaille <akim@epita.fr>
3787
3788 * src/symtab.c (symbol_user_token_number_set): Don't complain when
3789 assigning twice the same user number to a token, so that we can
3790 use it in...
3791 * src/lex.c (lex): here.
3792 Also use `symbol_class_set' instead of hand written code.
3793 * src/reader.c (parse_assoc_decl): Likewise.
3794
3795 2002-06-10 Akim Demaille <akim@epita.fr>
3796
3797 * src/symtab.c, src/symtab.c (symbol_class_set)
3798 (symbol_user_token_number_set): New.
3799 * src/reader.c (parse_token_decl): Use them.
3800 Use a switch instead of ifs.
3801 Use a single argument.
3802
3803 2002-06-10 Akim Demaille <akim@epita.fr>
3804
3805 Remove `%thong' support as it is undocumented, unused, duplicates
3806 `%token's job, and creates useless e-mail traffic with people who
3807 want to know what it is, why it is undocumented, unused, and
3808 duplicates `%token's job.
3809
3810 * src/reader.c (parse_thong_decl): Remove.
3811 * src/options.c (option_table): Remove "thong".
3812 * src/lex.h (tok_thong): Remove.
3813
3814 2002-06-10 Akim Demaille <akim@epita.fr>
3815
3816 * src/symtab.c, src/symtab.c (symbol_type_set)
3817 (symbol_precedence_set): New.
3818 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
3819 (value_components_used): Remove, unused.
3820
3821 2002-06-09 Akim Demaille <akim@epita.fr>
3822
3823 Move symbols handling code out of the reader.
3824
3825 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
3826 (axiom): Move to...
3827 * src/symtab.h, src/symtab.c: here.
3828
3829 * src/gram.c (start_symbol): Remove: use startsymbol->number.
3830 * src/reader.c (startval): Rename as...
3831 * src/symtab.h, src/symtab.c (startsymbol): this.
3832 * src/reader.c: Adjust.
3833
3834 * src/reader.c (symbol_check_defined, symbol_make_alias)
3835 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
3836 (token_translations_init)
3837 Move to...
3838 * src/symtab.c: here.
3839 * src/reader.c (packsymbols): Move to...
3840 * src/symtab.h, src/symtab.c (symbols_pack): here.
3841 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
3842 argument.
3843
3844 2002-06-03 Akim Demaille <akim@epita.fr>
3845
3846 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
3847 then statements.
3848
3849 2002-06-03 Akim Demaille <akim@epita.fr>
3850
3851 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
3852 structs with non literals.
3853 * src/scan-skel.l: never-interactive.
3854 * src/conflicts.c (enum conflict_resolution_e): No trailing
3855 comma.
3856 * src/getargs.c (usage): Split long literal strings.
3857 Reported by Hans Aberg.
3858
3859 2002-05-28 Akim Demaille <akim@epita.fr>
3860
3861 * data/bison.c++: Use C++ ostreams.
3862 (cdebug_): New member.
3863
3864 2002-05-28 Akim Demaille <akim@epita.fr>
3865
3866 * src/output.c (output_skeleton): Be sure to allocate enough room
3867 for `/' _and_ for `\0' in full_skeleton.
3868
3869 2002-05-28 Akim Demaille <akim@epita.fr>
3870
3871 * data/bison.c++: Catch up with bison.simple:
3872 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3873 and Paul Eggert <eggert@twinsun.com>: `error' handing.
3874 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
3875 and popping traces.
3876
3877 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3878
3879 * src/output.c (output_skeleton): Put an explicit path in front of
3880 the skeleton file name, rather than relying on the -I directory,
3881 to partially alleviate effects of having a skeleton file lying around
3882 in the current directory.
3883
3884 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3885
3886 * src/conflicts.c (log_resolution): Correct typo:
3887 obstack_printf should be obstack_fgrow1.
3888
3889 2002-05-26 Akim Demaille <akim@epita.fr>
3890
3891 * src/state.h (state_t): `solved_conflicts' is a new member.
3892 * src/LR0.c (new_state): Set it to 0.
3893 * src/conflicts.h, src/conflicts.c (print_conflicts)
3894 (free_conflicts, solve_conflicts): Rename as...
3895 (conflicts_print, conflicts_free, conflicts_solve): these.
3896 Adjust callers.
3897 * src/conflicts.c (enum conflict_resolution_e)
3898 (solved_conflicts_obstack): New, used by...
3899 (log_resolution): this.
3900 Adjust to attach the conflict resolution to each state.
3901 Complete the description with the precedence/associativity
3902 information.
3903 (resolve_sr_conflict): Adjust.
3904 * src/print.c (print_state): Output its solved_conflicts.
3905 * tests/conflicts.at (Unresolved SR Conflicts)
3906 (Solved SR Conflicts): Exercise --report=all.
3907
3908 2002-05-26 Akim Demaille <akim@epita.fr>
3909
3910 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
3911 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
3912 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
3913 (token_number_t, item_number_as_token_number)
3914 (token_number_as_item_number, muscle_insert_token_number_table):
3915 Rename as...
3916 (symbol_number_t, item_number_as_symbol_number)
3917 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
3918 these, since it is more appropriate.
3919
3920 2002-05-26 Akim Demaille <akim@epita.fr>
3921
3922 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
3923 `Error:' lines.
3924 * data/bison.simple (yystos) [YYDEBUG]: New.
3925 (yyparse) [YYDEBUG]: Display the symbols which are popped during
3926 error recovery.
3927 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
3928
3929 2002-05-25 Akim Demaille <akim@epita.fr>
3930
3931 * doc/bison.texinfo (Debugging): Split into...
3932 (Tracing): this new section, its former contents, and...
3933 (Understanding): this new section.
3934 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
3935 by...
3936 (report_flag): this.
3937 Adjust all dependencies.
3938 (report_args, report_types, report_argmatch): New.
3939 (usage, getargs): Report/support -r, --report.
3940 * src/options.h
3941 (struct option_table_struct): Rename as..,
3942 (struct option_table_s): this.
3943 Rename the `set_flag' member to `flag' to match with getopt_long's
3944 struct.
3945 * src/options.c (option_table): Split verbose into an entry for
3946 %verbose, and another for --verbose.
3947 Support --report/-r, so remove -r from the obsolete --raw.
3948 * src/print.c: Attach full item sets and lookaheads reports to
3949 report_flag instead of trace_flag.
3950 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
3951
3952 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3953 and Paul Eggert <eggert@twinsun.com>
3954
3955 * data/bison.simple (yyparse): Correct error handling to conform to
3956 POSIX and yacc. Specifically, after syntax error is discovered,
3957 do not reduce further before shifting the error token.
3958 Clean up the code a bit by removing the labels yyerrdefault,
3959 yyerrhandle, yyerrpop.
3960 * NEWS: Document the above.
3961
3962 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3963
3964 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
3965 type; it isn't always big enough, since it doesn't necessarily
3966 include non-terminals.
3967 (yytranslate): Expand definition of yy_token_number_type, so that
3968 the latter can be removed.
3969 (yy_token_number_type): Remove, only one use.
3970 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
3971 don't use TokenNumberType as element type.
3972
3973 * tests/regression.at: Modify expected output to agree with change
3974 to yyr1 and yytranslate.
3975
3976 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
3977
3978 * src/reader.c (parse_action): Use copy_character instead of
3979 obstack_1grow.
3980
3981 2002-05-13 Akim Demaille <akim@epita.fr>
3982
3983 * tests/regression.at (Token definitions): Prototype yylex and
3984 yyerror.
3985
3986 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
3987
3988 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
3989 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
3990 32-bit arithmetic.
3991 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
3992
3993 2002-05-07 Akim Demaille <akim@epita.fr>
3994
3995 * tests/synclines.at: Be sure to prototype yylex and yyerror to
3996 avoid GCC warnings.
3997
3998 2002-05-07 Akim Demaille <akim@epita.fr>
3999
4000 Kill GCC warnings.
4001
4002 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
4003 over the RHS of each rule.
4004 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
4005 * src/state.h (state_t): Member `nitems' is unsigned short.
4006 * src/LR0.c (get_state): Adjust.
4007 * src/reader.c (packgram): Likewise.
4008 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
4009 `Type'.
4010 (muscle_insert_int_table): Remove, unused.
4011 (prepare_rules): Remove `max'.
4012
4013 2002-05-06 Akim Demaille <akim@epita.fr>
4014
4015 * src/closure.c (print_firsts): Display of the symbol tags.
4016 (bitmatrix_print): Move to...
4017 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
4018 here.
4019 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
4020
4021 2002-05-06 Akim Demaille <akim@epita.fr>
4022
4023 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
4024 hash_do_for_each.
4025
4026 2002-05-06 Akim Demaille <akim@epita.fr>
4027
4028 * src/LR0.c (new_state, get_state): Instead of using the global
4029 `kernel_size' and `kernel_base', have two new arguments:
4030 `core_size' and `core'.
4031 Adjust callers.
4032
4033 2002-05-06 Akim Demaille <akim@epita.fr>
4034
4035 * src/reader.c (packgram): No longer end `ritem' with a 0
4036 sentinel: it is not used.
4037
4038 2002-05-05 Akim Demaille <akim@epita.fr>
4039
4040 New experimental feature: display the lookaheads in the report and
4041 graph.
4042
4043 * src/print (print_core): When --trace-flag, display the rules
4044 lookaheads.
4045 * src/print_graph.c (print_core): Likewise.
4046 Swap the arguments.
4047 Adjust caller.
4048
4049 2002-05-05 Akim Demaille <akim@epita.fr>
4050
4051 * tests/torture.at (Many lookaheads): New test.
4052
4053 2002-05-05 Akim Demaille <akim@epita.fr>
4054
4055 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
4056 (GENERATE_MUSCLE_INSERT_TABLE): this.
4057 (output_int_table, output_unsigned_int_table, output_short_table)
4058 (output_token_number_table, output_item_number_table): Replace with...
4059 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
4060 (muscle_insert_short_table, muscle_insert_token_number_table)
4061 (muscle_insert_item_number_table): these.
4062 Adjust all callers.
4063 (prepare_tokens): Don't free `translations', since...
4064 * src/reader.h, src/reader.c (grammar_free): do it.
4065 Move to...
4066 * src/gram.h, src/gram.c (grammar_free): here.
4067 * data/bison.simple, data/bison.c++: b4_token_number_max is now
4068 b4_translate_max.
4069
4070 2002-05-05 Akim Demaille <akim@epita.fr>
4071
4072 * src/output.c (output_unsigned_int_table): New.
4073 (prepare_rules): `i' is unsigned.
4074 `prhs', `rline', `r2' are unsigned int.
4075 Rename muscle `rhs_number_max' as `rhs_max'.
4076 Output muscles `prhs_max', `rline_max', and `r2_max'.
4077 Free rline and r1.
4078 * data/bison.simple, data/bison.c++: Adjust to use these muscles
4079 to compute types instead of constant types.
4080 * tests/regression.at (Web2c Actions): Adjust.
4081
4082 2002-05-04 Akim Demaille <akim@epita.fr>
4083
4084 * src/symtab.h (SALIAS, SUNDEF): Rename as...
4085 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
4086 Adjust dependencies.
4087 * src/output.c (token_definitions_output): Be sure not to output a
4088 `#define 'a'' when fed with `%token 'a' "a"'.
4089 * tests/regression.at (Token definitions): New.
4090
4091 2002-05-03 Paul Eggert <eggert@twinsun.com>
4092
4093 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
4094 for K&R C.
4095
4096 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
4097
4098 * Makefile.am (SUBDIRS): Remove intl.
4099 (EXTRA_DIST): Add config/config.rpath.
4100
4101 2002-05-03 Akim Demaille <akim@epita.fr>
4102
4103 * data/bison.simple (m4_if): Don't output empty enums.
4104 And actually, output valid enum definitions :(.
4105
4106 2002-05-03 Akim Demaille <akim@epita.fr>
4107
4108 * configure.bat: Remove, completely obsolete.
4109 * Makefile.am (EXTRA_DIST): Adjust.
4110 Don't distribute config.rpath...
4111 * config/Makefile.am (EXTRA_DIST): Do it.
4112
4113 2002-05-03 Akim Demaille <akim@epita.fr>
4114
4115 * configure.in (GETTEXT_VERSION): New.
4116 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
4117
4118 2002-05-03 Akim Demaille <akim@epita.fr>
4119
4120 * data/bison.simple (b4_token_enum): New.
4121 (b4_token_defines): Use it to output tokens both as #define and
4122 enums.
4123 Suggested by Paul Eggert.
4124 * src/output.c (token_definitions_output): Don't output spurious
4125 white spaces.
4126
4127 2002-05-03 Akim Demaille <akim@epita.fr>
4128
4129 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
4130
4131 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
4132
4133 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
4134 Update the stack class, give a try to deque as the default container.
4135
4136 2002-05-02 Akim Demaille <akim@epita.fr>
4137
4138 * data/bison.simple (yyparse): Do not implement @$ = @1.
4139 (YYLLOC_DEFAULT): Adjust to do it.
4140 * doc/bison.texinfo (Location Default Action): Fix.
4141
4142 2002-05-02 Akim Demaille <akim@epita.fr>
4143
4144 * src/reader.c (parse_braces): Merge into...
4145 (parse_action): this.
4146
4147 2002-05-02 Akim Demaille <akim@epita.fr>
4148
4149 * configure.in (ALL_LINGUAS): Remove.
4150 * po/LINGUAS, hr.po: New.
4151
4152 2002-05-02 Akim Demaille <akim@epita.fr>
4153
4154 Remove the so called hairy (semantic) parsers.
4155
4156 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
4157 * src/gram.h, src/gram.c (semantic_parser): Remove.
4158 (rule_t): Remove the guard and guard_line members.
4159 * src/lex.h (token_t): remove tok_guard.
4160 * src/options.c (option_table): Remove %guard and %semantic_parser
4161 support.
4162 * src/output.c, src/output.h (guards_output): Remove.
4163 (prepare): Adjust.
4164 (token_definitions_output): Don't output the `T'
4165 tokens (???).
4166 (output_skeleton): Don't output the guards.
4167 * src/files.c, src/files.c (attrsfile): Remove.
4168 * src/reader.c (symbol_list): Remove the guard and guard_line
4169 members.
4170 Adjust dependencies.
4171 (parse_guard): Remove.
4172 * data/bison.hairy: Remove.
4173 * doc/bison.texinfo (Environment Variables): Remove occurrences of
4174 BISON_HAIRY.
4175
4176 2002-05-02 Akim Demaille <akim@epita.fr>
4177
4178 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
4179 (parse_guard): Rename the formal argument `stack_offset' as
4180 `rule_length', which is more readable.
4181 Adjust callers.
4182 (copy_at, copy_dollar): Instead of outputting the hard coded
4183 values of $$, $n and so forth, output invocation to b4_lhs_value,
4184 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
4185 Note: this patch partially drops `semantic-parser' support: it
4186 always does `rule_length - n', where semantic parsers ought to
4187 always use `-n'.
4188 * data/bison.simple, data/bison.c++ (b4_lhs_value)
4189 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
4190
4191 2002-05-02 Akim Demaille <akim@epita.fr>
4192
4193 * configure.in (AC_INIT): Bump to 1.49b.
4194 (AM_INIT_AUTOMAKE): Short invocation.
4195
4196 2002-05-02 Akim Demaille <akim@epita.fr>
4197
4198 Version 1.49a.
4199
4200 2002-05-01 Akim Demaille <akim@epita.fr>
4201
4202 * src/skeleton.h: Remove.
4203
4204 2002-05-01 Akim Demaille <akim@epita.fr>
4205
4206 * src/skeleton.h: Fix the #endif.
4207 Reported by Magnus Fromreide.
4208
4209 2002-04-26 Paul Eggert <eggert@twinsun.com>
4210
4211 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
4212 Define if we define YYSTYPE and YYLTYPE, respectively.
4213 (YYCOPY): Fix [] quoting problem in the non-GCC case.
4214
4215 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
4216
4217 * src/scan-skel.l: Postprocess quadrigraphs.
4218
4219 * src/reader.c (copy_character): New function, used to output
4220 single characters while replacing `[' and `]' with quadrigraphs, to
4221 avoid troubles with M4 quotes.
4222 (copy_comment): Output characters with copy_character.
4223 (read_additionnal_code): Likewise.
4224 (copy_string2): Likewise.
4225 (copy_definition): Likewise.
4226
4227 * tests/calc.at: Exercise M4 quoting.
4228
4229 2002-04-25 Akim Demaille <akim@epita.fr>
4230
4231 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
4232 between `!' and the command.
4233 Reported by Paul Eggert.
4234
4235 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
4236
4237 * tests/calc.at: Exercise prologue splitting.
4238
4239 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
4240 `b4_post_prologue' instead of `b4_prologue'.
4241
4242 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
4243 muscles.
4244 (output): Free pre_prologue_obstack and post_prologue_obstack.
4245 * src/files.h, src/files.c (attrs_obstack): Remove.
4246 (pre_prologue_obstack, post_prologue_obstack): New.
4247 * src/reader.c (copy_definition): Add a parameter to specify the
4248 obstack to fill, instead of using attrs_obstack unconditionally.
4249 (read_declarations): Pass pre_prologue_obstack to copy_definition if
4250 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
4251
4252 2002-04-23 Paul Eggert <eggert@twinsun.com>
4253
4254 * data/bison.simple: Remove unnecessary commentary and white
4255 space differences from 1_29-branch.
4256 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
4257
4258 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
4259 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
4260 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
4261 constructors or destructors.
4262
4263 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
4264
4265 2002-04-23 Akim Demaille <akim@epita.fr>
4266
4267 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
4268 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
4269 location with columns.
4270 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
4271 All reported by Paul Eggert.
4272
4273 2002-04-22 Akim Demaille <akim@epita.fr>
4274
4275 * src/reduce.c (dump_grammar): Move to...
4276 * src/gram.h, src/gram.c (grammar_dump): here.
4277 Be sure to separate long item numbers.
4278 Don't read the members of a rule's prec if its nil.
4279
4280 2002-04-22 Akim Demaille <akim@epita.fr>
4281
4282 * src/output.c (table_size, table_grow): New.
4283 (MAXTABLE): Remove, replace uses with table_size.
4284 (pack_vector): Instead of dying when the table is too big, grow it.
4285
4286 2002-04-22 Akim Demaille <akim@epita.fr>
4287
4288 * data/bison.simple (yyr1): Its type is that of a token number.
4289 * data/bison.c++ (r1_): Likewise.
4290 * tests/regression.at (Web2c Actions): Adjust.
4291
4292 2002-04-22 Akim Demaille <akim@epita.fr>
4293
4294 * src/reader.c (token_translations_init): 256 is now the default
4295 value for the error token, i.e., it will be assigned another
4296 number if the user assigned 256 to one of her tokens.
4297 (reader): Don't force 256 to error.
4298 * doc/bison.texinfo (Symbols): Adjust.
4299 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
4300 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
4301 etc. instead of 10, 20, 30 (which was used to `jump' over error
4302 (256) and undefined (2)).
4303
4304 2002-04-22 Akim Demaille <akim@epita.fr>
4305
4306 Propagate more token_number_t.
4307
4308 * src/gram.h (token_number_as_item_number)
4309 (item_number_as_token_number): New.
4310 * src/output.c (GENERATE_OUTPUT_TABLE): New.
4311 Use it to create output_item_number_table and
4312 output_token_number_table.
4313 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
4314 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
4315 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
4316 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
4317
4318 2002-04-22 Akim Demaille <akim@epita.fr>
4319
4320 * src/output.h, src/output.c (get_lines_number): Remove.
4321
4322 2002-04-19 Akim Demaille <akim@epita.fr>
4323
4324 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
4325 as Lex/Flex'.
4326 (Debugging): More details about enabling the debugging features.
4327 (Table of Symbols): Describe $$, $n, @$, and @n.
4328 Suggested by Tim Josling.
4329
4330 2002-04-19 Akim Demaille <akim@epita.fr>
4331
4332 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
4333
4334 2002-04-10 Akim Demaille <akim@epita.fr>
4335
4336 * src/system.h: Rely on HAVE_LIMITS_H.
4337 Suggested by Paul Eggert.
4338
4339 2002-04-09 Akim Demaille <akim@epita.fr>
4340
4341 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
4342 full stderr, and strip it according to the bison options, instead
4343 of composing the error message from different bits.
4344 This makes it easier to check for several error messages.
4345 Adjust all the invocations.
4346 Add an invocation exercising the error token.
4347 Add an invocation demonstrating a stupid error message.
4348 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
4349 Adjust the tests.
4350 Error message are for stderr, not stdout.
4351
4352 2002-04-09 Akim Demaille <akim@epita.fr>
4353
4354 * src/gram.h, src/gram.c (error_token_number): Remove, use
4355 errtoken->number.
4356 * src/reader.c (reader): Don't specify the user token number (2)
4357 for $undefined, as it uselessly prevents using it.
4358 * src/gram.h (token_number_t): Move to...
4359 * src/symtab.h: here.
4360 (state_t.number): Is a token_number_t.
4361 * src/print.c, src/reader.c: Use undeftoken->number instead of
4362 hard coded 2.
4363 (Even though this 2 is not the same as above: the number of the
4364 undeftoken remains being 2, it is its user token number which
4365 might not be 2).
4366 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
4367 `user_token_number_max'.
4368 Output `undef_token_number'.
4369 * data/bison.simple, data/bison.c++: Use them.
4370 Be sure to map invalid yylex return values to
4371 `undef_token_number'. This saves us from gratuitous SEGV.
4372
4373 * tests/conflicts.at (Solved SR Conflicts)
4374 (Unresolved SR Conflicts): Adjust.
4375 * tests/regression.at (Web2c Actions): Adjust.
4376
4377 2002-04-08 Akim Demaille <akim@epita.fr>
4378
4379 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
4380 Adding #line.
4381 Remove the duplicate `typedefs'.
4382 (RhsNumberType): Fix the declaration and various other typos.
4383 Use __ofile__.
4384 * data/bison.simple: Use __ofile__.
4385 * src/scan-skel.l: Handle __ofile__.
4386
4387 2002-04-08 Akim Demaille <akim@epita.fr>
4388
4389 * src/gram.h (item_number_t): New, the type of item numbers in
4390 RITEM. Note that it must be able to code symbol numbers as
4391 positive number, and the negation of rule numbers as negative
4392 numbers.
4393 Adjust all dependencies (pretty many).
4394 * src/reduce.c (rule): Remove this `short *' pointer: use
4395 item_number_t.
4396 * src/system.h (MINSHORT, MAXSHORT): Remove.
4397 Include `limits.h'.
4398 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
4399 (shortcpy): Remove.
4400 (MAXTABLE): Move to...
4401 * src/output.c (MAXTABLE): here.
4402 (prepare_rules): Use output_int_table to output rhs.
4403 * data/bison.simple, data/bison.c++: Adjust.
4404 * tests/torture.at (Big triangle): Move the limit from 254 to
4405 500.
4406 * tests/regression.at (Web2c Actions): Ajust.
4407
4408 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
4409 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
4410 passes, but produces negative #line number, once fixed, GCC is
4411 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
4412 C), it passes.
4413 * src/state.h (state_h): Code input lines on ints, not shorts.
4414
4415 2002-04-08 Akim Demaille <akim@epita.fr>
4416
4417 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
4418 and then the grammar.
4419
4420 2002-04-08 Akim Demaille <akim@epita.fr>
4421
4422 * src/system.h: No longer using strndup.
4423
4424 2002-04-07 Akim Demaille <akim@epita.fr>
4425
4426 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
4427 * src/output.c (output_table_data): Return the longest number.
4428 (prepare_tokens): Output `token_number_max').
4429 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
4430 New.
4431 Use them to define yy_token_number_type/TokenNumberType.
4432 Use this type for yytranslate.
4433 * tests/torture.at (Big triangle): Push the limit from 124 to
4434 253.
4435 * tests/regression.at (Web2c Actions): Adjust.
4436
4437 2002-04-07 Akim Demaille <akim@epita.fr>
4438
4439 * tests/torture.at (Big triangle): New.
4440 (GNU AWK Grammar, GNU Cim Grammar): Move to...
4441 * tests/existing.at: here.
4442
4443 2002-04-07 Akim Demaille <akim@epita.fr>
4444
4445 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
4446 nritems.
4447 Adjust dependencies.
4448
4449 2002-04-07 Akim Demaille <akim@epita.fr>
4450
4451 * src/reader.c: Normalize increments to prefix form.
4452
4453 2002-04-07 Akim Demaille <akim@epita.fr>
4454
4455 * src/reader.c, symtab.c: Remove debugging code.
4456
4457 2002-04-07 Akim Demaille <akim@epita.fr>
4458
4459 Rename all the `bucket's as `symbol_t'.
4460
4461 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
4462 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
4463 * src/symtab.c, src/symtab.h (bucket): Rename as...
4464 (symbol_t): this.
4465 (symbol_list_new, bucket_check_defined, bucket_make_alias)
4466 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
4467 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
4468 (buckets_new, buckets_free, buckets_do): Rename as...
4469 (symbol_list_new, symbol_check_defined, symbol_make_alias)
4470 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
4471 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
4472 (symbols_new, symbols_free, symbols_do): these.
4473
4474 2002-04-07 Akim Demaille <akim@epita.fr>
4475
4476 Use lib/hash for the symbol table.
4477
4478 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
4479 EOF.
4480 * src/lex.c (lex): Set the `number' member of new terminals.
4481 * src/reader.c (bucket_check_defined, bucket_make_alias)
4482 (bucket_check_alias_consistence, bucket_translation): New.
4483 (reader, grammar_free, readgram, token_translations_init)
4484 (packsymbols): Adjust.
4485 (reader): Number the predefined tokens.
4486 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
4487 for predefined tokens.
4488 * src/symtab.h (bucket): Remove all the hash table related
4489 members.
4490 * src/symtab.c (symtab): Replace by...
4491 (bucket_table): this.
4492 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
4493 (buckets_new, buckets_do): New.
4494
4495 2002-04-07 Akim Demaille <akim@epita.fr>
4496
4497 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
4498 (start_symbol, max_user_token_number, semantic_parser)
4499 (error_token_number): Initialize.
4500 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
4501 Initialize.
4502 (reader): Don't.
4503 (errtoken, eoftoken, undeftoken, axiom): Extern.
4504
4505 2002-04-07 Akim Demaille <akim@epita.fr>
4506
4507 * src/gram.h (rule_s): prec and precsym are now pointers
4508 to the bucket giving the priority/associativity.
4509 Member `associativity' removed: useless.
4510 * src/reduce.c, src/conflicts.c: Adjust.
4511
4512 2002-04-07 Akim Demaille <akim@epita.fr>
4513
4514 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
4515 Properly escape the symbols' TAG when outputting them.
4516
4517 2002-04-07 Akim Demaille <akim@epita.fr>
4518
4519 * src/lalr.h (LA): Is a bitsetv, not bitset*.
4520
4521 2002-04-07 Akim Demaille <akim@epita.fr>
4522
4523 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
4524 (LArule): this, which is an array to rule_t*.
4525 * src/print.c, src/conflicts.c: Adjust.
4526
4527 2002-04-07 Akim Demaille <akim@epita.fr>
4528
4529 * src/gram.h (rule_t): Rename `number' as `user_number'.
4530 `number' is a new member.
4531 Adjust dependencies.
4532 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
4533
4534 2002-04-07 Akim Demaille <akim@epita.fr>
4535
4536 As a result of the previous patch, it is no longer needed
4537 to reorder ritem itself.
4538
4539 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
4540
4541 2002-04-07 Akim Demaille <akim@epita.fr>
4542
4543 Be sure never to walk through RITEMS, but use only data related to
4544 the rules themselves. RITEMS should be banished.
4545
4546 * src/output.c (output_token_translations): Rename as...
4547 (prepare_tokens): this.
4548 In addition to `translate', prepare the muscles `tname' and
4549 `toknum', which were handled by...
4550 (output_rule_data): this.
4551 Remove, and move the remainder of its outputs into...
4552 (prepare_rules): this new routines, which also merges content from
4553 (output_gram): this.
4554 (prepare_rules): Be sure never to walk through RITEMS.
4555 (output_stos): Rename as...
4556 (prepare_stos): this.
4557 (output): Always invoke prepare_states, after all, just don't use it
4558 in the output if you don't need it.
4559
4560 2002-04-07 Akim Demaille <akim@epita.fr>
4561
4562 * src/LR0.c (new_state): Display `nstates' as the name of the
4563 newly created state.
4564 Adjust to initialize first_state and last_state if needed.
4565 Be sure to distinguish the initial from the final state.
4566 (new_states): Create the itemset of the initial state, and use
4567 new_state.
4568 * src/closure.c (closure): Now that the initial state has its
4569 items properly set, there is no need for a special case when
4570 creating `ruleset'.
4571
4572 As a result, now the rule 0, reducing to $axiom, is visible in the
4573 outputs. Adjust the test suite.
4574
4575 * tests/conflicts.at (Solved SR Conflicts)
4576 (Unresolved SR Conflicts): Adjust.
4577 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
4578 * tests/conflicts.at (S/R in initial): New.
4579
4580 2002-04-07 Akim Demaille <akim@epita.fr>
4581
4582 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
4583 the RHS of the rules.
4584 * src/output.c (output_gram): Likewise.
4585
4586 2002-04-07 Akim Demaille <akim@epita.fr>
4587
4588 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
4589 bucket.
4590 Adjust all dependencies.
4591 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
4592 `number' of the buckets too.
4593 * src/gram.h: Include `symtab.h'.
4594 (associativity): Move to...
4595 * src/symtab.h: here.
4596 No longer include `gram.h'.
4597
4598 2002-04-07 Akim Demaille <akim@epita.fr>
4599
4600 * src/gram.h, src/gram.c (rules_rhs_length): New.
4601 (ritem_longest_rhs): Use it.
4602 * src/gram.h (rule_t): `number' is a new member.
4603 * src/reader.c (packgram): Set it.
4604 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
4605 the end of `rules', and count them out of `nrules'.
4606 (reduce_output, dump_grammar): Adjust.
4607 * src/print.c (print_grammar): It is no longer needed to check for
4608 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
4609 * tests/reduce.at (Reduced Automaton): New test.
4610
4611 2002-04-07 Akim Demaille <akim@epita.fr>
4612
4613 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
4614 lacking `+ 1' to nrules, Bison reported as useless a token if it
4615 was used solely to set the precedence of the last rule...
4616
4617 2002-04-07 Akim Demaille <akim@epita.fr>
4618
4619 * data/bison.c++, data/bison.simple: Don't output the current file
4620 name in #line, to avoid useless diffs between two identical
4621 outputs under different names.
4622
4623 2002-04-07 Akim Demaille <akim@epita.fr>
4624
4625 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
4626 Normalize loops to using `< nrules + 1', not `<= nrules'.
4627
4628 2002-04-07 Akim Demaille <akim@epita.fr>
4629
4630 * TODO: Update.
4631
4632 2002-04-07 Akim Demaille <akim@epita.fr>
4633
4634 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
4635 bucket.value as bucket.number.
4636
4637 2002-04-07 Akim Demaille <akim@epita.fr>
4638
4639 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
4640 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
4641 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
4642 RHS, instead of being an index in RITEMS.
4643
4644 2002-04-04 Paul Eggert <eggert@twinsun.com>
4645
4646 * doc/bison.texinfo: Update copyright date.
4647 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
4648 (Symbols): Warn about running Bison in one character set,
4649 but compiling and/or running in an incompatible one.
4650 Warn about character code 256, too.
4651
4652 2002-04-03 Paul Eggert <eggert@twinsun.com>
4653
4654 * src/bison.data (YYSTACK_ALLOC): Depend on whether
4655 YYERROR_VERBOSE is nonzero, not whether it is defined.
4656
4657 Merge changes from bison-1_29-branch.
4658
4659 2002-03-20 Paul Eggert <eggert@twinsun.com>
4660
4661 Merge fixes from Debian bison_1.34-1.diff.
4662
4663 * configure.in (AC_PREREQ): 2.53.
4664
4665 2002-03-20 Akim Demaille <akim@epita.fr>
4666
4667 * src/conflicts.c (log_resolution): Argument `resolution' is const.
4668
4669 2002-03-19 Paul Eggert <eggert@twinsun.com>
4670
4671 * src/bison.simple (YYCOPY): New macro.
4672 (YYSTACK_RELOCATE): Use it.
4673 Remove Type arg; no longer needed. All callers changed.
4674 (yymemcpy): Remove; no longer needed.
4675
4676 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
4677 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
4678
4679 2002-03-19 Akim Demaille <akim@epita.fr>
4680
4681 Test and fix the #line outputs.
4682
4683 * tests/atlocal.at (GCC): New.
4684 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
4685 (Prologue synch line, ,%union synch line, Postprologue synch line)
4686 (Action synch line, Epilogue synch line): New tests.
4687 * src/reader.c (parse_union_decl): Define the muscle stype_line.
4688 * data/bison.simple, data/bison.c++: Use it.
4689
4690 2002-03-19 Akim Demaille <akim@epita.fr>
4691
4692 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
4693 (Solved SR Conflicts, %expect not enough, %expect right)
4694 (%expect too much): Move to...
4695 * tests/conflicts.at: this new file.
4696
4697 2002-03-19 Akim Demaille <akim@epita.fr>
4698
4699 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
4700 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
4701 that we can move to enums for instance.
4702 * src/output.c (token_definitions_output): Output a list of
4703 `token-name, token-number' instead of the #define.
4704 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
4705
4706 2002-03-14 Akim Demaille <akim@epita.fr>
4707
4708 Use Gettext 0.11.1.
4709
4710 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
4711
4712 * data/bison.c++: Make the user able to add members to the generated
4713 parser by subclassing.
4714
4715 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
4716
4717 * src/reader.c (read_additionnal_code): `c' should be an integer, not
4718 a character.
4719 Reported by Nicolas Tisserand and Nicolas Burrus.
4720
4721 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
4722
4723 * src/reader.c: Warn about lacking semi-colons, do not complain.
4724
4725 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
4726
4727 * data/bison.c++: Remove a debug line.
4728
4729 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
4730
4731 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
4732 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
4733 provide a default implementation.
4734
4735 2002-03-04 Akim Demaille <akim@epita.fr>
4736
4737 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
4738 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
4739 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
4740 * tests/semantic.at (Parsing Guards): Similarly.
4741 * src/reader.at (readgram): Complain if the last rule is not ended
4742 with a semi-colon.
4743
4744 2002-03-04 Akim Demaille <akim@epita.fr>
4745
4746 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
4747 * src/closure.c: here.
4748 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
4749 RTC.
4750 * src/warshall.h, src/warshall.c: Remove.
4751 * tests/sets.at (Broken Closure): Adjust.
4752
4753 2002-03-04 Akim Demaille <akim@epita.fr>
4754
4755 * src/output.c (output_skeleton): tempdir is const.
4756 bytes_read is unused.
4757
4758 2002-03-04 Akim Demaille <akim@epita.fr>
4759
4760 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
4761 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
4762 Update.
4763 From Michael Hayes.
4764
4765 2002-03-04 Akim Demaille <akim@epita.fr>
4766
4767 * src/closure.c (closure): `r' is unused.
4768
4769 2002-03-04 Akim Demaille <akim@epita.fr>
4770
4771 * tests/sets.at (Broken Closure): Add the ending `;'.
4772 * src/reader.at (readgram): Complain if a rule is not ended with a
4773 semi-colon.
4774
4775 2002-03-04 Akim Demaille <akim@epita.fr>
4776
4777 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
4778 (count_sr_conflicts): Use bitset_count.
4779 * src/reduce.c (inaccessable_symbols): Ditto.
4780 (bits_size): Remove.
4781 * src/warshall.h, src/warshall.c: Convert to bitsetv.
4782
4783 2002-03-04 Akim Demaille <akim@epita.fr>
4784
4785 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
4786 * src/reduce.c: Remove the `bitset_zero's following the
4787 `bitset_create's, as now it is performed by the latter.
4788
4789 2002-03-04 Akim Demaille <akim@epita.fr>
4790
4791 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
4792 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
4793 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
4794 latest sources from Michael.
4795
4796 2002-03-04 Akim Demaille <akim@epita.fr>
4797
4798 * src/output.c (output): Don't free the grammar.
4799 * src/reader.c (grammar_free): New.
4800 * src/main.c (main): Call it and don't free symtab here.
4801
4802 2002-03-04 Akim Demaille <akim@epita.fr>
4803
4804 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
4805 before returning.
4806 Reported by Benoit Perrot.
4807
4808 2002-03-04 Akim Demaille <akim@epita.fr>
4809
4810 Use bitset operations when possible, not loops over bits.
4811
4812 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
4813 bitset_or.
4814 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
4815 * src/reduce.c (useless_nonterminals): Formatting changes.
4816 * src/warshall.c (TC): Use bitset_or.
4817
4818 2002-03-04 Akim Demaille <akim@epita.fr>
4819
4820 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
4821 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
4822 Ditto.
4823
4824 2002-03-04 Akim Demaille <akim@epita.fr>
4825
4826 * src/lalr.c (F): Now a bitset*.
4827 Adjust all dependencies.
4828
4829 2002-03-04 Akim Demaille <akim@epita.fr>
4830
4831 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
4832 Adjust all dependencies.
4833
4834 2002-03-04 Akim Demaille <akim@epita.fr>
4835
4836 * src/L0.c, src/LR0.h (nstates): Be size_t.
4837 Adjust comparisons (signed vs unsigned).
4838 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
4839 bitset*.
4840 Adjust all dependencies.
4841
4842 2002-03-04 Akim Demaille <akim@epita.fr>
4843
4844 * src/closure.c (firsts): Now, also a bitset.
4845 Adjust all dependencies.
4846 (varsetsize): Remove, now unused.
4847 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
4848
4849 2002-03-04 Akim Demaille <akim@epita.fr>
4850
4851 * src/print.c: Convert to use bitset.h, not hand coded iterations
4852 over ints.
4853
4854 2002-03-04 Akim Demaille <akim@epita.fr>
4855
4856 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
4857
4858 2002-03-04 Akim Demaille <akim@epita.fr>
4859
4860 * src/closure.c (ruleset): Be a bitset.
4861 (rulesetsize): Remove.
4862
4863 2002-03-04 Akim Demaille <akim@epita.fr>
4864
4865 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
4866 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
4867 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
4868 * src/closure.c (fderives): Be an array of bitsets.
4869
4870 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
4871
4872 * data/bison.c++: Merge the two generated headers. Insert a copyright
4873 notice in each output file.
4874
4875 2002-02-28 Akim Demaille <akim@epita.fr>
4876
4877 * data/bison.c++: Copy the prologue of bison.simple to fetch
4878 useful M4 definitions, such as b4_header_guard.
4879
4880 2002-02-25 Akim Demaille <akim@epita.fr>
4881
4882 * src/getargs.c (version): Give the name of the authors, and use a
4883 translator friendly scheme for the bgr
4884 copyright notice.
4885
4886 2002-02-25 Akim Demaille <akim@epita.fr>
4887
4888 * src/output.c (header_output): Remove, now handled completely via
4889 M4.
4890
4891 2002-02-25 Akim Demaille <akim@epita.fr>
4892
4893 * m4/m4.m4: New, from CVS Autoconf.
4894 * configure.in: Invoke it.
4895 * src/output.c (output_skeleton): Use its result instead of the
4896 hard coded name.
4897
4898 2002-02-25 Akim Demaille <akim@epita.fr>
4899
4900 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
4901 Fileutils 4.1.5.
4902 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
4903 * src/output.c (output_skeleton): Use mkstemp to create a real
4904 temporary file.
4905 Move the filling of `skeleton' and its muscle to...
4906 (prepare): here.
4907 (output): Move the definition of the prologue muscle to...
4908 (prepare): here.
4909 * src/system.h (DEFAULT_TMPDIR): New.
4910
4911 2002-02-14 Paul Eggert <eggert@twinsun.com>
4912
4913 Remove the support for C++ namespace cleanliness; it was
4914 causing more problems than it was curing, since it didn't work
4915 properly on some nonstandard C++ compilers. This can wait
4916 for a proper C++ parser.
4917
4918 * NEWS: Document this.
4919 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
4920 of C++, as it's treated like C now.
4921 * src/bison.simple (YYSTD): Remove.
4922 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
4923 Treat C++ just like Standard C instead of trying to support
4924 namespace cleanliness.
4925
4926 2002-02-14 Akim Demaille <akim@epita.fr>
4927
4928 * tests/regression.at (else): Adjust to Andreas' change.
4929
4930 2002-02-14 Akim Demaille <akim@epita.fr>
4931
4932 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
4933
4934 2002-02-13 Andreas Schwab <schwab@suse.de>
4935
4936 * src/output.c (output_rule_data): Don't output NULL, it might
4937 not be defined yet.
4938
4939 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
4940
4941 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
4942 (Copyright notice): Update.
4943
4944 2002-02-11 Akim Demaille <akim@epita.fr>
4945
4946 * tests/regression.at (%nonassoc and eof): Don't include
4947 nonportable headers.
4948
4949 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
4950
4951 * data/bison.c++: Correct error recovery. Make the user able to
4952 initialize the starting location.
4953
4954 2002-02-07 Akim Demaille <akim@epita.fr>
4955
4956 * tests/input.at: New.
4957
4958 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
4959
4960 * data/bison.c++: Replace some direct m4 expansions by constants. Be
4961 more consistent when naming methods and variables. Put preprocessor
4962 directives around tables only needed for debugging.
4963
4964 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
4965
4966 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
4967 C++ parsers.
4968 (yy::b4_name::parse): Use print_.
4969
4970 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
4971
4972 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
4973
4974 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
4975
4976 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
4977 C++ parsers.
4978 (yy::b4_name::parse): Build verbose error messages, and use error_.
4979
4980 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
4981
4982 * data/bison.c++: Fix m4 quoting in comments.
4983
4984 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
4985
4986 * data/bison.c++: Adjust the parser code. Fix some muscles that were
4987 not expanded by m4.
4988
4989 2002-02-05 Akim Demaille <akim@epita.fr>
4990
4991 * data/bison.c++: Adjust to the M4 back end.
4992 More is certainly needed.
4993
4994 2002-02-05 Akim Demaille <akim@epita.fr>
4995
4996 Give a try to M4 as a back end.
4997
4998 * lib/readpipe.c: New, from wdiff.
4999 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
5000 BISON_HAIRY.
5001 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
5002 specific values. Now it is m4 that performs the lookup.
5003 * src/parse-skel.y: Remove.
5004 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
5005 * src/output.c (actions_output, guards_output)
5006 (token_definitions_output): No longer keeps track of the output
5007 line number, hence remove the second argument.
5008 (guards_output): Check against the guard member of a rule, not the
5009 action member.
5010 Adjust callers.
5011 (output_skeleton): Don't look for the skeleton location, let m4 do
5012 that.
5013 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
5014 file will be used.
5015 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
5016 (prepare): Given that for the time being changesyntax is not
5017 usable in M4, rename the muscles using `-' to `_'.
5018 Define `defines_flag', `output_parser_name' and `output_header_name'.
5019 * src/output.h (actions_output, guards_output)
5020 (token_definitions_output): Adjust prototypes.
5021 * src/scan-skel.l: Instead of scanning the skeletons, it now
5022 processes the output of m4: `__oline__' and `#output'.
5023 * data/bison.simple: Adjust to be used by M4(sugar).
5024 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
5025 to date.
5026 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
5027 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
5028 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
5029 shamelessly stolen from CVS Autoconf.
5030
5031 2002-02-05 Akim Demaille <akim@epita.fr>
5032
5033 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
5034 * configure.in: Check for the declarations of free and malloc.
5035 * src/muscle_tab.c: Adjust.
5036
5037 2002-02-05 Akim Demaille <akim@epita.fr>
5038
5039 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
5040 which have no values.
5041
5042 2002-02-05 Akim Demaille <akim@epita.fr>
5043
5044 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
5045 * data/: here.
5046
5047 2002-01-29 Paul Eggert <eggert@twinsun.com>
5048
5049 * src/bison.simple (YYSIZE_T): Do not define merely because
5050 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
5051 On some platforms, <alloca.h> does not declare YYSTD (size_t).
5052
5053 2002-01-27 Akim Demaille <akim@epita.fr>
5054
5055 Fix `%nonassoc and eof'.
5056
5057 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
5058 which were not properly copied! Replace
5059 memcpy (res->errs, src->errs, src->nerrs);
5060 with
5061 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
5062 !!!
5063 * tests/regression.at (%nonassoc and eof): Adjust to newest
5064 Autotest: `.' is not in the PATH.
5065
5066 2002-01-27 Akim Demaille <akim@epita.fr>
5067
5068 * tests/sets.at (AT_EXTRACT_SETS): New.
5069 (Nullable): Use it.
5070 (Firsts): New.
5071
5072 2002-01-26 Akim Demaille <akim@epita.fr>
5073
5074 * tests/actions.at, tests/calc.at, tests/headers.at,
5075 * tests/torture.at: Adjust to the newest Autotest which no longer
5076 forces `.' in the PATH.
5077
5078 2002-01-25 Akim Demaille <akim@epita.fr>
5079
5080 * tests/regression.at (%nonassoc and eof): New.
5081 Suggested by Robert Anisko.
5082
5083 2002-01-24 Akim Demaille <akim@epita.fr>
5084
5085 Bison dumps core when trying to complain about broken input files.
5086 Reported by Cris van Pelt.
5087
5088 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
5089 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
5090 into...
5091 (Invalid inputs): Strengthen: exercise parse_percent_token.
5092
5093 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
5094
5095 * src/Makefile.am: Add bison.c++.
5096 * src/bison.c++: New skeleton.
5097
5098 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
5099
5100 * po/it.po: New.
5101
5102 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
5103
5104 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
5105
5106 2002-01-20 Marc Autret <marc@gnu.org>
5107
5108 * src/files.c (compute_output_file_names): Fix
5109
5110 2002-01-20 Marc Autret <marc@gnu.org>
5111
5112 * tests/output.at: New test.
5113 * src/files.c (compute_base_names): Don't map extensions when
5114 the YACC flag is set, use defaults.
5115 Reported by Evgeny Stambulchik.
5116
5117 2002-01-20 Marc Autret <marc@gnu.org>
5118
5119 * src/system.h: Need to define __attribute__ away for non-GCC
5120 compilers as well (i.e. the vendor C compiler).
5121 Suggested by Albert Chin-A-Young.
5122
5123 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
5124
5125 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
5126 canonical definition.
5127 * src/system.h: Use the canonical definition for PARAMS (avoids
5128 a conflict with the macro from lib/hash.h).
5129
5130 2002-01-11 Akim Demaille <akim@epita.fr>
5131
5132 * configure.in: Use AC_FUNC_STRNLEN.
5133 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
5134
5135 2002-01-09 Akim Demaille <akim@epita.fr>
5136
5137 * src/files.c, src/files.h (output_infix): New.
5138 (tab_extension): Remove.
5139 (compute_base_names): Compute the former, drop the latter.
5140 * src/output.c (prepare): Insert the muscles `output-infix', and
5141 `output-suffix'.
5142 * src/parse-skel.y (string, string.1): New.
5143 (section.header): Use it.
5144 (section.yacc): Remove.
5145 (prefix): Remove too.
5146 * src/scan-skel.l: Adjust.
5147 * src/bison.simple, src/bison.hairy: Adjust.
5148
5149 2002-01-09 Akim Demaille <akim@epita.fr>
5150
5151 * configure.in (WERROR_CFLAGS): Compute it.
5152 * src/Makefile.am (CFLAGS): Pass it.
5153 * tests/atlocal.in (CFLAGS): Idem.
5154 * src/files.c: Fix a few warnings.
5155 (get_extension_index): Remove, unused.
5156
5157 2002-01-08 Akim Demaille <akim@epita.fr>
5158
5159 * src/getargs.c (AS_FILE_NAME): New.
5160 (getargs): Use it to convert DOSish file names.
5161 * src/files.c (base_name): Rename as full_base_name to avoid
5162 clashes with `base_name ()'.
5163 (filename_split): New.
5164 (compute_base_names): N-th rewrite, using filename_split.
5165
5166 2002-01-08 Akim Demaille <akim@epita.fr>
5167
5168 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
5169 New, stolen from the Fileutils 4.1.
5170 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
5171 * configure.in: Check for the presence of memrchr, and of its
5172 prototype.
5173
5174 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
5175
5176 * lib/hash.h (__P): Added definition for this macro.
5177 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
5178 BUILT_SOURCES, to ensure they are generated first.
5179 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
5180 %error-verbose to allow bootstrapping with bison 1.30x.
5181
5182 2002-01-06 Akim Demaille <akim@epita.fr>
5183
5184 * src/reader.c (parse_braces): Don't fetch the next char, the
5185 convention is to fetch on entry.
5186 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
5187 'switch' without a following semicolon.
5188 * tests/regression.at (braces parsing): New.
5189
5190 2002-01-06 Akim Demaille <akim@epita.fr>
5191
5192 Bison is dead wrong in its RR conflict reports.
5193
5194 * tests/torture.at (GNU Cim Grammar): New.
5195 * src/conflicts.c (count_rr_conflicts): Fix.
5196
5197 2002-01-06 Akim Demaille <akim@epita.fr>
5198
5199 Creating package.m4 from configure.ac causes too many problems.
5200
5201 * tests/Makefile.am (package.m4): Create it by hand,
5202 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
5203
5204 2002-01-06 Akim Demaille <akim@epita.fr>
5205
5206 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
5207 skeleton.h.
5208
5209 2002-01-04 Paul Eggert <eggert@twinsun.com>
5210
5211 * doc/bison.texinfo (Debugging):
5212 Remove YYSTDERR; it's no longer defined or used.
5213 Also, s/cstdio.h/cstdio/.
5214
5215 2002-01-03 Akim Demaille <akim@epita.fr>
5216
5217 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
5218
5219 2002-01-03 Akim Demaille <akim@epita.fr>
5220
5221 * src/parse-skel.y (process_skeleton): Don't bind the parser's
5222 tracing code to --trace, wait for a better --trace option, with
5223 args.
5224
5225 2002-01-03 Akim Demaille <akim@epita.fr>
5226
5227 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
5228 The ISO C++ standard is extremely clear about it: stderr is
5229 considered a macro, not a regular symbol (see table 94 `Header
5230 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
5231 Therefore std:: does not apply to it. It still does with fprintf.
5232 Also, s/cstdio.h/cstdio/.
5233
5234 2002-01-03 Akim Demaille <akim@epita.fr>
5235
5236 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
5237 for non system headers.
5238
5239 2002-01-02 Akim Demaille <akim@epita.fr>
5240
5241 Equip the skeleton chain with location tracking, runtime trace,
5242 pure parser and scanner.
5243
5244 * src/parse-skel.y: Request a pure parser, locations, and prefix
5245 renaming.
5246 (%union): Having several members with the same type does not help
5247 type mismatches, simplify.
5248 (YYPRINT, yyprint): New.
5249 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
5250 (skel_error): this.
5251 Handle locations.
5252 * src/scan-skel.l: Adjust to these changes.
5253 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
5254 (LOCATION_PRINT, skel_control_t): New.
5255
5256 2001-12-30 Akim Demaille <akim@epita.fr>
5257
5258 * src/parse-skel.y: Get rid of the shift/reduce conflict:
5259 replace `gb' with BLANKS.
5260 * src/scan-skel.l: Adjust.
5261
5262 2001-12-30 Akim Demaille <akim@epita.fr>
5263
5264 * src/system.h: We don't need nor want bcopy.
5265 Throw away MS-DOS crap: we don't need getpid.
5266 * configure.in: We don't need strndup. It was even causing
5267 problems: because Flex includes the headers *before* us,
5268 _GNU_SOURCE is not defined by config.h, and therefore strndup was
5269 not visible.
5270 * lib/xstrndup.c: New.
5271 * src/scan-skel.l: Use it.
5272 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
5273 * src/parse-skel.y: Use %directives instead of #defines.
5274
5275 2001-12-30 Akim Demaille <akim@epita.fr>
5276
5277 * src/skeleton.h: New.
5278 * src/output.c (output_parser, output_master_parser): Remove, dead
5279 code.
5280 * src/output.h (get_lines_number, actions_output, guards_output)
5281 (token_definitions_output): Prototype them.
5282 * src/parse-skel.y: Add the license notice.
5283 Include output.h and skeleton.h.
5284 (process_skeleton): Returns void, and takes a single parameter.
5285 * src/scan-skel.l: Add the license notice.
5286 Include skeleton.h.
5287 Don't use %option yylineno: it seems that then Flex imagines
5288 REJECT has been used, and therefore it won't reallocate its
5289 buffers (which makes no other sense to me than a bug). It results
5290 in warnings for `unused: yy_flex_realloc'.
5291
5292 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
5293
5294 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
5295 (MUSCLE_INSERT_PREFIX): ...to there.
5296 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
5297 (MUSCLE_INSERT_PREFIX): Move from here...
5298
5299 * src/bison.hairy: Add a section directive. Put braces around muscle
5300 names. This parser skeleton is still broken, but Bison should not
5301 choke on a bad muscle 'syntax'.
5302 * src/bison.simple: Add a section directive. Put braces around muscle
5303 names.
5304
5305 * src/files.h (strsuffix, stringappend): Add declarations.
5306 (tab_extension): Add declaration.
5307 (short_base_name): Add declaration.
5308
5309 * src/files.c (strsuffix, stringappend): No longer static. These
5310 functions are used in the skeleton parser.
5311 (tab_extension): New.
5312 (compute_base_names): Use the computations done in this function
5313 to guess if the generated parsers should have '.tab' in their
5314 names.
5315 (short_base_name): No longer static.
5316
5317 * src/output.c (output_skeleton): New.
5318 (output): Disable call to output_master_parser, and give a try to
5319 a new skeleton handling system.
5320 (guards_output, actions_output): No longer static.
5321 (token_definitions_output, get_lines_number): No longer static.
5322
5323 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
5324
5325 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
5326 parse-skel.y.
5327
5328 * src/parse-skel.y: New file.
5329 * src/scan-skel.l: New file.
5330
5331 2001-12-29 Akim Demaille <akim@epita.fr>
5332
5333 %name-prefix is broken.
5334
5335 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
5336 Adjust all dependencies.
5337 * tests/headers.at (export YYLTYPE): Strengthen this test: use
5338 %name-prefix.
5339
5340 Renaming yylval but not yylloc is not consistent. Now we do.
5341
5342 * src/bison.simple: Prefix yylloc if used.
5343 * doc/bison.texinfo (Decl Summary): Document that.
5344
5345 2001-12-29 Akim Demaille <akim@epita.fr>
5346
5347 * doc/bison.texinfo: Promote `%long-directive' over
5348 `%long_directive'.
5349 Remove all references to fixed-output-files, yacc is enough.
5350
5351 2001-12-29 Akim Demaille <akim@epita.fr>
5352
5353 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
5354 user prologue. These are defaults.
5355 * tests/actions.at (Mid-rule actions): Make sure the user can
5356 define YYDEBUG and YYERROR_VERBOSE.
5357
5358 2001-12-29 Akim Demaille <akim@epita.fr>
5359
5360 * src/output.c (header_output): Don't forget to export YYLTYPE and
5361 yylloc.
5362 * tests/headers.at (export YYLTYPE): New, make sure it does.
5363 * tests/regression.at (%union and --defines, Invalid CPP headers):
5364 Move to...
5365 * tests/headers.at: here.
5366
5367 2001-12-29 Akim Demaille <akim@epita.fr>
5368
5369 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
5370
5371 2001-12-29 Akim Demaille <akim@epita.fr>
5372
5373 * tests/actions.at (Mid-rule actions): Output on a single line
5374 instead of several.
5375
5376 2001-12-29 Akim Demaille <akim@epita.fr>
5377
5378 * doc/bison.texinfo: Formatting changes.
5379
5380 2001-12-29 Akim Demaille <akim@epita.fr>
5381
5382 Don't store the token defs in a muscle, just be ready to output it
5383 on command. Now possible via `symbols'. Fixes a memory leak.
5384
5385 * src/output.c (token_definitions_output): New.
5386 (output_parser, header_output): Use it.
5387 * src/reader.c (symbols_save): Remove.
5388
5389 2001-12-29 Akim Demaille <akim@epita.fr>
5390
5391 * src/bison.simple: Do not provide a default for YYSTYPE and
5392 YYLTYPE before the user's prologue. Otherwise it's hardly... a
5393 default.
5394
5395 2001-12-29 Akim Demaille <akim@epita.fr>
5396
5397 Mid-rule actions are simply... ignored!
5398
5399 * src/reader.c (readgram): Be sure to attach mid-rule actions to
5400 the empty-rule associated to the dummy symbol, not to the host
5401 rule.
5402 * tests/actions.at (Mid-rule actions): New.
5403
5404 2001-12-29 Akim Demaille <akim@epita.fr>
5405
5406 Memory leak.
5407
5408 * src/reader.c (reader): Free grammar.
5409
5410 2001-12-29 Akim Demaille <akim@epita.fr>
5411
5412 Memory leak.
5413
5414 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
5415 since it allocates it for each state, although only one is needed.
5416 (allocate_storage): Do it here.
5417
5418 2001-12-29 Akim Demaille <akim@epita.fr>
5419
5420 * src/options.h, src/options.c (create_long_option_table): Rename
5421 as...
5422 (long_option_table_new): this, with a clearer prototype.
5423 (percent_table): Remove, unused,
5424 * src/getargs.c (getargs): Adjust.
5425
5426 2001-12-29 Akim Demaille <akim@epita.fr>
5427
5428 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
5429 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
5430 as states.
5431
5432 2001-12-29 Akim Demaille <akim@epita.fr>
5433
5434 * src/lalr.c (build_relations): Rename `states' as `states1'.
5435 Sorry, I don't understand exactly what it is, no better name...
5436
5437 2001-12-29 Akim Demaille <akim@epita.fr>
5438
5439 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
5440 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
5441 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
5442 as rules.
5443
5444 2001-12-29 Akim Demaille <akim@epita.fr>
5445
5446 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
5447 ago.
5448
5449 2001-12-29 Akim Demaille <akim@epita.fr>
5450
5451 * src/reader.c, src/reader.h (user_toknums): Remove.
5452 Adjust all users to use symbols[i]->user_token_number.
5453
5454 2001-12-29 Akim Demaille <akim@epita.fr>
5455
5456 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
5457 Adjust all users to use symbols[i]->prec or ->assoc.
5458
5459 2001-12-29 Akim Demaille <akim@epita.fr>
5460
5461 * src/reader.c, src/reader.h (tags): Remove.
5462 Adjust all users to use symbols[i]->tag.
5463
5464 2001-12-29 Akim Demaille <akim@epita.fr>
5465
5466 * src/gram.h, src/gram.c (symbols): New, similar to state_table
5467 and rule_table.
5468 * src/reader.c (packsymbols): Fill this table.
5469 Drop sprec.
5470 * src/conflicts.c (resolve_sr_conflict): Adjust.
5471 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
5472 single table.
5473 Use symbols[i]->tag instead of tags[i].
5474
5475 2001-12-29 Akim Demaille <akim@epita.fr>
5476
5477 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
5478 In addition, put a comment in there, to replace...
5479 * tests/regression.at (%union and C comments): Remove.
5480
5481 2001-12-29 Akim Demaille <akim@epita.fr>
5482
5483 * tests/regression.at (Web2c Actions): Blindly move the actual
5484 output as expected output. The contents *seem* right to me, but I
5485 can't pretend reading perfectly parser tables... Nonetheless, all
5486 the other tests pass correctly, the table look OK, even though the
5487 presence of `$axiom' is to be noted: AFAICS it is useless (but
5488 harmless).
5489
5490 2001-12-29 Akim Demaille <akim@epita.fr>
5491
5492 * src/reader.c (readgram): Don't add the rule 0 if there were no
5493 rules read. In other words, add it _after_ having performed
5494 grammar sanity checks.
5495 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
5496
5497 2001-12-29 Akim Demaille <akim@epita.fr>
5498
5499 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
5500 visible, and some states have now a different number.
5501
5502 2001-12-29 Akim Demaille <akim@epita.fr>
5503
5504 * src/reader.c (readgram): Bind the initial rule's lineno to that
5505 of the first rule.
5506 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
5507 (Solved SR Conflicts): Adjust rule 0's line number.
5508
5509 2001-12-29 Akim Demaille <akim@epita.fr>
5510
5511 Fix the `GAWK Grammar' failure.
5512
5513 * src/LR0.c (final_state): Initialize to -1 so that we do compute
5514 the reductions of the first state which was mistakenly confused
5515 with the final state because precisely final_state was initialized
5516 to 0.
5517 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
5518 now noticed by Bison.
5519 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
5520 have a reduction on $default.
5521
5522 2001-12-29 Akim Demaille <akim@epita.fr>
5523
5524 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
5525 rule line numbers.
5526 * src/closure.c (print_closure): Likewise.
5527 * src/derives.c (print_derives): Likewise.
5528 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
5529 now.
5530
5531 2001-12-29 Akim Demaille <akim@epita.fr>
5532
5533 * src/lalr.c (lookaheads_print): New.
5534 (lalr): Call it when --trace-flag.
5535 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
5536 are dumped.
5537
5538 2001-12-29 Akim Demaille <akim@epita.fr>
5539
5540 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
5541 when walking through ritem, even via rule->rhs.
5542 * src/reduce.c (dump_grammar, useful_production, reduce_output)
5543 (useful_production, useless_nonterminals): Likewise.
5544 (reduce_grammar_tables): Likewise, plus update nritems.
5545 * src/nullable.c (set_nullable): Likewise.
5546 * src/lalr.c (build_relations): Likewise.
5547 * tests/sets.at (Nullable): Adjust.
5548 Fortunately, now, the $axiom is no longer nullable.
5549
5550 2001-12-29 Akim Demaille <akim@epita.fr>
5551
5552 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
5553 the 0-sentinel.
5554 * src/gram.c (ritem_longest_rhs): Likewise.
5555 * src/reduce.c (nonterminals_reduce): Likewise.
5556 * src/print_graph.c (print_graph): Likewise.
5557 * src/output.c (output_rule_data): Likewise.
5558 * src/nullable.c (set_nullable): Likewise.
5559
5560 2001-12-29 Akim Demaille <akim@epita.fr>
5561
5562 * src/output.c: Comment changes.
5563
5564 2001-12-27 Paul Eggert <eggert@twinsun.com>
5565
5566 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
5567 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
5568 Sparc, as they were causing more porting problems than the
5569 (minor) performance improvement was worth.
5570
5571 Also, catch up with 1.31's YYSTD.
5572
5573 2001-12-27 Akim Demaille <akim@epita.fr>
5574
5575 * src/output.c (output_gram): Rely on nritems, not the
5576 0-sentinel. See below.
5577 Use -1 as separator, not 0.
5578 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
5579 Rely on -1 as separator in yyrhs, instead of 0.
5580 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
5581 twice `Now at end of input', therefore there are two lines less to
5582 expect.
5583
5584 2001-12-27 Akim Demaille <akim@epita.fr>
5585
5586 * tests/regression.at (Unresolved SR Conflicts):
5587 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
5588 below.
5589
5590 2001-12-27 Akim Demaille <akim@epita.fr>
5591
5592 * src/LR0.c (new_state): Recognize the final state by the fact it
5593 is reached by eoftoken.
5594 (insert_start_shifting_state, insert_eof_shifting_state)
5595 (insert_accepting_state, augment_automaton): Remove, since now
5596 these states are automatically computed from the initial state.
5597 (generate_states): Adjust.
5598 * src/print.c: When reporting a rule number to the user, substract
5599 1, so that the axiom rule is rule 0, and the first user rule is 1.
5600 * src/reduce.c: Likewise.
5601 * src/print_graph.c (print_core): For the time being, just as for
5602 the report, depend upon --trace-flags to dump the full set of
5603 items.
5604 * src/reader.c (readgram): Once the grammar read, insert the rule
5605 0: `$axiom: START-SYMBOL $'.
5606 * tests/set.at: Adjust: rule 0 is now displayed, and since the
5607 number of the states has changed (the final state is no longer
5608 necessarily the last), catch up.
5609
5610 2001-12-27 Akim Demaille <akim@epita.fr>
5611
5612 Try to make the use of the eoftoken valid. Given that its value
5613 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
5614 is used instead of > 0 where appropriate, (ii), depend upon nritems
5615 instead of the 0-sentinel.
5616
5617 * src/gram.h, src/gram.c (nritems): New.
5618 Expected to be duplication of nitems, but for the time being...
5619 * src/reader.c (packgram): Assert nritems and nitems are equal.
5620 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
5621 * src/closure.c (print_closure, print_fderives): Likewise.
5622 * src/gram.c (ritem_print): Likewise.
5623 * src/print.c (print_core, print_grammar): Likewise.
5624 * src/print_graph.c: Likewise.
5625
5626 2001-12-27 Akim Demaille <akim@epita.fr>
5627
5628 * src/main.c (main): If there are complains after grammar
5629 reductions, then output the report anyway if requested, then die.
5630 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
5631 * src/reader.c (eoftoken): New.
5632 (parse_token_decl): If the token being defined has value `0', it
5633 is the eoftoken.
5634 (packsymbols): No longer hack `tags' to insert `$' by hand.
5635 Be sure to preserve the value of the eoftoken.
5636 (reader): Make sure eoftoken is defined.
5637 Initialize nsyms to 0: now eoftoken is created just like the others.
5638 * src/print.c (print_grammar): Don't special case the eof token.
5639 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
5640 lie anyway, albeit pleasant.
5641 * tests/calc.at: Exercise error messages with eoftoken.
5642 Change the grammar so that empty input is invalid.
5643 Adjust expectations.
5644 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
5645
5646 2001-12-27 Akim Demaille <akim@epita.fr>
5647
5648 * configure.in: Check the protos of strchr ans strspn.
5649 Replace strchr if needed.
5650 * src/system.h: Provide the protos of strchr, strspn and memchr if
5651 missing.
5652 * lib/strchr.c: New.
5653 * src/reader.c (symbols_save): Use strchr.
5654
5655 2001-12-27 Akim Demaille <akim@epita.fr>
5656
5657 * src/print.c, src/print_graph.c (escape): New.
5658 Use it to quote the TAGS outputs.
5659 * src/print_graph.c (print_state): Now errors are in red, and
5660 reductions in green.
5661 Prefer high to wide: output the state number on a line of its own.
5662
5663 2001-12-27 Akim Demaille <akim@epita.fr>
5664
5665 * src/state.h, src/state.c (reductions_new): New.
5666 * src/LR0.c (set_state_table): Let all the states have a
5667 `reductions', even if reduced to 0.
5668 (save_reductions): Adjust.
5669 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
5670 * src/print.c (print_reductions, print_actions): Adjust.
5671 * src/output.c (action_row): Adjust.
5672
5673 2001-12-27 Akim Demaille <akim@epita.fr>
5674
5675 * src/state.h, src/state.c (errs_new, errs_dup): New.
5676 * src/LR0.c (set_state_table): Let all the states have an errs,
5677 even if reduced to 0.
5678 * src/print.c (print_errs, print_reductions): Adjust.
5679 * src/output.c (output_actions, action_row): Adjust.
5680 * src/conflicts.c (resolve_sr_conflict): Adjust.
5681
5682 2001-12-27 Akim Demaille <akim@epita.fr>
5683
5684 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
5685
5686 2001-12-27 Akim Demaille <akim@epita.fr>
5687
5688 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
5689 * src/print.c: here.
5690 (lookaheadset, shiftset): New, used as additional storage by
5691 print_reductions.
5692 (print_results): Adjust.
5693 (print_shifts, print_gotos, print_errs): New, extracted from...
5694 (print_actions): here.
5695 * src/print_graph.c (print_actions): Remove dead code.
5696
5697 2001-12-27 Akim Demaille <akim@epita.fr>
5698
5699 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
5700 `$n' and `@n'.
5701
5702 2001-12-27 Akim Demaille <akim@epita.fr>
5703
5704 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
5705 (build_relations): Adjust.
5706
5707 2001-12-27 Akim Demaille <akim@epita.fr>
5708
5709 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
5710 duplication.
5711
5712 2001-12-27 Akim Demaille <akim@epita.fr>
5713
5714 * src/reader.c (packgram): Catch nitems overflows.
5715
5716 2001-12-27 Akim Demaille <akim@epita.fr>
5717
5718 * src/files.c, src/files.h (guard_obstack): Remove.
5719 * src/output.c (output): Adjust.
5720 * src/reader.c (parse_braces): New, factoring...
5721 (copy_action, copy_guard): these two which are renamed as...
5722 (parse_action, parse_guard): these.
5723 As a voluntary consequence, using braces around guards is now
5724 mandatory.
5725
5726 2001-12-27 Akim Demaille <akim@epita.fr>
5727
5728 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
5729 * src/reader.c (symbol_list): `guard' and `guard_line' are new
5730 members.
5731 (symbol_list_new): Adjust.
5732 (copy_action): action_line is the first line, not the last.
5733 (copy_guard): Just as for actions, store the `action' only, not
5734 the switch/case/break flesh.
5735 Don't parse the user action that might follow the guard, let...
5736 (readgram): do it, i.e., now, there can be an action after a
5737 guard.
5738 In other words the guard is just explicitly optional.
5739 (packgram): Adjust.
5740 * src/output.c (guards_output): New.
5741 (output_parser): Call it when needed.
5742 (output): Also free the guard and attrs obstacks.
5743 * src/files.c, src/files.h (obstack_save): Remove.
5744 (output_files): Remove.
5745 As a result, if one needs the former `.act' file, using an
5746 appropriate skeleton which requires actions and guards is now
5747 required.
5748 * src/main.c (main): Adjust.
5749 * tests/semantic.at: New.
5750 * tests/regression.at: Use `input.y' as input file name.
5751 Avoid 8+3 problems by requiring input.c when the test needs the
5752 parser.
5753
5754 2001-12-27 Akim Demaille <akim@epita.fr>
5755
5756 * src/reader.c (symbol_list_new): Be sure to initialize all the
5757 fields.
5758
5759 2001-12-27 Akim Demaille <akim@epita.fr>
5760
5761 All the hacks using a final pseudo state are now useless.
5762
5763 * src/LR0.c (set_state_table): state_table holds exactly nstates.
5764 * src/lalr.c (nLA): New.
5765 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
5766 instead of lookaheadsp from the pseudo state (nstate + 1).
5767
5768 2001-12-27 Akim Demaille <akim@epita.fr>
5769
5770 * src/output.c (action_row, token_actions): Use a state_t instead
5771 of a integer, and nlookaheads instead of the following state's
5772 lookaheadsp.
5773
5774 2001-12-27 Akim Demaille <akim@epita.fr>
5775
5776 * src/conflicts.c (log_resolution, flush_shift)
5777 (resolve_sr_conflict, set_conflicts, solve_conflicts)
5778 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
5779 (conflicts_print, print_reductions): Use a state_t instead of an
5780 integer when referring to a state.
5781 As much as possible, depend upon nlookaheads, instead of the
5782 `lookaheadsp' member of the following state (since lookaheads of
5783 successive states are successive, the difference between state n + 1
5784 and n served as the number of lookaheads for state n).
5785 * src/lalr.c (add_lookback_edge): Likewise.
5786 * src/print.c (print_core, print_actions, print_state)
5787 (print_results): Likewise.
5788 * src/print_graph.c (print_core, print_actions, print_state)
5789 (print_graph): Likewise.
5790 * src/conflicts.h: Adjust.
5791
5792 2001-12-27 Akim Demaille <akim@epita.fr>
5793
5794 * src/bison.hairy: Formatting/comment changes.
5795 ANSIfy.
5796 Remove `register' indications.
5797 Add plenty of `static'.
5798
5799 2001-12-27 Akim Demaille <akim@epita.fr>
5800
5801 * src/output.c (prepare): Drop the muscle `ntbase' which
5802 duplicates ntokens.
5803 * src/bison.simple: Formatting/comment changes.
5804 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
5805 is an undocumented synonym.
5806
5807 2001-12-22 Akim Demaille <akim@epita.fr>
5808
5809 * src/output.c (output_table_data): Change the prototype to use
5810 `int' for array ranges: some invocations do pass an int, not a
5811 short.
5812 Reported by Wayne Green.
5813
5814 2001-12-22 Akim Demaille <akim@epita.fr>
5815
5816 Some actions of web2c.y are improperly triggered.
5817 Reported by Mike Castle.
5818
5819 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
5820 * tests/regression.at (Web2c): Rename as...
5821 (Web2c Report): this.
5822 (Web2c Actions): New.
5823
5824 2001-12-22 Akim Demaille <akim@epita.fr>
5825
5826 Reductions in web2c.y are improperly reported.
5827 Reported by Mike Castle.
5828
5829 * src/conflicts.c (print_reductions): Fix.
5830 * tests/regression.at (Web2c): New.
5831
5832 2001-12-18 Akim Demaille <akim@epita.fr>
5833
5834 Some host fail on `assert (!"foo")', which expands to
5835 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
5836 Reported by Nelson Beebee.
5837
5838 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
5839 `#define it_succeeded 0' and `assert (it_succeeded)'.
5840
5841 2001-12-17 Marc Autret <autret_m@epita.fr>
5842
5843 * src/bison.simple: Don't hard code the skeleton line and filename.
5844 * src/output.c (output_parser): Rename 'line' as 'output_line'.
5845 New line counter 'skeleton_line' (skeleton-line muscle).
5846
5847 2001-12-17 Paul Eggert <eggert@twinsun.com>
5848
5849 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
5850 YYDEBUG must be defined to a nonzero value.
5851
5852 * src/bison.simple (yytname): Do not assume that the user defines
5853 YYDEBUG to a properly parenthesized expression.
5854
5855 2001-12-17 Akim Demaille <akim@epita.fr>
5856
5857 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
5858 nlookaheads is a new member.
5859 Adjust all users.
5860 * src/lalr.h (nlookaheads): Remove this orphan declaration.
5861 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
5862 state.
5863
5864 2001-12-17 Akim Demaille <akim@epita.fr>
5865
5866 * src/files.h, src/files.c (open_files, close_files): Remove.
5867 * src/main.c (main): Don't open/close files, nor invoke lex_free,
5868 let...
5869 * src/reader.c (reader): Do it.
5870
5871 2001-12-17 Akim Demaille <akim@epita.fr>
5872
5873 * src/conflicts.c (print_reductions): Formatting changes.
5874
5875 2001-12-17 Akim Demaille <akim@epita.fr>
5876
5877 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
5878 (flush_reduce): New.
5879 (resolve_sr_conflict): Adjust.
5880
5881 2001-12-17 Akim Demaille <akim@epita.fr>
5882
5883 * src/output.c (output_obstack): Be static and rename as...
5884 (format_obstack): this, to avoid any confusion with files.c's
5885 output_obstack.
5886 * src/reader.h (muscle_obstack): Move to...
5887 * src/output.h: here, since it's defined in output.c.
5888
5889 2001-12-17 Akim Demaille <akim@epita.fr>
5890
5891 * src/output.c (action_row, save_column, default_goto)
5892 (sort_actions, matching_state, pack_vector): Better variable
5893 locality.
5894
5895 2001-12-17 Akim Demaille <akim@epita.fr>
5896
5897 * src/output.c: Various formatting changes.
5898
5899 2001-12-17 Akim Demaille <akim@epita.fr>
5900
5901 * src/files.c (output_files): Free the output_obstack.
5902 * src/main.c (main): Call print and print_graph conditionally.
5903 * src/print.c (print): Work unconditionally.
5904 * src/print_graph.c (print_graph): Work unconditionally.
5905 * src/conflicts.c (log_resolution): Output only if verbose_flag.
5906
5907 2001-12-16 Marc Autret <autret_m@epita.fr>
5908
5909 * src/output.c (actions_output): Fix. When we use %no-lines,
5910 there is one less line per action.
5911
5912 2001-12-16 Marc Autret <autret_m@epita.fr>
5913
5914 * src/bison.simple: Remove a useless #line directive.
5915 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
5916 * src/output.c (get_lines_number): New.
5917 (output_parser): Adjust, now takes care about the lines of a
5918 output muscles.
5919 Fix line numbering.
5920 (actions_output): Computes the number of lines taken by actions.
5921 (output_master_parser): Insert new skeleton which is the name of
5922 the output parser file name.
5923
5924 2001-12-15 Marc Autret <autret_m@epita.fr>
5925
5926 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
5927
5928 2001-12-15 Marc Autret <autret_m@epita.fr>
5929
5930 * src/output.c (output_gram): Keep track of the hairy one.
5931
5932 2001-12-15 Akim Demaille <akim@epita.fr>
5933
5934 Make `make distcheck' work.
5935
5936 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
5937 system.h which uses libgettext.h.
5938
5939 2001-12-15 Akim Demaille <akim@epita.fr>
5940
5941 * src/nullable.c (set_nullable): Useless rules must be skipped,
5942 otherwise, since we range over their symbols, we might look at a
5943 nonterminal which no longer ``exists'', i.e., it is not counted in
5944 `nvars', hence we overflow our arrays.
5945
5946 2001-12-15 Akim Demaille <akim@epita.fr>
5947
5948 The header can also be produced directly, without any obstack!
5949 Yahoo!
5950
5951 * src/files.c, src/files.h (defines_obstack): Remove.
5952 (compute_header_macro): Global.
5953 (defines_obstack_save): Remove.
5954 * src/reader.c (parse_union_decl): No longer output to
5955 defines_obstack: its content can be found in the `stype' muscle
5956 anyway.
5957 (output_token_translations): Merge into...
5958 (symbols_output): this.
5959 Rename as...
5960 (symbols_save): this.
5961 (reader): Adjust.
5962 * src/output.c (header_output): New.
5963 (output): Call it.
5964
5965 2001-12-15 Akim Demaille <akim@epita.fr>
5966
5967 * src/reader.c (parse_union_decl): Instead of handling two obstack
5968 simultaneously, use one to define the `stype' muscle, and use the
5969 value of the latter to fill defines_obstack.
5970 (copy_comment): Remove.
5971 (copy_comment2): Work for a single obstack.
5972 Rename as...
5973 (copy_comment): this.
5974
5975 2001-12-15 Akim Demaille <akim@epita.fr>
5976
5977 * src/lex.c, src/lex.h (xgetc): No longer static.
5978 * src/reader.c (parse_union_decl): Revamp.
5979
5980 2001-12-15 Akim Demaille <akim@epita.fr>
5981
5982 Still making progress in separating Bison into (i) input, (ii)
5983 process, (iii) output: now we can directly output the parser file
5984 without using table_obstack at all.
5985
5986 * src/files.c, src/files.h (table_obstack): Bye bye.
5987 (parser_file_name): New.
5988 * src/files.c (compute_output_file_names): Compute it.
5989 * src/output.c (actions_output, output_parser)
5990 (output_master_parser): To a file instead of an obstack.
5991
5992 2001-12-15 Akim Demaille <akim@epita.fr>
5993
5994 Attach actions to rules, instead of pre-outputting them to
5995 actions_obstack.
5996
5997 * src/gram.h (rule_t): action and action_line are new members.
5998 * src/reader.c (symbol_list): Likewise.
5999 (copy_action): Save the actions within the rule.
6000 (packgram): Save them in rule_table.
6001 * src/output.c (actions_output): New.
6002 (output_parser): Use it on `%%actions'.
6003 (output_rule_data): Don't free rule_table.
6004 (output): Do it.
6005 (prepare): Don't save the `action' muscle.
6006 * src/bison.simple: s/%%action/%%actions/.
6007
6008 2001-12-15 Akim Demaille <akim@epita.fr>
6009
6010 * src/reader.c (copy_action): When --yacc, don't append a `;'
6011 to the user action: let it fail if lacking.
6012 Suggested by Arnold Robbins and Tom Tromey.
6013
6014 2001-12-14 Akim Demaille <akim@epita.fr>
6015
6016 * src/lex.c (literalchar): Simply return the char you decoded, non
6017 longer mess around with obstacks and int pointers.
6018 Adjust all callers.
6019
6020 2001-12-14 Akim Demaille <akim@epita.fr>
6021
6022 * src/lex.c (literalchar): Don't escape the special characters,
6023 just decode them, and keep them as char (before, eol was output as
6024 the 2 char string `\n' etc.).
6025 * src/output.c (output_rule_data): Use quotearg to output the
6026 token strings.
6027
6028 2001-12-13 Paul Eggert <eggert@twinsun.com>
6029
6030 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
6031 Do not infringe on the global user namespace when using C++.
6032 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
6033 All uses of `fprintf' and `stderr' changed.
6034
6035 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
6036
6037 2001-12-13 Akim Demaille <akim@epita.fr>
6038
6039 The computation of nullable is broken: it doesn't handle empty
6040 RHS's properly.
6041
6042 * tests/torture.at (GNU AWK Grammar): New.
6043 * tests/sets.at (Nullable): New.
6044 * src/nullable.c (set_nullable): Instead of blindly looping over
6045 `ritems', loop over the rules, and then over their rhs's.
6046
6047 Work around Autotest bugs.
6048
6049 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
6050 frame, because Autotest understand lines starting with a `+' as
6051 traces from the shell. Then, they are not processed properly.
6052 Admittedly an Autotest bug, but we don't have time to wait for
6053 Autotest to catch up.
6054 * tests/regression.at (Broken Closure): Adjust to the new table
6055 frames.
6056 Move to...
6057 * tests/sets.at: here.
6058
6059 2001-12-13 Akim Demaille <akim@epita.fr>
6060
6061 * src/closure.c (closure): Use nrules instead of playing tricks
6062 with BITS_PER_WORD.
6063
6064 2001-12-13 Akim Demaille <akim@epita.fr>
6065
6066 * src/print.c (print_actions): Output the handling of `$' as the
6067 traces do: shifting the token EOF. Before EOF was treated as a
6068 nonterminal.
6069 * tests/regression.at: Adjust some tests.
6070 * src/print_graph.c (print_core): Complete the set of items via
6071 closure. The next-to-final and final states are still unsatisfying,
6072 but that's to be addressed elsewhere.
6073 No longer output the rule numbers, but do output the state number.
6074 A single loop for the shifts + gotos is enough, but picked a
6075 distinct color for each.
6076 (print_graph): Initialize and finalize closure.
6077
6078 2001-12-13 Akim Demaille <akim@epita.fr>
6079
6080 * src/reader.c (readgram): Remove dead code, an strip useless
6081 braces.
6082 (get_type): Remove, unused.
6083
6084 2001-12-12 Akim Demaille <akim@epita.fr>
6085
6086 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
6087 on that of lib/error.c.
6088
6089 2001-12-12 Akim Demaille <akim@epita.fr>
6090
6091 Some hosts don't like `/' in includes.
6092
6093 * src/system.h: Include libgettext.h without qualifying the path.
6094 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
6095 $(top_srcdir).
6096
6097 2001-12-11 Marc Autret <autret_m@epita.fr>
6098
6099 * src/output.c (output_parser): Remove useless muscle.
6100
6101 2001-12-11 Marc Autret <autret_m@epita.fr>
6102
6103 * src/bison.simple: Remove #line just before %%epilogue. It
6104 is now handled in ...
6105 * src/reader.c (read_additionnal_code): Add the output of a
6106 #line for the epilogue.
6107
6108 2001-12-10 Marc Autret <autret_m@epita.fr>
6109
6110 * src/reader.c (copy_definition): Re-use CPP-outed code which
6111 replace precedent remove.
6112 * src/bison.simple: Remove #line before %%prologue because
6113 %%input-line is wrong at this time.
6114
6115 2001-12-10 Marc Autret <autret_m@epita.fr>
6116
6117 * src/reader.c (symbols_output): Clean up.
6118 * src/output.c (output_gram, output): Clean up.
6119
6120 2001-12-10 Akim Demaille <akim@epita.fr>
6121
6122 * src/lalr.c (initialize_lookaheads): New. Extracted from...
6123 * src/LR0.c (set_state_table): here.
6124 * src/lalr.c (lalr): Call it.
6125
6126 2001-12-10 Akim Demaille <akim@epita.fr>
6127
6128 * src/state.h (shifts): Remove the `number' member: shifts are
6129 attached to state, hence no longer need to be labelled with a
6130 state number.
6131
6132 2001-12-10 Akim Demaille <akim@epita.fr>
6133
6134 Now that states have a complete set of members, the linked list of
6135 shifts is useless: just fill directly the state's shifts member.
6136
6137 * src/state.h (shifts): Remove the `next' member.
6138 * src/LR0.c (first_state, last_state): Remove.
6139 Adjust the callers.
6140 (augment_automaton): Don't look for the shifts that must be added
6141 a shift on EOF: it is those of the state we looked for! But now,
6142 since shifts are attached, it is no longer needed to looking
6143 merely by its id: its number.
6144
6145 2001-12-10 Akim Demaille <akim@epita.fr>
6146
6147 * src/LR0.c (augment_automaton): Better variable locality.
6148 Remove an impossible branch: if there is a state corresponding to
6149 the start symbol being shifted, then there is shift for the start
6150 symbol from the initial state.
6151
6152 2001-12-10 Akim Demaille <akim@epita.fr>
6153
6154 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
6155 only when appropriate: when insert_start_shifting_state' is not
6156 invoked.
6157 * tests/regression.at (Rule Line Numbers): Adjust.
6158
6159 2001-12-10 Akim Demaille <akim@epita.fr>
6160
6161 * src/LR0.c (augment_automaton): Now that all states have shifts,
6162 merge the two cases addition shifts to the initial state.
6163
6164 2001-12-10 Akim Demaille <akim@epita.fr>
6165
6166 * src/lalr.c (set_state_table): Move to...
6167 * src/LR0.c: here.
6168 * src/lalr.c (lalr): Don't call it...
6169 * src/LR0.c (generate_states): do it.
6170 * src/LR0.h (first_state): Remove, only the table is used.
6171
6172 2001-12-10 Akim Demaille <akim@epita.fr>
6173
6174 * src/LR0.h (first_shift, first_reduction): Remove.
6175 * src/lalr.c: Don't use first_shift: find shifts through the
6176 states.
6177
6178 2001-12-10 Akim Demaille <akim@epita.fr>
6179
6180 * src/LR0.c: Attach shifts to states as soon as they are
6181 computed.
6182 * src/lalr.c (set_state_table): Instead of assigning shifts to
6183 state, just assert that the mapping was properly done.
6184
6185 2001-12-10 Akim Demaille <akim@epita.fr>
6186
6187 * src/LR0.c (insert_start_shift): Rename as...
6188 (insert_start_shifting_state): this.
6189 (insert_eof_shifting_state, insert_accepting_state): New.
6190 (augment_automaton): Adjust.
6191 Better locality of the variables.
6192 When looking if the start_symbol is shifted from the initial
6193 state, using `while (... symbol != start_symbol ...)' sounds
6194 better than `while (... symbol < start_symbol ...)': If fail
6195 to see how the order between symbols could be relevant!
6196
6197 2001-12-10 Akim Demaille <akim@epita.fr>
6198
6199 * src/getargs.h: Don't declare `spec_name_prefix' and
6200 `spec_file_prefix', declared by src/files.h.
6201 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
6202 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
6203 * src/output.c (prepare): Adjust.
6204 * src/reader.c (symbols_output): Likewise.
6205 * src/vmsgetargs.c: Vaguely adjust, but who cares?
6206
6207 2001-12-10 Akim Demaille <akim@epita.fr>
6208
6209 * src/muscle_tab.c (muscle_init): NULL is a better default than
6210 `"0"'.
6211
6212 2001-12-10 Akim Demaille <akim@epita.fr>
6213
6214 * src/reader.c (reader): Calling symbols_output once is enough.
6215
6216 2001-12-10 Akim Demaille <akim@epita.fr>
6217
6218 Now that states have a complete set of members, the linked list of
6219 reductions is useless: just fill directly the state's reductions
6220 member.
6221
6222 * src/state.h (struct reductions): Remove member `number' and
6223 `next'.
6224 * src/LR0.c (first_reduction, last_reduction): Remove.
6225 (save_reductions): Don't link the new reductions, store them in
6226 this_state.
6227 * src/lalr.c (set_state_table): No need to attach reductions to
6228 states, it's already done.
6229 * src/output.c (output_actions): No longer free the shifts, then
6230 the reductions, then the states: free all the states and their
6231 members.
6232
6233 2001-12-10 Akim Demaille <akim@epita.fr>
6234
6235 * src/options.c (OPTN, DRTV, BOTH): New.
6236 (option_table): Use them.
6237
6238 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
6239 the job of system.h.
6240 * src/options.c: Don't include stdio.h and xalloc.h for the same
6241 reasons.
6242
6243 2001-12-10 Akim Demaille <akim@epita.fr>
6244
6245 * src/output.c (output, prepare): Make sure the values of the
6246 muscles `action' and `prologue' are 0-terminated.
6247
6248 2001-12-10 Akim Demaille <akim@epita.fr>
6249
6250 Clean up GCC warnings.
6251
6252 * src/reader.c (copy_action): `buf' is not used.
6253 (parse_skel_decl): Be static.
6254 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
6255 * src/options.h (create_long_option_table): Have a real prototype.
6256 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
6257 (hash_delete_at): Return const void *.
6258 Adjust casts to preserve the const.
6259
6260 2001-12-10 Akim Demaille <akim@epita.fr>
6261
6262 * configure.in: Require 2.52g.
6263 M4 is not needed, but AUTOM4TE is.
6264 * m4/m4.m4: Remove.
6265 * tests/Makefile.am: Adjust.
6266
6267 2001-12-10 Akim Demaille <akim@epita.fr>
6268
6269 One structure for states is enough, even though theoretically
6270 there are LR(0) states and LALR(1) states.
6271
6272 * src/lalr.h (state_t): Remove.
6273 (state_table): Be state_t **, not state_t *.
6274 * src/state.h (core, CORE_ALLOC): Rename as...
6275 (state_t, STATE_ALLOC): this.
6276 Add the LALR(1) members: shifts, reductions, errs.
6277 * src/LR0.c (state_table): Rename as...
6278 (state_hash): this, to avoid name clashes with the global
6279 `state_table'.
6280 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
6281 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
6282
6283 2001-12-10 Akim Demaille <akim@epita.fr>
6284
6285 Bison dumps core on bash.y.
6286 Reported by Pascal Bart.
6287
6288 * src/warshall.c (bitmatrix_print): New.
6289 (TC): Use it.
6290 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
6291 j must be the outer loop.
6292 * tests/regression.at (Broken Closure): New.
6293
6294 2001-12-05 Akim Demaille <akim@epita.fr>
6295
6296 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
6297 its argument.
6298 Reported by Peter Hámorský.
6299
6300 2001-12-05 Akim Demaille <akim@epita.fr>
6301
6302 * src/conflicts.c (err_table): Remove.
6303 (resolve_sr_conflict): Adjust.
6304 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
6305 Rename as...
6306 (state_t.reductions, state_t.shifts): this.
6307
6308 2001-12-05 Akim Demaille <akim@epita.fr>
6309
6310 * src/reduce.c (reduce_grammar_tables): No longer disable the
6311 removal of useless rules via CPP but via `if (0)', so that the
6312 compiler still check the code is valid.
6313 For instance, it should have noticed `rline' no longer exists: use
6314 the `line' member of rule_t.
6315 * src/gram.c (dummy, rline): Remove, unused.
6316
6317 2001-12-05 Akim Demaille <akim@epita.fr>
6318
6319 * src/output.c (pack_vector): Use assert, not berror.
6320 * src/main.c (berror): Remove, unused.
6321
6322 2001-12-05 Akim Demaille <akim@epita.fr>
6323
6324 New experimental feature: if --verbose --trace output all the
6325 items of a state, not only its kernel.
6326
6327 * src/print.c (print_core): If `trace_flag', then invoke closure
6328 before outputting the items of the state (print_core is no longer
6329 a correct name them).
6330 (print_results): Invoke new_closure/free_closure if needed.
6331
6332 2001-12-05 Akim Demaille <akim@epita.fr>
6333
6334 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
6335 * src/closure.c, src/closure.h (itemsetsize): Rename as...
6336 (nitemset): for consistency with the rest of the project.
6337
6338 2001-12-05 Akim Demaille <akim@epita.fr>
6339
6340 * src/closure.c (print_closure): Improve.
6341 (closure): Use it for printing input and output.
6342
6343 2001-12-05 Akim Demaille <akim@epita.fr>
6344
6345 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
6346 indexed by nonterminals.
6347
6348 2001-12-05 Akim Demaille <akim@epita.fr>
6349
6350 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
6351 what it was!).
6352 * src/warshall.h: Remove accidental duplication of the content.
6353
6354 2001-12-05 Akim Demaille <akim@epita.fr>
6355
6356 * src/closure.c (set_fderives): De-obfuscate.
6357
6358 2001-12-05 Akim Demaille <akim@epita.fr>
6359
6360 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
6361
6362 2001-12-05 Akim Demaille <akim@epita.fr>
6363
6364 * src/closure.c (set_firsts): De-obfuscate.
6365
6366 2001-12-05 Akim Demaille <akim@epita.fr>
6367
6368 * src/output.c (action_row): De-obfuscate
6369 using the good o' techniques: arrays not pointers, variable
6370 locality, BITISSET, RESETBIT etc.
6371
6372 2001-12-05 Akim Demaille <akim@epita.fr>
6373
6374 Pessimize the code to simplify it: from now on, all the states
6375 have a valid SHIFTS, which NSHIFTS is possibly 0.
6376
6377 * src/LR0.c (shifts_new): Be global and move to..
6378 * src/state.c, src/state.h: here.
6379 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
6380 * src/print_graph: Adjust.
6381
6382 2001-12-05 Akim Demaille <akim@epita.fr>
6383
6384 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
6385 * src/conflicts.c: Use it.
6386 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
6387 incorrectly ``simplified''.
6388
6389 2001-12-05 Akim Demaille <akim@epita.fr>
6390
6391 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
6392 using the good o' techniques: arrays not pointers, variable
6393 locality, BITISSET, RESETBIT etc.
6394
6395 2001-12-05 Akim Demaille <akim@epita.fr>
6396
6397 * src/state.h (SHIFT_SYMBOL): New.
6398 * src/conflicts.c: Use it to deobfuscate.
6399
6400 2001-12-05 Akim Demaille <akim@epita.fr>
6401
6402 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
6403 (print_reductions): De-obfuscate using the good o' techniques:
6404 arrays not pointers, variable locality, BITISSET.
6405
6406 2001-12-05 Akim Demaille <akim@epita.fr>
6407
6408 * src/conflicts.c (print_reductions): Arrays, not pointers.
6409 Use BITISSET.
6410
6411 2001-12-05 Akim Demaille <akim@epita.fr>
6412
6413 * src/conflicts.c (print_reductions): Pessimize, but clarify.
6414
6415 2001-12-05 Akim Demaille <akim@epita.fr>
6416
6417 * src/conflicts.c (print_reductions): Improve variable locality.
6418
6419 2001-12-05 Akim Demaille <akim@epita.fr>
6420
6421 * src/conflicts.c (print_reductions): Pessimize, but clarify.
6422
6423 2001-12-05 Akim Demaille <akim@epita.fr>
6424
6425 * src/conflicts.c (print_reductions): Improve variable locality.
6426
6427 2001-12-05 Akim Demaille <akim@epita.fr>
6428
6429 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
6430 * src/lalr.c: Use them.
6431
6432 2001-12-05 Akim Demaille <akim@epita.fr>
6433
6434 * src/LR0.c (augment_automaton): Formatting changes.
6435 Better variable locality.
6436
6437 2001-12-05 Akim Demaille <akim@epita.fr>
6438
6439 * src/lalr.c (matrix_print): New.
6440 (transpose): Use it.
6441 Use arrays instead of pointers.
6442
6443 2001-12-05 Akim Demaille <akim@epita.fr>
6444
6445 * src/lalr.c (maxrhs): Move to...
6446 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
6447 * src/lalr.c (build_relations): Adjust.
6448
6449 2001-12-05 Akim Demaille <akim@epita.fr>
6450
6451 * src/lalr.c (transpose): Free the memory allocated to the
6452 argument, as it is replaced by the results by the unique caller.
6453 (build_relations): Merely invoke transpose: it handles the memory
6454 deallocation.
6455 Improve variable locality.
6456 Avoid variables used as mere abbreviations.
6457 (compute_lookaheads): Use arrays instead of pointers.
6458
6459 2001-12-05 Akim Demaille <akim@epita.fr>
6460
6461 * src/lalr.c (initialize_F): Improve variable locality.
6462 Avoid variables used as mere abbreviations.
6463
6464 2001-12-05 Akim Demaille <akim@epita.fr>
6465
6466 * src/derives.c (print_derives): Display the ruleno.
6467 * src/lalr.c (initialize_F, transpose): Better variable locality
6468 to improve readability.
6469 Avoid variables used as mere abbreviations.
6470
6471 2001-12-05 Akim Demaille <akim@epita.fr>
6472
6473 * src/lalr.c (traverse): Use arrays instead of pointers.
6474
6475 2001-12-05 Akim Demaille <akim@epita.fr>
6476
6477 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
6478 the handling of squeue.
6479 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
6480
6481 2001-12-05 Akim Demaille <akim@epita.fr>
6482
6483 Because useless nonterminals are now kept alive (instead of being
6484 `destroyed'), we now sometimes examine them, and store information
6485 related to them. Hence we need to know their number, and adjust
6486 memory allocations.
6487
6488 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
6489 static.
6490 * src/LR0.c (allocate_itemsets): The memory allocated to
6491 `symbol_count' was used for two different purpose: once to count
6492 the number of occurrences of each symbol, and later reassigned to
6493 `shift_symbol', containing the symbol that can be shifted from a
6494 given state.
6495 Deobfuscate, i.e., allocate, use and free `symbol_count' here
6496 only, and...
6497 (new_itemsets): Allocate `shift_symbol' here.
6498 (allocate_itemsets): symbol_count includes useless nonterminals.
6499 Make room for them.
6500 (free_storage): Use `free', not `XFREE', for pointers that cannot
6501 be null.
6502
6503 2001-12-05 Akim Demaille <akim@epita.fr>
6504
6505 * src/nullable.c (set_nullable): Deobfuscate the handling of
6506 ritem.
6507 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
6508
6509 2001-12-05 Akim Demaille <akim@epita.fr>
6510
6511 * src/gram.c, src/gram.h (ritem_print): New.
6512 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
6513 (This useless function was defined only to work around VMS linkers
6514 that can't handle compilation units with variables only).
6515 * src/reduce.c (dump_grammar): Use it to trace the construction of
6516 ritem.
6517
6518 2001-12-04 Paul Eggert <eggert@twinsun.com>
6519
6520 * src/bison.simple (union yyalloc): Change member names
6521 to be the same as the stack names.
6522 (yyparse): yyptr is now union yyalloc *, not char *.
6523 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
6524 and may generate better code on some machines.
6525 (yystpcpy): Use prototype if __STDC__ is defined, not just
6526 if __cplusplus is defined.
6527
6528 2001-11-30 Akim Demaille <akim@epita.fr>
6529
6530 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
6531 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
6532 Gettext doesn't compile cleanly, and dies with -Werror.
6533 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
6534 Include WARNING_CFLAGS here.
6535 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
6536 before being defined.
6537
6538 2001-11-27 Paul Eggert <eggert@twinsun.com>
6539
6540 * lib/quotearg.h (quotearg_n, quotearg_n_style):
6541 First arg is int, not unsigned.
6542 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
6543 (SIZE_MAX, UINT_MAX): New macros.
6544 (quotearg_n_options): Abort if N is negative.
6545 Avoid overflow check on hosts where size_t is 64 bits and int
6546 is 32 bits, as overflow is impossible there.
6547 Fix off-by-one typo that caused unnecessary reallocation.
6548
6549 2001-11-29 Paul Eggert <eggert@twinsun.com>
6550
6551 Name space cleanup in generated parser.
6552
6553 * doc/bison.texinfo (Bison Parser): Discuss system headers
6554 and their effect on the user name space.
6555
6556 * src/bison.simple:
6557 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
6558 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
6559 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
6560
6561 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
6562 on user names when possible.
6563
6564 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
6565 Simplify test for whather <alloca.h> exists.
6566
6567 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
6568
6569 (<stdio.h>): Include if YYDEBUG.
6570
6571 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
6572 ! defined (yyoverflow) && ! defined (yymemcpy).
6573
6574 (yymemcpy, yyparse): Rename local variables as needed so that
6575 they all begin with 'yy'.
6576
6577 (yystrlen, yystpcpy): New functions.
6578
6579 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
6580 All uses changed.
6581
6582 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
6583 instead of relying on string.h functions. Use YYSTACK_ALLOC
6584 and YYSTACK_FREE instead of malloc and free.
6585
6586 2001-11-30 Akim Demaille <akim@epita.fr>
6587
6588 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
6589 before their first uses.
6590 (YYBISON, YYPURE): Move to the top of the output.
6591
6592 2001-11-30 Akim Demaille <akim@epita.fr>
6593
6594 * tests/reduce.at (Useless Nonterminals): Fix.
6595
6596 2001-11-30 Akim Demaille <akim@epita.fr>
6597
6598 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
6599 if body instead of `;' to pacify GCC's warnings.
6600
6601 2001-11-30 Akim Demaille <akim@epita.fr>
6602
6603 Instead of mapping the LHS of unused rules to -1, keep the LHS
6604 valid, but flag the rules as invalid.
6605
6606 * src/gram.h (rule_t): `useful' is a new member.
6607 * src/print.c (print_grammar): Adjust.
6608 * src/derives.c (set_derives): Likewise.
6609 * src/reader.c (packgram, reduce_output): Likewise.
6610 * src/reduce.c (reduce_grammar_tables): Likewise.
6611 * tests/reduce.at (Underivable Rules, Useless Rules): New.
6612
6613 2001-11-30 Akim Demaille <akim@epita.fr>
6614
6615 * src/reduce.c (reduce_output): Formatting changes.
6616 * src/print.c (print_results, print_grammar): Likewise.
6617 * tests/regression.at (Rule Line Numbers)
6618 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
6619
6620 2001-11-30 Akim Demaille <akim@epita.fr>
6621
6622 * src/reduce.c (nonterminals_reduce): Instead of throwing away
6623 useless nonterminals, move them at the end of the symbol arrays.
6624 (reduce_output): Adjust.
6625 * tests/reduce.at (Useless Nonterminals): Adjust.
6626
6627 2001-11-30 Akim Demaille <akim@epita.fr>
6628
6629 * src/reduce.c: Various comment/formatting changes.
6630 (nonterminals_reduce): New, extracted from...
6631 (reduce_grammar_tables): here.
6632 (reduce_grammar): Call nonterminals_reduce.
6633
6634 2001-11-29 Paul Eggert <eggert@twinsun.com>
6635
6636 * src/bison.simple (YYSTACK_REALLOC): Remove.
6637 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
6638 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
6639 New macros.
6640 (union yyalloc): New type.
6641 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
6642 an arbitrary restriction on hosts where size_t is wider than int.
6643
6644 (yyparse): Don't dump core if alloca or malloc fails; instead, report
6645 a parser stack overflow. Allocate just one block of memory for all
6646 three stacks, instead of allocating three blocks; this typically is
6647 faster and reduces fragmentation.
6648
6649 Do not limit the number of items in the stack to a value that fits
6650 in 'int', as this is an arbitrary limit on hosts with 64-bit
6651 size_t and 32-bit int.
6652
6653 2001-11-29 Marc Autret <autret_m@epita.fr>
6654
6655 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
6656 of defining YYERROR_VERBOSE.
6657 [AT_DATA]: $4 is now out of C declarations in the prologue.
6658
6659 2001-11-28 Marc Autret <autret_m@epita.fr>
6660
6661 * src/reader.c (parse_dquoted_param): New.
6662 (parse_skel_decl): Use it.
6663 * src/lex.h: Add its prototype.
6664 * src/lex.c (literalchar): Become not static.
6665
6666 2001-11-28 Marc Autret <autret_m@epita.fr>
6667
6668 * src/output.h: And put its extern declaration here.
6669 * src/output.c (error_verbose): Define here.
6670 (prepare): Echo name modification.
6671 * src/getargs.h: Clean its extern declaration.
6672 * src/getargs.c (error_verbose_flag): Remove.
6673 (getargs): Remove case 'e'.
6674 * src/options.c (option_table): 'error-verbose' is now seen as simple
6675 percent option.
6676 Include output.h.
6677
6678 * src/reader.c (read_declarations): Remove case tok_include.
6679 (parse_include_decl): Remove.
6680 * src/lex.h (token_t): Remove tok_include.
6681 * src/options.c (option_table): 'include' is now a simple command line
6682 option.
6683
6684 2001-11-28 Marc Autret <autret_m@epita.fr>
6685
6686 * src/bison.simple: Adjust muscle names.
6687 * src/muscle_tab.c (muscle_init): Also rename the muscles.
6688 * src/output.c (prepare): s/_/-/ for the muscles names.
6689 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
6690
6691 2001-11-28 Marc Autret <autret_m@epita.fr>
6692
6693 * src/bison.simple: Fix debug.
6694 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
6695
6696 2001-11-28 Akim Demaille <akim@epita.fr>
6697
6698 * src/LR0.c (shifts_new): New.
6699 (save_shifts, insert_start_shift, augment_automaton): Use it.
6700
6701 2001-11-28 Akim Demaille <akim@epita.fr>
6702
6703 * src/closure.c (closure): `b' and `ruleno' denote the same value:
6704 keep ruleno only.
6705
6706 2001-11-28 Akim Demaille <akim@epita.fr>
6707
6708 * src/closure.c (closure): Instead of looping over word in array
6709 then bits in words, loop over bits in array.
6710
6711 2001-11-28 Akim Demaille <akim@epita.fr>
6712
6713 * src/closure.c (closure): No longer optimize the special case
6714 where all the bits of `ruleset[r]' are set to 0, to make the code
6715 clearer.
6716
6717 2001-11-28 Akim Demaille <akim@epita.fr>
6718
6719 * src/closure.c (closure): `r' and `c' are new variables, used to
6720 de-obfuscate accesses to RULESET and CORE.
6721
6722 2001-11-28 Akim Demaille <akim@epita.fr>
6723
6724 * src/reduce.c (reduce_print): Use ngettext.
6725 (dump_grammar): Improve the trace accuracy.
6726
6727 2001-11-28 Akim Demaille <akim@epita.fr>
6728
6729 * src/reduce.c (dump_grammar): Don't translate trace messages.
6730
6731 2001-11-28 Akim Demaille <akim@epita.fr>
6732
6733 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
6734 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
6735 as all tags are free'ed afterwards.
6736 From Enrico Scholz.
6737
6738 2001-11-27 Paul Eggert <eggert@twinsun.com>
6739
6740 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
6741 use alloca when we didn't want to, and vice versa.
6742
6743 2001-11-27 Marc Autret <autret_m@epita.fr>
6744
6745 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
6746 initialization.
6747 * src/output.c (prepare): Remove its update.
6748
6749 2001-11-27 Marc Autret <autret_m@epita.fr>
6750
6751 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
6752 Use %error-verbose.
6753
6754 2001-11-27 Marc Autret <autret_m@epita.fr>
6755
6756 * src/bison.simple: Remove YYERROR_VERBOSE using.
6757 Use %%error_verbose.
6758 (yyparse): Likewise.
6759 * src/output.c (prepare): Give its final value.
6760 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
6761 * src/getargs.h: Add its extern declaration.
6762 * src/getargs.c (error_verbose_flag): New int.
6763 (getargs): Update to catch new case.
6764 * src/options.c (option_table): 'error-verbose' is a new option.
6765 (shortopts): Update.
6766
6767 2001-11-27 Akim Demaille <akim@epita.fr>
6768
6769 * src/system.h: Use intl/libgettext.h.
6770 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
6771
6772 2001-11-27 Akim Demaille <akim@epita.fr>
6773
6774 * tests/torture.at (Exploding the Stack Size with Malloc):
6775 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
6776
6777 2001-11-27 Akim Demaille <akim@epita.fr>
6778
6779 * src/files.c: Include error.h.
6780 Reported by Hans Aberg.
6781
6782 2001-11-26 Marc Autret <autret_m@epita.fr>
6783
6784 * src/reader.c (parse_include_decl): New, not yet implemented.
6785 (read_declarations): Add case tok_include.
6786 * src/getargs.h (include): Add its extern definition.
6787 * src/getargs.c (include): New const char *.
6788 (getargs): Add case '-I'.
6789 * src/options.c (option_table): Add include as command line and
6790 percent option.
6791 * src/lex.h (token_t): Add tok_include.
6792
6793 2001-11-26 Akim Demaille <akim@epita.fr>
6794
6795 * src/reader.c (readgram): Make sure rules for mid-rule actions
6796 have a lineno equal to that of their host rule.
6797 Reported by Hans Aberg.
6798 * tests/regression.at (Rule Line Numbers): New.
6799
6800 2001-11-26 Akim Demaille <akim@epita.fr>
6801
6802 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
6803 size_ts.
6804
6805 2001-11-26 Akim Demaille <akim@epita.fr>
6806
6807 * src/complain.c, src/complain.h (error): Remove, provided by
6808 lib/error.[ch].
6809
6810 2001-11-26 Akim Demaille <akim@epita.fr>
6811
6812 * src/reader.c (read_declarations): Don't abort on tok_illegal,
6813 issue an error message.
6814 * tests/regression.at (Invalid %directive): New.
6815 Reported by Hans Aberg.
6816
6817 2001-11-26 Akim Demaille <akim@epita.fr>
6818
6819 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
6820 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
6821
6822 2001-11-26 Akim Demaille <akim@epita.fr>
6823
6824 * src/conflicts.c (conflicts_print): Don't complain at all when
6825 there are no reduce/reduce conflicts, and as many shift/reduce
6826 conflicts as expected.
6827 * tests/regression.at (%expect right): Adjust.
6828
6829 2001-11-23 Akim Demaille <akim@epita.fr>
6830
6831 * lib/alloca.c: Update, from fileutils.
6832
6833 2001-11-23 Akim Demaille <akim@epita.fr>
6834
6835 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
6836
6837 2001-11-23 Akim Demaille <akim@epita.fr>
6838
6839 * src/system.h: Include alloca.h.
6840 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
6841
6842 2001-11-23 Akim Demaille <akim@epita.fr>
6843
6844 * src/print_graph.c (print_actions): Remove `rule', unused.
6845 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
6846 pacify GCC's signed < unsigned warnings.
6847 * src/closure.c (itemsetsize): Likewise.
6848 * src/reader.c (symbol_list_new): Static.
6849
6850 2001-11-23 Akim Demaille <akim@epita.fr>
6851
6852 Attaching lineno to buckets is stupid, since only one copy of each
6853 symbol is kept, only the line of the first occurrence is kept too.
6854
6855 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
6856 * src/reader.c (rline_allocated): Remove, unused.
6857 (symbol_list): Have a `line' member.
6858 (symbol_list_new): New.
6859 (readgram): Use it.
6860 * src/print.c (print_grammar): Output the rule line numbers.
6861 * tests/regression.at (Solved SR Conflicts)
6862 (Unresolved SR Conflicts): Adjust.
6863 Reported by Hans Aberg.
6864
6865 2001-11-22 Marc Autret <autret_m@epita.fr>
6866
6867 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
6868
6869 2001-11-22 Marc Autret <autret_m@epita.fr>
6870
6871 * src/muscle_tab.c (muscle_init): Remove initialization of
6872 skeleton muscle.
6873 * src/output.c (output_master_parser): Do it here.
6874
6875 2001-11-20 Akim Demaille <akim@epita.fr>
6876
6877 * po/sv.po: New.
6878 * configure.in (ALL_LINGUAS): Adjust.
6879 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
6880 longer contains strings to translate.
6881
6882 2001-11-19 Akim Demaille <akim@epita.fr>
6883
6884 * src/conflicts.c (conflicts_print): Add a missing \n.
6885
6886 2001-11-19 Akim Demaille <akim@epita.fr>
6887
6888 * src/nullable.c (nullable_print): New.
6889 (set_nullable): Call it when tracing.
6890 Better locality of variables.
6891
6892 2001-11-19 Akim Demaille <akim@epita.fr>
6893
6894 * src/print.c (print_actions): Better locality of variables.
6895
6896 2001-11-19 Akim Demaille <akim@epita.fr>
6897
6898 * src/derives.c (print_derives): Fix and enrich.
6899 * src/closure.c (print_fderives): Likewise.
6900
6901 2001-11-19 Akim Demaille <akim@epita.fr>
6902
6903 * src/closure.c (itemsetend): Remove, replaced with...
6904 (itemsetsize): new.
6905
6906 2001-11-19 Akim Demaille <akim@epita.fr>
6907
6908 * src/LR0.c (kernel_end): Remove, replaced with...
6909 (kernel_size): new.
6910
6911 2001-11-19 Akim Demaille <akim@epita.fr>
6912
6913 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
6914 to clarify.
6915
6916 2001-11-19 Akim Demaille <akim@epita.fr>
6917
6918 * src/closure.c (closure): Use arrays instead of pointers to clarify.
6919
6920 2001-11-19 Akim Demaille <akim@epita.fr>
6921
6922 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
6923 trace messages.
6924 * src/LR0.c: Likewise.
6925 (allocate_itemsets): Use arrays instead of pointers to clarify.
6926
6927 2001-11-19 Akim Demaille <akim@epita.fr>
6928
6929 * src/getargs.c (statistics_flag): Replace with...
6930 (trace_flag): New.
6931 (longopts): Accept --trace instead of --statistics.
6932 * src/getargs.h, src/options.c: Adjust.
6933 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
6934 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
6935
6936 2001-11-19 Akim Demaille <akim@epita.fr>
6937
6938 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
6939 pointers to clarify the code.
6940 (save_reductions, save_shifts): Factor common parts of alternatives.
6941
6942 2001-11-19 Akim Demaille <akim@epita.fr>
6943
6944 * src/LR0.c (new_state, get_state): Complete TRACE code.
6945 * src/closure.c: Include `reader.h' to get `tags', needed by the
6946 trace code.
6947 Rename the conditional DEBUG as TRACE.
6948 Output consistently TRACEs to stderr, not stdout.
6949 * src/derives.c: Likewise.
6950 * src/reduce.c: (inaccessable_symbols): Using if is better style
6951 than goto.
6952 Use `#if TRACE' instead of `#if 0' for tracing code.
6953
6954 2001-11-19 Akim Demaille <akim@epita.fr>
6955
6956 * src/system.h (LIST_FREE, shortcpy): New.
6957 * src/LR0.c: Use them.
6958 * src/output.c (free_itemsets, free_reductions, free_shifts):
6959 Remove, replaced by LIST_FREE.
6960
6961 2001-11-19 Akim Demaille <akim@epita.fr>
6962
6963 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
6964 (REDUCTIONS_ALLOC): New.
6965 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
6966 allocation.
6967
6968 2001-11-19 Akim Demaille <akim@epita.fr>
6969
6970 * src/LR0.c (new_state): Complete trace code.
6971 * src/nullable.c (set_nullable): Don't translate traces.
6972
6973 2001-11-19 Akim Demaille <akim@epita.fr>
6974
6975 * src/print_graph.c (print_core): Better locality of variables.
6976 * src/print.c (print_core): Likewise.
6977
6978 2001-11-19 Akim Demaille <akim@epita.fr>
6979
6980 * src/vcg.c: You do the output, so you are responsible of the
6981 handling of VCG syntax, in particular: use quotearg.
6982 * src/print_graph.c: Don't.
6983 (print_actions): Don't output the actions as part of the nodes,
6984 since that's the job of the edges.
6985 (print_state): Don't output by hand: fill the node description,
6986 and ask for its output.
6987
6988 2001-11-19 Akim Demaille <akim@epita.fr>
6989
6990 * src/bison.simple (yyparse): When verbosely reporting an error,
6991 no longer put additional quotes around token names.
6992 * tests/calc.at: Adjust.
6993
6994 2001-11-19 Akim Demaille <akim@epita.fr>
6995
6996 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
6997 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
6998 * src/output.c: Adjust.
6999
7000 2001-11-19 Akim Demaille <akim@epita.fr>
7001
7002 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
7003 (rule_t): this.
7004 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
7005
7006 2001-11-19 Akim Demaille <akim@epita.fr>
7007
7008 * src/gram.h (rule_t): New.
7009 (rule_table): New.
7010 (rrhs, rlhs): Remove, part of state_t.
7011 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
7012 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
7013 * src/reader.c, src/reduce.c: Adjust.
7014
7015 2001-11-19 Akim Demaille <akim@epita.fr>
7016
7017 * src/reader.c (symbols_output): New, extracted from...
7018 (packsymbols): Here.
7019 (reader): Call it.
7020
7021 2001-11-19 Akim Demaille <akim@epita.fr>
7022
7023 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
7024 (maxrhs): this new function.
7025
7026 2001-11-19 Akim Demaille <akim@epita.fr>
7027
7028 * src/lalr.c (F): New macro to access the variable F.
7029 Adjust.
7030
7031 2001-11-19 Akim Demaille <akim@epita.fr>
7032
7033 * src/lalr.h (LA): New macro to access the variable LA.
7034 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7035 * src/lalr.c: Adjust.
7036
7037 2001-11-19 Akim Demaille <akim@epita.fr>
7038
7039 * src/lalr.c (initialize_LA): Only initialize LA. Let...
7040 (set_state_table): handle the `lookaheads' members.
7041
7042 2001-11-19 Akim Demaille <akim@epita.fr>
7043
7044 * src/lalr.h (lookaheads): Removed array, whose contents is now
7045 a member of...
7046 (state_t): this structure.
7047 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7048 Adjust.
7049
7050 2001-11-19 Akim Demaille <akim@epita.fr>
7051
7052 * src/lalr.h (consistent): Removed array, whose contents is now
7053 a member of...
7054 (state_t): this structure.
7055 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7056 Adjust.
7057
7058 2001-11-19 Akim Demaille <akim@epita.fr>
7059
7060 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
7061 contents are now members of...
7062 (state_t): this structure.
7063 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
7064 Adjust.
7065
7066 2001-11-19 Akim Demaille <akim@epita.fr>
7067
7068 * src/lalr.h (state_t): New.
7069 (state_table): Be a state_t * instead of a core **.
7070 (accessing_symbol): Remove, part of state_t.
7071 * src/lalr.c: Adjust.
7072 (set_accessing_symbol): Merge into...
7073 (set_state_table): this.
7074 * src/print_graph.c, src/conflicts.c: Adjust.
7075
7076 2001-11-14 Akim Demaille <akim@epita.fr>
7077
7078 * tests/calc.at, tests/output.at, tests/regression.at,
7079 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
7080 now the tests are run in private dirs, therefore AC_CLEANUP and
7081 family can be simplified to 0-ary.
7082 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
7083 use abs. path to find config.h.
7084 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
7085 stderr, there can be way too much random noise.
7086 Instead pass -Werror to GCC and rely on the exit status.
7087 Reported by Wolfram Wagner.
7088
7089 2001-11-14 Akim Demaille <akim@epita.fr>
7090
7091 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
7092 defined only if yyoverflow is defined, to avoid `warning: unused
7093 variable `yyvs1''.
7094 Reported by The Test Suite.
7095
7096 2001-11-14 Akim Demaille <akim@epita.fr>
7097
7098 * src/print.c: Include reduce.h.
7099 Reported by Hans Aberg.
7100
7101 2001-11-14 Akim Demaille <akim@epita.fr>
7102
7103 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
7104 Revert a previous patch: these are really const.
7105 * src/conflicts.c (conflict_report): Additional useless pair of
7106 braces to pacify GCC's warnings for `if () if () {} else {}'.
7107 * src/lex.c (parse_percent_token): Replace equal_offset with
7108 arg_offset.
7109 arg is const.
7110 Be sure to strdup `arg' when used, since there is no reason for
7111 token_buffer not to change.
7112
7113 2001-11-14 Akim Demaille <akim@epita.fr>
7114
7115 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
7116 definition.
7117 * src/main.c (main): Use them.
7118 Suggested by Hans Aberg.
7119
7120 2001-11-12 Akim Demaille <akim@epita.fr>
7121
7122 * src/system.h (ngettext): Now that we use ngettext, be sure to
7123 provide a default definition when NLS are not used.
7124
7125 2001-11-12 Akim Demaille <akim@epita.fr>
7126
7127 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
7128 Use @kbd to denote user input.
7129 (Language and Grammar): ANSIfy the example.
7130 Adjust its layout for info/notinfo.
7131 (Location Tracking Calc): Output error messages to stderr.
7132 Output locations in a more GNUtically correct way.
7133 Fix a couple of Englishos.
7134 Adjust @group/@end group pairs.
7135
7136 2001-11-12 Akim Demaille <akim@epita.fr>
7137
7138 %expext was not functioning at all.
7139
7140 * src/conflicts.c (expected_conflicts): Set to -1.
7141 (conflict_report): Use ngettext.
7142 (conflicts_print): Check %expect and make its violation an error.
7143 * doc/bison.texinfo (Expect Decl): Adjust.
7144 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
7145 * tests/regression.at (%expect not enough, %expect right)
7146 (%expect too much): New.
7147
7148 2001-11-12 Akim Demaille <akim@epita.fr>
7149
7150 * tests/regression.at (Conflicts): Rename as...
7151 (Unresolved SR Conflicts): this.
7152 (Solved SR Conflicts): New.
7153
7154 2001-11-12 Akim Demaille <akim@epita.fr>
7155
7156 * src/reduce.c (print_results): Rename as...
7157 (reduce_output): This.
7158 Output to OUT, passed as argument, instead of output_obstack.
7159 (dump_grammar): Likewise.
7160 (reduce_free): New.
7161 Also free V1.
7162 (reduce_grammar): No longer call reduce_output, since...
7163 * src/print.c (print_results): do it.
7164 * src/main.c (main): Call reduce_free;
7165
7166 2001-11-12 Akim Demaille <akim@epita.fr>
7167
7168 * src/conflicts.c (print_reductions): Accept OUT as argument.
7169 Output to it, not to output_obstack.
7170 * src/print.c (print_actions): Adjust.
7171
7172 2001-11-12 Akim Demaille <akim@epita.fr>
7173
7174 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
7175 the result instead of using...
7176 (src_total, rrc_total, src_count, rrc_count): Remove.
7177 (any_conflicts): Remove.
7178 (print_conflicts): Split into...
7179 (conflicts_print, conflicts_output): New.
7180 * src/conflicts.h: Adjust.
7181 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
7182 * src/print.c (print_grammar): Issue `\n' between two rules.
7183 * tests/regression.at (Conflicts): New.
7184 Reported by Tom Lane.
7185
7186 2001-11-12 Akim Demaille <akim@epita.fr>
7187
7188 * tests/regression.at (Invalid input): Remove, duplicate with
7189 ``Invalid input: 1''.
7190
7191 2001-11-12 Akim Demaille <akim@epita.fr>
7192
7193 * tests/torture.at (AT_DATA_STACK_TORTURE)
7194 (Exploding the Stack Size with Alloca)
7195 (Exploding the Stack Size with Malloc): New.
7196
7197 2001-11-12 Akim Demaille <akim@epita.fr>
7198
7199 * src/bison.simple (YYSTACK_REALLOC): New.
7200 (yyparse) [!yyoverflow]: Use it and free the old stack.
7201 Reported by Per Allansson.
7202
7203 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
7204
7205 * src/bison.simple: Define type yystype instead of YYSTYPE, and
7206 define CPP macro, which substitute YYSTYPE by yystype.
7207 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
7208 with yyltype/YYLTYPE. This allows inclusion of the generated
7209 header within the parser if the compiler, such as GGC, accepts
7210 multiple equivalent #defines.
7211 From Akim.
7212
7213 2001-11-05 Akim Demaille <akim@epita.fr>
7214
7215 * src/reader.c (symbols_output): New, extracted from...
7216 (packsymbols): here.
7217 (reader): Adjust.
7218
7219 2001-11-05 Akim Demaille <akim@epita.fr>
7220
7221 * src/lex.c (parse_percent_token): s/quotearg/quote/.
7222
7223 2001-11-05 Akim Demaille <akim@epita.fr>
7224
7225 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
7226 pattern.
7227
7228 2001-11-05 Akim Demaille <akim@epita.fr>
7229
7230 * src/options.h (struct option_table_struct): set_flags is void*.
7231 * src/options.c (longopts): Support `--output' and `%output'.
7232 (usage): Adjust.
7233 * src/lex.h (tok_setopt): Remove, replaced with...
7234 (tok_intopt, tok_stropt): these new guys.
7235 * src/lex.c (getopt.h): Not needed.
7236 (token_buffer, unlexed_token_buffer): Not const.
7237 (percent_table): Promote `-' over `_' in directive names.
7238 Active `%name-prefix', `file-prefix', and `output'.
7239 (parse_percent_token): Accept possible arguments to directives.
7240 Promote `-' over `_' in directive names.
7241
7242 2001-11-04 Akim Demaille <akim@epita.fr>
7243
7244 * doc/bison.texinfo (Decl Summary): Split the list into
7245 `directives for grammars' and `directives for bison'.
7246 Sort'em.
7247 Add description of `%name-prefix', `file-prefix', and `output'.
7248 Promote `-' over `_' in directive names.
7249 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
7250 Simplify the description of `--name-prefix'.
7251 Promote `-' over `_' in directive names.
7252 Promote `--output' over `--output-file'.
7253 Fix the description of `--defines'.
7254 * tests/output.at: Exercise %file-prefix and %output.
7255
7256 2001-11-02 Akim Demaille <akim@epita.fr>
7257
7258 * doc/refcard.tex: Update.
7259
7260 2001-11-02 Akim Demaille <akim@epita.fr>
7261
7262 * src/symtab.h (SUNDEF): New.
7263 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
7264 stand for `uninitialized', instead of 0.
7265 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
7266 * src/lex.c (lex): Adjust.
7267
7268 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
7269 Number it 0.
7270 Let yylex return it instead of a plain 0.
7271 Reported by Dick Streefland.
7272
7273 2001-11-02 Akim Demaille <akim@epita.fr>
7274
7275 * tests/regression.at (Mixing %token styles): New test.
7276
7277 2001-11-02 Akim Demaille <akim@epita.fr>
7278
7279 * src/reader.c (parse_thong_decl): Formatting changes.
7280 (token_translations_init): New, extracted from...
7281 (packsymbols): Here.
7282 Adjust.
7283
7284 2001-11-01 Akim Demaille <akim@epita.fr>
7285
7286 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
7287 Check that `9foo.y' produces correct cpp guards.
7288 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
7289 guards.
7290 Reported by Wwp.
7291
7292 2001-11-01 Akim Demaille <akim@epita.fr>
7293
7294 * tests/regression.at (Invalid input: 2): New.
7295 * src/lex.c (unlexed_token_buffer): New.
7296 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
7297 too.
7298 Reported by Wwp.
7299
7300 2001-11-01 Akim Demaille <akim@epita.fr>
7301
7302 * tests/calc.at: Catch up with 1.30.
7303 * configure.in: Bump to 1.49a.
7304 Adjust to newer Autotest.
7305
7306 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
7307
7308 * src/conflicts.c: Move global variables rrc_total and src_total ...
7309 (print_conflicts): here.
7310 * src/output.c (output): Free global variable user_toknums.
7311 * src/lex.c (token_obstack): Become static.
7312
7313 2001-10-18 Akim Demaille <akim@epita.fr>
7314
7315 * tests/atlocal.in (GCC): Add.
7316 * tests/calc.at: s/m4_match/m4_bmatch/.
7317 s/m4_patsubst/m4_bpatsubst/.
7318 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
7319 * configure.in: AC_SUBST(GCC).
7320
7321 2001-10-14 Marc Autret <autret_m@epita.fr>
7322
7323 * src/options.c (create_long_option_table): Fix.
7324
7325 2001-10-10 Akim Demaille <akim@epita.fr>
7326
7327 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
7328
7329 2001-10-04 Akim Demaille <akim@epita.fr>
7330
7331 * src/reader.c (parse_union_decl): Push the caracters in
7332 union_obstack, not attrs_obstack.
7333
7334 2001-10-04 Akim Demaille <akim@epita.fr>
7335
7336 Merge in the branch 1.29.
7337
7338 * src/reader.c (packsymbols): Use a temporary obstack for
7339 `%%tokendef', since output_stack is already used elsewhere.
7340
7341 2001-10-02 Akim Demaille <akim@epita.fr>
7342
7343 Bump 1.29d.
7344
7345 2001-10-02 Akim Demaille <akim@epita.fr>
7346
7347 Version 1.29c.
7348
7349 2001-10-02 Akim Demaille <akim@epita.fr>
7350
7351 * tests/regression.at (Invalid CPP headers): New.
7352 From Alexander Belopolsky.
7353 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
7354
7355 2001-10-02 Akim Demaille <akim@epita.fr>
7356
7357 * tests/regression.at (Invalid input): New.
7358 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
7359 Reported by Shura.
7360
7361 2001-10-02 Akim Demaille <akim@epita.fr>
7362
7363 * tests/calc.at: Now that --debug works, the tests must be adjusted.
7364
7365 2001-10-02 Akim Demaille <akim@epita.fr>
7366
7367 * src/output.c (output_parser): Assert `skeleton'.
7368 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
7369 systems.
7370 From Shura.
7371
7372 2001-10-01 Marc Autret <autret_m@epita.fr>
7373
7374 * src/lex.h: Echo modifications.
7375 * src/lex.c (unlex): Parameter is now token_t.
7376 From Hans Aberg.
7377
7378 2001-10-01 Marc Autret <autret_m@epita.fr>
7379
7380 * src/main.c: Include lex.h.
7381 From Hans Aberg.
7382
7383 2001-09-29 Akim Demaille <akim@epita.fr>
7384
7385 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
7386
7387 2001-09-28 Akim Demaille <akim@epita.fr>
7388
7389 * tests/testsuite.at: Update to newer Autotest.
7390 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
7391
7392 2001-09-27 Akim Demaille <akim@epita.fr>
7393
7394 Position independent wrapper.
7395
7396 * tests/bison: Remove.
7397 * tests/bison.in: New.
7398 * configure.in: Adjust.
7399
7400 2001-09-27 Paul Eggert <eggert@twinsun.com>
7401
7402 Port quotearg fixes from tar 1.13.24.
7403
7404 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
7405 tm to be declared.
7406 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
7407 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
7408
7409 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
7410 * m4/mbrtowc.m4: New file.
7411 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
7412 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
7413
7414 2001-09-27 Akim Demaille <akim@epita.fr>
7415
7416 Bump to 1.29c.
7417
7418 2001-09-27 Akim Demaille <akim@epita.fr>
7419
7420 Version 1.29b.
7421
7422 2001-09-25 Akim Demaille <akim@epita.fr>
7423
7424 * src/system.h: Include `xalloc.h'.
7425 Remove it from the C files.
7426 * src/files.c (output_files): Free the obstacks.
7427 * src/lex.c (init_lex): Rename as...
7428 (lex_init): this.
7429 (lex_free): New.
7430 * src/main.c (main): Use it.
7431
7432 2001-09-24 Marc Autret <autret_m@epita.fr>
7433
7434 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
7435 to output informations in fout (FILE*).
7436 (open_graph, close_graph): Likewise.
7437 (output_graph, output_edge, output_node): Likewise.
7438 * src/vcg.h: Update function prototypes.
7439 * src/print_graph.c (print_graph): Open output graph file.
7440 (print_actions): Adjust.
7441 * src/files.h: Remove extern declaration.
7442 * src/files.c: Remove graph_obstack declaration.
7443 (open_files): Remove graph_obstack initialization.
7444 (output_files): Remove graph_obstack saving.
7445
7446 2001-09-24 Marc Autret <autret_m@epita.fr>
7447
7448 * src/files.c (compute_output_file_names): Fix.
7449
7450 2001-09-24 Marc Autret <autret_m@epita.fr>,
7451 Akim Demaille <akim@epita.fr>
7452
7453 * src/reader.c (reader): Remove call to free_symtab ().
7454 * src/main.c (main): Call it here.
7455 Include symtab.h.
7456 * src/conflicts.c (initialize_conflicts): Rename as...
7457 (solve_conflicts): this.
7458 * src/print.c (print_core, print_actions, print_state)
7459 (print_grammar): Dump to a file instead a `output_obstack'.
7460 (print_results): Dump `output_obstack', and then proceed with the
7461 FILE *.
7462 * src/files.c (compute_output_file_names, close_files): New.
7463 (output_files): Adjust.
7464 * src/main.c (main): Adjust.
7465
7466 2001-09-23 Marc Autret <autret_m@epita.fr>
7467
7468 * src/files.c (compute_header_macro): Computes header macro name
7469 from spec_defines_file when given.
7470
7471 2001-09-23 Marc Autret <autret_m@epita.fr>
7472
7473 * src/files.c (output_files): Add default extensions.
7474
7475 2001-09-22 Akim Demaille <akim@epita.fr>
7476
7477 * src/conflicts.c (finalize_conflicts): Rename as...
7478 (free_conflicts): this.
7479
7480 2001-09-22 Akim Demaille <akim@epita.fr>
7481
7482 * src/gram.c (gram_free): Rename back as...
7483 (dummy): this.
7484 (output_token_translations): Free `token_translations'.
7485 * src/symtab.c (free_symtab): Free the tag field.
7486
7487 2001-09-22 Akim Demaille <akim@epita.fr>
7488
7489 Remove `translations' as it is always set to true.
7490
7491 * src/gram.h: Adjust.
7492 * src/reader.c (packsymbols, parse_token_decl): Adjust
7493 * src/print.c (print_grammar): Adjust.
7494 * src/output.c (output_token_translations): Adjust.
7495 * src/lex.c (lex): Adjust.
7496 * src/gram.c: Be sure the set pointers to NULL.
7497 (dummy): Rename as...
7498 (gram_free): this.
7499
7500 2001-09-22 Akim Demaille <akim@epita.fr>
7501
7502 * configure.in: Invoke AM_LIB_DMALLOC.
7503 * src/system.h: Use dmalloc.
7504 * src/LR0.c: Be sure to have pointers initialized to NULL.
7505 (allocate_itemsets): Allocate kernel_items only if needed.
7506
7507 2001-09-22 Akim Demaille <akim@epita.fr>
7508
7509 * configure.in: Bump to 1.29b.
7510 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
7511 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
7512 need xmalloc.c in calc.y.
7513 From Pascal Bart.
7514
7515 2001-09-21 Akim Demaille <akim@epita.fr>
7516
7517 Version 1.29a.
7518 * Makefile.maint, config/config.guess, config/config.sub,
7519 * config/missing: Update from masters.
7520 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
7521 upon package.m4.
7522 * configure.in (ALL_LINGUAS): Add `tr'.
7523
7524 2001-09-21 Akim Demaille <akim@epita.fr>
7525
7526 * tests/Makefile.am (package.m4): Move to...
7527 ($(srcdir)/$(TESTSUITE)): here.
7528
7529 2001-09-20 Akim Demaille <akim@epita.fr>
7530
7531 * src/complain.c: No longer try to be standalone: use system.h.
7532 Don't assume __STDC__ is defined to 1. Just test if it is defined.
7533 * src/complain.h: Likewise.
7534 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
7535 Remove the unused variable `n'.
7536 From Albert Chin-A-Young.
7537
7538 2001-09-18 Marc Autret <autret_m@epita.fr>
7539
7540 * doc/bison.1: Update.
7541 * doc/bison.texinfo (Bison Options): Update --defines and --graph
7542 descriptions.
7543 (Option Cross Key): Update.
7544 Add --graph.
7545
7546 2001-09-18 Marc Autret <autret_m@epita.fr>
7547
7548 * tests/regression.at: New test (comment in %union).
7549
7550 2001-09-18 Marc Autret <autret_m@epita.fr>
7551
7552 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
7553 do that.
7554 Reported by Keith Browne.
7555
7556 2001-09-18 Marc Autret <autret_m@epita.fr>
7557
7558 * tests/output.at: Add tests for --defines and --graph.
7559
7560 2001-09-18 Marc Autret <autret_m@epita.fr>
7561
7562 * tests/output.at: Removes tests of %{header,src}_extension features.
7563
7564 2001-09-18 Akim Demaille <akim@epita.fr>
7565
7566 * tests/Makefile.am (package.m4): New.
7567 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
7568 (_AT_CHECK_CALC_ERROR): Likewise.
7569 Factor the `, ' part of verbose error messages.
7570
7571 2001-09-18 Marc Autret <autret_m@epita.fr>
7572
7573 * src/getargs.c (longopts): Declare --defines and --graph as options
7574 with optional arguments.
7575 * src/files.h: Add extern declarations.
7576 * src/files.c (spec_graph_file, spec_defines_file): New.
7577 (output_files): Update.
7578 Remove CPP-outed code.
7579
7580 2001-09-18 Marc Autret <autret_m@epita.fr>
7581
7582 Turn off %{source,header}_extension feature.
7583
7584 * src/files.c (compute_exts_from_gf): Update.
7585 (compute_exts_from_src): Update.
7586 (output_files): CPP-out useless code.
7587 * src/files.h: Remove {header,source}_extension extern declarations.
7588 * src/reader.c (parse_dquoted_param): CPP-out.
7589 (parse_header_extension_decl): Remove.
7590 (parse_source_extension_decl): Remove.
7591 (read_declarations): Remove cases tok_{hdrext,srcext}.
7592 * src/lex.c (percent_table): Remove {header,source}_extension entries.
7593 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
7594
7595 2001-09-10 Akim Demaille <akim@epita.fr>
7596
7597 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
7598 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
7599 (AT_CHECK_OUTPUT): this.
7600 Merely check ls' exit status, its output is useless.
7601
7602 2001-09-10 Akim Demaille <akim@epita.fr>
7603
7604 * tests/calc.at: Use m4_match.
7605 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
7606
7607 2001-09-10 Marc Autret <autret_m@epita.fr>,
7608 Akim Demaille <akim@epita.fr>
7609
7610 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
7611 enum color_e.
7612 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
7613 to `normal'.
7614 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
7615 * src/lex.h: Adjust prototype.
7616 (token_t): Add `tok_undef'.
7617 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
7618 (parse_percent_token): Now returns token_t.
7619 Add default statement in switch.
7620 (lex): Separate `c' as an input variable, from the token_t result
7621 part.
7622 (unlexed): Is a token_t.
7623
7624 2001-09-10 Akim Demaille <akim@epita.fr>
7625
7626 * configure.in: Bump to 1.29a.
7627
7628 2001-09-07 Akim Demaille <akim@epita.fr>
7629
7630 Version 1.29.
7631
7632 2001-08-30 Akim Demaille <akim@epita.fr>
7633
7634 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
7635 * m4/atconfig.m4: Remove.
7636 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
7637 * tests/bison: New.
7638 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
7639 m4_if, m4_patsubst, and m4_regexp.
7640 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
7641 `input' file instead of echo.
7642
7643 2001-08-29 Akim Demaille <akim@epita.fr>
7644
7645 Bump to 1.28e.
7646
7647 2001-08-29 Akim Demaille <akim@epita.fr>
7648
7649 Version 1.28d.
7650
7651 2001-08-29 Paul Eggert <eggert@twinsun.com>
7652
7653 * src/bison.simple (yyparse): Don't take the address of an
7654 item before the start of an array, as that doesn't conform to
7655 the C Standard.
7656
7657 2001-08-29 Robert Anisko <anisko_r@epita.fr>
7658
7659 * doc/bison.texinfo (Location Tracking Calc): New node.
7660
7661 2001-08-29 Paul Eggert <eggert@twinsun.com>
7662
7663 * src/output.c (output): Do not define const, as this now
7664 causes more problems than it cures.
7665
7666 2001-08-29 Akim Demaille <akim@epita.fr>
7667
7668 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
7669 the nodes.
7670 Be sure to tag the `detailmenu'.
7671
7672 2001-08-29 Akim Demaille <akim@epita.fr>
7673
7674 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
7675 download in a tmp dir.
7676
7677 2001-08-28 Marc Autret <autret_m@epita.fr>
7678
7679 * config/depcomp: New file.
7680
7681 2001-08-28 Marc Autret <autret_m@epita.fr>
7682
7683 * doc/bison.1 (mandoc): Adjust.
7684 From Juan Manuel Guerrero.
7685
7686 2001-08-28 Marc Autret <autret_m@epita.fr>
7687
7688 * src/print_graph.c (print_state): Fix.
7689
7690 2001-08-27 Marc Autret <autret_m@epita.fr>
7691
7692 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
7693 char * members.
7694 Echo modifications to the functions prototypes.
7695 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
7696
7697 2001-08-27 Marc Autret <autret_m@epita.fr>
7698
7699 * src/vcg.c: Include `xalloc.h'.
7700 (add_colorentry): New.
7701 (add_classname): New.
7702 (add_infoname): New.
7703 * src/vcg.h: Add new prototypes.
7704
7705 2001-08-27 Akim Demaille <akim@epita.fr>
7706
7707 * Makefile.maint: Sync. again with CVS Autoconf.
7708
7709 2001-08-27 Akim Demaille <akim@epita.fr>
7710
7711 * Makefile.maint: Formatting changes.
7712 (po-update, cvs-update, update): New targets.
7713 (AMTAR): Remove.
7714
7715 2001-08-27 Akim Demaille <akim@epita.fr>
7716
7717 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
7718 * Makefile.maint: Sync. with CVS Autoconf.
7719
7720 2001-08-27 Marc Autret <autret_m@epita.fr>
7721
7722 * src/vcg.h (struct infoname_s): New.
7723 (struct colorentry_s): New.
7724 (graph_s): New fields {vertical,horizontal}_order in structure.
7725 Add `infoname' field.
7726 Add `colorentry' field;
7727 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
7728 (G_HORIZONTAL_ORDER): New.
7729 (G_INFONAME): New.
7730 (G_COLORENTRY): New.
7731 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
7732 Add output of `infoname'.
7733 Add output of `colorentry'.
7734
7735 2001-08-27 Marc Autret <autret_m@epita.fr>
7736
7737 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
7738 This one shadowed a global parameter.
7739
7740 2001-08-24 Marc Autret <autret_m@epita.fr>
7741
7742 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
7743 instead of `unsigned'.
7744 (print_state): Do not call obstack_object_size () in obstack_grow ()
7745 to avoid macro variables shadowing.
7746
7747 2001-08-23 Marc Autret <autret_m@epita.fr>
7748
7749 * src/lex.c (percent_table): Typo: s/naem/name/.
7750 Add graph option.
7751 Normalize new options declarations.
7752
7753 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
7754
7755 * tests/suite.at: Exercise %header_extension and %source_extension.
7756
7757 2001-08-16 Marc Autret <autret_m@epita.fr>
7758
7759 * src/reader.c (parse_dquoted_param): New.
7760 (parse_header_extension_decl): Use it.
7761 (parse_source_extension_decl): Likewise.
7762
7763 2001-08-16 Marc Autret <autret_m@epita.fr>
7764
7765 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
7766 (get_xxxx_str): Use assert () instead of complain ().
7767 Remove return invokations in default cases.
7768 (get_decision_str): Modify default behaviour. Remove second argument.
7769 Echo modifications on calls.
7770 (output_graph): Fix.
7771
7772 2001-08-16 Marc Autret <autret_m@epita.fr>
7773
7774 * src/getargs.c (usage): Update with ``-g, --graph''.
7775
7776 2001-08-16 Marc Autret <autret_m@epita.fr>
7777
7778 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
7779 (Option Cross Key): Likewise.
7780 * doc/bison.1: Update.
7781
7782 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
7783
7784 * src/output.c (output_master_parser): Don't finish action_obstack.
7785 (output_parser): Don't care about the muscle action, here.
7786 (prepare): Copy the action_obstack in the action muscle.
7787 (output): Free action_obstack.
7788
7789 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
7790
7791 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
7792 will contain `%union' declaration.
7793 (parse_union_decl): Delete #line directive output.
7794 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
7795 informations about %union.
7796 (parse_union_decl): Copy the union_obstack in the muscle stype.
7797 * src/bison.simple: Add new #line directive.
7798 Add typdef %%stype YYSTYPE.
7799
7800 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
7801
7802 * src/bison.simple: Add new `#line' directive.
7803
7804 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
7805
7806 * src/bison.simple: New `#line' directive.
7807 * src/output.c (output_parser): Support new dynamic muscle input_line.
7808
7809 2001-09-22 Marc Autret <autret_m@epita.fr>
7810
7811 * src/output.c (output_master_parser): New.
7812 (output_parser): Be more re-entrant.
7813
7814 2001-09-21 Marc Autret <autret_m@epita.fr>
7815
7816 * src/reader.c (copy_definition, parse_union_decl): Update and use
7817 `linef' muscle.
7818 (copy_action): Likewise.
7819 Use obstack_1grow ().
7820 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
7821
7822 2001-09-21 Marc Autret <autret_m@epita.fr>
7823
7824 * src/options.c (option_table): Adjust.
7825 * src/lex.c (parse_percent_token): Fix.
7826
7827 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
7828
7829 * src/options.c (symtab.h): Include it, need by lex.h.
7830
7831 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
7832
7833 * src/lex.c (parse_percent_token): Change type of variable `tx', which
7834 is now an option_table_struct*.
7835 (option_strcmp): New function option_strcmp.
7836 (parse_percent_token): Call option_strcmp.
7837 * src/getargs.c (xalloc.h, options.h): Include it.
7838 (getargs): Call create_long_option_table.
7839 (getargs): Free longopts at the end of the function.
7840 (shortopts): Move in options.c.
7841 * src/options.c (create_long_option_table): New function. Convert
7842 information from option_table to option structure.
7843 * src/reader.c (options.h): Include it.
7844
7845 * src/Makefile.am: Adjust.
7846 * src/options.c (option_table): Create from longopts and percent_table.
7847 * src/getargs.c (longopts): Delete.
7848 * src/lex.c (struct percent_table_struct): Delete.
7849 (percent_table): Delete.
7850 (options.h): Include it.
7851 * src/options.c: Create.
7852 * src/options.h: Create.
7853 Declare enum opt_access_e.
7854 Define struct option_table_struct.
7855
7856 2001-09-20 Marc Autret <autret_m@epita.fr>
7857
7858 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
7859 sections of Bison.
7860
7861 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
7862
7863 * src/bison.simple: s/%%filename/%%skeleton.
7864 * src/muscle_tab.c (getargs.h): Include it.
7865 (muscle_init): Insert new muscle skeleton.
7866
7867 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
7868
7869 * src/output.c (output_parser): Delete unused variable actions_dumped.
7870
7871 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
7872
7873 * src/output.c (output): Delete call to reader_output_yylsp.
7874 * src/reader.c (reader): Likewise.
7875 * src/reader.h: Delete declaration of reader_output_yylsp.
7876
7877 2001-09-02 Marc Autret <autret_m@epita.fr>
7878
7879 * src/reader.c: Include muscle_tab.h.
7880 (parse_union_decl): Update.
7881 (parse_macro_decl): Rename parse_muscle_decl.
7882 Update to use renamed functions and variable.
7883 (read_declarations, copy_action, read_additionnal_code, : Updated
7884 with correct variables and functions names.
7885 (packsymbols, reader): Likewise.
7886
7887 * src/reader.h (muscle_obstack): Extern declaration update.
7888
7889 * src/output.c: Include muscle_tab.h
7890 In all functions using macro_insert, change by using muscle_insert ().
7891 (macro_obstack): Rename muscle_obstack.
7892 Echo modifications in the whole file.
7893 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
7894 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
7895 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
7896
7897 * src/muscle_tab.h: Update double inclusion macros.
7898 (macro_entry_s): Rename muscle_entry_s.
7899 Update prototypes.
7900
7901 * src/muscle_tab.c: Include muscle_tab.h.
7902 Rename macro_tabble to muscle_table.
7903 (mhash1, mhash2, mcmp): Use muscle_entry.
7904 (macro_init): Rename muscle_init. Update.
7905 (macro_insert): Rename muscle_insert. Update.
7906 (macro_find): Rename muscle_find. Update.
7907
7908 * src/main.c: Include muscle_tab.h.
7909 (main): Call muscle_init ().
7910 * src/Makefile.am (bison_SOURCES): Echo modifications.
7911
7912 2001-09-02 Marc Autret <autret_m@epita.fr>
7913
7914 Now the files macro_tab.[ch] are named muscle_tab.[ch].
7915
7916 * src/muscle_tab.c, src/muscle_tab.h: Add files.
7917
7918 2001-09-02 Marc Autret <autret_m@epita.fr>
7919
7920 * src/macrotab.c, src/macrotab.h: Remove.
7921
7922 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
7923
7924 * src/reader.c (copy_guard): Use muscle to specify the `#line'
7925 filename.
7926
7927 2001-09-01 Marc Autret <autret_m@epita.fr>
7928
7929 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
7930 to an explicit value to activate the feature. We do it here.
7931
7932 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
7933
7934 * src/output.c (prepare): Delete the `filename' muscule insertion.
7935 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
7936 (parse_union_decl): Likewise.
7937 * src/macrotab.c (macro_init): Initialize filename by infile.
7938
7939 2001-08-31 Marc Autret <autret_m@epita.fr>
7940
7941 * src/bison.simple (YYLSP_NEEDED): New definition.
7942 * src/output.c (prepare): Add macro insertion of `locations_flag'
7943
7944 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
7945
7946 * src/output.c (prepare): Delete insertion of previous muscles,
7947 and insert the `prefix' muscles.
7948 * src/macrotab.c (macro_init): Likewise.
7949 (macro_init): Initialization prefix directive by `yy'.
7950 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
7951 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
7952 yylval, yydebug, yyerror, yynerrs and yyparse.
7953 New directive `#define' to substitute yydebug, ... with option
7954 name_prefix.
7955
7956 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
7957
7958 * src/main.c (main): Standardize.
7959 * src/output.c (output_table_data, output_parser): Likewise.
7960 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
7961
7962 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
7963
7964 * src/reader.c (read_additionnal_code): Rename %%user_code to
7965 %%epilogue.
7966 * src/output.c (output): Rename %%declarations to %%prologue.
7967 * src/bison.simple: Echo modifications.
7968
7969 2001-08-31 Marc Autret <autret_m@epita.fr>
7970
7971 * src/reader.c (readgram): CleanUp.
7972 (output_token_defines): Likewise.
7973 (packsymbols): Likewise.
7974 (reader): Likewise.
7975 * src/output.c (output): CPP-out useless code.
7976
7977 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
7978
7979 * src/reader.c (reader): Delete obsolete call to function
7980 output_trailers and output_headers.
7981 * src/output.h: Remove obsolete functions prototypes of output_headers
7982 and output_trailers.
7983
7984 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
7985
7986 * src/main.c: Include macrotab.h.
7987 * src/macrotab.h (macro_entry_s): Constify fields.
7988 Adjust functions prototypes.
7989 * src/macrotab.c (macro_insert): Constify key and value.
7990 (macro_find): Constify key.
7991 (macro_insert): Include 'xalloc.h'
7992 (macro_insert): Use XMALLOC.
7993 (macro_find): Constify return value.
7994 * src/output.c (output_table_data): Rename table to table_data.
7995 (output_parser): Constify macro_key, macro_value.
7996
7997 2001-08-30 Marc Autret <autret_m@epita.fr>
7998
7999 * src/reader.c (parse_skel_decl): New.
8000 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
8001 * src/lex.h (token_t): New token `tok_skel'.
8002 * src/lex.c (percent_table): Add skeleton option entry.
8003 Standardize.
8004
8005 2001-08-29 Marc Autret <autret_m@epita.fr>
8006
8007 * src/bison.simple: Add %%user_code directive at the end.
8008 * src/reader.c (read_additionnal_code): New.
8009 (reader): Use it.
8010 * src/output.c (output_program): Remove.
8011 (output): Update.
8012
8013 2001-08-28 Marc Autret <autret_m@epita.fr>
8014
8015 * src/output.c (output_actions): Clean up.
8016 (output_gram): CPP-out useless code.
8017 * src/reader.c (reader): Clean up, CPP-out useless code.
8018
8019 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
8020
8021 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
8022 directive.
8023 * src/bison.simple: Add `%%definitions'.
8024
8025 2001-08-28 Marc Autret <autret_m@epita.fr>
8026
8027 * config/depcomp: New file.
8028
8029 2001-08-27 Paul Eggert <eggert@twinsun.com>
8030
8031 * src/bison.simple (yyparse): Don't take the address of an
8032 item before the start of an array, as that doesn't conform to
8033 the C Standard.
8034
8035 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
8036
8037 * src/output.c (output): Remove the initialization of the macro
8038 obstack. It was done too late here.
8039
8040 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
8041 completely wrong.
8042 (reader): Initialize the macro obstack here, since we need it to grow
8043 '%define' directives.
8044
8045 * src/reader.h: Declare the macro obstack as extern.
8046
8047 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
8048
8049 * src/output.c (output_parser): Fix. Store single '%' characters in
8050 the output obstack instead of throwing them away.
8051
8052 2001-08-27 Akim Demaille <akim@epita.fr>
8053
8054 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
8055
8056 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8057
8058 * lib/Makefile.am: Adjust.
8059
8060 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8061
8062 * src/bison.simple: Update and add '%%' directives.
8063
8064 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8065
8066 * src/reader.c (reader): Remove calls to 'output_headers' and
8067 'output_trailers'. Remove some C output.
8068 (readgram): Disable a piece of code that was writing a default
8069 definition for 'YYSTYPE'.
8070 (reader_output_yylsp): Remove.
8071 (packsymbols): Output token defintions to a macro.
8072 (copy_definition): Disable C output.
8073
8074 * src/reader.c (parse_macro_decl): New function used to parse macro
8075 declarations.
8076 (copy_string2): Put the body of copy_string into this new function.
8077 Add a parameter to let the caller choose whether he wants to copy the
8078 string delimiters or not.
8079 (copy_string): Be a simple call to copy_string2 with the last argument
8080 bound to true.
8081 (read_declarations): Add case for macro definition.
8082 (copy_identifier): New.
8083 (parse_macro_decl): Read macro identifiers using copy_identifier
8084 rather than lex.
8085
8086 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8087
8088 * src/output.c (prepare): Add prefixed names.
8089 (output_parser): Output semantic actions.
8090 (output_parser): Fix bug on '%%line' directives.
8091
8092 * src/output.c (output_headers): Remove. The C code printed by this
8093 function should now be in the skeletons.
8094 (output_trailers): Remove.
8095 (output): Disable call to 'reader_output_yylsp'.
8096 (output_rule_data): Do not output tables to the table obstack.
8097
8098 * src/output.c: Remove some C dedicated output.
8099 Improve the use of macro and output obstacks.
8100 (output_defines): Remove.
8101
8102 * src/output.c (output_token_translations): Associate 'translate'
8103 table with a macro. No output to the table obstack.
8104 (output_gram): Same for 'rhs' and 'prhs'.
8105 (output_stos): Same for 'stos'.
8106 (output_rule_data): Same for 'r1' and 'r2'.
8107 (token_actions): Same for 'defact'.
8108 (goto_actions): Same for 'defgoto'.
8109 (output_base): Same for 'pact' and 'pgoto'.
8110 (output_table): Same for 'table'.
8111 (output_check): Same for 'check'.
8112
8113 * src/output.c (output_table_data): New function.
8114 (output_short_table): Remove.
8115 (output_short_or_char_table): Remove.
8116
8117 * src/output.c (output_parser): Replace most of the skeleton copy code
8118 with something new. Skeletons are now processed character by character
8119 rather than line by line, and Bison looks for '%%' macros. This is the
8120 first step in making Bison's output process (a lot) more flexible.
8121 (output_parser): Use the macro table.
8122
8123 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8124
8125 * src/main.c (main): Initialize the macro table.
8126
8127 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8128
8129 * src/lex.c (percent_table): Add tok_define.
8130 * src/lex.h: Add tok_define.
8131
8132 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8133
8134 * src/macrotab.c: New file.
8135 * src/macrotab.h: New file.
8136 * src/Makefile.am: Update.
8137
8138 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
8139
8140 * lib/hash.c: New file.
8141 * lib/hash.h: New file.
8142 * lib/Makefile.am: Update.
8143
8144 2001-08-15 Akim Demaille <akim@epita.fr>
8145
8146 Version 1.28c.
8147
8148 2001-08-15 Marc Autret <autret_m@epita.fr>
8149
8150 * src/reader.c (readgram): Indent output macro YYSTYPE.
8151 (packsymbols): Likewise.
8152 (output_token_defines): Likewise.
8153 * src/files.c: Standardize.
8154 (compute_header_macro): New.
8155 (defines_obstack_save): New. Use compute_header_macro.
8156 (output_files): Update. Use defines_obstack_save.
8157
8158 2001-08-15 Akim Demaille <akim@epita.fr>
8159
8160 * doc/bison.texinfo (Table of Symbols): Document
8161 YYSTACK_USE_ALLOCA.
8162
8163 2001-08-15 Akim Demaille <akim@epita.fr>
8164
8165 * missing: Update from CVS Automake.
8166 * config/config.guess, config/config.sub, config/texinfo.tex:
8167 Update from gnu.org.
8168
8169 2001-08-15 Akim Demaille <akim@epita.fr>
8170
8171 * Makefile.maint: Sync with CVS Autoconf.
8172
8173 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
8174
8175 * doc/bison.texinfo: Include GNU Free Documentation License from
8176 `fdl.texi'.
8177 * doc/fdl.texi: Add to package.
8178
8179 2001-08-14 Marc Autret <autret_m@epita.fr>
8180
8181 Turn on %{source,header}_extension features.
8182
8183 * src/lex.c (percent_table): Un-CPP out header_extension and
8184 source_extension.
8185 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
8186 (compute_exts_from_src): Remove conditions. It restores priorities
8187 between options.
8188
8189 2001-08-14 Marc Autret <autret_m@epita.fr>
8190
8191 * src/files.c (compute_base_names): Add extensions computing when
8192 `--file-prefix' used.
8193 Standardize function calls.
8194
8195 2001-08-13 Marc Autret <autret_m@epita.fr>
8196
8197 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
8198 defining it (defined but null disables alloca).
8199
8200 2001-08-13 Marc Autret <autret_m@epita.fr>
8201
8202 * src/bison.simple (_yy_memcpy): CPP reformat.
8203
8204 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
8205
8206 * tests/atconfig.in (CPPFLAGS): Fix.
8207
8208 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
8209
8210 * doc/bison.texinfo: Include GNU General Public License from
8211 `gpl.texi'.
8212 * doc/gpl.texi: Add to package.
8213
8214 2001-08-10 Marc Autret <autret_m@epita.fr>
8215
8216 * src/print_graph.h: Fix.
8217 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
8218
8219 2001-08-10 Akim Demaille <akim@epita.fr>
8220
8221 * src/system.h: Provide default declarations for stpcpy, strndup,
8222 and strnlen.
8223
8224 2001-08-10 Robert Anisko <anisko_r@epita.fr>
8225
8226 * doc/bison.texinfo (Locations): Update @$ stuff.
8227
8228 2001-08-09 Robert Anisko <anisko_r@epita.fr>
8229
8230 * src/bison.simple (YYLLOC_DEFAULT): Update.
8231 (yyparse): Adjust.
8232
8233 2001-08-08 Marc Autret <autret_m@epita.fr>
8234
8235 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
8236 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
8237 Reported by Fabrice Bauzac.
8238
8239 2001-08-08 Marc Autret <autret_m@epita.fr>
8240
8241 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
8242 * src/vcg.c (output_node): Fix.
8243 * src/vcg.h: Cleanup.
8244 * src/print_graph.c: Add comments.
8245 (node_output_size): New global variable. Simplify the formatting of
8246 the VCG graph output.
8247 (print_actions): Unused code is now used. It notifies the final state
8248 and no action states in the VCG graph. It also give the reduce actions.
8249 The `shift and goto' edges are red and the `go to state' edges are
8250 blue.
8251 Get the current node name and node_obstack by argument.
8252 (node_obstack): New variable.
8253 (print_state): Manage node_obstack.
8254 (print_core): Use node_obstack given by argument.
8255 A node is not only computed here but in print_actions also.
8256 (print_graph): CPP out useless code instead of commenting it.
8257
8258 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
8259
8260 * tests/atconfig.in (CPPFLAGS): Fix.
8261
8262 2001-08-07 Akim Demaille <akim@epita.fr>
8263
8264 * src/print_graph.c (quote): New.
8265 (print_core): Use it.
8266
8267 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
8268
8269 * src/vcg.c (complain.h): Include it.
8270 Unepitaize `return' invocations.
8271 [NDEBUG] (main): Remove.
8272 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
8273 * src/files.c (open_files): Initialize graph_obstack.
8274 * src/print_graph.c (print_actions): CPP out useless code.
8275 (print_core): Don't output the last `\n' in labels.
8276 Use `quote'.
8277 * src/files.c (output_files): Output the VCG file.
8278 * src/main.c (main): Invoke print_graph ();
8279
8280 2001-08-06 Marc Autret <autret_m@epita.fr>
8281
8282 Automaton VCG graph output.
8283 Using option ``-g'' or long option ``--graph'', you can generate
8284 a gram_filename.vcg file containing a VCG description of the LALR (1)
8285 automaton of your grammar.
8286
8287 * src/main.c: Call to print_graph() function.
8288 * src/getargs.h: Update.
8289 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
8290 (graph_flag): New flag.
8291 (longopts): Update.
8292 (getargs): Add case `g'.
8293 * src/files.c (graph_obstack): New obstack struct.
8294 (open_files): Initialize new obstack.
8295 (output_files): Saves graph_obstack if required.
8296 * src/files.h (graph_obstack): New extern declaration.
8297 * src/Makefile.am: Add new source files.
8298
8299 2001-08-06 Marc Autret <autret_m@epita.fr>
8300
8301 * src/print_graph.c, src/print_graph.h (graph): New.
8302 * src/vcg.h: New file.
8303 * src/vcg.c: New file, VCG graph handling.
8304
8305 2001-08-06 Marc Autret <autret_m@epita.fr>
8306
8307 Add of %source_extension and %header_extension which specify
8308 the source or/and the header output file extension.
8309
8310 * src/files.c (compute_base_names): Remove initialisation of
8311 src_extension and header_extension.
8312 (compute_exts_from_gf): Update.
8313 (compute_exts_from_src): Update.
8314 (output_files): Update.
8315 * src/reader.c (parse_header_extension_decl): New.
8316 (parse_source_extension_decl): New.
8317 (read_declarations): New case statements for the new tokens.
8318 * src/lex.c (percent_table): Add entries for %source_extension
8319 and %header_extension.
8320 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
8321
8322 2001-08-06 Marc Autret <autret_m@epita.fr>
8323
8324 * configure.in: Bump to 1.28c.
8325 * doc/bison.texinfo: Texinfo thingies.
8326
8327 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
8328
8329 * tests/atconfig.in (CPPFLAGS): Add.
8330 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
8331
8332 2001-08-03 Akim Demaille <akim@epita.fr>
8333
8334 Version 1.28b.
8335
8336 2001-08-03 Akim Demaille <akim@epita.fr>
8337
8338 * tests/Makefile.am (check-local): Ship testsuite.
8339 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
8340 Include `string.h'.
8341
8342 2001-08-03 Akim Demaille <akim@epita.fr>
8343
8344 * configure.in: Try using -Wformat when compiling.
8345
8346 2001-08-03 Akim Demaille <akim@epita.fr>
8347
8348 * configure.in: Bump to 1.28b.
8349
8350 2001-08-03 Akim Demaille <akim@epita.fr>
8351
8352 * src/complain.c: Adjust strerror_r portability issues.
8353
8354 2001-08-03 Akim Demaille <akim@epita.fr>
8355
8356 Version 1.28a.
8357
8358 2001-08-03 Akim Demaille <akim@epita.fr>
8359
8360 * src/getargs.c, src/getarg.h (skeleton)): Constify.
8361 * src/lex.c (literalchar): Avoid name clashes on `buf'.
8362 * src/getargs.c: Include complain.h.
8363 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
8364 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
8365
8366 2001-08-03 Akim Demaille <akim@epita.fr>
8367
8368 * src/reader.c (readgram): Display hidden chars in error messages.
8369
8370 2001-08-03 Akim Demaille <akim@epita.fr>
8371
8372 Update to gettext 0.10.39.
8373
8374 2001-08-03 Akim Demaille <akim@epita.fr>
8375
8376 * lib/strspn.c: New.
8377
8378 2001-08-01 Marc Autret <autret_m@epita.fr>
8379
8380 * doc/bison.texinfo: Update.
8381 * doc/bison.1 (mandoc): Update.
8382 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
8383 * src/files.c: Support output files extensions computing.
8384 (src_extension): New static variable.
8385 (header_extension): New static variable.
8386 (tr): New function.
8387 (get_extension_index): New function, gets the index of an extension
8388 filename in a string.
8389 (compute_exts_from_gf): New function, computes extensions from the
8390 grammar file extension.
8391 (compute_exts_from_src): New functions, computes extensions from the
8392 C source file extension, file given by ``-o'' option.
8393 (compute_base_names): Update.
8394 (output_files): Update.
8395
8396 2001-08-01 Robert Anisko <anisko_r@epita.fr>
8397
8398 * doc/bison.texi: Document @$.
8399 (Locations): New section.
8400
8401 2001-07-18 Akim Demaille <akim@epita.fr>
8402
8403 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
8404 * config/prev-version.txt, config/move-if-change: New.
8405 * Makefile.am: Adjust.
8406
8407 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
8408
8409 * src/bison.simple (yyparse): Suppress warning `comparaison
8410 between signed and unsigned'.
8411
8412 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
8413
8414 * src/getargs.h (raw_flag): Remove.
8415 * src/getargs.c: Die on `-r'/`--raw'.
8416 * src/lex.c (parse_percent_token): Die on `%raw'.
8417 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
8418 * tests/calc.at: Suppress test with option `--raw'.
8419
8420 2001-07-14 Akim Demaille <akim@epita.fr>
8421
8422 * config/: New.
8423 * configure.in: Require Autoconf 2.50.
8424 Update to gettext 0.10.38.
8425
8426 2001-03-16 Akim Demaille <akim@epita.fr>
8427
8428 * doc/bison.texinfo: ANSIfy the examples.
8429
8430 2001-03-16 Akim Demaille <akim@epita.fr>
8431
8432 * getargs.c (skeleton): New variable.
8433 (longopts): --skeleton is a new option.
8434 (shortopts, getargs): -S is a new option.
8435 * getargs.h: Declare skeleton.
8436 * output.c (output_parser): Use it.
8437
8438 2001-03-16 Akim Demaille <akim@epita.fr>
8439
8440 * m4/strerror_r.m4: New.
8441 * m4/error.m4: Run AC_FUNC_STRERROR_R.
8442 * lib/error.h, lib/error.c: Update.
8443
8444 2001-03-16 Akim Demaille <akim@epita.fr>
8445
8446 * src/getargs.c (longopts): Clean up.
8447
8448 2001-02-21 Akim Demaille <akim@epita.fr>
8449
8450 * src/reader.c (gensym): `gensym_count' is your own.
8451 Use a static buf to create the symbol name, as token_buffer is no
8452 longer a buffer.
8453
8454 2001-02-08 Akim Demaille <akim@epita.fr>
8455
8456 * src/conflicts.c (conflict_report): Be sure not to append to res
8457 between two calls, which could happen if both first sprintf were
8458 skipped, but not the first cp += strlen.
8459
8460 2001-02-08 Akim Demaille <akim@epita.fr>
8461
8462 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
8463 New, from fileutils 4.0.37.
8464 * configure.in: Require Autoconf 2.49c. I took some time before
8465 making this decision. This is the only way out for portability
8466 issues in Bison, it would mean way too much duplicate effort to
8467 import in Bison features implemented in 2.49c since 2.13.
8468 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
8469
8470 2001-02-02 Akim Demaille <akim@epita.fr>
8471
8472 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
8473 * lib/xalloc.h, lib/xmalloc.c: Update.
8474
8475 2001-01-19 Akim Demaille <akim@epita.fr>
8476
8477 Get rid of the ad hoc handling of token_buffer in the scanner: use
8478 the obstacks.
8479
8480 * src/lex.c (token_obstack): New.
8481 (init_lex): Initialize it. No longer call...
8482 (grow_token_buffer): this. Remove it.
8483 Adjust all the places which used it to use the obstack.
8484
8485 2001-01-19 Akim Demaille <akim@epita.fr>
8486
8487 * src/lex.h: Rename all the tokens:
8488 s/\bENDFILE\b/tok_eof/g;
8489 s/\bIDENTIFIER\b/tok_identifier/g;
8490 etc.
8491 Let them be enums, not #define, to ease debugging.
8492 Adjust all the code.
8493
8494 2001-01-18 Akim Demaille <akim@epita.fr>
8495
8496 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
8497 * src/lex.c (maxtoken, grow_token_buffer): Static.
8498
8499 2001-01-18 Akim Demaille <akim@epita.fr>
8500
8501 Since we now use obstacks, more % directives can be enabled.
8502
8503 * src/lex.c (percent_table): Also accept `%yacc',
8504 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
8505 `%debug'.
8506 Handle the actions for `%semantic_parser' and `%pure_parser' here,
8507 instead of returning a token.
8508 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
8509 * src/reader.c (read_declarations): Adjust.
8510 * src/files.c (open_files): Don't call `compute_base_names', don't
8511 compute `attrsfile' since they depend upon data which might be
8512 *in* the input file now.
8513 (output_files): Do it here.
8514 * src/output.c (output_headers): Document the fact that this patch
8515 introduces a guaranteed SEGV for semantic parsers.
8516 * doc/bison.texinfo: Document them.
8517 * tests/suite.at: Exercise these %options.
8518
8519 2000-12-20 Akim Demaille <akim@epita.fr>
8520
8521 Also handle the output file (--verbose) with obstacks.
8522
8523 * files.c (foutput): Remove.
8524 (output_obstack): New.
8525 Adjust all dependencies.
8526 * src/conflicts.c: Return a string.
8527 * src/system.h (obstack_grow_string): Rename as...
8528 (obstack_sgrow): this. Be ready to work with non literals.
8529 (obstack_fgrow4): New.
8530
8531 2000-12-20 Akim Demaille <akim@epita.fr>
8532
8533 * src/files.c (open_files): Fix the computation of short_base_name
8534 in the case of `-o foo.tab.c'.
8535
8536 2000-12-20 Akim Demaille <akim@epita.fr>
8537
8538 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
8539 (copy_dollar): Now that everything uses obstacks, get rid of the
8540 FILE * parameters.
8541
8542 2000-12-20 Akim Demaille <akim@epita.fr>
8543
8544 * src/files.c (open_files): Actually the `.output' file is based
8545 on the short_base_name, not base_name.
8546 * tests/suite.at (Checking output file names): Adjust.
8547
8548 2000-12-20 Akim Demaille <akim@epita.fr>
8549
8550 * src/bison.s1: Remove, we now use directly...
8551 * src/bison.simple: this.
8552 * src/Makefile.am: Use pkgdata instead of data.
8553
8554 2000-12-20 Akim Demaille <akim@epita.fr>
8555
8556 * src/files.c (guard_obstack): New.
8557 (open_files): Initialize it.
8558 (output_files): Dump it...
8559 * src/files.h: Export it.
8560 * src/reader.c (copy_guard): Use it.
8561
8562 2000-12-19 Akim Demaille <akim@epita.fr>
8563
8564 * src/files.c (outfile, defsfile, actfile): Removed as global
8565 vars.
8566 (open_files): Don't compute them.
8567 (output_files): Adjust.
8568 (base_name, short_base_name): Be global.
8569 Adjust dependencies.
8570
8571 2000-12-19 Akim Demaille <akim@epita.fr>
8572
8573 * src/files.c (strsuffix): New.
8574 (stringappend): Be just like strcat but allocate.
8575 (base_names): Eve out from open_files.
8576 Try to simplify the rather hairy computation of base_name and
8577 short_base_name.
8578 (open_files): Use it.
8579 * tests/suite.at (Checking output file names): New test.
8580
8581 2000-12-19 Akim Demaille <akim@epita.fr>
8582
8583 * src/system.h (obstack_grow_literal_string): Rename as...
8584 (obstack_grow_string): this.
8585 * src/output.c (output_parser): Recognize `%% actions' instead of
8586 `$'.
8587 * src/bison.s1: s/$/%% actions/.
8588 * src/bison.hairy: Likewise.
8589
8590 2000-12-19 Akim Demaille <akim@epita.fr>
8591
8592 * src/output.c (output_parser): Compute the `#line' lines when
8593 there are.
8594 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
8595 Suggested by Hans Aberg.
8596
8597 2000-12-19 Akim Demaille <akim@epita.fr>
8598
8599 Let the handling of the skeleton files be local to the procedures
8600 that use it.
8601
8602 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
8603 longer static.
8604 (fparser, open_extra_files): Remove.
8605 (open_files, output_files): Don't take care of fparser.
8606 * src/files.h: Adjust.
8607 * src/output.c (output_parser): Open and close the file to the
8608 skeleton.
8609 * src/reader.c (read_declarations): When %semantic_parser, open
8610 fguard.
8611
8612 2000-12-19 Akim Demaille <akim@epita.fr>
8613
8614 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
8615 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
8616
8617 2000-12-19 Akim Demaille <akim@epita.fr>
8618
8619 * src/files.c (open_files): Yipee! We no longer need all the code
8620 looking for `/tmp' since we have no tmp file.
8621
8622 2000-12-19 Akim Demaille <akim@epita.fr>
8623
8624 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
8625 New macros.
8626 * src/files.c (open_files): Less dependency on MSDOS etc.
8627
8628 2000-12-14 Akim Demaille <akim@epita.fr>
8629
8630 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
8631 Provide a default definition.
8632 Use it when executing the default @ action.
8633 * src/reader.c (reader_output_yylsp): No longer include
8634 `timestamp' and `text' in the default YYLTYPE.
8635
8636 2000-12-12 Akim Demaille <akim@epita.fr>
8637
8638 * src/reader.c (copy_definition, parse_union_decl, copy_action)
8639 (copy_guard): Quote the file names.
8640 Reported by Laurent Mascherpa.
8641
8642 2000-12-12 Akim Demaille <akim@epita.fr>
8643
8644 * src/output.c (output_headers, output_program, output): Be sure
8645 to escape special characters when outputting filenames.
8646 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
8647 (output_headers): Don't depend on them, Use ACTSTR.
8648
8649 2000-11-17 Akim Demaille <akim@epita.fr>
8650
8651 * lib/obstack.h: Formatting changes.
8652 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
8653 prevents type checking.
8654 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
8655 cast the value to (void *): assigning a `foo *' to a `void *'
8656 variable is valid.
8657 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
8658 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
8659 append characters.
8660
8661 2000-11-17 Akim Demaille <akim@epita.fr>
8662
8663 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
8664 as...
8665 (suite.m4, regression.m4, calc.m4): these.
8666 * tests/atgeneral.m4: Update from CVS Autoconf.
8667
8668 2000-11-17 Akim Demaille <akim@epita.fr>
8669
8670 * tests/regression.m4 (%union and --defines): New test,
8671 demonstrating a current bug in the obstack implementation.
8672
8673 2000-11-17 Akim Demaille <akim@epita.fr>
8674
8675 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
8676 macros.
8677 Use them to declare the variables which are global or local to
8678 `yyparse'.
8679
8680 2000-11-17 Akim Demaille <akim@epita.fr>
8681
8682 * acconfig.h: Remove, no longer used.
8683
8684 2000-11-07 Akim Demaille <akim@epita.fr>
8685
8686 * src: s/Copyright (C)/Copyright/g.
8687
8688 2000-11-07 Akim Demaille <akim@epita.fr>
8689
8690 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
8691 defining.
8692 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
8693
8694 2000-11-07 Akim Demaille <akim@epita.fr>
8695
8696 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
8697 Merge in a single CPP if/else.
8698
8699 2000-11-07 Akim Demaille <akim@epita.fr>
8700
8701 * src/output.c (output): Remove useless variables.
8702 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
8703 argument `data' for consistency with the prototypes.
8704 Qualify it `const'.
8705 (obstack_copy, obstack_copy0): Rename the second argument as
8706 `address' for consistency. Qualify it `const'.
8707 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
8708 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
8709 `const' their input argument (`data' or `address').
8710 Adjust the corresponding macros to include `const' in casts.
8711
8712 2000-11-03 Akim Demaille <akim@epita.fr>
8713
8714 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
8715 s/PFILE1/BISON_HAIRY/.
8716 Adjust dependencies.
8717
8718 2000-11-03 Akim Demaille <akim@epita.fr>
8719
8720 For some reason, this was not applied.
8721
8722 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
8723 `unlink': it's no longer used.
8724
8725 2000-11-03 Akim Demaille <akim@epita.fr>
8726
8727 * src/files.c (skeleton_find): New function, eved out of...
8728 (open_files, open_extra_files): here.
8729
8730 2000-11-03 Akim Demaille <akim@epita.fr>
8731
8732 Don't use `atexit'.
8733
8734 * src/files.c (obstack_save): New function.
8735 (done): Rename as...
8736 (output_files): this.
8737 Use `obstack_save'.
8738 * src/main.c (main): Don't use `atexit' to register `done', since
8739 it no longer has to remove tmp files, just call `output_files'
8740 when there are no errors.
8741
8742 2000-11-02 Akim Demaille <akim@epita.fr>
8743
8744 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
8745 `unlink': it's no longer used.
8746 * src/files.h: Formatting changes.
8747
8748 2000-11-02 Akim Demaille <akim@epita.fr>
8749
8750 Remove the last uses of mktemp and unlink/delete.
8751
8752 * src/files.c (fdefines, ftable): Removed.
8753 (defines_ostack, table_obstack): New.
8754 Adjust dependencies of the former into uses of the latter.
8755 * src/output.c (output_short_or_char_table, output_short_table):
8756 Convert to using obstacks.
8757 * src/reader.c (copy_comment2): Accept one FILE * and two
8758 obstacks.
8759 (output_token_defines, reader_output_yylsp): Use obstacks.
8760 * src/system.h (obstack_fgrow3): New.
8761
8762 2000-11-01 Akim Demaille <akim@epita.fr>
8763
8764 Change each use of `fattrs' into a use of `attrs_obstack'.
8765
8766 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
8767 * src/files.c (fattrs): Remove.
8768 (attrs_obstack): New.
8769 Adjust all dependencies.
8770 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
8771
8772 2000-11-01 Akim Demaille <akim@epita.fr>
8773
8774 Introduce obstacks.
8775 Change each use of `faction' into a use of `action_obstack'.
8776
8777 * lib/obstack.h, lib/obstack.c: New files.
8778 * src/files.c (faction): Remove.
8779 (action_obstack): New.
8780 Adjust all dependencies.
8781
8782 2000-10-20 Akim Demaille <akim@epita.fr>
8783
8784 * lib/quote.h (PARAMS): New macro. Use it.
8785
8786 2000-10-16 Akim Demaille <akim@epita.fr>
8787
8788 * src/output.c (output_short_or_char_table): New function.
8789 (output_short_table, output_token_translations): Use it.
8790 (goto_actions): Use output_short_table.
8791
8792 2000-10-16 Akim Demaille <akim@epita.fr>
8793
8794 * src/symtab.c (bucket_new): New function.
8795 (getsym): Use it.
8796
8797 * src/output.c (output_short_table): New argument to display the
8798 comment associated with the table.
8799 Adjust dependencies.
8800 (output_gram): Use it.
8801 (output_rule_data): Nicer output layout for YYTNAME.
8802
8803 2000-10-16 Akim Demaille <akim@epita.fr>
8804
8805 * src/lex.c (read_typename): New function.
8806 (lex): Use it.
8807 * src/reader.c (copy_dollar): Likewise.
8808
8809 2000-10-16 Akim Demaille <akim@epita.fr>
8810
8811 * src/reader.c (copy_comment2): Expect the input stream to be on
8812 the `/' which is suspected to open a comment, instead of being
8813 called after `//' or `/*' was read.
8814 (copy_comment, copy_definition, parse_union_decl, copy_action)
8815 (copy_guard): Adjust.
8816
8817 2000-10-16 Akim Demaille <akim@epita.fr>
8818
8819 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
8820 `read_signed_integer'.
8821
8822 2000-10-16 Akim Demaille <akim@epita.fr>
8823
8824 * src/reader.c (copy_dollar): New function.
8825 (copy_guard, copy_action): Use it.
8826
8827 2000-10-16 Akim Demaille <akim@epita.fr>
8828
8829 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
8830 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
8831 New files, from Fileutils 4.0.27.
8832 * src/main.c (printable_version): Remove.
8833 * src/lex.c, src/reader.c: Use `quote'.
8834
8835 2000-10-04 Akim Demaille <akim@epita.fr>
8836
8837 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
8838
8839 2000-10-04 Akim Demaille <akim@epita.fr>
8840
8841 * doc/bison.texinfo: Various typos spotted by Neil Booth.
8842
8843 2000-10-04 Akim Demaille <akim@epita.fr>
8844
8845 When a literal string is used to define two different tokens,
8846 `bison -v' segfaults.
8847 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
8848
8849 * tests/regression.m4: New file.
8850 Include the core of the sample provided by Piotr Gackiewicz.
8851 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
8852 properly.
8853
8854 2000-10-04 Akim Demaille <akim@epita.fr>
8855
8856 * src/reader.c (parse_expect_decl): Keep `count' within the size
8857 of `buffer'.
8858 From Neil Booth.
8859
8860 2000-10-02 Paul Eggert <eggert@twinsun.com>
8861
8862 * bison.s1 (yyparse): Assign the default value
8863 unconditionally, to avoid a GCC warning and make the parser a
8864 tad smaller.
8865
8866 2000-10-02 Akim Demaille <akim@epita.fr>
8867
8868 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
8869 options.
8870
8871 2000-10-02 Akim Demaille <akim@epita.fr>
8872
8873 * src/derives.c, src/print.c, src/reduce.c: To ease the
8874 translation, move some `\n' out of the translated strings.
8875
8876 2000-10-02 Akim Demaille <akim@epita.fr>
8877
8878 The location tracking mechanism is precious for parse error
8879 messages. Nevertheless, it is enabled only when `@n' is used in
8880 the grammar, which is a different issue (you can use it in error
8881 message, but not in the grammar per se). Therefore, there should
8882 be another means to enable it.
8883
8884 * src/getargs.c (getargs): Support `--locations'.
8885 (usage): Report it.
8886 * src/getargs.h (locationsflag): Export it.
8887 * src/lex.c (percent_table): Support `%locations'.
8888 * src/reader.c (yylsp_needed): Remove this variable, now replaced
8889 with `locationsflag'.
8890 * doc/bison.texinfo: Document `--locations' and `%locations'.
8891 Sort the options.
8892 * tests/calc.m4: Test it.
8893
8894 For regularity of the names, replace each
8895 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
8896 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
8897 In addition replace each `flag' with `_flag'.
8898
8899 2000-10-02 Akim Demaille <akim@epita.fr>
8900
8901 Also test parse error messages, including with YYERROR_VERBOSE.
8902
8903 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
8904 associative).
8905 Use it to check the computations.
8906 Use it to check `nonassoc' is honored.
8907 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
8908 `--yyerror-verbose'.
8909 (_AT_CHECK_CALC): Adjust to this option.
8910 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
8911
8912 2000-10-02 Akim Demaille <akim@epita.fr>
8913
8914 Test also `--verbose', `--defines' and `--name-prefix'. Testing
8915 the latter demonstrates a flaw in the handling of non debugging
8916 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
8917 was used in order to simplify:
8918
8919 #if YYDEBUG
8920 if (yydebug)
8921 {
8922 ...
8923 }
8924 #endif
8925
8926 into
8927
8928 if (yydebug)
8929 {
8930 ...
8931 }
8932
8933 unfortunately this leads to a CPP conflict when
8934 `--name-prefix=foo' is used since it produces `#define yydebug
8935 foodebug'.
8936
8937 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
8938 (YYDPRINTF): New macro.
8939 Spread its use.
8940 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
8941 the bison options.
8942 Also test `--verbose', `--defines' and `--name-prefix'.
8943
8944 2000-10-02 Akim Demaille <akim@epita.fr>
8945
8946 Improve the readability of the produced parsers.
8947
8948 * src/bison.s1: Formatting changes.
8949 Improve the comment related to the `$' mark.
8950 (yydefault): Don't fall through to `yyresume': `goto' there.
8951 * src/output.c (output_parser): When the `$' is met, skip the end
8952 of its line.
8953 New variable, `number_of_dollar_signs', to check there's exactly
8954 one `$' in the parser skeleton.
8955
8956 2000-10-02 Akim Demaille <akim@epita.fr>
8957
8958 * lib/xstrdup.c: New file, from the fileutils.
8959 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
8960 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
8961 instead of strlen + xmalloc + strcpy.
8962 * src/symtab.c (copys): Remove, use xstrdup instead.
8963
8964 2000-10-02 Akim Demaille <akim@epita.fr>
8965
8966 * src/gram.h (associativity): New enum type which replaces the
8967 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
8968 `right_assoc', `left_assoc' and `non_assoc'.
8969 Adjust all dependencies.
8970 * src/reader.c: Formatting changes.
8971 (LTYPESTR): Don't define it, use it as a literal in
8972 `reader_output_yylsp'.
8973 * src/symtab.h (symbol_class): New enum type which replaces the
8974 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
8975 `sunknown', `stoken and `snterm'.
8976
8977 2000-10-02 Akim Demaille <akim@epita.fr>
8978
8979 * src/getargs.c (fixed_outfiles): Rename as...
8980 (yaccflag): for consistency and accuracy.
8981 Adjust dependencies.
8982
8983 2000-10-02 Akim Demaille <akim@epita.fr>
8984
8985 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
8986 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
8987 difficult and introduced a lot of core dump. It turns out that
8988 Bison used an implementation of `xmalloc' based on `calloc', and
8989 at various places it does depend upon the initialization to 0. I
8990 have not tried to isolate the pertinent places, and all the former
8991 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
8992 someone should address this issue.
8993
8994 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
8995 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
8996 files.
8997 Adjust dependencies.
8998 * src/warshall.h: New file.
8999 Propagate.
9000
9001 2000-10-02 Akim Demaille <akim@epita.fr>
9002
9003 Various anti-`extern in *.c' changes.
9004
9005 * src/system.h: Include `assert.h'.
9006
9007 2000-10-02 Akim Demaille <akim@epita.fr>
9008
9009 * src/state.h (nstates, final_state, first_state, first_shift)
9010 (first_reduction): Move their exportation from here...
9011 * src/LR0.h: to here.
9012 Adjust dependencies.
9013 * src/getargs.c (statisticsflag): New variable.
9014 Add support for `--statistics'.
9015 Adjust dependencies.
9016
9017 Remove a lot of now useless `extern' statements in most files.
9018
9019 2000-10-02 Akim Demaille <akim@epita.fr>
9020
9021 * src/LR0.h: New file.
9022 Propagate its use.
9023
9024 2000-10-02 Akim Demaille <akim@epita.fr>
9025
9026 * src/print.h: New file.
9027 Propagate its use.
9028 * src/print.c: Formatting and ordering changes.
9029 (verbose, terse): Replace with...
9030 (print_results): this new function.
9031 Adjust dependencies.
9032
9033 2000-10-02 Akim Demaille <akim@epita.fr>
9034
9035 * src/conflicts.c (conflict_report): New function.
9036 (conflict_log, verbose_conflict_log): Replace with...
9037 (print_conflicts): this function.
9038 Adjust dependencies.
9039 * src/conflicts.h: New file.
9040 Propagate its inclusion.
9041
9042 2000-10-02 Akim Demaille <akim@epita.fr>
9043
9044 * src/nullable.h: New file.
9045 Propagate its inclusion.
9046 * src/nullable.c: Formatting changes.
9047
9048 2000-10-02 Akim Demaille <akim@epita.fr>
9049
9050 * src/reduce.h: New file.
9051 Propagate its inclusion.
9052 * src/reduce.c: Topological sort and other formatting changes.
9053 (bool, TRUE, FALSE): Move their definition to...
9054 * src/system.h: here.
9055
9056 2000-10-02 Akim Demaille <akim@epita.fr>
9057
9058 * src/files.c: Formatting changes.
9059 (tryopen, tryclose, openfiles): Rename as...
9060 (xfopen, xfclose, open_files): this.
9061 (stringappend): static.
9062 * src/files.h: Complete the list of exported symbols.
9063 Propagate its use.
9064
9065 2000-10-02 Akim Demaille <akim@epita.fr>
9066
9067 * src/reader.h: New file.
9068 Propagate its use instead of tedious list of `extern' and
9069 prototypes.
9070 * src/reader.c: Formatting changes, topological sort,
9071 s/register//.
9072
9073 2000-10-02 Akim Demaille <akim@epita.fr>
9074
9075 * src/lex.h: Prototype `lex.c' exported functions.
9076 * src/reader.c: Adjust.
9077 * src/lex.c: Formatting changes.
9078 (safegetc): Rename as...
9079 (xgetc): this.
9080
9081 2000-10-02 Akim Demaille <akim@epita.fr>
9082
9083 * src/lalr.h: New file.
9084 Propagate its inclusion instead of prototypes and `extern'.
9085 * src/lalr.c: Formatting changes, topological sorting etc.
9086
9087 2000-10-02 Akim Demaille <akim@epita.fr>
9088
9089 * src/output.c (token_actions): Introduce a temporary array,
9090 YYDEFACT, that makes it possible for this function to use
9091 output_short_table.
9092
9093 2000-10-02 Akim Demaille <akim@epita.fr>
9094
9095 `user_toknums' is output as a `short[]' in `output.c', while it is
9096 defined as a `int[]' in `reader.c'. For consistency with the
9097 other output tables, `user_toknums' is now defined as a table of
9098 shorts.
9099
9100 * src/reader.c (user_toknums): Be a short table instead of an int
9101 table.
9102 Adjust dependencies.
9103
9104 Factor the short table outputs.
9105
9106 * src/output.c (output_short_table): New function.
9107 * src/output.c (output_gram, output_stos, output_rule_data)
9108 (output_base, output_table, output_check): Use it.
9109
9110 2000-10-02 Akim Demaille <akim@epita.fr>
9111
9112 * src/output.c (output): Topological sort of the functions, in
9113 order to get rid of the `static' prototypes.
9114 No longer use `register'.
9115 * src/output.h: New file.
9116 Propagate its inclusion in files explicitly prototyping functions
9117 from output.c.
9118
9119 2000-09-21 Akim Demaille <akim@epita.fr>
9120
9121 * src/atgeneral.m4: Update from Autoconf.
9122
9123 2000-09-21 Akim Demaille <akim@epita.fr>
9124
9125 * src/closure.h: New file.
9126 * src/closure.c: Formatting changes, topological sort over the
9127 functions, use of closure.h.
9128 (initialize_closure, finalize_closure): Rename as...
9129 (new_closure, free_closure): these. Adjust dependencies.
9130 * src/LR0.c: Formatting changes, topological sort, use of
9131 cloture.h.
9132 (initialize_states): Rename as...
9133 (new_states): this.
9134 * src/Makefile.am (noinst_HEADERS): Adjust.
9135
9136 2000-09-20 Akim Demaille <akim@epita.fr>
9137
9138 * src/acconfig.h: Don't protect config.h against multiple
9139 inclusion.
9140 Don't define PARAMS.
9141 * src/system.h: Define PARAMS.
9142 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
9143 purpose of config.h. system.h must not try to fix wrong
9144 definitions in config.h.
9145
9146 2000-09-20 Akim Demaille <akim@epita.fr>
9147
9148 * src/derives.h: New file.
9149 * src/main.c, src/derives.h: Use it.
9150 Formatting changes.
9151 * src/Makefile.am (noinst_HEADERS): Adjust.
9152
9153 2000-09-20 Akim Demaille <akim@epita.fr>
9154
9155 * tests/atgeneral.m4: Update from Autoconf.
9156 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
9157 (AT_CHECK_CALC): New macros.
9158 Use these macros to test bison with options `', `--raw',
9159 `--debug', `--yacc', `--yacc --debug'.
9160
9161 2000-09-19 Akim Demaille <akim@epita.fr>
9162
9163 * src/output.c: Formatting changes.
9164 * src/machine.h: Remove, leaving its contents in...
9165 * src/system.h: here.
9166 Include stdio.h.
9167 Adjust all dependencies on stdio.h and machine.h.
9168 * src/getargs.h: New file.
9169 Let all `extern' declarations about getargs.c be replaced with
9170 inclusion of `getargs.h'.
9171 * src/Makefile.am (noinst_HEADERS): Adjust.
9172
9173 * tests/calc.m4 (yyin): Be initialized in main, not on the global
9174 scope.
9175 (yyerror): Returns void, not int.
9176 * doc/bison.texinfo: Formatting changes.
9177
9178 2000-09-19 Akim Demaille <akim@epita.fr>
9179
9180 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
9181 portable.
9182
9183 2000-09-18 Akim Demaille <akim@epita.fr>
9184
9185 * configure.in: Append WARNING_CFLAGS to CFLAGS.
9186 * src/Makefile.am (INCLUDES): Don't.
9187 Be ready to fetch headers in lib/.
9188
9189 2000-09-18 Akim Demaille <akim@epita.fr>
9190
9191 * doc/bison.texinfo: Update the copyright.
9192 ANSIfy and GNUify the examples.
9193 Remove the old menu.
9194
9195 2000-09-18 Akim Demaille <akim@epita.fr>
9196
9197 First set of tests: use the `calc' example from the documentation.
9198
9199 * src/bison.s1 (yyparse): Condition the code using `yytname' which
9200 is defined only when YYDEBUG is.
9201 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
9202 * src/files.c (tryopen, tryclose): Formatting changes.
9203 Move to the top and be static.
9204 * src/reader.c (read_signed_integer): Likewise.
9205 * tests/calc.m4: New file.
9206 * Makefile.am, suite.m4: Adjust.
9207 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
9208
9209 2000-09-18 Akim Demaille <akim@epita.fr>
9210
9211 Add support for an Autotest test suite for Bison.
9212
9213 * m4/m4.m4, m4/atconfig.m4: New files.
9214 * m4/Makefile.am (EXTRA_DIST): Adjust.
9215 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
9216 files.
9217 * src/getargs.c: Display a more standard --version message.
9218 * src/reader.c (reader): Formatting changes.
9219 No longer depend upon VERSION_STRING.
9220 * configure.in: No longer use `dnl'.
9221 Set up the test suite and the new directory `tests/.
9222 (VERSION_STRING): Remove.
9223
9224 2000-04-14 Akim Demaille <akim@epita.fr>
9225
9226 * src/reader.c (copy_comment2): New function, same as former
9227 `copy_comment', but outputs into two FILE *.
9228 (copy_comment): Use it.
9229 (parse_union_decl): Use it.
9230 (get_type, parse_start_decl): Use the same `invalid' message.
9231 (parse_start_decl, parse_union_decl): Use the same `multiple'
9232 message.
9233 (parse_union_decl, copy_guard, copy_action): Use the same
9234 `unmatched' message.
9235 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
9236
9237 2000-03-31 Akim Demaille <akim@epita.fr>
9238
9239 * src/files.c (tryopen, tryclose): Move to the top.
9240 Be static.
9241
9242 2000-03-31 Akim Demaille <akim@epita.fr>
9243
9244 * src/main.c (main): Don't call `done', exit does it.
9245
9246 2000-03-31 Akim Demaille <akim@epita.fr>
9247
9248 * allocate.c: s/return (foo)/return foo/.
9249 * lalr.c: Likewise.
9250 * LR0.c: Likewise.
9251 * output.c: Likewise.
9252 * reader.c: Likewise.
9253 * symtab.c: Likewise.
9254 * vmsgetargs.c: Likewise.
9255
9256 2000-03-31 Akim Demaille <akim@epita.fr>
9257
9258 Clean up the error reporting functions.
9259
9260 * src/report.c: New file.
9261 * src/report.h: Likewise.
9262 * src/Makefile.am: Adjust.
9263 * m4/error.m4: New file.
9264 * m4/Makefile.am: Adjust.
9265 * configure.in (jm_PREREQ_ERROR): Call it.
9266 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
9267 Remove.
9268 (fatal, fatals): Remove. All callers use complain.c::fatal.
9269 (warn, warni, warns, warnss, warnss): Remove. All callers use
9270 complain.c::complain.
9271 (toomany): Remove, use fatal instead.
9272 * src/files.c (done): No argument, use complain_message_count.
9273 * src/main.c (main): Register `done' to `atexit'.
9274
9275 * src/getargs.c (usage): More `fputs', less `fprintf'.
9276
9277 2000-03-28 Akim Demaille <akim@epita.fr>
9278
9279 * lib/: New directory.
9280 * Makefile.am (SUBDIRS): Adjust.
9281 * configure.in: Adjust.
9282 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
9283 useless.
9284 * src/alloca.c: Moved to lib/.
9285 * src/getopt.c: Likewise.
9286 * src/getopt1.c: Likewise.
9287 * src/getopt.h: Likewise.
9288 * src/ansi2knr.c: Likewise.
9289 * src/ansi2knr.1: Likewise.
9290 * src/Makefile.am: Adjust.
9291 * lib/Makefile.am: New file.
9292
9293 2000-03-28 Akim Demaille <akim@epita.fr>
9294
9295 * src/getargs.c (usage): Refresh the help message.
9296
9297 2000-03-17 Akim Demaille <akim@epita.fr>
9298
9299 * src/getopt1.c: Updated from textutils 2.0e
9300 * src/getopt.c: Likewise.
9301 * src/getopt.h: Likewise.
9302
9303 2000-03-17 Akim Demaille <akim@epita.fr>
9304
9305 * src/Makefile.am (bison.simple): Fix the awk program: quote only
9306 the file name, not the whole `#line LINE FILE'.
9307
9308 2000-03-17 Akim Demaille <akim@epita.fr>
9309
9310 On syntax errors, report the token on which we choked.
9311
9312 * src/bison.s1 (yyparse): In the label yyerrlab, when
9313 YYERROR_VERBOSE, add yychar in msg.
9314
9315 2000-03-17 Akim Demaille <akim@epita.fr>
9316
9317 * src/reader.c (copy_at): New function.
9318 (copy_guard): Use it.
9319 (copy_action): Use it.
9320
9321 2000-03-17 Akim Demaille <akim@epita.fr>
9322
9323 Be kind to translators, save some useless translations.
9324
9325 * src/main.c (banner): New function.
9326 (fatal_banner): Use it.
9327 (warn_banner): Use it.
9328
9329 2000-03-17 Akim Demaille <akim@epita.fr>
9330
9331 * src/reader.c (copy_definition): Use copy_string and
9332 copy_comment. Removed now unused `match', `ended',
9333 `cplus_comment'.
9334 (copy_comment, copy_string): Moved, to be visible from
9335 copy_definition.
9336
9337 2000-03-17 Akim Demaille <akim@epita.fr>
9338
9339 * src/reader.c (copy_string): Declare `static inline'. No
9340 problems with inline, since it is checked by configure.
9341 (copy_comment): Likewise.
9342
9343 2000-03-17 Akim Demaille <akim@epita.fr>
9344
9345 * src/reader.c (packsymbols): Formatting changes.
9346
9347 2000-03-17 Akim Demaille <akim@epita.fr>
9348
9349 * src/reader.c (copy_comment): New function, factored out from:
9350 (copy_action): Use it. Removed now unused `match', `ended',
9351 `cplus_comment'.
9352 (copy_guard): Likewise.
9353
9354 2000-03-17 Akim Demaille <akim@epita.fr>
9355
9356 * src/reader.c (copy_string): New function, factored out from:
9357 (copy_action): Use it.
9358 (copy_guard): Likewise.
9359
9360 2000-03-17 Akim Demaille <akim@epita.fr>
9361
9362 Change the handling of @s so that they behave exactly like $s.
9363 There is now a pseudo variable @$ (readble and writable), location
9364 of the lhs of the rule (by default ranging from the location of
9365 the first symbol of the rhs, to the location of the last symbol,
9366 or, if the rhs is empty, YYLLOC).
9367
9368 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
9369 yyval.
9370 (yyparse): When providing a default semantic action, provide a
9371 default location action.
9372 (after the $): No longer change `*YYLSP', just stack YYLOC the
9373 same way you stack YYVAL.
9374 * src/reader.c (read_declarations): Use warns.
9375 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
9376 (copy_action, case '@'): Likewise.
9377 Use a standard error message, to save useless work from
9378 translators.
9379
9380 2000-03-17 Akim Demaille <akim@epita.fr>
9381
9382 * src/bison.s1: Formatting and cosmetics changes.
9383 * src/reader.c: Likewise.
9384 Update the Copyright notice.
9385
9386 2000-03-17 Akim Demaille <akim@epita.fr>
9387
9388 * src/bison.s1 (#line): All set to `#line' only, since the
9389 Makefile now handles them.
9390
9391 2000-03-16 Akim Demaille <akim@epita.fr>
9392
9393 * src/output.c (output_rule_data): Output the documentation of
9394 some of the tables.
9395 (Copyright notice): Update.
9396 Formatting changes.
9397
9398 2000-03-16 Akim Demaille <akim@epita.fr>
9399
9400 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
9401 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
9402 One `#if YYDEBUG' remains, since it uses variables which are
9403 defined only if `YYDEBUG != 0'.
9404
9405 2000-03-16 Akim Demaille <akim@epita.fr>
9406
9407 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
9408 and related variables so that the similarities are highlighted.
9409
9410 2000-03-16 Akim Demaille <akim@epita.fr>
9411
9412 * src/bison.s1: Properly indent CPP directives.
9413
9414 2000-03-16 Akim Demaille <akim@epita.fr>
9415
9416 * src/bison.s1: Properly indent the `alloca' CPP section.
9417
9418 2000-03-16 Akim Demaille <akim@epita.fr>
9419
9420 Do not hard code values of directories in `configure.in'.
9421 Update the `configure' tool chain.
9422
9423 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
9424 src/makefile.am.
9425 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
9426 (AC_OUTPUT): Add m4/Makefile.
9427 Bump to bison 1.28a, 1.29 has never been released.
9428 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
9429 handled via src/Makefile.am.
9430 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
9431 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
9432 autoheader.
9433 * Makefile.am (SUBDIRS): Add m4.
9434 (ACLOCAL_AM_FLAGS): New variable.
9435 (AUTOMAKE_OPTIONS): Add check-news.
9436 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
9437 the proper line number and file name.
9438 (DEFS): Propagate the location of bison library files and of the
9439 locale files.
9440 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
9441 builddir.
9442 * acinclude.m4: Remove, replaced by the directory m4.
9443 * m4/Makefile.am (EXTRA_DIST): New variable.
9444 * m4/gettext.m4: New file, from the fileutils.
9445 * m4/lcmessage.m4: Likewise
9446 * m4/progtest.m4: Likewise.
9447 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
9448
9449 2000-03-10 Akim Demaille <akim@epita.fr>
9450
9451 * src/closure.c:
9452 Formatting changes of various comments.
9453 Respect the GNU coding standards at various places.
9454 Don't use `_()' when no translation is needed.
9455
9456 1999-12-13 Jesse Thilo <jthilo@gnu.org>
9457
9458 * src/files.c:
9459 OS/2 honors TMPDIR environment variable.
9460
9461 1999-12-13 Jesse Thilo <jthilo@gnu.org>
9462
9463 * doc/bison.texinfo: Tweaked spelling and grammar.
9464 Updated ISBN.
9465 Removed reference to price of printed copy.
9466 Mention BISON_SIMPLE and BISON_HAIRY.
9467
9468 1999-12-13 Jesse Thilo <jthilo@gnu.org>
9469
9470 * configure.in, NEWS:
9471 Bison 1.29 released.
9472
9473 1999-10-27 Jesse Thilo <jthilo@gnu.org>
9474
9475 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
9476 Added reference card.
9477
9478 1999-07-26 Jesse Thilo <jthilo@gnu.org>
9479
9480 * po/ru.po: Added Russian translation.
9481
9482 1999-07-26 Jesse Thilo <jthilo@gnu.org>
9483
9484 * configure.in: Added Russian translation.
9485
9486 1999-07-06 Jesse Thilo <jthilo@gnu.org>
9487
9488 * configure.in, NEWS, README:
9489 Released version 1.28.
9490
9491 1999-06-14 Jesse Thilo <jthilo@gnu.org>
9492
9493 * src/system.h:
9494 Squashed redefinition warning on some systems.
9495
9496 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
9497 Have configure build version string instead of relying on ANSI string
9498 concatentation.
9499
9500 1999-06-14 Jesse Thilo <jthilo@gnu.org>
9501
9502 * po/POTFILES.in: Got rid of version.c.
9503
9504 1999-06-14 Jesse Thilo <jthilo@gnu.org>
9505
9506 * acconfig.h, configure.in:
9507 Have configure build version string instead of relying on ANSI string
9508 concatentation.
9509
9510 1999-06-08 Jesse Thilo <jthilo@gnu.org>
9511
9512 * doc/bison.1:
9513 Dropped mention of `+' for long-named options.
9514
9515 1999-05-30 Jesse Thilo <jthilo@gnu.org>
9516
9517 * src/files.c: Added <unistd.h> for unlink().
9518
9519 * src/Makefile.am, src/system.h:
9520 I18n fixes.
9521
9522 1999-05-30 Jesse Thilo <jthilo@gnu.org>
9523
9524 * README: Added a FAQ list.
9525
9526 * configure.in, acconfig.h:
9527 I18n fixes.
9528
9529 1999-05-30 Jesse Thilo <jthilo@gnu.org>
9530
9531 * doc/FAQ, doc/Makefile.am:
9532 Added a FAQ list.
9533
9534 1999-05-19 Jesse Thilo <jthilo@gnu.org>
9535
9536 * src/alloc.h, src/symtab.h, src/version.c:
9537 Protected inclusion of "config.h" with HAVE_CONFIG_H.
9538
9539 1999-04-18 Jesse Thilo <jthilo@gnu.org>
9540
9541 * src/.cvsignore, src/Makefile.am:
9542 Reorganized: sources in `src', documentation in `doc'.
9543
9544 * src/lex.c (literalchar):
9545 fixed the code for escaping double quotes (thanks
9546 Jonathan Czisny.)
9547
9548 1999-04-18 Jesse Thilo <jthilo@gnu.org>
9549
9550 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
9551 Adjusted paths to reflect directory reorganization.
9552
9553 1999-04-18 Jesse Thilo <jthilo@gnu.org>
9554
9555 * doc/.cvsignore, doc/Makefile.am:
9556 Reorganized: sources in `src', documentation in `doc'.
9557
9558 1999-04-18 Jesse Thilo <jthilo@gnu.org>
9559
9560 * configure.in:
9561 Updated AC_INIT file to reflect directory reorganization.
9562
9563 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
9564 Reorganized: sources in `src', documentation in `doc'.
9565
9566 1999-04-13 Jesse Thilo <jthilo@gnu.org>
9567
9568 * src/allocate.c:
9569 Don't declare calloc() and realloc() if not necessary.
9570
9571 1999-04-13 Jesse Thilo <jthilo@gnu.org>
9572
9573 * configure.in, acconfig.h, acinclude.m4:
9574 Don't declare calloc() and realloc() if not necessary.
9575
9576 1999-03-23 Jesse Thilo <jthilo@gnu.org>
9577
9578 * po/.cvsignore: Added i18n support.
9579
9580 1999-03-23 Jesse Thilo <jthilo@gnu.org>
9581
9582 * acconfig.h, configure.in, Makefile.am:
9583 Added i18n support.
9584
9585 1999-03-22 Jesse Thilo <jthilo@gnu.org>
9586
9587 * src/bison.s1: Fixed #line numbers.
9588
9589 1999-03-15 Jesse Thilo <jthilo@gnu.org>
9590
9591 * po/es.po, po/fr.po, po/nl.po, po/de.po:
9592 Added PO files from Translation Project.
9593
9594 1999-03-03 Jesse Thilo <jthilo@gnu.org>
9595
9596 * Makefile.am:
9597 Added support for non-ANSI compilers (ansi2knr).
9598
9599 1999-02-16 Jesse Thilo <jthilo@gnu.org>
9600
9601 * configure.in: Bumped version number to 1.27.
9602
9603 * Makefile.am:
9604 Added `bison.simple' to list of files removed by `make distclean'.
9605
9606 1999-02-12 Jesse Thilo <jthilo@gnu.org>
9607
9608 * src/files.c, src/files.h:
9609 Defined locations of parser files in config.h instead of Makefile.
9610
9611 1999-02-12 Jesse Thilo <jthilo@gnu.org>
9612
9613 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
9614 Defined locations of parser files in config.h instead of Makefile.
9615
9616 1999-02-09 Jesse Thilo <jthilo@gnu.org>
9617
9618 * Makefile.am:
9619 Removed inappropriate use of $< macro.
9620
9621 1999-02-05 Jesse Thilo <jthilo@gnu.org>
9622
9623 * po/Makefile.in.in, po/POTFILES.in:
9624 Add `po' directory skeleton.
9625
9626 1999-01-27 Jesse Thilo <jthilo@gnu.org>
9627
9628 * README: Document help-bison list.
9629
9630 * configure.in: Add check for mkstemp().
9631
9632 1999-01-20 Jesse Thilo <jthilo@gnu.org>
9633
9634 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
9635 Hush a few compiler warnings.
9636
9637 * src/files.c:
9638 Add tryclose(), which verifies that fclose was successful.
9639 Hush a couple of compiler warnings.
9640
9641 1999-01-20 Jesse Thilo <jthilo@gnu.org>
9642
9643 * Makefile.am, OChangeLog:
9644 ChangeLog is now automatically generated. Include the old version as
9645 OChangeLog.
9646
9647 1999-01-14 Jesse Thilo <jthilo@gnu.org>
9648
9649 * 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:
9650 Update FSF address.
9651
9652 1999-01-14 Jesse Thilo <jthilo@gnu.org>
9653
9654 * doc/bison.texinfo: Fix formatting glitch.
9655
9656 * doc/bison.texinfo: Update FSF address.
9657
9658 1999-01-14 Jesse Thilo <jthilo@gnu.org>
9659
9660 * acconfig.h: Update FSF address.
9661
9662 1999-01-08 Jesse Thilo <jthilo@gnu.org>
9663
9664 * src/system.h:
9665 Don't define PACKAGE here, since config.h defines it.
9666
9667 1998-12-30 Jesse Thilo <jthilo@gnu.org>
9668
9669 * src/reader.c: Update copyright date.
9670
9671 * src/main.c:
9672 Ditch sprintf to statically-sized buffers in fatal/warn functions in
9673 favor of output directly to stderr (avoids buffer overruns).
9674
9675 * src/reader.c: Some checks for premature EOF.
9676
9677 * 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:
9678 Use prototypes if the compiler understands them.
9679
9680 * src/files.c: Honor TMPDIR on Unix hosts.
9681 Use prototypes if the compiler understands them.
9682
9683 * src/reader.c:
9684 Fix a couple of buffer overrun bugs.
9685 Use prototypes if the compiler understands them.
9686
9687 * src/system.h: Include unistd.h and ctype.h.
9688 Use #ifdef instead of #if for NLS symbols.
9689
9690 1998-12-30 Jesse Thilo <jthilo@gnu.org>
9691
9692 * doc/bison.texinfo:
9693 Delete comment "consider using @set for edition number, etc..." since
9694 we now are doing so.
9695
9696 1998-12-30 Jesse Thilo <jthilo@gnu.org>
9697
9698 * configure.in:
9699 Use prototypes if the compiler understands them.
9700
9701 * NEWS: Document 1.26 highlights.
9702
9703 * Makefile.am: Require Automake 1.3 or later.
9704
9705 * acconfig.h:
9706 Use prototypes if the compiler understands them.
9707
9708 1998-12-29 Jesse Thilo <jthilo@gnu.org>
9709
9710 * src/version.c:
9711 Use VERSION symbol from automake for version number.
9712
9713 1998-12-29 Jesse Thilo <jthilo@gnu.org>
9714
9715 * acconfig.h, configure.in, version.cin:
9716 Use VERSION symbol from automake for version number.
9717
9718 1998-11-28 Jesse Thilo <jthilo@gnu.org>
9719
9720 * Makefile.am:
9721 Distribute original version of simple parser (bison.s1), not built
9722 version (bison.simple).
9723
9724 1998-11-28 Jesse Thilo <jthilo@gnu.org>
9725
9726 * doc/bison.texinfo: Add info dir entry.
9727
9728 * doc/bison.texinfo:
9729 Let automake put version number into documentation.
9730
9731 1998-11-26 Jesse Thilo <jthilo@gnu.org>
9732
9733 * src/bison.cld, src/build.com, src/vmshlp.mar:
9734 Add non-RCS files from /gd/gnu/bison.
9735
9736 1998-11-26 Jesse Thilo <jthilo@gnu.org>
9737
9738 * doc/bison.1:
9739 Document the BISON_HAIRY and BISON_SIMPLE variables.
9740
9741 1998-11-25 Jesse Thilo <jthilo@gnu.org>
9742
9743 * src/version.c: Build version.c automatically.
9744
9745 * src/reader.c:
9746 Fix token numbering (used to start at 258, not 257).
9747
9748 * src/system.h: Include config.h.
9749
9750 * src/getargs.c: Update bug report address.
9751
9752 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
9753 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
9754
9755 1998-11-25 Jesse Thilo <jthilo@gnu.org>
9756
9757 * Makefile.am:
9758 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
9759
9760 * configure.in, version.cin:
9761 Build version.c automatically.
9762
9763 * AUTHORS: Add AUTHORS file.
9764
9765 * README: Update bug report address.
9766
9767 * bison.simple:
9768 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
9769
9770 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
9771 Add automake stuff.
9772
9773 1998-11-25 Jesse Thilo <jthilo@gnu.org>
9774
9775 * doc/bison.texinfo: Clean up some formatting.
9776
9777 1998-05-05 Richard Stallman <rms@gnu.org>
9778
9779 * doc/bison.texinfo:
9780 Explain better why to make a pure parser.
9781
9782 1998-01-05 Richard Stallman <rms@gnu.org>
9783
9784 * src/files.c (openfiles):
9785 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
9786 find a temporary directory, if possible. Do not unlink files while
9787 they are open.
9788
9789 1997-08-25 Richard Stallman <rms@gnu.org>
9790
9791 * src/reader.c (stack_offset;):
9792 Change some warni to warns.
9793
9794 * src/lex.c (literalchar): Use warns, not warni.
9795
9796 1997-06-28 Richard Stallman <rms@gnu.org>
9797
9798 * src/bison.s1: Add a Bison version comment.
9799
9800 * src/main.c (fatal, warn, berror):
9801 Use program_name.
9802
9803 1997-06-28 Richard Stallman <rms@gnu.org>
9804
9805 * Makefile.in (bison_version): New variable.
9806 (dist): Use that variable.
9807 (bison.s1): Substitute the Bison version into bison.simple.
9808
9809 * bison.simple: Add a Bison version comment.
9810
9811 1997-06-18 Richard Stallman <rms@gnu.org>
9812
9813 * src/main.c (fatal, warn, berror):
9814 Make error messages standard.
9815 (toomany): Improve error message text.
9816
9817 * 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:
9818 new.h renamed to alloc.h.
9819
9820 1997-06-18 Richard Stallman <rms@gnu.org>
9821
9822 * Makefile.in: new.h renamed to alloc.h.
9823
9824 1997-05-24 Richard Stallman <rms@gnu.org>
9825
9826 * src/lex.c (literalchar):
9827 Fix the code for escaping \, " and '.
9828
9829 (lex): Avoid trouble when there are many chars
9830 to discard in a char literal with just several chars in it.
9831
9832 1997-05-17 Richard Stallman <rms@gnu.org>
9833
9834 * src/bison.s1:
9835 Use malloc, if using alloca is troublesome.
9836 (YYSTACK_USE_ALLOCA): New flag macro.
9837 Define it for some systems and compilers.
9838 (YYSTACK_ALLOC): New macro.
9839 (yyparse): Use YYSTACK_ALLOC to allocate stack.
9840 If it was malloc'd, free it.
9841
9842 1997-05-17 Richard Stallman <rms@gnu.org>
9843
9844 * bison.simple:
9845 Use malloc, if using alloca is troublesome.
9846 (YYSTACK_USE_ALLOCA): New flag macro.
9847 Define it for some systems and compilers.
9848 (YYSTACK_ALLOC): New macro.
9849 (yyparse): Use YYSTACK_ALLOC to allocate stack.
9850 If it was malloc'd, free it.
9851
9852 1997-04-23 Richard Stallman <rms@gnu.org>
9853
9854 * src/bison.s1:
9855 (alloca) [__hpux]: Always define as __builtin_alloca.
9856
9857 1997-04-23 Richard Stallman <rms@gnu.org>
9858
9859 * bison.simple:
9860 (alloca) [__hpux]: Always define as __builtin_alloca.
9861
9862 1997-04-22 Richard Stallman <rms@gnu.org>
9863
9864 * src/bison.s1:
9865 [__hpux]: Include alloca.h (right for HPUX 10)
9866 instead of declaring alloca (right for HPUX 9).
9867
9868 * src/bison.s1 (__yy_memcpy):
9869 Declare arg `count' as unsigned int.
9870 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
9871
9872 1997-04-22 Richard Stallman <rms@gnu.org>
9873
9874 * bison.simple:
9875 [__hpux]: Include alloca.h (right for HPUX 10)
9876 instead of declaring alloca (right for HPUX 9).
9877
9878 * bison.simple (__yy_memcpy):
9879 Declare arg `count' as unsigned int.
9880 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
9881
9882 1997-01-03 Richard Stallman <rms@gnu.org>
9883
9884 * src/allocate.c: [__STDC__ or _MSC_VER]:
9885 Declare calloc and realloc to return void *.
9886
9887 1997-01-02 Richard Stallman <rms@gnu.org>
9888
9889 * src/system.h:
9890 [_MSC_VER]: Include stdlib.h and process.h.
9891 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
9892
9893 * src/main.c (main): Return FAILURE as a value.
9894 (printable_version): Declare arg as int, not char.
9895
9896 1997-01-02 Richard Stallman <rms@gnu.org>
9897
9898 * Makefile.in (dist):
9899 Explicitly check for symlinks, and copy them.
9900
9901 1996-12-19 Richard Stallman <rms@gnu.org>
9902
9903 * src/files.c:
9904 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
9905
9906 1996-12-18 Paul Eggert <eggert@gnu.org>
9907
9908 * src/bison.s1 (yyparse):
9909 If __GNUC__ and YYPARSE_PARAM are both defined,
9910 declare yyparse to have a void * argument.
9911
9912 1996-12-18 Paul Eggert <eggert@gnu.org>
9913
9914 * bison.simple (yyparse):
9915 If __GNUC__ and YYPARSE_PARAM are both defined,
9916 declare yyparse to have a void * argument.
9917
9918 1996-12-17 Richard Stallman <rms@gnu.org>
9919
9920 * src/reduce.c (nbits): Add some casts.
9921
9922 1996-08-12 Richard Stallman <rms@gnu.org>
9923
9924 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
9925
9926 1996-08-12 Richard Stallman <rms@gnu.org>
9927
9928 * bison.simple: Test _MSDOS as well as _MSDOS_.
9929
9930 1996-07-31 Richard Stallman <rms@gnu.org>
9931
9932 * src/bison.s1:
9933 [__sun && __i386]: Include alloca.h.
9934
9935 1996-07-31 Richard Stallman <rms@gnu.org>
9936
9937 * bison.simple:
9938 [__sun && __i386]: Include alloca.h.
9939
9940 1996-07-30 Richard Stallman <rms@gnu.org>
9941
9942 * src/bison.s1: Comment change.
9943
9944 * src/bison.s1: Test _MSDOS_, not MSDOS.
9945
9946 1996-07-30 Richard Stallman <rms@gnu.org>
9947
9948 * bison.simple: Comment change.
9949
9950 * bison.simple: Test _MSDOS_, not MSDOS.
9951
9952 1996-06-01 Richard Stallman <rms@gnu.org>
9953
9954 * 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:
9955 Insert `_' macro around many string constants.
9956
9957 * src/main.c:
9958 Insert `_' macro around many string constants.
9959
9960 (main): Call setlocale, bindtextdomain and textdomain.
9961
9962 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
9963 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
9964 [ENABLE_NLS]: Include libintl.h.
9965 [ENABLE_NLS] (gettext): Define.
9966 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
9967 (N_, PACKAGE, LOCALEDIR): New macros.
9968
9969 1996-06-01 Richard Stallman <rms@gnu.org>
9970
9971 * POTFILES.in: New file.
9972
9973 * Makefile.in (allocate.o):
9974 Define target explicitly.
9975
9976 * Makefile.in (CFLAGS): Set to @CFLAGS@.
9977 (LDFLAGS): Set to @LDFLAGS@.
9978 (configure): Run autoconf only if preceding `cd' succeeds.
9979 (bison.s1): Redirect output to temporary file then move the
9980 temporary to the target, rather than redirecting directly to bison.s1.
9981 (clean): Remove config.status and config.log.
9982 (distclean): Don't remove config.status here.
9983
9984 1996-05-12 Richard Stallman <rms@gnu.org>
9985
9986 * src/bison.s1:
9987 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
9988
9989 1996-05-12 Richard Stallman <rms@gnu.org>
9990
9991 * bison.simple:
9992 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
9993
9994 1996-05-11 Richard Stallman <rms@gnu.org>
9995
9996 * src/bison.s1 (__yy_memcpy):
9997 Really reorder the args, as was supposedly done on Feb 14 1995.
9998 (yyparse): Calls changed accordingly.
9999
10000 1996-05-11 Richard Stallman <rms@gnu.org>
10001
10002 * Makefile.in (dist): Don't use $(srcdir).
10003
10004 * bison.simple (__yy_memcpy):
10005 Really reorder the args, as was supposedly done on Feb 14 1995.
10006 (yyparse): Calls changed accordingly.
10007
10008 1996-01-27 Richard Stallman <rms@gnu.org>
10009
10010 * src/output.c (output_rule_data):
10011 Test YYERROR_VERBOSE in the conditional
10012 around the definition of ttyname.
10013
10014 1995-12-29 Richard Stallman <rms@gnu.org>
10015
10016 * src/bison.s1:
10017 Fix line numbers in #line commands.
10018
10019 1995-12-29 Richard Stallman <rms@gnu.org>
10020
10021 * bison.simple:
10022 Fix line numbers in #line commands.
10023
10024 1995-12-27 Richard Stallman <rms@gnu.org>
10025
10026 * src/bison.s1 (YYPARSE_PARAM_DECL):
10027 In C++, make it always null.
10028 (YYPARSE_PARAM_ARG): New macro.
10029 (yyparse): Use YYPARSE_PARAM_ARG.
10030
10031 1995-12-27 Richard Stallman <rms@gnu.org>
10032
10033 * bison.simple (YYPARSE_PARAM_DECL):
10034 In C++, make it always null.
10035 (YYPARSE_PARAM_ARG): New macro.
10036 (yyparse): Use YYPARSE_PARAM_ARG.
10037
10038 1995-11-29 Richard Stallman <rms@gnu.org>
10039
10040 * doc/bison.texinfo:
10041 Describe literal string tokens, %raw, %no_lines, %token_table.
10042
10043 1995-11-29 Daniel Hagerty <hag@gnu.org>
10044
10045 * doc/bison.texinfo: Fixed update date
10046
10047 1995-10-16 Richard Stallman <rms@gnu.org>
10048
10049 * src/version.c: Version 1.25.
10050
10051 1995-10-16 Richard Stallman <rms@gnu.org>
10052
10053 * NEWS: *** empty log message ***
10054
10055 1995-10-16 Richard Stallman <rms@gnu.org>
10056
10057 * doc/bison.1, doc/bison.rnh:
10058 Add new options.
10059
10060 1995-10-15 Richard Stallman <rms@gnu.org>
10061
10062 * src/vmsgetargs.c, src/getargs.c:
10063 Added -n, -k, and -raw switches.
10064 (noparserflag, toknumflag, rawtoknumflag): New variables.
10065
10066 * src/symtab.h (SALIAS):
10067 New #define for adding aliases to %token.
10068 (struct bucket): Added `alias' field.
10069
10070 * src/reduce.c (reduce_grammar):
10071 Revise error message.
10072 (print_notices): Remove final `.' from error message.
10073
10074 * src/reader.c (reader_output_yylsp):
10075 New function.
10076 (readgram): Use `#if 0' around code that accepted %command
10077 inside grammar rules: The documentation doesn't allow it,
10078 and it will fail since the %command processors scan for the next %.
10079 (parse_token_decl): Extended the %token
10080 declaration to allow a multi-character symbol as an alias.
10081 (parse_thong_decl): New function.
10082 (read_declarations): Added %thong declarations.
10083 (read_declarations): Handle NOOP to deal with allowing
10084 % declarations as another means to specify the flags.
10085 (readgram): Allow %prec prior to semantics embedded in a rule.
10086 (skip_to_char, read_declarations, copy_definition)
10087 (parse_token_decl, parse_start_decl, parse_type_decl)
10088 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
10089 (get_type_name, copy_guard, copy_action, readgram)
10090 (get_type, packsymbols): Revised most error messages.
10091 Changed `fatal' to `warnxxx' to avoid aborting for error.
10092 Revised and use multiple warnxxx functions to avoid using VARARGS1.
10093 (read_declarations): Improve the error message for
10094 an invalid character. Do not abort.
10095 (read_declarations, copy_guard, copy_action): Use
10096 printable_version to avoid unprintable characters in printed output.
10097 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
10098 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
10099 Allow the type of a non-terminal can be given
10100 more than once, as long as all specifications give the same type.
10101
10102 * src/output.c:
10103 (output_headers, output_trailers, output, output_gram)
10104 (output_rule_data): Implement noparserflag variable.
10105 Implement toknumflag variable.
10106 (output): Call reader_output_yylsp to output LTYPESTR.
10107
10108 * src/main.c (main):
10109 If reader sees an error, don't process the grammar.
10110 (fatals): Updated to not use VARARGS1.
10111 (printable_version, int_to_string, warn, warni, warns, warnss)
10112 (warnsss): New error reporting functions. Avoid abort for error.
10113
10114 * src/lex.h:
10115 Added THONG and NOOP for alias processing.
10116 Added SETOPT for the new code that allows setting options with %flags.
10117
10118 * src/lex.c:
10119 Include getopt.h. Add some extern decls.
10120 (safegetc): New function to deal with EOF gracefully.
10121 (literalchar); new function to deal with reading \ escapes.
10122 (lex): Use literalchar.
10123 (lex): Implemented "..." tokens.
10124 (literalchar, lex, parse_percent_token): Made tokenbuffer
10125 always contain the token. This includes growing the token
10126 buffer while reading an integer.
10127 (parse_percent_token): Replaced if-else statement with percent_table.
10128 (parse_percent_token): Added % declarations as another
10129 way to specify the flags -n, -l, and -r. Also added hooks for
10130 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
10131 major changes to files.c.
10132 (lex) Retain in the incoming stream a character following
10133 an incorrect '/'.
10134 (skip_white_space, lex): Revised most error messages
10135 and changed fatal to warn to avoid aborting.
10136 (percent_table): Added %thong declarations.
10137
10138 * src/gram.h: Comment changes.
10139
10140 * src/files.c (openfiles, open_extra_files, done):
10141 Add faction flag
10142 and actfile file. Handle noparserflag. Both for -n switch.
10143
10144 * src/conflicts.c (resolve_sr_conflict):
10145 Remove use of alloca.
10146
10147 1995-06-01 Jim Meyering <meyering@gnu.org>
10148
10149 * doc/bison.texinfo: *** empty log message ***
10150
10151 1995-05-06 Richard Stallman <rms@gnu.org>
10152
10153 * src/bison.s1: Comment change.
10154
10155 1995-05-06 Richard Stallman <rms@gnu.org>
10156
10157 * bison.simple: Comment change.
10158
10159 1995-05-03 Richard Stallman <rms@gnu.org>
10160
10161 * src/version.c: Version now 1.24.
10162
10163 * src/bison.s1: Change distribution terms.
10164
10165 * src/version.c: Version now 1.23.
10166
10167 1995-05-03 Richard Stallman <rms@gnu.org>
10168
10169 * doc/bison.texinfo:
10170 Rewrite "Conditions for Using Bison".
10171 Update version to 1.24.
10172
10173 1995-05-03 Richard Stallman <rms@gnu.org>
10174
10175 * bison.simple: Change distribution terms.
10176
10177 1995-02-23 Richard Stallman <rms@gnu.org>
10178
10179 * src/files.c: Test __VMS_POSIX as well as VMS.
10180
10181 1995-02-14 Jim Meyering <meyering@gnu.org>
10182
10183 * src/bison.s1 (__yy_memcpy):
10184 Renamed from __yy_bcopy to avoid
10185 confusion. Reverse FROM and TO arguments to be consistent with
10186 those of memcpy.
10187
10188 1995-02-14 Jim Meyering <meyering@gnu.org>
10189
10190 * bison.simple (__yy_memcpy):
10191 Renamed from __yy_bcopy to avoid
10192 confusion. Reverse FROM and TO arguments to be consistent with
10193 those of memcpy.
10194
10195 1994-11-10 David J. MacKenzie <djm@gnu.org>
10196
10197 * NEWS: reformat
10198
10199 * NEWS: New file.
10200
10201 * Makefile.in (DISTFILES): Include NEWS.
10202
10203 * Makefile.in (DISTFILES):
10204 Include install-sh, not install.sh.
10205
10206 * configure.in: Update to Autoconf v2 macro names.
10207
10208 1994-10-05 David J. MacKenzie <djm@gnu.org>
10209
10210 * Makefile.in: fix typo
10211
10212 * Makefile.in (prefix, exec_prefix):
10213 Let configure set them.
10214
10215 1994-09-28 David J. MacKenzie <djm@gnu.org>
10216
10217 * Makefile.in: Set datadir to $(prefix)/share.
10218
10219 1994-09-15 Richard Stallman <rms@gnu.org>
10220
10221 * src/bison.s1:
10222 Update copyright notice and GPL version.
10223
10224 1994-09-15 Richard Stallman <rms@gnu.org>
10225
10226 * bison.simple:
10227 Update copyright notice and GPL version.
10228
10229 1994-07-12 Richard Stallman <rms@gnu.org>
10230
10231 * src/reduce.c, src/reader.c:
10232 entered into RCS
10233
10234 1994-05-05 David J. MacKenzie <djm@gnu.org>
10235
10236 * Makefile.in: entered into RCS
10237
10238 1994-03-26 Richard Stallman <rms@gnu.org>
10239
10240 * src/bison.s1: entered into RCS
10241
10242 1994-03-26 Richard Stallman <rms@gnu.org>
10243
10244 * bison.simple: entered into RCS
10245
10246 1994-03-25 Richard Stallman <rms@gnu.org>
10247
10248 * src/main.c: entered into RCS
10249
10250 1994-03-24 Richard Stallman <rms@gnu.org>
10251
10252 * src/conflicts.c: entered into RCS
10253
10254 1994-01-02 Richard Stallman <rms@gnu.org>
10255
10256 * Makefile.in: *** empty log message ***
10257
10258 1993-11-21 Richard Stallman <rms@gnu.org>
10259
10260 * src/bison.s1: *** empty log message ***
10261
10262 1993-11-21 Richard Stallman <rms@gnu.org>
10263
10264 * doc/bison.texinfo: entered into RCS
10265
10266 * doc/bison.texinfo: *** empty log message ***
10267
10268 1993-11-21 Richard Stallman <rms@gnu.org>
10269
10270 * bison.simple: *** empty log message ***
10271
10272 1993-10-25 David J. MacKenzie <djm@gnu.org>
10273
10274 * doc/bison.texinfo: *** empty log message ***
10275
10276 1993-10-19 Richard Stallman <rms@gnu.org>
10277
10278 * src/bison.s1: *** empty log message ***
10279
10280 1993-10-19 Richard Stallman <rms@gnu.org>
10281
10282 * bison.simple: *** empty log message ***
10283
10284 1993-10-14 Richard Stallman <rms@gnu.org>
10285
10286 * src/bison.s1: *** empty log message ***
10287
10288 1993-10-14 Richard Stallman <rms@gnu.org>
10289
10290 * bison.simple: *** empty log message ***
10291
10292 1993-09-14 David J. MacKenzie <djm@gnu.org>
10293
10294 * doc/bison.texinfo: *** empty log message ***
10295
10296 1993-09-13 Noah Friedman <friedman@gnu.org>
10297
10298 * Makefile.in: *** empty log message ***
10299
10300 1993-09-10 Richard Stallman <rms@gnu.org>
10301
10302 * src/conflicts.c: *** empty log message ***
10303
10304 * src/system.h: entered into RCS
10305
10306 1993-09-10 Richard Stallman <rms@gnu.org>
10307
10308 * doc/bison.1: entered into RCS
10309
10310 1993-09-06 Noah Friedman <friedman@gnu.org>
10311
10312 * src/version.c: entered into RCS
10313
10314 1993-09-06 Noah Friedman <friedman@gnu.org>
10315
10316 * Makefile.in: *** empty log message ***
10317
10318 1993-07-30 David J. MacKenzie <djm@gnu.org>
10319
10320 * Makefile.in: *** empty log message ***
10321
10322 1993-07-24 Richard Stallman <rms@gnu.org>
10323
10324 * src/bison.s1: *** empty log message ***
10325
10326 1993-07-24 Richard Stallman <rms@gnu.org>
10327
10328 * bison.simple: *** empty log message ***
10329
10330 1993-07-08 David J. MacKenzie <djm@gnu.org>
10331
10332 * Makefile.in: *** empty log message ***
10333
10334 1993-07-04 Richard Stallman <rms@gnu.org>
10335
10336 * src/bison.s1: *** empty log message ***
10337
10338 1993-07-04 Richard Stallman <rms@gnu.org>
10339
10340 * bison.simple: *** empty log message ***
10341
10342 1993-06-26 David J. MacKenzie <djm@gnu.org>
10343
10344 * src/getargs.c: entered into RCS
10345
10346 1993-06-26 David J. MacKenzie <djm@gnu.org>
10347
10348 * doc/bison.texinfo: *** empty log message ***
10349
10350 * doc/bison.1: New file.
10351
10352 1993-06-25 Richard Stallman <rms@gnu.org>
10353
10354 * src/getargs.c: New file.
10355
10356 1993-06-16 Richard Stallman <rms@gnu.org>
10357
10358 * src/bison.s1: *** empty log message ***
10359
10360 1993-06-16 Richard Stallman <rms@gnu.org>
10361
10362 * bison.simple: *** empty log message ***
10363
10364 1993-06-03 Richard Stallman <rms@gnu.org>
10365
10366 * src/bison.s1: New file.
10367
10368 1993-06-03 Richard Stallman <rms@gnu.org>
10369
10370 * doc/bison.texinfo: *** empty log message ***
10371
10372 1993-06-03 Richard Stallman <rms@gnu.org>
10373
10374 * bison.simple: New file.
10375
10376 1993-05-19 Richard Stallman <rms@gnu.org>
10377
10378 * doc/bison.texinfo: New file.
10379
10380 1993-05-07 Noah Friedman <friedman@gnu.org>
10381
10382 * Makefile.in: *** empty log message ***
10383
10384 1993-04-28 Noah Friedman <friedman@gnu.org>
10385
10386 * src/reader.c: *** empty log message ***
10387
10388 1993-04-23 Noah Friedman <friedman@gnu.org>
10389
10390 * src/alloc.h: entered into RCS
10391
10392 1993-04-20 David J. MacKenzie <djm@gnu.org>
10393
10394 * src/version.c: *** empty log message ***
10395
10396 * src/files.c, src/allocate.c:
10397 entered into RCS
10398
10399 * src/reader.c: *** empty log message ***
10400
10401 * src/lex.c: entered into RCS
10402
10403 * src/conflicts.c: New file.
10404
10405 * src/symtab.c: entered into RCS
10406
10407 * src/alloc.h: New file.
10408
10409 * src/LR0.c: entered into RCS
10410
10411 1993-04-18 Noah Friedman <friedman@gnu.org>
10412
10413 * src/reader.c: New file.
10414
10415 * src/version.c: *** empty log message ***
10416
10417 1993-04-18 Noah Friedman <friedman@gnu.org>
10418
10419 * Makefile.in: *** empty log message ***
10420
10421 1993-04-17 Noah Friedman <friedman@gnu.org>
10422
10423 * Makefile.in: *** empty log message ***
10424
10425 1993-04-15 Richard Stallman <rms@gnu.org>
10426
10427 * src/main.c, src/files.c:
10428 New file.
10429
10430 1993-04-15 Noah Friedman <friedman@gnu.org>
10431
10432 * configure.in: entered into RCS
10433
10434 * configure.in: *** empty log message ***
10435
10436 * configure.in: New file.
10437
10438 1993-04-14 Richard Stallman <rms@gnu.org>
10439
10440 * Makefile.in: New file.
10441
10442 1993-04-13 Richard Stallman <rms@gnu.org>
10443
10444 * src/version.c: New file.
10445
10446 1993-03-25 Richard Stallman <rms@gnu.org>
10447
10448 * src/output.c: entered into RCS
10449
10450 1992-09-25 Richard Stallman <rms@gnu.org>
10451
10452 * configure.bat: entered into RCS
10453
10454 1992-06-22 Richard Stallman <rms@gnu.org>
10455
10456 * src/vmsgetargs.c: entered into RCS
10457
10458 1992-06-22 Richard Stallman <rms@gnu.org>
10459
10460 * doc/bison.rnh: entered into RCS
10461
10462 1992-04-20 David J. MacKenzie <djm@gnu.org>
10463
10464 * README: entered into RCS
10465
10466 1992-01-22 Richard Stallman <rms@gnu.org>
10467
10468 * src/machine.h: entered into RCS
10469
10470 1991-12-21 Richard Stallman <rms@gnu.org>
10471
10472 * src/lalr.c, src/closure.c:
10473 entered into RCS
10474
10475 1991-12-20 Richard Stallman <rms@gnu.org>
10476
10477 * src/state.h: entered into RCS
10478
10479 1991-12-18 Richard Stallman <rms@gnu.org>
10480
10481 * src/print.c, src/nullable.c, src/derives.c:
10482 entered into RCS
10483
10484 1991-11-03 David J. MacKenzie <djm@gnu.org>
10485
10486 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
10487 entered into RCS
10488
10489 1988-09-09 Richard Stallman <rms@gnu.org>
10490
10491 * src/bison.hairy: entered into RCS
10492
10493 1987-12-16 Richard Stallman <rms@gnu.org>
10494
10495 * REFERENCES: entered into RCS
10496 -----
10497
10498 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
10499 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
10500
10501 This file is part of Bison, the GNU Compiler Compiler.
10502
10503 Bison is free software; you can redistribute it and/or modify
10504 it under the terms of the GNU General Public License as published by
10505 the Free Software Foundation; either version 2, or (at your option)
10506 any later version.
10507
10508 Bison is distributed in the hope that it will be useful,
10509 but WITHOUT ANY WARRANTY; without even the implied warranty of
10510 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10511 GNU General Public License for more details.
10512
10513 You should have received a copy of the GNU General Public License
10514 along with Bison; see the file COPYING. If not, write to
10515 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
10516 Boston, MA 02111-1307, USA.